vl: smp_parse: cleanups
[qemu/ar7.git] / tests / libqos / pci-pc.c
blob1ae2d3780f36f5ecfb92e4ca43eac042507112a2
1 /*
2 * libqos PCI bindings for PC
4 * Copyright IBM, Corp. 2012-2013
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "libqtest.h"
15 #include "libqos/pci-pc.h"
17 #include "hw/pci/pci_regs.h"
19 #include "qemu-common.h"
20 #include "qemu/host-utils.h"
23 #define ACPI_PCIHP_ADDR 0xae00
24 #define PCI_EJ_BASE 0x0008
26 typedef struct QPCIBusPC
28 QPCIBus bus;
30 uint32_t pci_hole_start;
31 uint32_t pci_hole_size;
32 uint32_t pci_hole_alloc;
34 uint16_t pci_iohole_start;
35 uint16_t pci_iohole_size;
36 uint16_t pci_iohole_alloc;
37 } QPCIBusPC;
39 static uint8_t qpci_pc_io_readb(QPCIBus *bus, void *addr)
41 uintptr_t port = (uintptr_t)addr;
42 uint8_t value;
44 if (port < 0x10000) {
45 value = inb(port);
46 } else {
47 value = readb(port);
50 return value;
53 static uint16_t qpci_pc_io_readw(QPCIBus *bus, void *addr)
55 uintptr_t port = (uintptr_t)addr;
56 uint16_t value;
58 if (port < 0x10000) {
59 value = inw(port);
60 } else {
61 value = readw(port);
64 return value;
67 static uint32_t qpci_pc_io_readl(QPCIBus *bus, void *addr)
69 uintptr_t port = (uintptr_t)addr;
70 uint32_t value;
72 if (port < 0x10000) {
73 value = inl(port);
74 } else {
75 value = readl(port);
78 return value;
81 static void qpci_pc_io_writeb(QPCIBus *bus, void *addr, uint8_t value)
83 uintptr_t port = (uintptr_t)addr;
85 if (port < 0x10000) {
86 outb(port, value);
87 } else {
88 writeb(port, value);
92 static void qpci_pc_io_writew(QPCIBus *bus, void *addr, uint16_t value)
94 uintptr_t port = (uintptr_t)addr;
96 if (port < 0x10000) {
97 outw(port, value);
98 } else {
99 writew(port, value);
103 static void qpci_pc_io_writel(QPCIBus *bus, void *addr, uint32_t value)
105 uintptr_t port = (uintptr_t)addr;
107 if (port < 0x10000) {
108 outl(port, value);
109 } else {
110 writel(port, value);
114 static uint8_t qpci_pc_config_readb(QPCIBus *bus, int devfn, uint8_t offset)
116 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
117 return inb(0xcfc);
120 static uint16_t qpci_pc_config_readw(QPCIBus *bus, int devfn, uint8_t offset)
122 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
123 return inw(0xcfc);
126 static uint32_t qpci_pc_config_readl(QPCIBus *bus, int devfn, uint8_t offset)
128 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
129 return inl(0xcfc);
132 static void qpci_pc_config_writeb(QPCIBus *bus, int devfn, uint8_t offset, uint8_t value)
134 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
135 outb(0xcfc, value);
138 static void qpci_pc_config_writew(QPCIBus *bus, int devfn, uint8_t offset, uint16_t value)
140 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
141 outw(0xcfc, value);
144 static void qpci_pc_config_writel(QPCIBus *bus, int devfn, uint8_t offset, uint32_t value)
146 outl(0xcf8, (1U << 31) | (devfn << 8) | offset);
147 outl(0xcfc, value);
150 static void *qpci_pc_iomap(QPCIBus *bus, QPCIDevice *dev, int barno, uint64_t *sizeptr)
152 QPCIBusPC *s = container_of(bus, QPCIBusPC, bus);
153 static const int bar_reg_map[] = {
154 PCI_BASE_ADDRESS_0, PCI_BASE_ADDRESS_1, PCI_BASE_ADDRESS_2,
155 PCI_BASE_ADDRESS_3, PCI_BASE_ADDRESS_4, PCI_BASE_ADDRESS_5,
157 int bar_reg;
158 uint32_t addr;
159 uint64_t size;
160 uint32_t io_type;
162 g_assert(barno >= 0 && barno <= 5);
163 bar_reg = bar_reg_map[barno];
165 qpci_config_writel(dev, bar_reg, 0xFFFFFFFF);
166 addr = qpci_config_readl(dev, bar_reg);
168 io_type = addr & PCI_BASE_ADDRESS_SPACE;
169 if (io_type == PCI_BASE_ADDRESS_SPACE_IO) {
170 addr &= PCI_BASE_ADDRESS_IO_MASK;
171 } else {
172 addr &= PCI_BASE_ADDRESS_MEM_MASK;
175 size = (1ULL << ctzl(addr));
176 if (size == 0) {
177 return NULL;
179 if (sizeptr) {
180 *sizeptr = size;
183 if (io_type == PCI_BASE_ADDRESS_SPACE_IO) {
184 uint16_t loc;
186 g_assert(QEMU_ALIGN_UP(s->pci_iohole_alloc, size) + size
187 <= s->pci_iohole_size);
188 s->pci_iohole_alloc = QEMU_ALIGN_UP(s->pci_iohole_alloc, size);
189 loc = s->pci_iohole_start + s->pci_iohole_alloc;
190 s->pci_iohole_alloc += size;
192 qpci_config_writel(dev, bar_reg, loc | PCI_BASE_ADDRESS_SPACE_IO);
194 return (void *)(intptr_t)loc;
195 } else {
196 uint64_t loc;
198 g_assert(QEMU_ALIGN_UP(s->pci_hole_alloc, size) + size
199 <= s->pci_hole_size);
200 s->pci_hole_alloc = QEMU_ALIGN_UP(s->pci_hole_alloc, size);
201 loc = s->pci_hole_start + s->pci_hole_alloc;
202 s->pci_hole_alloc += size;
204 qpci_config_writel(dev, bar_reg, loc);
206 return (void *)(intptr_t)loc;
210 static void qpci_pc_iounmap(QPCIBus *bus, void *data)
212 /* FIXME */
215 QPCIBus *qpci_init_pc(void)
217 QPCIBusPC *ret;
219 ret = g_malloc(sizeof(*ret));
221 ret->bus.io_readb = qpci_pc_io_readb;
222 ret->bus.io_readw = qpci_pc_io_readw;
223 ret->bus.io_readl = qpci_pc_io_readl;
225 ret->bus.io_writeb = qpci_pc_io_writeb;
226 ret->bus.io_writew = qpci_pc_io_writew;
227 ret->bus.io_writel = qpci_pc_io_writel;
229 ret->bus.config_readb = qpci_pc_config_readb;
230 ret->bus.config_readw = qpci_pc_config_readw;
231 ret->bus.config_readl = qpci_pc_config_readl;
233 ret->bus.config_writeb = qpci_pc_config_writeb;
234 ret->bus.config_writew = qpci_pc_config_writew;
235 ret->bus.config_writel = qpci_pc_config_writel;
237 ret->bus.iomap = qpci_pc_iomap;
238 ret->bus.iounmap = qpci_pc_iounmap;
240 ret->pci_hole_start = 0xE0000000;
241 ret->pci_hole_size = 0x20000000;
242 ret->pci_hole_alloc = 0;
244 ret->pci_iohole_start = 0xc000;
245 ret->pci_iohole_size = 0x4000;
246 ret->pci_iohole_alloc = 0;
248 return &ret->bus;
251 void qpci_free_pc(QPCIBus *bus)
253 QPCIBusPC *s = container_of(bus, QPCIBusPC, bus);
255 g_free(s);
258 void qpci_plug_device_test(const char *driver, const char *id,
259 uint8_t slot, const char *opts)
261 QDict *response;
262 char *cmd;
264 cmd = g_strdup_printf("{'execute': 'device_add',"
265 " 'arguments': {"
266 " 'driver': '%s',"
267 " 'addr': '%d',"
268 " %s%s"
269 " 'id': '%s'"
270 "}}", driver, slot,
271 opts ? opts : "", opts ? "," : "",
272 id);
273 response = qmp(cmd);
274 g_free(cmd);
275 g_assert(response);
276 g_assert(!qdict_haskey(response, "error"));
277 QDECREF(response);
280 void qpci_unplug_acpi_device_test(const char *id, uint8_t slot)
282 QDict *response;
283 char *cmd;
285 cmd = g_strdup_printf("{'execute': 'device_del',"
286 " 'arguments': {"
287 " 'id': '%s'"
288 "}}", id);
289 response = qmp(cmd);
290 g_free(cmd);
291 g_assert(response);
292 g_assert(!qdict_haskey(response, "error"));
293 QDECREF(response);
295 outb(ACPI_PCIHP_ADDR + PCI_EJ_BASE, 1 << slot);
297 response = qmp("");
298 g_assert(response);
299 g_assert(qdict_haskey(response, "event"));
300 g_assert(!strcmp(qdict_get_str(response, "event"), "DEVICE_DELETED"));
301 QDECREF(response);