btmrvl_drv.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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 <linux/slab.h>
  24. #include <net/bluetooth/bluetooth.h>
  25. #include <linux/err.h>
  26. #include <linux/gpio.h>
  27. #include <linux/gfp.h>
  28. #include <linux/interrupt.h>
  29. #include <linux/io.h>
  30. #include <linux/of_gpio.h>
  31. #include <linux/of_platform.h>
  32. #include <linux/platform_device.h>
  33. #include <linux/pm_runtime.h>
  34. #include <linux/of_irq.h>
  35. #define BTM_HEADER_LEN 4
  36. #define BTM_UPLD_SIZE 2312
  37. /* Time to wait until Host Sleep state change in millisecond */
  38. #define WAIT_UNTIL_HS_STATE_CHANGED msecs_to_jiffies(5000)
  39. /* Time to wait for command response in millisecond */
  40. #define WAIT_UNTIL_CMD_RESP msecs_to_jiffies(5000)
  41. enum rdwr_status {
  42. RDWR_STATUS_SUCCESS = 0,
  43. RDWR_STATUS_FAILURE = 1,
  44. RDWR_STATUS_DONE = 2
  45. };
  46. #define FW_DUMP_MAX_NAME_LEN 8
  47. #define FW_DUMP_HOST_READY 0xEE
  48. #define FW_DUMP_DONE 0xFF
  49. #define FW_DUMP_READ_DONE 0xFE
  50. struct memory_type_mapping {
  51. u8 mem_name[FW_DUMP_MAX_NAME_LEN];
  52. u8 *mem_ptr;
  53. u32 mem_size;
  54. u8 done_flag;
  55. };
  56. struct btmrvl_thread {
  57. struct task_struct *task;
  58. wait_queue_head_t wait_q;
  59. void *priv;
  60. };
  61. struct btmrvl_device {
  62. void *card;
  63. struct hci_dev *hcidev;
  64. u8 dev_type;
  65. u8 tx_dnld_rdy;
  66. u8 psmode;
  67. u8 pscmd;
  68. u8 hsmode;
  69. u8 hscmd;
  70. /* Low byte is gap, high byte is GPIO */
  71. u16 gpio_gap;
  72. u8 hscfgcmd;
  73. u8 sendcmdflag;
  74. };
  75. struct btmrvl_adapter {
  76. void *hw_regs_buf;
  77. u8 *hw_regs;
  78. u32 int_count;
  79. struct sk_buff_head tx_queue;
  80. u8 psmode;
  81. u8 ps_state;
  82. u8 hs_state;
  83. u8 wakeup_tries;
  84. wait_queue_head_t cmd_wait_q;
  85. wait_queue_head_t event_hs_wait_q;
  86. u8 cmd_complete;
  87. bool is_suspended;
  88. bool is_suspending;
  89. };
  90. struct btmrvl_private {
  91. struct btmrvl_device btmrvl_dev;
  92. struct btmrvl_adapter *adapter;
  93. struct btmrvl_thread main_thread;
  94. int (*hw_host_to_card)(struct btmrvl_private *priv,
  95. u8 *payload, u16 nb);
  96. int (*hw_wakeup_firmware)(struct btmrvl_private *priv);
  97. int (*hw_process_int_status)(struct btmrvl_private *priv);
  98. spinlock_t driver_lock; /* spinlock used by driver */
  99. #ifdef CONFIG_DEBUG_FS
  100. void *debugfs_data;
  101. #endif
  102. bool surprise_removed;
  103. };
  104. #define MRVL_VENDOR_PKT 0xFE
  105. /* Vendor specific Bluetooth commands */
  106. #define BT_CMD_PSCAN_WIN_REPORT_ENABLE 0xFC03
  107. #define BT_CMD_ROUTE_SCO_TO_HOST 0xFC1D
  108. #define BT_CMD_SET_BDADDR 0xFC22
  109. #define BT_CMD_AUTO_SLEEP_MODE 0xFC23
  110. #define BT_CMD_HOST_SLEEP_CONFIG 0xFC59
  111. #define BT_CMD_HOST_SLEEP_ENABLE 0xFC5A
  112. #define BT_CMD_MODULE_CFG_REQ 0xFC5B
  113. #define BT_CMD_LOAD_CONFIG_DATA 0xFC61
  114. /* Sub-commands: Module Bringup/Shutdown Request/Response */
  115. #define MODULE_BRINGUP_REQ 0xF1
  116. #define MODULE_BROUGHT_UP 0x00
  117. #define MODULE_ALREADY_UP 0x0C
  118. #define MODULE_SHUTDOWN_REQ 0xF2
  119. /* Vendor specific Bluetooth events */
  120. #define BT_EVENT_AUTO_SLEEP_MODE 0x23
  121. #define BT_EVENT_HOST_SLEEP_CONFIG 0x59
  122. #define BT_EVENT_HOST_SLEEP_ENABLE 0x5A
  123. #define BT_EVENT_MODULE_CFG_REQ 0x5B
  124. #define BT_EVENT_POWER_STATE 0x20
  125. /* Bluetooth Power States */
  126. #define BT_PS_ENABLE 0x02
  127. #define BT_PS_DISABLE 0x03
  128. #define BT_PS_SLEEP 0x01
  129. /* Host Sleep states */
  130. #define HS_ACTIVATED 0x01
  131. #define HS_DEACTIVATED 0x00
  132. /* Power Save modes */
  133. #define PS_SLEEP 0x01
  134. #define PS_AWAKE 0x00
  135. #define BT_CAL_HDR_LEN 4
  136. #define BT_CAL_DATA_SIZE 28
  137. struct btmrvl_event {
  138. u8 ec; /* event counter */
  139. u8 length;
  140. u8 data[4];
  141. } __packed;
  142. /* Prototype of global function */
  143. int btmrvl_register_hdev(struct btmrvl_private *priv);
  144. struct btmrvl_private *btmrvl_add_card(void *card);
  145. int btmrvl_remove_card(struct btmrvl_private *priv);
  146. void btmrvl_interrupt(struct btmrvl_private *priv);
  147. bool btmrvl_check_evtpkt(struct btmrvl_private *priv, struct sk_buff *skb);
  148. int btmrvl_process_event(struct btmrvl_private *priv, struct sk_buff *skb);
  149. int btmrvl_send_module_cfg_cmd(struct btmrvl_private *priv, u8 subcmd);
  150. int btmrvl_pscan_window_reporting(struct btmrvl_private *priv, u8 subcmd);
  151. int btmrvl_send_hscfg_cmd(struct btmrvl_private *priv);
  152. int btmrvl_enable_ps(struct btmrvl_private *priv);
  153. int btmrvl_prepare_command(struct btmrvl_private *priv);
  154. int btmrvl_enable_hs(struct btmrvl_private *priv);
  155. #ifdef CONFIG_DEBUG_FS
  156. void btmrvl_debugfs_init(struct hci_dev *hdev);
  157. void btmrvl_debugfs_remove(struct hci_dev *hdev);
  158. #endif