ehci.h 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. /*-
  2. * Copyright (c) 2007-2008, Juniper Networks, Inc.
  3. * Copyright (c) 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
  4. * All rights reserved.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0
  7. */
  8. #ifndef USB_EHCI_H
  9. #define USB_EHCI_H
  10. #include <usb.h>
  11. /* Section 2.2.3 - N_PORTS */
  12. #define MAX_HC_PORTS 15
  13. /*
  14. * Register Space.
  15. */
  16. struct ehci_hccr {
  17. uint32_t cr_capbase;
  18. #define HC_LENGTH(p) (((p) >> 0) & 0x00ff)
  19. #define HC_VERSION(p) (((p) >> 16) & 0xffff)
  20. uint32_t cr_hcsparams;
  21. #define HCS_PPC(p) ((p) & (1 << 4))
  22. #define HCS_INDICATOR(p) ((p) & (1 << 16)) /* Port indicators */
  23. #define HCS_N_PORTS(p) (((p) >> 0) & 0xf)
  24. uint32_t cr_hccparams;
  25. uint8_t cr_hcsp_portrt[8];
  26. } __attribute__ ((packed, aligned(4)));
  27. struct ehci_hcor {
  28. uint32_t or_usbcmd;
  29. #define CMD_PARK (1 << 11) /* enable "park" */
  30. #define CMD_PARK_CNT(c) (((c) >> 8) & 3) /* how many transfers to park */
  31. #define CMD_LRESET (1 << 7) /* partial reset */
  32. #define CMD_IAAD (1 << 6) /* "doorbell" interrupt */
  33. #define CMD_ASE (1 << 5) /* async schedule enable */
  34. #define CMD_PSE (1 << 4) /* periodic schedule enable */
  35. #define CMD_RESET (1 << 1) /* reset HC not bus */
  36. #define CMD_RUN (1 << 0) /* start/stop HC */
  37. uint32_t or_usbsts;
  38. #define STS_ASS (1 << 15)
  39. #define STS_PSS (1 << 14)
  40. #define STS_HALT (1 << 12)
  41. uint32_t or_usbintr;
  42. #define INTR_UE (1 << 0) /* USB interrupt enable */
  43. #define INTR_UEE (1 << 1) /* USB error interrupt enable */
  44. #define INTR_PCE (1 << 2) /* Port change detect enable */
  45. #define INTR_SEE (1 << 4) /* system error enable */
  46. #define INTR_AAE (1 << 5) /* Interrupt on async adavance enable */
  47. uint32_t or_frindex;
  48. uint32_t or_ctrldssegment;
  49. uint32_t or_periodiclistbase;
  50. uint32_t or_asynclistaddr;
  51. uint32_t _reserved_0_;
  52. uint32_t or_burstsize;
  53. uint32_t or_txfilltuning;
  54. #define TXFIFO_THRESH_MASK (0x3f << 16)
  55. #define TXFIFO_THRESH(p) ((p & 0x3f) << 16)
  56. uint32_t _reserved_1_[6];
  57. uint32_t or_configflag;
  58. #define FLAG_CF (1 << 0) /* true: we'll support "high speed" */
  59. uint32_t or_portsc[MAX_HC_PORTS];
  60. #define PORTSC_PSPD(x) (((x) >> 26) & 0x3)
  61. #define PORTSC_PSPD_FS 0x0
  62. #define PORTSC_PSPD_LS 0x1
  63. #define PORTSC_PSPD_HS 0x2
  64. uint32_t or_systune;
  65. } __attribute__ ((packed, aligned(4)));
  66. #define USBMODE 0x68 /* USB Device mode */
  67. #define USBMODE_SDIS (1 << 3) /* Stream disable */
  68. #define USBMODE_BE (1 << 2) /* BE/LE endiannes select */
  69. #define USBMODE_CM_HC (3 << 0) /* host controller mode */
  70. #define USBMODE_CM_IDLE (0 << 0) /* idle state */
  71. /* Interface descriptor */
  72. struct usb_linux_interface_descriptor {
  73. unsigned char bLength;
  74. unsigned char bDescriptorType;
  75. unsigned char bInterfaceNumber;
  76. unsigned char bAlternateSetting;
  77. unsigned char bNumEndpoints;
  78. unsigned char bInterfaceClass;
  79. unsigned char bInterfaceSubClass;
  80. unsigned char bInterfaceProtocol;
  81. unsigned char iInterface;
  82. } __attribute__ ((packed));
  83. /* Configuration descriptor information.. */
  84. struct usb_linux_config_descriptor {
  85. unsigned char bLength;
  86. unsigned char bDescriptorType;
  87. unsigned short wTotalLength;
  88. unsigned char bNumInterfaces;
  89. unsigned char bConfigurationValue;
  90. unsigned char iConfiguration;
  91. unsigned char bmAttributes;
  92. unsigned char MaxPower;
  93. } __attribute__ ((packed));
  94. #if defined CONFIG_EHCI_DESC_BIG_ENDIAN
  95. #define ehci_readl(x) be32_to_cpu(__raw_readl(x))
  96. #define ehci_writel(a, b) __raw_writel(cpu_to_be32(b), a)
  97. #else
  98. #define ehci_readl(x) readl(x)
  99. #define ehci_writel(a, b) writel(b, a)
  100. #endif
  101. #if defined CONFIG_EHCI_MMIO_BIG_ENDIAN
  102. #define hc32_to_cpu(x) be32_to_cpu((x))
  103. #define cpu_to_hc32(x) cpu_to_be32((x))
  104. #else
  105. #define hc32_to_cpu(x) le32_to_cpu((x))
  106. #define cpu_to_hc32(x) cpu_to_le32((x))
  107. #endif
  108. #define EHCI_PS_WKOC_E (1 << 22) /* RW wake on over current */
  109. #define EHCI_PS_WKDSCNNT_E (1 << 21) /* RW wake on disconnect */
  110. #define EHCI_PS_WKCNNT_E (1 << 20) /* RW wake on connect */
  111. #define EHCI_PS_PO (1 << 13) /* RW port owner */
  112. #define EHCI_PS_PP (1 << 12) /* RW,RO port power */
  113. #define EHCI_PS_LS (3 << 10) /* RO line status */
  114. #define EHCI_PS_PR (1 << 8) /* RW port reset */
  115. #define EHCI_PS_SUSP (1 << 7) /* RW suspend */
  116. #define EHCI_PS_FPR (1 << 6) /* RW force port resume */
  117. #define EHCI_PS_OCC (1 << 5) /* RWC over current change */
  118. #define EHCI_PS_OCA (1 << 4) /* RO over current active */
  119. #define EHCI_PS_PEC (1 << 3) /* RWC port enable change */
  120. #define EHCI_PS_PE (1 << 2) /* RW port enable */
  121. #define EHCI_PS_CSC (1 << 1) /* RWC connect status change */
  122. #define EHCI_PS_CS (1 << 0) /* RO connect status */
  123. #define EHCI_PS_CLEAR (EHCI_PS_OCC | EHCI_PS_PEC | EHCI_PS_CSC)
  124. #define EHCI_PS_IS_LOWSPEED(x) (((x) & EHCI_PS_LS) == (1 << 10))
  125. /*
  126. * Schedule Interface Space.
  127. *
  128. * IMPORTANT: Software must ensure that no interface data structure
  129. * reachable by the EHCI host controller spans a 4K page boundary!
  130. *
  131. * Periodic transfers (i.e. isochronous and interrupt transfers) are
  132. * not supported.
  133. */
  134. /* Queue Element Transfer Descriptor (qTD). */
  135. struct qTD {
  136. /* this part defined by EHCI spec */
  137. uint32_t qt_next; /* see EHCI 3.5.1 */
  138. #define QT_NEXT_TERMINATE 1
  139. uint32_t qt_altnext; /* see EHCI 3.5.2 */
  140. uint32_t qt_token; /* see EHCI 3.5.3 */
  141. #define QT_TOKEN_DT(x) (((x) & 0x1) << 31) /* Data Toggle */
  142. #define QT_TOKEN_GET_DT(x) (((x) >> 31) & 0x1)
  143. #define QT_TOKEN_TOTALBYTES(x) (((x) & 0x7fff) << 16) /* Total Bytes to Transfer */
  144. #define QT_TOKEN_GET_TOTALBYTES(x) (((x) >> 16) & 0x7fff)
  145. #define QT_TOKEN_IOC(x) (((x) & 0x1) << 15) /* Interrupt On Complete */
  146. #define QT_TOKEN_CPAGE(x) (((x) & 0x7) << 12) /* Current Page */
  147. #define QT_TOKEN_CERR(x) (((x) & 0x3) << 10) /* Error Counter */
  148. #define QT_TOKEN_PID(x) (((x) & 0x3) << 8) /* PID Code */
  149. #define QT_TOKEN_PID_OUT 0x0
  150. #define QT_TOKEN_PID_IN 0x1
  151. #define QT_TOKEN_PID_SETUP 0x2
  152. #define QT_TOKEN_STATUS(x) (((x) & 0xff) << 0) /* Status */
  153. #define QT_TOKEN_GET_STATUS(x) (((x) >> 0) & 0xff)
  154. #define QT_TOKEN_STATUS_ACTIVE 0x80
  155. #define QT_TOKEN_STATUS_HALTED 0x40
  156. #define QT_TOKEN_STATUS_DATBUFERR 0x20
  157. #define QT_TOKEN_STATUS_BABBLEDET 0x10
  158. #define QT_TOKEN_STATUS_XACTERR 0x08
  159. #define QT_TOKEN_STATUS_MISSEDUFRAME 0x04
  160. #define QT_TOKEN_STATUS_SPLITXSTATE 0x02
  161. #define QT_TOKEN_STATUS_PERR 0x01
  162. #define QT_BUFFER_CNT 5
  163. uint32_t qt_buffer[QT_BUFFER_CNT]; /* see EHCI 3.5.4 */
  164. uint32_t qt_buffer_hi[QT_BUFFER_CNT]; /* Appendix B */
  165. /* pad struct for 32 byte alignment */
  166. uint32_t unused[3];
  167. };
  168. #define EHCI_PAGE_SIZE 4096
  169. /* Queue Head (QH). */
  170. struct QH {
  171. uint32_t qh_link;
  172. #define QH_LINK_TERMINATE 1
  173. #define QH_LINK_TYPE_ITD 0
  174. #define QH_LINK_TYPE_QH 2
  175. #define QH_LINK_TYPE_SITD 4
  176. #define QH_LINK_TYPE_FSTN 6
  177. uint32_t qh_endpt1;
  178. #define QH_ENDPT1_RL(x) (((x) & 0xf) << 28) /* NAK Count Reload */
  179. #define QH_ENDPT1_C(x) (((x) & 0x1) << 27) /* Control Endpoint Flag */
  180. #define QH_ENDPT1_MAXPKTLEN(x) (((x) & 0x7ff) << 16) /* Maximum Packet Length */
  181. #define QH_ENDPT1_H(x) (((x) & 0x1) << 15) /* Head of Reclamation List Flag */
  182. #define QH_ENDPT1_DTC(x) (((x) & 0x1) << 14) /* Data Toggle Control */
  183. #define QH_ENDPT1_DTC_IGNORE_QTD_TD 0x0
  184. #define QH_ENDPT1_DTC_DT_FROM_QTD 0x1
  185. #define QH_ENDPT1_EPS(x) (((x) & 0x3) << 12) /* Endpoint Speed */
  186. #define QH_ENDPT1_EPS_FS 0x0
  187. #define QH_ENDPT1_EPS_LS 0x1
  188. #define QH_ENDPT1_EPS_HS 0x2
  189. #define QH_ENDPT1_ENDPT(x) (((x) & 0xf) << 8) /* Endpoint Number */
  190. #define QH_ENDPT1_I(x) (((x) & 0x1) << 7) /* Inactivate on Next Transaction */
  191. #define QH_ENDPT1_DEVADDR(x) (((x) & 0x7f) << 0) /* Device Address */
  192. uint32_t qh_endpt2;
  193. #define QH_ENDPT2_MULT(x) (((x) & 0x3) << 30) /* High-Bandwidth Pipe Multiplier */
  194. #define QH_ENDPT2_PORTNUM(x) (((x) & 0x7f) << 23) /* Port Number */
  195. #define QH_ENDPT2_HUBADDR(x) (((x) & 0x7f) << 16) /* Hub Address */
  196. #define QH_ENDPT2_UFCMASK(x) (((x) & 0xff) << 8) /* Split Completion Mask */
  197. #define QH_ENDPT2_UFSMASK(x) (((x) & 0xff) << 0) /* Interrupt Schedule Mask */
  198. uint32_t qh_curtd;
  199. struct qTD qh_overlay;
  200. /*
  201. * Add dummy fill value to make the size of this struct
  202. * aligned to 32 bytes
  203. */
  204. union {
  205. uint32_t fill[4];
  206. void *buffer;
  207. };
  208. };
  209. /* Tweak flags for EHCI, used to control operation */
  210. enum {
  211. /* don't use or_configflag in init */
  212. EHCI_TWEAK_NO_INIT_CF = 1 << 0,
  213. };
  214. struct ehci_ctrl;
  215. struct ehci_ops {
  216. void (*set_usb_mode)(struct ehci_ctrl *ctrl);
  217. int (*get_port_speed)(struct ehci_ctrl *ctrl, uint32_t reg);
  218. void (*powerup_fixup)(struct ehci_ctrl *ctrl, uint32_t *status_reg,
  219. uint32_t *reg);
  220. uint32_t *(*get_portsc_register)(struct ehci_ctrl *ctrl, int port);
  221. int (*init_after_reset)(struct ehci_ctrl *ctrl);
  222. };
  223. struct ehci_ctrl {
  224. enum usb_init_type init;
  225. struct ehci_hccr *hccr; /* R/O registers, not need for volatile */
  226. struct ehci_hcor *hcor;
  227. int rootdev;
  228. uint16_t portreset;
  229. struct QH qh_list __aligned(USB_DMA_MINALIGN);
  230. struct QH periodic_queue __aligned(USB_DMA_MINALIGN);
  231. uint32_t *periodic_list;
  232. int periodic_schedules;
  233. int ntds;
  234. struct ehci_ops ops;
  235. void *priv; /* client's private data */
  236. };
  237. /**
  238. * ehci_set_controller_info() - Set up private data for the controller
  239. *
  240. * This function can be called in ehci_hcd_init() to tell the EHCI layer
  241. * about the controller's private data pointer. Then in the above functions
  242. * this can be accessed given the struct ehci_ctrl pointer. Also special
  243. * EHCI operation methods can be provided if required
  244. *
  245. * @index: Controller number to set
  246. * @priv: Controller pointer
  247. * @ops: Controller operations, or NULL to use default
  248. */
  249. void ehci_set_controller_priv(int index, void *priv,
  250. const struct ehci_ops *ops);
  251. /**
  252. * ehci_get_controller_priv() - Get controller private data
  253. *
  254. * @index Controller number to get
  255. * @return controller pointer for this index
  256. */
  257. void *ehci_get_controller_priv(int index);
  258. /* Low level init functions */
  259. int ehci_hcd_init(int index, enum usb_init_type init,
  260. struct ehci_hccr **hccr, struct ehci_hcor **hcor);
  261. int ehci_hcd_stop(int index);
  262. int ehci_register(struct udevice *dev, struct ehci_hccr *hccr,
  263. struct ehci_hcor *hcor, const struct ehci_ops *ops,
  264. uint tweaks, enum usb_init_type init);
  265. int ehci_deregister(struct udevice *dev);
  266. extern struct dm_usb_ops ehci_usb_ops;
  267. #endif /* USB_EHCI_H */