btmrvl_drv.h 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. /*
  2. * Marvell Bluetooth driver: global definitions & declarations
  3. *
  4. * Copyright (C) 2009, Marvell International Ltd.
  5. *
  6. * This software file (the "File") is distributed by Marvell International
  7. * Ltd. under the terms of the GNU General Public License Version 2, June 1991
  8. * (the "License"). You may use, redistribute and/or modify this File in
  9. * accordance with the terms and conditions of the License, a copy of which
  10. * is available by writing to the Free Software Foundation, Inc.,
  11. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
  12. * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
  13. *
  14. *
  15. * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE EXPRESSLY DISCLAIMED. The License provides additional details about
  18. * this warranty disclaimer.
  19. *
  20. */
  21. #include <linux/kthread.h>
  22. #include <linux/bitops.h>
  23. #include <net/bluetooth/bluetooth.h>
  24. #define BTM_HEADER_LEN 4
  25. #define BTM_UPLD_SIZE 2312
  26. /* Time to wait until Host Sleep state change in millisecond */
  27. #define WAIT_UNTIL_HS_STATE_CHANGED 5000
  28. /* Time to wait for command response in millisecond */
  29. #define WAIT_UNTIL_CMD_RESP 5000
  30. struct btmrvl_thread {
  31. struct task_struct *task;
  32. wait_queue_head_t wait_q;
  33. void *priv;
  34. };
  35. struct btmrvl_device {
  36. void *card;
  37. struct hci_dev *hcidev;
  38. u8 tx_dnld_rdy;
  39. u8 psmode;
  40. u8 pscmd;
  41. u8 hsmode;
  42. u8 hscmd;
  43. /* Low byte is gap, high byte is GPIO */
  44. u16 gpio_gap;
  45. u8 hscfgcmd;
  46. u8 sendcmdflag;
  47. };
  48. struct btmrvl_adapter {
  49. u32 int_count;
  50. struct sk_buff_head tx_queue;
  51. u8 psmode;
  52. u8 ps_state;
  53. u8 hs_state;
  54. u8 wakeup_tries;
  55. wait_queue_head_t cmd_wait_q;
  56. u8 cmd_complete;
  57. };
  58. struct btmrvl_private {
  59. struct btmrvl_device btmrvl_dev;
  60. struct btmrvl_adapter *adapter;
  61. struct btmrvl_thread main_thread;
  62. int (*hw_host_to_card) (struct btmrvl_private *priv,
  63. u8 *payload, u16 nb);
  64. int (*hw_wakeup_firmware) (struct btmrvl_private *priv);
  65. spinlock_t driver_lock; /* spinlock used by driver */
  66. #ifdef CONFIG_DEBUG_FS
  67. void *debugfs_data;
  68. #endif
  69. };
  70. #define MRVL_VENDOR_PKT 0xFE
  71. /* Bluetooth commands */
  72. #define BT_CMD_AUTO_SLEEP_MODE 0x23
  73. #define BT_CMD_HOST_SLEEP_CONFIG 0x59
  74. #define BT_CMD_HOST_SLEEP_ENABLE 0x5A
  75. #define BT_CMD_MODULE_CFG_REQ 0x5B
  76. /* Sub-commands: Module Bringup/Shutdown Request */
  77. #define MODULE_BRINGUP_REQ 0xF1
  78. #define MODULE_SHUTDOWN_REQ 0xF2
  79. #define BT_EVENT_POWER_STATE 0x20
  80. /* Bluetooth Power States */
  81. #define BT_PS_ENABLE 0x02
  82. #define BT_PS_DISABLE 0x03
  83. #define BT_PS_SLEEP 0x01
  84. #define OGF 0x3F
  85. /* Host Sleep states */
  86. #define HS_ACTIVATED 0x01
  87. #define HS_DEACTIVATED 0x00
  88. /* Power Save modes */
  89. #define PS_SLEEP 0x01
  90. #define PS_AWAKE 0x00
  91. struct btmrvl_cmd {
  92. __le16 ocf_ogf;
  93. u8 length;
  94. u8 data[4];
  95. } __attribute__ ((packed));
  96. struct btmrvl_event {
  97. u8 ec; /* event counter */
  98. u8 length;
  99. u8 data[4];
  100. } __attribute__ ((packed));
  101. /* Prototype of global function */
  102. struct btmrvl_private *btmrvl_add_card(void *card);
  103. int btmrvl_remove_card(struct btmrvl_private *priv);
  104. void btmrvl_interrupt(struct btmrvl_private *priv);
  105. void btmrvl_check_evtpkt(struct btmrvl_private *priv, struct sk_buff *skb);
  106. int btmrvl_process_event(struct btmrvl_private *priv, struct sk_buff *skb);
  107. int btmrvl_send_module_cfg_cmd(struct btmrvl_private *priv, int subcmd);
  108. int btmrvl_enable_ps(struct btmrvl_private *priv);
  109. int btmrvl_prepare_command(struct btmrvl_private *priv);
  110. #ifdef CONFIG_DEBUG_FS
  111. void btmrvl_debugfs_init(struct hci_dev *hdev);
  112. void btmrvl_debugfs_remove(struct hci_dev *hdev);
  113. #endif