btmrvl_drv.h 3.7 KB

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