2 #include "kvm/ioport.h"
8 #define PCI_MAX_DEVICES 256
9 #define PCI_BAR_OFFSET(b) (offsetof(struct pci_device_header, bar[b]))
11 static struct pci_device_header
*pci_devices
[PCI_MAX_DEVICES
];
13 static struct pci_config_address pci_config_address
;
15 /* This is within our PCI gap - in an unused area */
16 static u32 io_space_blocks
= KVM_32BIT_GAP_START
+ 0x1000000;
18 u32
pci_get_io_space_block(u32 size
)
20 u32 block
= io_space_blocks
;
21 io_space_blocks
+= size
;
26 static void *pci_config_address_ptr(u16 port
)
31 offset
= port
- PCI_CONFIG_ADDRESS
;
32 base
= &pci_config_address
;
37 static bool pci_config_address_out(struct ioport
*ioport
, struct kvm
*kvm
, u16 port
, void *data
, int size
)
39 void *p
= pci_config_address_ptr(port
);
41 memcpy(p
, data
, size
);
46 static bool pci_config_address_in(struct ioport
*ioport
, struct kvm
*kvm
, u16 port
, void *data
, int size
)
48 void *p
= pci_config_address_ptr(port
);
50 memcpy(data
, p
, size
);
55 static struct ioport_operations pci_config_address_ops
= {
56 .io_in
= pci_config_address_in
,
57 .io_out
= pci_config_address_out
,
60 static bool pci_device_exists(u8 bus_number
, u8 device_number
, u8 function_number
)
62 struct pci_device_header
*dev
;
64 if (pci_config_address
.bus_number
!= bus_number
)
67 if (pci_config_address
.function_number
!= function_number
)
70 if (device_number
>= PCI_MAX_DEVICES
)
73 dev
= pci_devices
[device_number
];
78 static bool pci_config_data_out(struct ioport
*ioport
, struct kvm
*kvm
, u16 port
, void *data
, int size
)
84 * If someone accesses PCI configuration space offsets that are not
85 * aligned to 4 bytes, it uses ioports to signify that.
87 start
= port
- PCI_CONFIG_DATA
;
89 dev_num
= pci_config_address
.device_number
;
91 if (pci_device_exists(0, dev_num
, 0)) {
94 offset
= start
+ (pci_config_address
.register_number
<< 2);
95 if (offset
< sizeof(struct pci_device_header
)) {
96 void *p
= pci_devices
[dev_num
];
97 u8 bar
= (offset
- PCI_BAR_OFFSET(0)) / (sizeof(u32
));
100 if (bar
< 6 && pci_devices
[dev_num
]->bar_size
[bar
])
101 sz
= pci_devices
[dev_num
]->bar_size
[bar
];
104 * If the kernel masks the BAR it would expect to find the
105 * size of the BAR there next time it reads from it.
106 * When the kernel got the size it would write the address
109 if (ioport__read32(p
+ offset
)) {
110 /* See if kernel tries to mask one of the BARs */
111 if ((offset
>= PCI_BAR_OFFSET(0)) &&
112 (offset
<= PCI_BAR_OFFSET(6)) &&
113 (ioport__read32(data
) == 0xFFFFFFFF))
114 memcpy(p
+ offset
, &sz
, sizeof(sz
));
116 memcpy(p
+ offset
, data
, size
);
124 static bool pci_config_data_in(struct ioport
*ioport
, struct kvm
*kvm
, u16 port
, void *data
, int size
)
130 * If someone accesses PCI configuration space offsets that are not
131 * aligned to 4 bytes, it uses ioports to signify that.
133 start
= port
- PCI_CONFIG_DATA
;
135 dev_num
= pci_config_address
.device_number
;
137 if (pci_device_exists(0, dev_num
, 0)) {
138 unsigned long offset
;
140 offset
= start
+ (pci_config_address
.register_number
<< 2);
141 if (offset
< sizeof(struct pci_device_header
)) {
142 void *p
= pci_devices
[dev_num
];
144 memcpy(data
, p
+ offset
, size
);
146 memset(data
, 0x00, size
);
148 memset(data
, 0xff, size
);
153 static struct ioport_operations pci_config_data_ops
= {
154 .io_in
= pci_config_data_in
,
155 .io_out
= pci_config_data_out
,
158 void pci__register(struct pci_device_header
*dev
, u8 dev_num
)
160 assert(dev_num
< PCI_MAX_DEVICES
);
162 pci_devices
[dev_num
] = dev
;
167 ioport__register(PCI_CONFIG_DATA
+ 0, &pci_config_data_ops
, 4, NULL
);
168 ioport__register(PCI_CONFIG_ADDRESS
+ 0, &pci_config_address_ops
, 4, NULL
);