btmrvl_drv.h 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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/ctype.h>
  26. #include <linux/firmware.h>
  27. #define BTM_HEADER_LEN 4
  28. #define BTM_UPLD_SIZE 2312
  29. /* Time to wait until Host Sleep state change in millisecond */
  30. #define WAIT_UNTIL_HS_STATE_CHANGED 5000
  31. /* Time to wait for command response in millisecond */
  32. #define WAIT_UNTIL_CMD_RESP 5000
  33. struct btmrvl_thread {
  34. struct task_struct *task;
  35. wait_queue_head_t wait_q;
  36. void *priv;
  37. };
  38. struct btmrvl_device {
  39. void *card;
  40. struct hci_dev *hcidev;
  41. struct device *dev;
  42. const char *cal_data;
  43. u8 dev_type;
  44. u8 tx_dnld_rdy;
  45. u8 psmode;
  46. u8 pscmd;
  47. u8 hsmode;
  48. u8 hscmd;
  49. /* Low byte is gap, high byte is GPIO */
  50. u16 gpio_gap;
  51. u8 hscfgcmd;
  52. u8 sendcmdflag;
  53. };
  54. struct btmrvl_adapter {
  55. u32 int_count;
  56. struct sk_buff_head tx_queue;
  57. u8 psmode;
  58. u8 ps_state;
  59. u8 hs_state;
  60. u8 wakeup_tries;
  61. wait_queue_head_t cmd_wait_q;
  62. u8 cmd_complete;
  63. bool is_suspended;
  64. };
  65. struct btmrvl_private {
  66. struct btmrvl_device btmrvl_dev;
  67. struct btmrvl_adapter *adapter;
  68. struct btmrvl_thread main_thread;
  69. int (*hw_host_to_card) (struct btmrvl_private *priv,
  70. u8 *payload, u16 nb);
  71. int (*hw_wakeup_firmware) (struct btmrvl_private *priv);
  72. int (*hw_process_int_status) (struct btmrvl_private *priv);
  73. spinlock_t driver_lock; /* spinlock used by driver */
  74. #ifdef CONFIG_DEBUG_FS
  75. void *debugfs_data;
  76. #endif
  77. };
  78. #define MRVL_VENDOR_PKT 0xFE
  79. /* Bluetooth commands */
  80. #define BT_CMD_AUTO_SLEEP_MODE 0x23
  81. #define BT_CMD_HOST_SLEEP_CONFIG 0x59
  82. #define BT_CMD_HOST_SLEEP_ENABLE 0x5A
  83. #define BT_CMD_MODULE_CFG_REQ 0x5B
  84. #define BT_CMD_LOAD_CONFIG_DATA 0x61
  85. /* Sub-commands: Module Bringup/Shutdown Request/Response */
  86. #define MODULE_BRINGUP_REQ 0xF1
  87. #define MODULE_BROUGHT_UP 0x00
  88. #define MODULE_ALREADY_UP 0x0C
  89. #define MODULE_SHUTDOWN_REQ 0xF2
  90. #define BT_EVENT_POWER_STATE 0x20
  91. /* Bluetooth Power States */
  92. #define BT_PS_ENABLE 0x02
  93. #define BT_PS_DISABLE 0x03
  94. #define BT_PS_SLEEP 0x01
  95. #define OGF 0x3F
  96. /* Host Sleep states */
  97. #define HS_ACTIVATED 0x01
  98. #define HS_DEACTIVATED 0x00
  99. /* Power Save modes */
  100. #define PS_SLEEP 0x01
  101. #define PS_AWAKE 0x00
  102. #define BT_CMD_DATA_SIZE 32
  103. #define BT_CAL_DATA_SIZE 28
  104. struct btmrvl_event {
  105. u8 ec; /* event counter */
  106. u8 length;
  107. u8 data[4];
  108. } __packed;
  109. /* Prototype of global function */
  110. int btmrvl_register_hdev(struct btmrvl_private *priv);
  111. struct btmrvl_private *btmrvl_add_card(void *card);
  112. int btmrvl_remove_card(struct btmrvl_private *priv);
  113. void btmrvl_interrupt(struct btmrvl_private *priv);
  114. bool btmrvl_check_evtpkt(struct btmrvl_private *priv, struct sk_buff *skb);
  115. int btmrvl_process_event(struct btmrvl_private *priv, struct sk_buff *skb);
  116. int btmrvl_send_module_cfg_cmd(struct btmrvl_private *priv, int subcmd);
  117. int btmrvl_send_hscfg_cmd(struct btmrvl_private *priv);
  118. int btmrvl_enable_ps(struct btmrvl_private *priv);
  119. int btmrvl_prepare_command(struct btmrvl_private *priv);
  120. int btmrvl_enable_hs(struct btmrvl_private *priv);
  121. #ifdef CONFIG_DEBUG_FS
  122. void btmrvl_debugfs_init(struct hci_dev *hdev);
  123. void btmrvl_debugfs_remove(struct hci_dev *hdev);
  124. #endif