1 | /** @file
|
---|
2 | * PCI - The PCI Controller And Devices.
|
---|
3 | */
|
---|
4 |
|
---|
5 | /*
|
---|
6 | * Copyright (C) 2006 InnoTek Systemberatung 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 | * If you received this file as part of a commercial VirtualBox
|
---|
17 | * distribution, then only the terms of your commercial VirtualBox
|
---|
18 | * license agreement apply instead of the previous paragraph.
|
---|
19 | */
|
---|
20 |
|
---|
21 |
|
---|
22 | #ifndef __VBox_pci_h__
|
---|
23 | #define __VBox_pci_h__
|
---|
24 |
|
---|
25 |
|
---|
26 | #include <VBox/cdefs.h>
|
---|
27 | #include <VBox/types.h>
|
---|
28 |
|
---|
29 | /** @defgroup grp_pci PCI - The PCI Controller.
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 |
|
---|
33 | /** Pointer to a PCI device. */
|
---|
34 | typedef struct PCIDevice *PPCIDEVICE;
|
---|
35 |
|
---|
36 |
|
---|
37 | /**
|
---|
38 | * PCI configuration word 4 (command) and word 6 (status).
|
---|
39 | */
|
---|
40 | typedef enum PCICONFIGCOMMAND
|
---|
41 | {
|
---|
42 | /** Supports/uses memory accesses. */
|
---|
43 | PCI_COMMAND_IOACCESS = 0x0001,
|
---|
44 | PCI_COMMAND_MEMACCESS = 0x0002,
|
---|
45 | PCI_COMMAND_BUSMASTER = 0x0004
|
---|
46 | } PCICONFIGCOMMAND;
|
---|
47 |
|
---|
48 |
|
---|
49 | /**
|
---|
50 | * PCI Address space specification.
|
---|
51 | * This is used when registering a I/O region.
|
---|
52 | */
|
---|
53 | typedef enum PCIADDRESSSPACE
|
---|
54 | {
|
---|
55 | /** Memory. */
|
---|
56 | PCI_ADDRESS_SPACE_MEM = 0x00,
|
---|
57 | /** I/O space. */
|
---|
58 | PCI_ADDRESS_SPACE_IO = 0x01,
|
---|
59 | /** Prefetch memory. */
|
---|
60 | PCI_ADDRESS_SPACE_MEM_PREFETCH = 0x08
|
---|
61 | } PCIADDRESSSPACE;
|
---|
62 |
|
---|
63 |
|
---|
64 | /**
|
---|
65 | * Callback function for mapping an PCI I/O region.
|
---|
66 | *
|
---|
67 | * @return VBox status code.
|
---|
68 | * @param pPciDev Pointer to PCI device. Use pPciDev->pDevIns to get the device instance.
|
---|
69 | * @param iRegion The region number.
|
---|
70 | * @param GCPhysAddress Physical address of the region. If iType is PCI_ADDRESS_SPACE_IO, this is an
|
---|
71 | * I/O port, else it's a physical address.
|
---|
72 | * This address is *NOT* relative to pci_mem_base like earlier!
|
---|
73 | * @param enmType One of the PCI_ADDRESS_SPACE_* values.
|
---|
74 | */
|
---|
75 | typedef DECLCALLBACK(int) FNPCIIOREGIONMAP(PPCIDEVICE pPciDev, /*unsigned*/ int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType);
|
---|
76 | /** Pointer to a FNPCIIOREGIONMAP() function. */
|
---|
77 | typedef FNPCIIOREGIONMAP *PFNPCIIOREGIONMAP;
|
---|
78 |
|
---|
79 | /** Fixed I/O region number for ROM. */
|
---|
80 | #define PCI_ROM_SLOT 6
|
---|
81 | /** Max number of I/O regions. */
|
---|
82 | #define PCI_NUM_REGIONS 7
|
---|
83 |
|
---|
84 | /*
|
---|
85 | * Hack to include the PCIDEVICEINT structure at the right place
|
---|
86 | * to avoid duplications of FNPCIIOREGIONMAP and PCI_NUM_REGIONS.
|
---|
87 | */
|
---|
88 | #ifdef PCI_INCLUDE_PRIVATE
|
---|
89 | # include "PCIInternal.h"
|
---|
90 | #endif
|
---|
91 |
|
---|
92 | /**
|
---|
93 | * PCI Device structure.
|
---|
94 | */
|
---|
95 | typedef struct PCIDevice
|
---|
96 | {
|
---|
97 | /** PCI config space. */
|
---|
98 | uint8_t config[256];
|
---|
99 |
|
---|
100 | /** Internal data. */
|
---|
101 | union
|
---|
102 | {
|
---|
103 | #ifdef __PCIDEVICEINT_DECLARED__
|
---|
104 | PCIDEVICEINT s;
|
---|
105 | #endif
|
---|
106 | char padding[224];
|
---|
107 | } Int;
|
---|
108 |
|
---|
109 | /** Read only data.
|
---|
110 | * @{
|
---|
111 | */
|
---|
112 | /** PCI device number on the pci bus. */
|
---|
113 | int32_t devfn;
|
---|
114 | uint32_t Alignment0; /**< Alignment. */
|
---|
115 | /** Device name. */
|
---|
116 | R3PTRTYPE(const char *) name;
|
---|
117 | /** Pointer to the device instance which registered the device. */
|
---|
118 | PPDMDEVINSR3 pDevIns;
|
---|
119 | /** @} */
|
---|
120 | } PCIDEVICE;
|
---|
121 |
|
---|
122 |
|
---|
123 | /** @} */
|
---|
124 |
|
---|
125 | #endif
|
---|