usb.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. * Copyright (c) 2004-2011 Atheros Communications Inc.
  3. * Copyright (c) 2011-2012 Qualcomm Atheros, Inc.
  4. * Copyright (c) 2016-2017 Erik Stromdahl <erik.stromdahl@gmail.com>
  5. *
  6. * Permission to use, copy, modify, and/or distribute this software for any
  7. * purpose with or without fee is hereby granted, provided that the above
  8. * copyright notice and this permission notice appear in all copies.
  9. *
  10. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  11. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  13. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  14. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  15. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  16. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _USB_H_
  19. #define _USB_H_
  20. /* constants */
  21. #define TX_URB_COUNT 32
  22. #define RX_URB_COUNT 32
  23. #define ATH10K_USB_RX_BUFFER_SIZE 4096
  24. #define ATH10K_USB_PIPE_INVALID ATH10K_USB_PIPE_MAX
  25. /* USB endpoint definitions */
  26. #define ATH10K_USB_EP_ADDR_APP_CTRL_IN 0x81
  27. #define ATH10K_USB_EP_ADDR_APP_DATA_IN 0x82
  28. #define ATH10K_USB_EP_ADDR_APP_DATA2_IN 0x83
  29. #define ATH10K_USB_EP_ADDR_APP_INT_IN 0x84
  30. #define ATH10K_USB_EP_ADDR_APP_CTRL_OUT 0x01
  31. #define ATH10K_USB_EP_ADDR_APP_DATA_LP_OUT 0x02
  32. #define ATH10K_USB_EP_ADDR_APP_DATA_MP_OUT 0x03
  33. #define ATH10K_USB_EP_ADDR_APP_DATA_HP_OUT 0x04
  34. /* diagnostic command defnitions */
  35. #define ATH10K_USB_CONTROL_REQ_SEND_BMI_CMD 1
  36. #define ATH10K_USB_CONTROL_REQ_RECV_BMI_RESP 2
  37. #define ATH10K_USB_CONTROL_REQ_DIAG_CMD 3
  38. #define ATH10K_USB_CONTROL_REQ_DIAG_RESP 4
  39. #define ATH10K_USB_CTRL_DIAG_CC_READ 0
  40. #define ATH10K_USB_CTRL_DIAG_CC_WRITE 1
  41. #define ATH10K_USB_IS_BULK_EP(attr) (((attr) & 3) == 0x02)
  42. #define ATH10K_USB_IS_INT_EP(attr) (((attr) & 3) == 0x03)
  43. #define ATH10K_USB_IS_ISOC_EP(attr) (((attr) & 3) == 0x01)
  44. #define ATH10K_USB_IS_DIR_IN(addr) ((addr) & 0x80)
  45. struct ath10k_usb_ctrl_diag_cmd_write {
  46. __le32 cmd;
  47. __le32 address;
  48. __le32 value;
  49. __le32 padding;
  50. } __packed;
  51. struct ath10k_usb_ctrl_diag_cmd_read {
  52. __le32 cmd;
  53. __le32 address;
  54. } __packed;
  55. struct ath10k_usb_ctrl_diag_resp_read {
  56. u8 value[4];
  57. } __packed;
  58. /* tx/rx pipes for usb */
  59. enum ath10k_usb_pipe_id {
  60. ATH10K_USB_PIPE_TX_CTRL = 0,
  61. ATH10K_USB_PIPE_TX_DATA_LP,
  62. ATH10K_USB_PIPE_TX_DATA_MP,
  63. ATH10K_USB_PIPE_TX_DATA_HP,
  64. ATH10K_USB_PIPE_RX_CTRL,
  65. ATH10K_USB_PIPE_RX_DATA,
  66. ATH10K_USB_PIPE_RX_DATA2,
  67. ATH10K_USB_PIPE_RX_INT,
  68. ATH10K_USB_PIPE_MAX
  69. };
  70. struct ath10k_usb_pipe {
  71. struct list_head urb_list_head;
  72. struct usb_anchor urb_submitted;
  73. u32 urb_alloc;
  74. u32 urb_cnt;
  75. u32 urb_cnt_thresh;
  76. unsigned int usb_pipe_handle;
  77. u32 flags;
  78. u8 ep_address;
  79. u8 logical_pipe_num;
  80. struct ath10k_usb *ar_usb;
  81. u16 max_packet_size;
  82. struct work_struct io_complete_work;
  83. struct sk_buff_head io_comp_queue;
  84. struct usb_endpoint_descriptor *ep_desc;
  85. };
  86. #define ATH10K_USB_PIPE_FLAG_TX BIT(0)
  87. /* usb device object */
  88. struct ath10k_usb {
  89. /* protects pipe->urb_list_head and pipe->urb_cnt */
  90. spinlock_t cs_lock;
  91. struct usb_device *udev;
  92. struct usb_interface *interface;
  93. struct ath10k_usb_pipe pipes[ATH10K_USB_PIPE_MAX];
  94. u8 *diag_cmd_buffer;
  95. u8 *diag_resp_buffer;
  96. struct ath10k *ar;
  97. };
  98. /* usb urb object */
  99. struct ath10k_urb_context {
  100. struct list_head link;
  101. struct ath10k_usb_pipe *pipe;
  102. struct sk_buff *skb;
  103. struct ath10k *ar;
  104. };
  105. static inline struct ath10k_usb *ath10k_usb_priv(struct ath10k *ar)
  106. {
  107. return (struct ath10k_usb *)ar->drv_priv;
  108. }
  109. #endif