decl.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * This file contains declaration referring to
  3. * functions defined in other source files
  4. */
  5. #ifndef _LBS_DECL_H_
  6. #define _LBS_DECL_H_
  7. #include <linux/netdevice.h>
  8. #include <linux/firmware.h>
  9. #include <linux/nl80211.h>
  10. /* Should be terminated by a NULL entry */
  11. struct lbs_fw_table {
  12. int model;
  13. const char *helper;
  14. const char *fwname;
  15. };
  16. struct lbs_private;
  17. struct sk_buff;
  18. struct net_device;
  19. struct cmd_ds_command;
  20. /* ethtool.c */
  21. extern const struct ethtool_ops lbs_ethtool_ops;
  22. /* tx.c */
  23. void lbs_send_tx_feedback(struct lbs_private *priv, u32 try_count);
  24. netdev_tx_t lbs_hard_start_xmit(struct sk_buff *skb,
  25. struct net_device *dev);
  26. /* rx.c */
  27. int lbs_process_rxed_packet(struct lbs_private *priv, struct sk_buff *);
  28. /* main.c */
  29. struct lbs_private *lbs_add_card(void *card, struct device *dmdev);
  30. void lbs_remove_card(struct lbs_private *priv);
  31. int lbs_start_card(struct lbs_private *priv);
  32. void lbs_stop_card(struct lbs_private *priv);
  33. void lbs_host_to_card_done(struct lbs_private *priv);
  34. int lbs_start_iface(struct lbs_private *priv);
  35. int lbs_stop_iface(struct lbs_private *priv);
  36. int lbs_set_iface_type(struct lbs_private *priv, enum nl80211_iftype type);
  37. int lbs_rtap_supported(struct lbs_private *priv);
  38. int lbs_set_mac_address(struct net_device *dev, void *addr);
  39. void lbs_set_multicast_list(struct net_device *dev);
  40. void lbs_update_mcast(struct lbs_private *priv);
  41. int lbs_suspend(struct lbs_private *priv);
  42. int lbs_resume(struct lbs_private *priv);
  43. void lbs_queue_event(struct lbs_private *priv, u32 event);
  44. void lbs_notify_command_response(struct lbs_private *priv, u8 resp_idx);
  45. int lbs_enter_auto_deep_sleep(struct lbs_private *priv);
  46. int lbs_exit_auto_deep_sleep(struct lbs_private *priv);
  47. u32 lbs_fw_index_to_data_rate(u8 index);
  48. u8 lbs_data_rate_to_fw_index(u32 rate);
  49. int lbs_get_firmware(struct device *dev, const char *user_helper,
  50. const char *user_mainfw, u32 card_model,
  51. const struct lbs_fw_table *fw_table,
  52. const struct firmware **helper,
  53. const struct firmware **mainfw);
  54. #endif