rsi_usb.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /**
  2. * @section LICENSE
  3. * Copyright (c) 2014 Redpine Signals Inc.
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any
  6. * purpose with or without fee is hereby granted, provided that the above
  7. * copyright notice and this permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  10. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  11. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  12. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  13. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  14. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  15. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  16. */
  17. #ifndef __RSI_USB_INTF__
  18. #define __RSI_USB_INTF__
  19. #include <linux/usb.h>
  20. #include "rsi_main.h"
  21. #include "rsi_common.h"
  22. #define USB_INTERNAL_REG_1 0x25000
  23. #define RSI_USB_READY_MAGIC_NUM 0xab
  24. #define FW_STATUS_REG 0x41050012
  25. #define RSI_TA_HOLD_REG 0x22000844
  26. #define USB_VENDOR_REGISTER_READ 0x15
  27. #define USB_VENDOR_REGISTER_WRITE 0x16
  28. #define RSI_USB_TX_HEAD_ROOM 128
  29. #define MAX_RX_URBS 1
  30. #define MAX_BULK_EP 8
  31. #define WLAN_EP 1
  32. #define BT_EP 2
  33. #define RSI_USB_BUF_SIZE 4096
  34. #define RSI_USB_CTRL_BUF_SIZE 0x04
  35. struct rsi_91x_usbdev {
  36. struct rsi_thread rx_thread;
  37. u8 endpoint;
  38. struct usb_device *usbdev;
  39. struct usb_interface *pfunction;
  40. struct urb *rx_usb_urb[MAX_RX_URBS];
  41. u8 *tx_buffer;
  42. __le16 bulkin_size;
  43. u8 bulkin_endpoint_addr;
  44. __le16 bulkout_size[MAX_BULK_EP];
  45. u8 bulkout_endpoint_addr[MAX_BULK_EP];
  46. u32 tx_blk_size;
  47. u8 write_fail;
  48. };
  49. static inline int rsi_usb_check_queue_status(struct rsi_hw *adapter, u8 q_num)
  50. {
  51. /* In USB, there isn't any need to check the queue status */
  52. return QUEUE_NOT_FULL;
  53. }
  54. static inline int rsi_usb_event_timeout(struct rsi_hw *adapter)
  55. {
  56. return EVENT_WAIT_FOREVER;
  57. }
  58. void rsi_usb_rx_thread(struct rsi_common *common);
  59. #endif