pciIomapLib.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:9k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* pciIomapLib.h - PCI bus constants header file */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01i,27oct01,dat  Adding warnings about obsolete drivers
  7. 01h,15oct98,dat  SPR 9098, added dllLib.h
  8. 01g,12jan97,hdn  changed member/variable name "vender" to "vendor".
  9. 01f,12jan97,hdn  changed member/variable name "class" to "classCode".
  10. 01e,03dec96,hdn  added header-type bits definitions.
  11. 01d,13nov96,hdn  added command-bit and address-mask definitions.
  12. 01c,06aug96,hdn  added a structure PCI_INT_NODE.
  13. 01b,28mar96,hdn  removed BIOS dependent stuff.
  14. 01a,23nov94,bcs  written.
  15. */
  16. #ifndef __INCpciIomapLibh
  17. #define __INCpciIomapLibh
  18. #include "dllLib.h"
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /*
  23. WARNING: The pciIomapLib driver is no longer supported. Please switch
  24. all BSPs to use the pciConfigLib driver instead.
  25. */
  26. #warning "h/drv/pci/pciIomapLib.h is being obsoleted, please use pciConfigLib"
  27. /* PCI Configuration mechanisms */
  28. #define PCI_MECHANISM_1 1 /* current PC-AT hardware mechanism */
  29. #define PCI_MECHANISM_2 2 /* deprecated */
  30. /* Configuration I/O addresses for mechanism 1 */
  31. #define PCI_CONFIG_ADDR 0x0cf8 /* write 32 bits to set address */
  32. #define PCI_CONFIG_DATA 0x0cfc /* 8, 16, or 32 bit accesses */
  33. /* Configuration I/O addresses for mechanism 2 */
  34. #define PCI_CONFIG_CSE 0x0cf8 /* CSE register */
  35. #define PCI_CONFIG_FORWARD 0x0cfa /* forward register */
  36. #define PCI_CONFIG_BASE 0xc000 /* base register */
  37. /* number of IRQs mapped on PCI interrupt */
  38. #define PCI_IRQ_LINES 16
  39. /* PCI command bits */
  40. #define PCI_CMD_IO_ENABLE 0x0001 /* IO access enable */
  41. #define PCI_CMD_MEM_ENABLE 0x0002 /* memory access enable */
  42. #define PCI_CMD_MASTER_ENABLE 0x0004 /* bus master enable */
  43. #define PCI_CMD_MON_ENABLE 0x0008 /* monitor special cycles enable */
  44. #define PCI_CMD_WI_ENABLE 0x0010 /* write and invalidate enable */
  45. #define PCI_CMD_SNOOP_ENABLE 0x0020 /* palette snoop enable */
  46. #define PCI_CMD_PERR_ENABLE 0x0040 /* parity error enable */
  47. #define PCI_CMD_WC_ENABLE 0x0080 /* wait cycle enable */
  48. #define PCI_CMD_SERR_ENABLE 0x0100 /* system error enable */
  49. #define PCI_CMD_FBTB_ENABLE 0x0200 /* fast back to back enable */
  50. /* PCI base address mask bits */
  51. #define PCI_MEMBASE_MASK ~0xf /* mask for memory base address */
  52. #define PCI_IOBASE_MASK ~0x3 /* mask for IO base address */
  53. #define PCI_BASE_IO 0x1 /* IO space indicator */
  54. #define PCI_BASE_BELOW_1M 0x2 /* memory locate below 1MB */
  55. #define PCI_BASE_IN_64BITS 0x4 /* memory locate anywhere in 64 bits */
  56. #define PCI_BASE_PREFETCH 0x8 /* memory prefetchable */
  57. /* PCI header type bits */
  58. #define PCI_HEADER_TYPE_MASK 0x7f /* mask for header type */
  59. #define PCI_HEADER_PCI_PCI 0x01 /* PCI to PCI bridge */
  60. #define PCI_HEADER_MULTI_FUNC 0x80 /* multi function device */
  61. /* Standard device configuration register offsets */
  62. /* Note that only modulo-4 addresses are written to the address register */
  63. #define PCI_CFG_VENDOR_ID 0x00
  64. #define PCI_CFG_DEVICE_ID 0x02
  65. #define PCI_CFG_COMMAND 0x04
  66. #define PCI_CFG_STATUS 0x06
  67. #define PCI_CFG_REVISION 0x08
  68. #define PCI_CFG_PROGRAMMING_IF 0x09
  69. #define PCI_CFG_SUBCLASS 0x0a
  70. #define PCI_CFG_CLASS 0x0b
  71. #define PCI_CFG_CACHE_LINE_SIZE 0x0c
  72. #define PCI_CFG_LATENCY_TIMER 0x0d
  73. #define PCI_CFG_HEADER_TYPE 0x0e
  74. #define PCI_CFG_BIST 0x0f
  75. #define PCI_CFG_BASE_ADDRESS_0 0x10
  76. #define PCI_CFG_BASE_ADDRESS_1 0x14
  77. #define PCI_CFG_BASE_ADDRESS_2 0x18
  78. #define PCI_CFG_BASE_ADDRESS_3 0x1c
  79. #define PCI_CFG_BASE_ADDRESS_4 0x20
  80. #define PCI_CFG_BASE_ADDRESS_5 0x24
  81. #define PCI_CFG_CIS 0x28
  82. #define PCI_CFG_SUB_VENDER_ID 0x2c
  83. #define PCI_CFG_SUB_SYSTEM_ID 0x2e
  84. #define PCI_CFG_EXPANSION_ROM 0x30
  85. #define PCI_CFG_RESERVED_0 0x34
  86. #define PCI_CFG_RESERVED_1 0x38
  87. #define PCI_CFG_DEV_INT_LINE 0x3c
  88. #define PCI_CFG_DEV_INT_PIN 0x3d
  89. #define PCI_CFG_MIN_GRANT 0x3e
  90. #define PCI_CFG_MAX_LATENCY 0x3f
  91. /* PCI-to-PCI bridge configuration register offsets */
  92. /* Note that only modulo-4 addresses are written to the address register */
  93. #define PCI_CFG_PRIMARY_BUS 0x18
  94. #define PCI_CFG_SECONDARY_BUS 0x19
  95. #define PCI_CFG_SUBORDINATE_BUS 0x1a
  96. #define PCI_CFG_SEC_LATENCY 0x1b
  97. #define PCI_CFG_IO_BASE 0x1c
  98. #define PCI_CFG_IO_LIMIT 0x1d
  99. #define PCI_CFG_SEC_STATUS 0x1e
  100. #define PCI_CFG_MEM_BASE 0x20
  101. #define PCI_CFG_MEM_LIMIT 0x22
  102. #define PCI_CFG_PRE_MEM_BASE 0x24
  103. #define PCI_CFG_PRE_MEM_LIMIT 0x26
  104. #define PCI_CFG_PRE_MEM_BASE_U 0x28
  105. #define PCI_CFG_PRE_MEM_LIMIT_U 0x2c
  106. #define PCI_CFG_IO_BASE_U 0x30
  107. #define PCI_CFG_IO_LIMIT_U 0x32
  108. #define PCI_CFG_ROM_BASE 0x38
  109. #define PCI_CFG_BRG_INT_LINE 0x3c
  110. #define PCI_CFG_BRG_INT_PIN 0x3d
  111. #define PCI_CFG_BRIDGE_CONTROL 0x3e
  112. #ifndef _ASMLANGUAGE
  113. /* structure for the device & bridge header */
  114. typedef struct pciHeaderDevice
  115.     {
  116.     short vendorId; /* vendor ID */
  117.     short deviceId; /* device ID */
  118.     short command; /* command register */
  119.     short status; /* status register */
  120.     char revisionId; /* revision ID */
  121.     char classCode; /* class code */
  122.     char subClass; /* sub class code */
  123.     char progIf; /* programming interface */
  124.     char cacheLine; /* cache line */
  125.     char latency; /* latency time */
  126.     char headerType; /* header type */
  127.     char bist; /* BIST */
  128.     int base0; /* base address 0 */
  129.     int base1; /* base address 1 */
  130.     int base2; /* base address 2 */
  131.     int base3; /* base address 3 */
  132.     int base4; /* base address 4 */
  133.     int base5; /* base address 5 */
  134.     int cis; /* cardBus CIS pointer */
  135.     short subVendorId; /* sub system vendor ID */
  136.     short subSystemId; /* sub system ID */
  137.     int romBase; /* expansion ROM base address */
  138.     int reserved0; /* reserved */
  139.     int reserved1; /* reserved */
  140.     char intLine; /* interrupt line */
  141.     char intPin; /* interrupt pin */
  142.     char minGrant; /* min Grant */
  143.     char maxLatency; /* max Latency */
  144.     } PCI_HEADER_DEVICE;
  145. typedef struct pciHeaderBridge
  146.     {
  147.     short vendorId; /* vendor ID */
  148.     short deviceId; /* device ID */
  149.     short command; /* command register */
  150.     short status; /* status register */
  151.     char revisionId; /* revision ID */
  152.     char classCode; /* class code */
  153.     char subClass; /* sub class code */
  154.     char progIf; /* programming interface */
  155.     char cacheLine; /* cache line */
  156.     char latency; /* latency time */
  157.     char headerType; /* header type */
  158.     char bist; /* BIST */
  159.     int base0; /* base address 0 */
  160.     int base1; /* base address 1 */
  161.     char priBus; /* primary bus number */
  162.     char secBus; /* secondary bus number */
  163.     char subBus; /* subordinate bus number */
  164.     char secLatency; /* secondary latency timer */
  165.     char ioBase; /* IO base */
  166.     char ioLimit; /* IO limit */
  167.     short secStatus; /* secondary status */
  168.     short memBase; /* memory base */
  169.     short memLimit; /* memory limit */
  170.     short preBase; /* prefetchable memory base */
  171.     short preLimit; /* prefetchable memory limit */
  172.     int preBaseUpper; /* prefetchable memory base upper 32 bits */
  173.     int preLimitUpper; /* prefetchable memory base upper 32 bits */
  174.     short ioBaseUpper; /* IO base upper 16 bits */
  175.     short ioLimitUpper; /* IO limit upper 16 bits */
  176.     int reserved; /* reserved */
  177.     int romBase; /* expansion ROM base address */
  178.     char intLine; /* interrupt line */
  179.     char intPin; /* interrupt pin */
  180.     short control; /* bridge control */
  181.     } PCI_HEADER_BRIDGE;
  182. typedef struct pciIntRtn
  183.     {
  184.     DL_NODE node; /* double link list */
  185.     VOIDFUNCPTR routine; /* interrupt handler */
  186.     int parameter; /* parameter of the handler */
  187.     } PCI_INT_RTN;
  188. #if defined(__STDC__) || defined(__cplusplus)
  189. STATUS pciIomapLibInit (int mechanism, int addr0, int addr1, int addr2);
  190. STATUS pciFindDevice (int vendorId, int deviceId, int index,
  191.  int * pBusNo, int * pDeviceNo, int * pFuncNo);
  192. STATUS pciFindClass (int classCode, int index,
  193.  int * pBusNo, int * pDeviceNo, int * pFuncNo);
  194. STATUS pciConfigInByte (int busNo, int deviceNo, int funcNo, int address,
  195.  char * pData);
  196. STATUS pciConfigInWord (int busNo, int deviceNo, int funcNo, int address,
  197.  short * pData);
  198. STATUS pciConfigInLong (int busNo, int deviceNo, int funcNo, int address,
  199.  int * pData);
  200. STATUS pciConfigOutByte (int busNo, int deviceNo, int funcNo, int address,
  201.  char data);
  202. STATUS pciConfigOutWord (int busNo, int deviceNo, int funcNo, int address,
  203.  short data);
  204. STATUS pciConfigOutLong (int busNo, int deviceNo, int funcNo, int address,
  205.  int data);
  206. STATUS pciSpecialCycle (int busNo, int message);
  207. STATUS pciDeviceShow (int busNo);
  208. STATUS pciHeaderShow (int busNo, int deviceNo, int funcNo);
  209. STATUS pciFindDeviceShow(int vendorId, int deviceId, int index);
  210. STATUS pciFindClassShow (int classCode, int index);
  211. STATUS pciIntConnect (VOIDFUNCPTR *vector, VOIDFUNCPTR routine,
  212.  int parameter);
  213. STATUS pciIntDisconnect (VOIDFUNCPTR *vector, VOIDFUNCPTR routine);
  214. #else /* __STDC__ */
  215. STATUS pciIomapLibInit ();
  216. STATUS pciFindDevice ();
  217. STATUS pciFindClass ();
  218. STATUS pciConfigInByte ();
  219. STATUS pciConfigInWord ();
  220. STATUS pciConfigInLong ();
  221. STATUS pciConfigOutByte ();
  222. STATUS pciConfigOutWord ();
  223. STATUS pciConfigOutLong ();
  224. STATUS pciSpecialCycle ();
  225. STATUS pciDeviceShow ();
  226. STATUS pciHeaderShow ();
  227. STATUS pciFindDeviceShow();
  228. STATUS pciFindClassShow ();
  229. STATUS pciIntConnect ();
  230. STATUS pciIntDisconnect ();
  231. #endif /* __STDC__ */
  232. #endif /* _ASMLANGUAGE */
  233. #ifdef __cplusplus
  234. }
  235. #endif
  236. #endif /* __INCpciIomapLibh */