1 | /** @file
|
---|
2 | * PCI - The PCI Controller And Devices.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006-2007 innotek GmbH
|
---|
7 | *
|
---|
8 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
9 | * available from http://www.virtualbox.org. This file is free software;
|
---|
10 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
11 | * General Public License as published by the Free Software Foundation,
|
---|
12 | * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
|
---|
13 | * distribution. VirtualBox OSE is distributed in the hope that it will
|
---|
14 | * be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
15 | */
|
---|
16 |
|
---|
17 | #ifndef ___VBox_pci_h
|
---|
18 | #define ___VBox_pci_h
|
---|
19 |
|
---|
20 | #include <VBox/cdefs.h>
|
---|
21 | #include <VBox/types.h>
|
---|
22 |
|
---|
23 | /** @defgroup grp_pci PCI - The PCI Controller.
|
---|
24 | * @{
|
---|
25 | */
|
---|
26 |
|
---|
27 | /** Pointer to a PCI device. */
|
---|
28 | typedef struct PCIDevice *PPCIDEVICE;
|
---|
29 |
|
---|
30 |
|
---|
31 | /**
|
---|
32 | * PCI configuration word 4 (command) and word 6 (status).
|
---|
33 | */
|
---|
34 | typedef enum PCICONFIGCOMMAND
|
---|
35 | {
|
---|
36 | /** Supports/uses memory accesses. */
|
---|
37 | PCI_COMMAND_IOACCESS = 0x0001,
|
---|
38 | PCI_COMMAND_MEMACCESS = 0x0002,
|
---|
39 | PCI_COMMAND_BUSMASTER = 0x0004
|
---|
40 | } PCICONFIGCOMMAND;
|
---|
41 |
|
---|
42 |
|
---|
43 | /**
|
---|
44 | * PCI Address space specification.
|
---|
45 | * This is used when registering a I/O region.
|
---|
46 | */
|
---|
47 | typedef enum PCIADDRESSSPACE
|
---|
48 | {
|
---|
49 | /** Memory. */
|
---|
50 | PCI_ADDRESS_SPACE_MEM = 0x00,
|
---|
51 | /** I/O space. */
|
---|
52 | PCI_ADDRESS_SPACE_IO = 0x01,
|
---|
53 | /** Prefetch memory. */
|
---|
54 | PCI_ADDRESS_SPACE_MEM_PREFETCH = 0x08
|
---|
55 | } PCIADDRESSSPACE;
|
---|
56 |
|
---|
57 |
|
---|
58 | /**
|
---|
59 | * Callback function for mapping an PCI I/O region.
|
---|
60 | *
|
---|
61 | * @return VBox status code.
|
---|
62 | * @param pPciDev Pointer to PCI device. Use pPciDev->pDevIns to get the device instance.
|
---|
63 | * @param iRegion The region number.
|
---|
64 | * @param GCPhysAddress Physical address of the region. If iType is PCI_ADDRESS_SPACE_IO, this is an
|
---|
65 | * I/O port, else it's a physical address.
|
---|
66 | * This address is *NOT* relative to pci_mem_base like earlier!
|
---|
67 | * @param enmType One of the PCI_ADDRESS_SPACE_* values.
|
---|
68 | */
|
---|
69 | typedef DECLCALLBACK(int) FNPCIIOREGIONMAP(PPCIDEVICE pPciDev, /*unsigned*/ int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType);
|
---|
70 | /** Pointer to a FNPCIIOREGIONMAP() function. */
|
---|
71 | typedef FNPCIIOREGIONMAP *PFNPCIIOREGIONMAP;
|
---|
72 |
|
---|
73 |
|
---|
74 | /** @name PCI Configuration Space Registers
|
---|
75 | * @{ */
|
---|
76 | #define VBOX_PCI_VENDOR_ID 0x00 /**< 16-bit RO */
|
---|
77 | #define VBOX_PCI_DEVICE_ID 0x02 /**< 16-bit RO */
|
---|
78 | #define VBOX_PCI_COMMAND 0x04 /**< 16-bit RW */
|
---|
79 | #define VBOX_PCI_STATUS 0x06 /**< 16-bit RW */
|
---|
80 | #define VBOX_PCI_REVISION_ID 0x08 /**< 8-bit RO */
|
---|
81 | #define VBOX_PCI_CLASS_PROG 0x09 /**< 8-bit RO */
|
---|
82 | #define VBOX_PCI_CLASS_DEVICE 0x0a /**< 8-bit ?? */
|
---|
83 | #define VBOX_PCI_CACHE_LINE_SIZE 0x0c /**< 8-bit ?? */
|
---|
84 | #define VBOX_PCI_LATENCY_TIMER 0x0d /**< 8-bit ?? */
|
---|
85 | #define VBOX_PCI_HEADER_TYPE 0x0e /**< 8-bit ?? */
|
---|
86 | #define VBOX_PCI_BIST 0x0f /**< 8-bit ?? */
|
---|
87 | #define VBOX_PCI_BASE_ADDRESS_0 0x10 /**< 32-bit RW */
|
---|
88 | #define VBOX_PCI_BASE_ADDRESS_1 0x14 /**< 32-bit RW */
|
---|
89 | #define VBOX_PCI_BASE_ADDRESS_2 0x18 /**< 32-bit RW */
|
---|
90 | #define VBOX_PCI_PRIMARY_BUS 0x18 /**< 8-bit ?? - bridge - primary bus number. */
|
---|
91 | #define VBOX_PCI_SECONDARY_BUS 0x19 /**< 8-bit ?? - bridge - secondary bus number. */
|
---|
92 | #define VBOX_PCI_SUBORDINATE_BUS 0x1a /**< 8-bit ?? - bridge - highest subordinate bus number. (behind the bridge) */
|
---|
93 | #define VBOX_PCI_SEC_LATENCY_TIMER 0x1b /**< 8-bit ?? - bridge - secondary latency timer. */
|
---|
94 | #define VBOX_PCI_BASE_ADDRESS_3 0x1c /**< 32-bit RW */
|
---|
95 | #define VBOX_PCI_IO_BASE 0x1c /**< 8-bit ?? - bridge - I/O range base. */
|
---|
96 | #define VBOX_PCI_IO_LIMIT 0x1d /**< 8-bit ?? - bridge - I/O range limit. */
|
---|
97 | #define VBOX_PCI_SEC_STATUS 0x1e /**< 16-bit ?? - bridge - secondary status register. */
|
---|
98 | #define VBOX_PCI_BASE_ADDRESS_4 0x20 /**< 32-bit RW */
|
---|
99 | #define VBOX_PCI_MEMORY_BASE 0x20 /**< 16-bit ?? - bridge - memory range base. */
|
---|
100 | #define VBOX_PCI_MEMORY_LIMIT 0x22 /**< 16-bit ?? - bridge - memory range limit. */
|
---|
101 | #define VBOX_PCI_BASE_ADDRESS_5 0x24 /**< 32-bit RW */
|
---|
102 | #define VBOX_PCI_PREF_MEMORY_BASE 0x24 /**< 16-bit ?? - bridge - Prefetchable memory range base. */
|
---|
103 | #define VBOX_PCI_PREF_MEMORY_LIMIT 0x26 /**< 16-bit ?? - bridge - Prefetchable memory range limit. */
|
---|
104 | #define VBOX_PCI_CARDBUS_CIS 0x28 /**< 32-bit ?? */
|
---|
105 | #define VBOX_PCI_PREF_BASE_UPPER32 0x28 /**< 32-bit ?? - bridge - Prefetchable memory range high base.*/
|
---|
106 | #define VBOX_PCI_PREF_LIMIT_UPPER32 0x2c /**< 32-bit ?? - bridge - Prefetchable memory range high limit. */
|
---|
107 | #define VBOX_PCI_SUBSYSTEM_VENDOR_ID 0x2c /**< 16-bit ?? */
|
---|
108 | #define VBOX_PCI_SUBSYSTEM_ID 0x2e /**< 16-bit ?? */
|
---|
109 | #define VBOX_PCI_ROM_ADDRESS 0x30 /**< 32-bit ?? */
|
---|
110 | #define VBOX_PCI_IO_BASE_UPPER16 0x30 /**< 16-bit ?? - bridge - memory range high base. */
|
---|
111 | #define VBOX_PCI_IO_LIMIT_UPPER16 0x32 /**< 16-bit ?? - bridge - memory range high limit. */
|
---|
112 | #define VBOX_PCI_CAPABILITY_LIST 0x34 /**< 8-bit? ?? */
|
---|
113 | #define VBOX_PCI_ROM_ADDRESS_BR 0x38 /**< 32-bit ?? - bridge */
|
---|
114 | #define VBOX_PCI_INTERRUPT_LINE 0x3c /**< 8-bit RW - Interrupt line. */
|
---|
115 | #define VBOX_PCI_INTERRUPT_PIN 0x3d /**< 8-bit RO - Interrupt pin. */
|
---|
116 | #define VBOX_PCI_MIN_GNT 0x3e /**< 8-bit ?? */
|
---|
117 | #define VBOX_PCI_BRIDGE_CONTROL 0x3e /**< 8-bit? ?? - bridge */
|
---|
118 | #define VBOX_PCI_MAX_LAT 0x3f /**< 8-bit ?? */
|
---|
119 | /** @} */
|
---|
120 |
|
---|
121 |
|
---|
122 | /**
|
---|
123 | * Callback function for reading from the PCI configuration space.
|
---|
124 | *
|
---|
125 | * @returns The register value.
|
---|
126 | * @param pPciDev Pointer to PCI device. Use pPciDev->pDevIns to get the device instance.
|
---|
127 | * @param Address The configuration space register address. [0..255]
|
---|
128 | * @param cb The register size. [1,2,4]
|
---|
129 | */
|
---|
130 | typedef DECLCALLBACK(uint32_t) FNPCICONFIGREAD(PPCIDEVICE pPciDev, uint32_t Address, unsigned cb);
|
---|
131 | /** Pointer to a FNPCICONFIGREAD() function. */
|
---|
132 | typedef FNPCICONFIGREAD *PFNPCICONFIGREAD;
|
---|
133 | /** Pointer to a PFNPCICONFIGREAD. */
|
---|
134 | typedef PFNPCICONFIGREAD *PPFNPCICONFIGREAD;
|
---|
135 |
|
---|
136 | /**
|
---|
137 | * Callback function for writing to the PCI configuration space.
|
---|
138 | *
|
---|
139 | * @param pPciDev Pointer to PCI device. Use pPciDev->pDevIns to get the device instance.
|
---|
140 | * @param Address The configuration space register address. [0..255]
|
---|
141 | * @param u32Value The value that's being written. The number of bits actually used from
|
---|
142 | * this value is determined by the cb parameter.
|
---|
143 | * @param cb The register size. [1,2,4]
|
---|
144 | */
|
---|
145 | typedef DECLCALLBACK(void) FNPCICONFIGWRITE(PPCIDEVICE pPciDev, uint32_t Address, uint32_t u32Value, unsigned cb);
|
---|
146 | /** Pointer to a FNPCICONFIGWRITE() function. */
|
---|
147 | typedef FNPCICONFIGWRITE *PFNPCICONFIGWRITE;
|
---|
148 | /** Pointer to a PFNPCICONFIGWRITE. */
|
---|
149 | typedef PFNPCICONFIGWRITE *PPFNPCICONFIGWRITE;
|
---|
150 |
|
---|
151 | /** Fixed I/O region number for ROM. */
|
---|
152 | #define PCI_ROM_SLOT 6
|
---|
153 | /** Max number of I/O regions. */
|
---|
154 | #define PCI_NUM_REGIONS 7
|
---|
155 |
|
---|
156 | /*
|
---|
157 | * Hack to include the PCIDEVICEINT structure at the right place
|
---|
158 | * to avoid duplications of FNPCIIOREGIONMAP and PCI_NUM_REGIONS.
|
---|
159 | */
|
---|
160 | #ifdef PCI_INCLUDE_PRIVATE
|
---|
161 | # include "PCIInternal.h"
|
---|
162 | #endif
|
---|
163 |
|
---|
164 | /**
|
---|
165 | * PCI Device structure.
|
---|
166 | */
|
---|
167 | typedef struct PCIDevice
|
---|
168 | {
|
---|
169 | /** PCI config space. */
|
---|
170 | uint8_t config[256];
|
---|
171 |
|
---|
172 | /** Internal data. */
|
---|
173 | union
|
---|
174 | {
|
---|
175 | #ifdef __PCIDEVICEINT_DECLARED__
|
---|
176 | PCIDEVICEINT s;
|
---|
177 | #endif
|
---|
178 | char padding[224];
|
---|
179 | } Int;
|
---|
180 |
|
---|
181 | /** Read only data.
|
---|
182 | * @{
|
---|
183 | */
|
---|
184 | /** PCI device number on the pci bus. */
|
---|
185 | int32_t devfn;
|
---|
186 | uint32_t Alignment0; /**< Alignment. */
|
---|
187 | /** Device name. */
|
---|
188 | R3PTRTYPE(const char *) name;
|
---|
189 | /** Pointer to the device instance which registered the device. */
|
---|
190 | PPDMDEVINSR3 pDevIns;
|
---|
191 | /** @} */
|
---|
192 | } PCIDEVICE;
|
---|
193 |
|
---|
194 |
|
---|
195 | /**
|
---|
196 | * Sets the vendor id config register.
|
---|
197 | * @param pPciDev The PCI device.
|
---|
198 | * @param u16VendorId The vendor id.
|
---|
199 | */
|
---|
200 | DECLINLINE(void) PCIDevSetVendorId(PPCIDEVICE pPciDev, uint16_t u16VendorId)
|
---|
201 | {
|
---|
202 | u16VendorId = RT_H2LE_U16(u16VendorId);
|
---|
203 | pPciDev->config[VBOX_PCI_VENDOR_ID] = u16VendorId & 0xff;
|
---|
204 | pPciDev->config[VBOX_PCI_VENDOR_ID + 1] = u16VendorId >> 8;
|
---|
205 | }
|
---|
206 |
|
---|
207 | /**
|
---|
208 | * Gets the vendor id config register.
|
---|
209 | * @returns the vendor id.
|
---|
210 | * @param pPciDev The PCI device.
|
---|
211 | */
|
---|
212 | DECLINLINE(uint16_t) PCIDevGetVendorId(PPCIDEVICE pPciDev)
|
---|
213 | {
|
---|
214 | return RT_LE2H_U16(RT_MAKE_U16(pPciDev->config[VBOX_PCI_VENDOR_ID], pPciDev->config[VBOX_PCI_VENDOR_ID + 1]));
|
---|
215 | }
|
---|
216 |
|
---|
217 | /**
|
---|
218 | * Sets the device id config register.
|
---|
219 | * @param pPciDev The PCI device.
|
---|
220 | * @param u16DeviceId The device id.
|
---|
221 | */
|
---|
222 | DECLINLINE(void) PCIDevSetDeviceId(PPCIDEVICE pPciDev, uint16_t u16DeviceId)
|
---|
223 | {
|
---|
224 | u16DeviceId = RT_H2LE_U16(u16DeviceId);
|
---|
225 | pPciDev->config[VBOX_PCI_DEVICE_ID] = u16DeviceId & 0xff;
|
---|
226 | pPciDev->config[VBOX_PCI_DEVICE_ID + 1] = u16DeviceId >> 8;
|
---|
227 | }
|
---|
228 |
|
---|
229 | /**
|
---|
230 | * Gets the device id config register.
|
---|
231 | * @returns the device id.
|
---|
232 | * @param pPciDev The PCI device.
|
---|
233 | */
|
---|
234 | DECLINLINE(uint16_t) PCIDevGetDeviceId(PPCIDEVICE pPciDev)
|
---|
235 | {
|
---|
236 | return RT_LE2H_U16(RT_MAKE_U16(pPciDev->config[VBOX_PCI_DEVICE_ID], pPciDev->config[VBOX_PCI_DEVICE_ID + 1]));
|
---|
237 | }
|
---|
238 |
|
---|
239 | /**
|
---|
240 | * Gets the sub-system vendor id config register.
|
---|
241 | * @returns the sub-system vendor id.
|
---|
242 | * @param pPciDev The PCI device.
|
---|
243 | */
|
---|
244 | DECLINLINE(uint16_t) PCIDevGetSubSystemVendorId(PPCIDEVICE pPciDev)
|
---|
245 | {
|
---|
246 | return RT_LE2H_U16(RT_MAKE_U16(pPciDev->config[VBOX_PCI_SUBSYSTEM_VENDOR_ID], pPciDev->config[VBOX_PCI_SUBSYSTEM_VENDOR_ID + 1]));
|
---|
247 | }
|
---|
248 |
|
---|
249 | /**
|
---|
250 | * Gets the sub-system id config register.
|
---|
251 | * @returns the sub-system id.
|
---|
252 | * @param pPciDev The PCI device.
|
---|
253 | */
|
---|
254 | DECLINLINE(uint16_t) PCIDevGetSubSystemId(PPCIDEVICE pPciDev)
|
---|
255 | {
|
---|
256 | return RT_LE2H_U16(RT_MAKE_U16(pPciDev->config[VBOX_PCI_SUBSYSTEM_ID], pPciDev->config[VBOX_PCI_SUBSYSTEM_ID + 1]));
|
---|
257 | }
|
---|
258 |
|
---|
259 |
|
---|
260 | /** @} */
|
---|
261 |
|
---|
262 | #endif
|
---|