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