pci.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. #pragma once
  2. #include "../../common/glib.h"
  3. #include "stdint.h"
  4. #define PORT_PCI_CONFIG_ADDRESS 0xcf8
  5. #define PORT_PCI_CONFIG_DATA 0xcfc
  6. #define E_DEVICE_INVALID -1
  7. #define E_WRONG_HEADER_TYPE -2
  8. // pci设备结构信息的链表
  9. struct List * pci_device_structure_list = NULL;
  10. /**
  11. * @brief 初始化pci驱动
  12. *
  13. */
  14. void pci_init();
  15. // pci设备结构的通用标题字段
  16. struct pci_device_structure_header_t
  17. {
  18. struct List list;
  19. uint16_t Vendor_ID; // 供应商ID 0xffff是一个无效值,在读取访问不存在的设备的配置空间寄存器时返回
  20. uint16_t Device_ID; // 设备ID,标志特定设备
  21. uint16_t Command; // 提供对设备生成和响应pci周期的能力的控制 向该寄存器写入0时,设备与pci总线断开除配置空间访问以外的所有连接
  22. uint16_t Status; // 用于记录pci总线相关时间的状态信息寄存器
  23. uint8_t RevisionID; // 修订ID,指定特定设备的修订标志符
  24. uint8_t ProgIF; // 编程接口字节,一个只读寄存器,指定设备具有的寄存器级别的编程接口(如果有的话)
  25. uint8_t SubClass; // 子类。指定设备执行的特定功能的只读寄存器
  26. uint8_t Class_code; // 类代码,一个只读寄存器,指定设备执行的功能类型
  27. uint8_t CacheLineSize; // 缓存线大小:以 32 位为单位指定系统缓存线大小。设备可以限制它可以支持的缓存线大小的数量,如果不支持的值写入该字段,设备将表现得好像写入了 0 值
  28. uint8_t LatencyTimer; // 延迟计时器:以 PCI 总线时钟为单位指定延迟计时器。
  29. uint8_t HeaderType; // 标头类型 a value of 0x0 specifies a general device, a value of 0x1 specifies a PCI-to-PCI bridge, and a value of 0x2 specifies a CardBus bridge. If bit 7 of this register is set, the device has multiple functions; otherwise, it is a single function device.
  30. uint8_t BIST; // Represents that status and allows control of a devices BIST (built-in self test).
  31. // Here is the layout of the BIST register:
  32. // | bit7 | bit6 | Bits 5-4 | Bits 3-0 |
  33. // | BIST Capable | Start BIST | Reserved | Completion Code |
  34. // for more details, please visit https://wiki.osdev.org/PCI
  35. } __attribute__((packed));
  36. /**
  37. * @brief 表头类型为0x0的pci设备结构
  38. *
  39. */
  40. struct pci_device_structure_general_device_t
  41. {
  42. struct pci_device_structure_header_t *header;
  43. uint32_t BAR0;
  44. uint32_t BAR1;
  45. uint32_t BAR2;
  46. uint32_t BAR3;
  47. uint32_t BAR4;
  48. uint32_t BAR5;
  49. uint32_t Cardbus_CIS_Pointer; // 指向卡信息结构,供在 CardBus 和 PCI 之间共享芯片的设备使用。
  50. uint16_t Subsystem_Vendor_ID;
  51. uint16_t Subsystem_ID;
  52. uint32_t Expansion_ROM_base_address;
  53. uint8_t Capabilities_Pointer;
  54. uint8_t reserved0;
  55. uint16_t reserved1;
  56. uint32_t reserved2;
  57. uint8_t Interrupt_Line; // 指定设备的中断引脚连接到系统中断控制器的哪个输入,并由任何使用中断引脚的设备实现。对于 x86 架构,此寄存器对应于 PIC IRQ 编号 0-15(而不是 I/O APIC IRQ 编号),并且值0xFF定义为无连接。
  58. uint8_t Interrupt_PIN; // 指定设备使用的中断引脚。其中值为0x1INTA#、0x2INTB#、0x3INTC#、0x4INTD#,0x0表示设备不使用中断引脚。
  59. uint8_t Min_Grant; // 一个只读寄存器,用于指定设备所需的突发周期长度(以 1/4 微秒为单位)(假设时钟速率为 33 MHz)
  60. uint8_t Max_Latency; // 一个只读寄存器,指定设备需要多长时间访问一次 PCI 总线(以 1/4 微秒为单位)。
  61. } __attribute__((packed));
  62. /**
  63. * @brief 表头类型为0x1的pci设备结构(PCI to PCI Bridge)
  64. *
  65. */
  66. struct pci_device_structure_pci_to_pci_bridge_t
  67. {
  68. struct pci_device_structure_header_t *header;
  69. uint32_t BAR0;
  70. uint32_t BAR1;
  71. uint8_t Primary_Bus_Number;
  72. uint8_t Secondary_Bus_Number;
  73. uint8_t Subordinate_Bus_Number;
  74. uint8_t Secondary_Latency_Timer;
  75. uint8_t io_base;
  76. uint8_t io_limit;
  77. uint16_t Secondary_Status;
  78. uint16_t Memory_Base;
  79. uint16_t Memory_Limit;
  80. uint16_t Prefetchable_Memory_Base;
  81. uint16_t Prefetchable_Memory_Limit;
  82. uint32_t Prefetchable_Base_Upper_32_Bits;
  83. uint32_t Prefetchable_Limit_Upper_32_Bits;
  84. uint16_t io_Base_Upper_16_Bits;
  85. uint16_t io_Limit_Upper_16_Bits;
  86. uint8_t Capability_Pointer;
  87. uint8_t reserved0;
  88. uint16_t reserved1;
  89. uint32_t Expansion_ROM_base_address;
  90. uint8_t Interrupt_Line;
  91. uint8_t Interrupt_PIN;
  92. uint16_t Bridge_Control;
  93. } __attribute__((packed));
  94. /**
  95. * @brief 表头类型为0x2的pci设备结构(PCI to CardBus Bridge)
  96. *
  97. */
  98. struct pci_device_structure_pci_to_cardbus_bridge_t
  99. {
  100. struct pci_device_structure_header_t *header;
  101. uint32_t CardBus_Socket_ExCa_base_address;
  102. uint8_t Offset_of_capabilities_list;
  103. uint8_t Reserved;
  104. uint16_t Secondary_status;
  105. uint8_t PCI_bus_number;
  106. uint8_t CardBus_bus_number;
  107. uint8_t Subordinate_bus_number;
  108. uint8_t CardBus_latency_timer;
  109. uint32_t Memory_Base_Address0;
  110. uint32_t Memory_Limit0;
  111. uint32_t Memory_Base_Address1;
  112. uint32_t Memory_Limit1;
  113. uint32_t IO_Base_Address0;
  114. uint32_t IO_Limit0;
  115. uint32_t IO_Base_Address1;
  116. uint32_t IO_Limit1;
  117. uint8_t Interrupt_Line;
  118. uint8_t Interrupt_PIN;
  119. uint16_t Bridge_Control;
  120. uint16_t Subsystem_Device_ID;
  121. uint16_t Subsystem_Vendor_ID;
  122. uint32_t PC_Card_legacy_mode_base_address_16_bit;
  123. } __attribute__((packed));
  124. /**
  125. * @brief 从pci配置空间读取信息
  126. *
  127. * @param bus 总线号
  128. * @param slot 插槽号
  129. * @param func 功能号
  130. * @param offset 寄存器偏移量
  131. * @return uint 寄存器值
  132. */
  133. uint pci_read_config(uchar bus, uchar slot, uchar func, uchar offset);
  134. /**
  135. * @brief 读取pci设备标头
  136. *
  137. * @param type 标头类型
  138. * @param bus 总线号
  139. * @param slot 插槽号
  140. * @param func 功能号
  141. * @return 返回的header的指针
  142. */
  143. void* pci_read_header(int *type, uchar bus, uchar slot, uchar func, bool add_to_list);
  144. /**
  145. * @brief 扫描所有pci总线上的所有设备
  146. *
  147. */
  148. void pci_checkAllBuses();