xhci.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. #pragma once
  2. #include <driver/usb/usb.h>
  3. #include <driver/pci/pci.h>
  4. #include <driver/pci/msi.h>
  5. #define XHCI_MAX_HOST_CONTROLLERS 4 // 本驱动程序最大支持4个xhci root hub controller
  6. #define XHCI_MAX_ROOT_HUB_PORTS 128 // 本驱动程序最大支持127个root hub 端口(第0个保留)
  7. // ========== irq BEGIN ===========
  8. /**
  9. * @brief 每个xhci控制器的中断向量号
  10. *
  11. */
  12. const uint8_t xhci_controller_irq_num[XHCI_MAX_HOST_CONTROLLERS] = {157, 158, 159, 160};
  13. /**
  14. * @brief 通过irq号寻找对应的主机控制器id
  15. *
  16. */
  17. #define xhci_find_hcid_by_irq_num(irq_num) ({ \
  18. int retval = -1; \
  19. for (int i = 0; i < XHCI_MAX_HOST_CONTROLLERS; ++i) \
  20. if (xhci_controller_irq_num[i] == irq_num) \
  21. retval = i; \
  22. retval; \
  23. })
  24. struct xhci_hc_irq_install_info_t
  25. {
  26. int processor; // 中断目标处理器
  27. int8_t edge_trigger; // 是否边缘触发
  28. int8_t assert; // 是否高电平触发
  29. };
  30. // ========== irq END ===========
  31. // ======== Capability Register Set BEGIN ============
  32. // xhci Capability Registers offset
  33. #define XHCI_CAPS_CAPLENGTH 0x00 // Cap 寄存器组的长度
  34. #define XHCI_CAPS_RESERVED 0x01
  35. #define XHCI_CAPS_HCIVERSION 0x02 // 接口版本号
  36. #define XHCI_CAPS_HCSPARAMS1 0x04
  37. #define XHCI_CAPS_HCSPARAMS2 0x08
  38. #define XHCI_CAPS_HCSPARAMS3 0x0c
  39. #define XHCI_CAPS_HCCPARAMS1 0x10 // capability params 1
  40. #define XHCI_CAPS_DBOFF 0x14 // Doorbell offset
  41. #define XHCI_CAPS_RTSOFF 0x18 // Runtime register space offset
  42. #define XHCI_CAPS_HCCPARAMS2 0x1c // capability params 2
  43. struct xhci_caps_HCSPARAMS1_reg_t
  44. {
  45. unsigned max_slots : 8; // 最大插槽数
  46. unsigned max_intrs : 11; // 最大中断数
  47. unsigned reserved : 5;
  48. unsigned max_ports : 8; // 最大端口数
  49. } __attribute__((packed));
  50. struct xhci_caps_HCSPARAMS2_reg_t
  51. {
  52. unsigned ist : 4; // 同步调度阈值
  53. unsigned ERST_Max : 4; // Event Ring Segment Table: Max segs
  54. unsigned Reserved : 13;
  55. unsigned max_scratchpad_buf_HI5 : 5; // 草稿行buffer地址(高5bit)
  56. unsigned spr : 1; // scratchpad restore
  57. unsigned max_scratchpad_buf_LO5 : 5; // 草稿行buffer地址(低5bit)
  58. } __attribute__((packed));
  59. struct xhci_caps_HCSPARAMS3_reg_t
  60. {
  61. uint8_t u1_device_exit_latency; // 0~10ms
  62. uint8_t Reserved;
  63. uint16_t u2_device_exit_latency; // 0~2047ms
  64. } __attribute__((packed));
  65. struct xhci_caps_HCCPARAMS1_reg_t
  66. {
  67. unsigned int ac64 : 1; // 64-bit addressing capability
  68. unsigned int bnc : 1; // bw negotiation capability
  69. unsigned int csz : 1; // context size
  70. unsigned int ppc : 1; // 端口电源控制
  71. unsigned int pind : 1; // port indicators
  72. unsigned int lhrc : 1; // Light HC reset capability
  73. unsigned int ltc : 1; // latency tolerance messaging capability
  74. unsigned int nss : 1; // no secondary SID support
  75. unsigned int pae : 1; // parse all event data
  76. unsigned int spc : 1; // Stopped - Short packet capability
  77. unsigned int sec : 1; // Stopped EDTLA capability
  78. unsigned int cfc : 1; // Continuous Frame ID capability
  79. unsigned int MaxPSASize : 4; // Max Primary Stream Array Size
  80. uint16_t xECP; // xhci extended capabilities pointer
  81. } __attribute__((packed));
  82. struct xhci_caps_HCCPARAMS2_reg_t
  83. {
  84. unsigned u3c : 1; // U3 Entry Capability
  85. unsigned cmc : 1; // ConfigEP command Max exit latency too large
  86. unsigned fsc : 1; // Force Save Context Capability
  87. unsigned ctc : 1; // Compliance Transition Capability
  88. unsigned lec : 1; // large ESIT payload capability
  89. unsigned cic : 1; // configuration information capability
  90. unsigned Reserved : 26;
  91. } __attribute__((packed));
  92. // ======== Capability Register Set END ============
  93. // ======== Operational Register Set BEGIN =========
  94. // xhci operational registers offset
  95. #define XHCI_OPS_USBCMD 0x00 // USB Command
  96. #define XHCI_OPS_USBSTS 0x04 // USB status
  97. #define XHCI_OPS_PAGESIZE 0x08 // Page size
  98. #define XHCI_OPS_DNCTRL 0x14 // Device notification control
  99. #define XHCI_OPS_CRCR 0x18 // Command ring control
  100. #define XHCI_OPS_DCBAAP 0x30 // Device context base address array pointer
  101. #define XHCI_OPS_CONFIG 0x38 // configuire
  102. #define XHCI_OPS_PRS 0x400 // Port register sets
  103. struct xhci_ops_usbcmd_reg_t
  104. {
  105. unsigned rs : 1; // Run/Stop
  106. unsigned hcrst : 1; // host controller reset
  107. unsigned inte : 1; // Interrupt enable
  108. unsigned hsee : 1; // Host system error enable
  109. unsigned rsvd_psvd1 : 3; // Reserved and preserved
  110. unsigned lhcrst : 1; // light host controller reset
  111. unsigned css : 1; // controller save state
  112. unsigned crs : 1; // controller restore state
  113. unsigned ewe : 1; // enable wrap event
  114. unsigned ue3s : 1; // enable U3 MFINDEX Stop
  115. unsigned spe : 1; // stopped short packet enable
  116. unsigned cme : 1; // CEM Enable
  117. unsigned rsvd_psvd2 : 18; // Reserved and preserved
  118. } __attribute__((packed));
  119. struct xhci_ops_usbsts_reg_t
  120. {
  121. unsigned HCHalted : 1;
  122. unsigned rsvd_psvd1 : 1; // Reserved and preserved
  123. unsigned hse : 1; // Host system error
  124. unsigned eint : 1; // event interrupt
  125. unsigned pcd : 1; // Port change detected
  126. unsigned rsvd_zerod : 3; // Reserved and Zero'd
  127. unsigned sss : 1; // Save State Status
  128. unsigned rss : 1; // restore state status
  129. unsigned sre : 1; // save/restore error
  130. unsigned cnr : 1; // controller not ready
  131. unsigned hce : 1; // host controller error
  132. unsigned rsvd_psvd2 : 19; // Reserved and Preserved
  133. } __attribute__((packed));
  134. struct xhci_ops_pagesize_reg_t
  135. {
  136. uint16_t page_size; // The actual pagesize is ((this field)<<12)
  137. uint16_t reserved;
  138. } __attribute__((packed));
  139. struct xhci_ops_dnctrl_reg_t
  140. {
  141. uint16_t value;
  142. uint16_t reserved;
  143. } __attribute__((packed));
  144. struct xhci_ops_config_reg_t
  145. {
  146. uint8_t MaxSlotsEn; // Max slots enabled
  147. unsigned u3e : 1; // U3 Entry Enable
  148. unsigned cie : 1; // Configuration information enable
  149. unsigned rsvd_psvd : 22; // Reserved and Preserved
  150. } __attribute__((packed));
  151. // ======== Operational Register Set END =========
  152. // ========= TRB begin ===========
  153. // TRB的Transfer Type可用值定义
  154. #define XHCI_TRB_TRT_NO_DATA 0
  155. #define XHCI_TRB_TRT_RESERVED 1
  156. #define XHCI_TRB_TRT_OUT_DATA 2
  157. #define XHCI_TRB_TRT_IN_DATA 3
  158. #define XHCI_CMND_RING_TRBS 128 // TRB num of command ring, not more than 4096
  159. #define XHCI_TRBS_PER_RING 256
  160. #define XHCI_TRB_CYCLE_OFF 0
  161. #define XHCI_TRB_CYCLE_ON 1
  162. /**
  163. * @brief xhci通用TRB结构
  164. *
  165. */
  166. struct xhci_TRB_t
  167. {
  168. uint64_t param; // 参数
  169. uint32_t status;
  170. uint32_t command;
  171. } __attribute__((packed));
  172. struct xhci_TRB_normal_t
  173. {
  174. uint64_t buf_paddr; // 数据缓冲区物理地址
  175. unsigned transfer_length : 17; // 传输数据长度
  176. unsigned TD_size : 5; // 传输描述符中剩余的数据包的数量
  177. unsigned intr_target : 10; // 中断目标 [0:MaxIntrs-1]
  178. unsigned cycle : 1; // used to mark the enqueue pointer of transfer ring
  179. unsigned ent : 1; // evaluate next TRB before updating the endpoint's state
  180. unsigned isp : 1; // Interrupt on short packet bit
  181. unsigned ns : 1; // No snoop
  182. unsigned chain : 1; // The chain bit is used to tell the controller that this
  183. // TRB is associated with the next TRB in the TD
  184. unsigned ioc : 1; // 完成时发起中断
  185. unsigned idt : 1; // Immediate Data
  186. unsigned resv : 2; // Reserved and zero'd
  187. unsigned bei : 1; // Block event interrupt
  188. unsigned TRB_type : 6; // TRB类型
  189. uint16_t Reserved; // 保留且置为0
  190. } __attribute__((packed));
  191. struct xhci_TRB_setup_state_t
  192. {
  193. uint8_t bmRequestType;
  194. uint8_t bRequest;
  195. uint16_t wValue;
  196. uint16_t wIndex;
  197. uint16_t wLength;
  198. unsigned transfer_legth : 17;
  199. unsigned resv1 : 5; // Reserved and zero'd
  200. unsigned intr_target : 10;
  201. unsigned cycle : 1;
  202. unsigned resv2 : 4; // Reserved and zero'd
  203. unsigned ioc : 1;
  204. unsigned idt : 1;
  205. unsigned resv3 : 3; // Reserved and zero'd
  206. unsigned TRB_type : 6;
  207. unsigned trt : 2; // Transfer type
  208. unsigned resv4 : 14; // Reserved and zero'd
  209. } __attribute__((packed));
  210. struct xhci_TRB_data_stage_t
  211. {
  212. uint64_t buf_paddr; // 数据缓冲区物理地址
  213. unsigned transfer_length : 17; // 传输数据长度
  214. unsigned TD_size : 5; // 传输描述符中剩余的数据包的数量
  215. unsigned intr_target : 10; // 中断目标 [0:MaxIntrs-1]
  216. unsigned cycle : 1; // used to mark the enqueue pointer of transfer ring
  217. unsigned ent : 1; // evaluate next TRB before updating the endpoint's state
  218. unsigned isp : 1; // Interrupt on short packet bit
  219. unsigned ns : 1; // No snoop
  220. unsigned chain : 1; // The chain bit is used to tell the controller that this
  221. // TRB is associated with the next TRB in the TD
  222. unsigned ioc : 1; // 完成时发起中断
  223. unsigned idt : 1; // Immediate Data
  224. unsigned resv : 3; // Reserved and zero'd
  225. unsigned TRB_type : 6; // TRB类型
  226. unsigned dir : 1; // 0 -> out packet
  227. // 1 -> in packet
  228. unsigned Reserved : 15; // 保留且置为0
  229. } __attribute__((packed));
  230. struct xhci_TRB_status_stage_t
  231. {
  232. uint64_t resv1; // Reserved and zero'd
  233. unsigned resv2 : 22; // Reserved and zero'd
  234. unsigned intr_target : 10; // 中断目标 [0:MaxIntrs-1]
  235. unsigned cycle : 1; // used to mark the enqueue pointer of transfer ring
  236. unsigned ent : 1; // evaluate next TRB before updating the endpoint's state
  237. unsigned resv3 : 2; // Reserved and zero'd
  238. unsigned chain : 1; // The chain bit is used to tell the controller that this
  239. // TRB is associated with the next TRB in the TD
  240. unsigned ioc : 1; // 完成时发起中断
  241. unsigned resv4 : 4; // Reserved and zero'd
  242. unsigned TRB_type : 6; // TRB类型
  243. unsigned dir : 1; // 0 -> out packet
  244. // 1 -> in packet
  245. unsigned Reserved : 15; // 保留且置为0
  246. } __attribute__((packed));
  247. struct xhci_TRB_cmd_complete_t
  248. {
  249. uint64_t cmd_trb_pointer_paddr; // 指向生成当前Event TRB的TRB的物理地址(16bytes对齐)
  250. unsigned resv1 : 24; // Reserved and zero'd
  251. uint8_t code; // Completion code
  252. unsigned cycle : 1; // cycle bit
  253. unsigned resv2 : 9; // Reserved and zero'd
  254. unsigned TRB_type : 6; // TRB类型
  255. uint8_t VF_ID;
  256. uint8_t slot_id; // the id of the slot associated with the
  257. // command that generated the event
  258. } __attribute__((packed));
  259. // ========= TRB end ===========
  260. // ======== Runtime Register Set Begin =========
  261. #define XHCI_RT_IR0 0x20 // 中断寄存器组0距离runtime Register set起始位置的偏移量
  262. #define XHCI_IR_SIZE 32 // 中断寄存器组大小
  263. // 中断寄存器组内的偏移量
  264. #define XHCI_IR_MAN 0x00 // Interrupter Management Register
  265. #define XHCI_IR_MOD 0x04 // Interrupter Moderation
  266. #define XHCI_IR_TABLE_SIZE 0x08 // Event Ring Segment Table size (count of segments)
  267. #define XHCI_IR_TABLE_ADDR 0x10 // Event Ring Segment Table Base Address
  268. #define XHCI_IR_DEQUEUE 0x18 // Event Ring Dequeue Pointer
  269. // MAN寄存器内的bit的含义
  270. #define XHCI_IR_IMR_PENDING (1 << 0) // Interrupt pending bit in Management Register
  271. #define XHCI_IR_IMR_ENABLE (1 << 1) // Interrupt enable bit in Management Register
  272. struct xhci_intr_moderation_t
  273. {
  274. uint16_t interval; // 产生一个中断的时间,是interval*250ns (wait before next interrupt)
  275. uint16_t counter;
  276. } __attribute__((packed));
  277. // ======== Runtime Register Set END =========
  278. // ======= xhci Extended Capabilities List BEGIN========
  279. // ID 部分的含义定义
  280. #define XHCI_XECP_ID_RESERVED 0
  281. #define XHCI_XECP_ID_LEGACY 1 // USB Legacy Support
  282. #define XHCI_XECP_ID_PROTOCOL 2 // Supported protocol
  283. #define XHCI_XECP_ID_POWER 3 // Extended power management
  284. #define XHCI_XECP_ID_IOVIRT 4 // I/0 virtualization
  285. #define XHCI_XECP_ID_MSG 5 // Message interrupt
  286. #define XHCI_XECP_ID_LOCAL_MEM 6 // local memory
  287. #define XHCI_XECP_ID_DEBUG 10 // USB Debug capability
  288. #define XHCI_XECP_ID_EXTMSG 17 // Extended message interrupt
  289. #define XHCI_XECP_LEGACY_TIMEOUT 10 // 设置legacy状态的等待时间
  290. #define XHCI_XECP_LEGACY_BIOS_OWNED (1 << 16) // 当bios控制着该hc时,该位被置位
  291. #define XHCI_XECP_LEGACY_OS_OWNED (1 << 24) // 当系统控制着该hc时,该位被置位
  292. #define XHCI_XECP_LEGACY_OWNING_MASK (XHCI_XECP_LEGACY_BIOS_OWNED | XHCI_XECP_LEGACY_OS_OWNED)
  293. // ======= xhci Extended Capabilities List END ========
  294. // ======= Port status and control registers BEGIN ====
  295. #define XHCI_PORT_PORTSC 0x00 // Port status and control
  296. #define XHCI_PORT_PORTPMSC 0x04 // Port power management status and control
  297. #define XHCI_PORT_PORTLI 0x08 // Port Link info
  298. #define XHCI_PORT_PORTHLMPC 0x0c // Port hardware LPM control (version 1.10 only
  299. #define XHCI_PORTUSB_CHANGE_BITS ((1 << 17) | (1 << 18) | (1 << 20) | (1 << 21) | (1 << 22))
  300. // ======= Port status and control registers END ====
  301. // 端口信息标志位
  302. #define XHCI_PROTOCOL_USB2 0
  303. #define XHCI_PROTOCOL_USB3 1
  304. #define XHCI_PROTOCOL_INFO (1 << 0) // 1->usb3, 0->usb2
  305. #define XHCI_PROTOCOL_HSO (1 << 1) // 1-> usb2 high speed only
  306. #define XHCI_PROTOCOL_HAS_PAIR (1 << 2) // 当前位被置位,意味着当前端口具有一个与之配对的端口
  307. #define XHCI_PROTOCOL_ACTIVE (1 << 3) // 当前端口是这个配对中,被激活的端口
  308. /**
  309. * @brief xhci端口信息
  310. *
  311. */
  312. struct xhci_port_info_t
  313. {
  314. uint8_t flags; // port flags
  315. uint8_t paired_port_num; // 与当前端口所配对的另一个端口(相同物理接口的不同速度的port)
  316. uint8_t offset; // offset of this port within this protocal
  317. uint8_t reserved;
  318. } __attribute__((packed));
  319. struct xhci_host_controller_t
  320. {
  321. struct pci_device_structure_general_device_t *pci_dev_hdr; // 指向pci header结构体的指针
  322. int controller_id; // 操作系统给controller的编号
  323. uint64_t vbase; // 虚拟地址base(bar0映射到的虚拟地址)
  324. uint64_t vbase_op; // Operational registers 起始虚拟地址
  325. uint32_t rts_offset; // Runtime Register Space offset
  326. uint32_t db_offset; // Doorbell offset
  327. uint32_t ext_caps_off; // 扩展能力寄存器偏移量
  328. uint8_t context_size; // 上下文大小
  329. uint16_t port_num; // 总的端口数量
  330. uint8_t port_num_u2; // usb 2.0端口数量
  331. uint8_t port_num_u3; // usb 3端口数量
  332. uint32_t page_size; // page size
  333. uint64_t dcbaap_vaddr; // Device Context Base Address Array Pointer的虚拟地址
  334. uint64_t cmd_ring_vaddr; // command ring的虚拟地址
  335. uint64_t event_ring_vaddr; // event ring的虚拟地址
  336. uint64_t event_ring_table_vaddr; // event ring table的虚拟地址
  337. uint8_t cmd_trb_cycle; // 当前command ring cycle
  338. uint8_t current_event_ring_cycle; // 当前event ring cycle
  339. struct xhci_port_info_t ports[XHCI_MAX_ROOT_HUB_PORTS]; // 指向端口信息数组的指针(由于端口offset是从1开始的,因此该数组第0项为空)
  340. };
  341. /**
  342. * @brief 初始化xhci控制器
  343. *
  344. * @param header 指定控制器的pci device头部
  345. */
  346. void xhci_init(struct pci_device_structure_general_device_t *header);