blob: 0c15b13037ae81f78ed44363ac051441c5f95441 [file] [log] [blame]
bellard69b91032004-05-18 23:05:28 +00001/*
2 * QEMU PCI bus manager
3 *
4 * Copyright (c) 2004 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellard69b91032004-05-18 23:05:28 +00006 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
pbrook87ecb682007-11-17 17:14:51 +000024#include "hw.h"
25#include "pci.h"
Isaku Yamahata783753f2010-07-13 13:01:39 +090026#include "pci_bridge.h"
Isaku Yamahatacfb0a502010-07-12 19:36:40 +090027#include "pci_internals.h"
Isaku Yamahataa5d1fd22010-10-19 18:06:29 +090028#include "msix.h"
29#include "msi.h"
aliguori376253e2009-03-05 23:01:23 +000030#include "monitor.h"
pbrook87ecb682007-11-17 17:14:51 +000031#include "net.h"
aliguori880345c2009-02-11 15:21:48 +000032#include "sysemu.h"
Anthony Liguoric2039bd2009-12-18 12:01:07 +010033#include "loader.h"
Luiz Capitulino163c8a52010-01-21 19:15:40 -020034#include "qemu-objects.h"
Blue Swirlbf1b0072010-09-18 05:53:14 +000035#include "range.h"
bellard69b91032004-05-18 23:05:28 +000036
37//#define DEBUG_PCI
Isaku Yamahatad8d2e072009-07-07 15:59:22 +090038#ifdef DEBUG_PCI
Isaku Yamahata2e49d642009-10-30 21:20:55 +090039# define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__)
Isaku Yamahatad8d2e072009-07-07 15:59:22 +090040#else
41# define PCI_DPRINTF(format, ...) do { } while (0)
42#endif
bellard69b91032004-05-18 23:05:28 +000043
Gerd Hoffmann10c4c982009-06-30 14:12:08 +020044static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent);
Alex Williamson4f43c1f2010-06-25 11:08:59 -060045static char *pcibus_get_dev_path(DeviceState *dev);
Isaku Yamahata9bb33582010-11-19 18:56:02 +090046static int pcibus_reset(BusState *qbus);
Gerd Hoffmann10c4c982009-06-30 14:12:08 +020047
Isaku Yamahatacfb0a502010-07-12 19:36:40 +090048struct BusInfo pci_bus_info = {
Gerd Hoffmann10c4c982009-06-30 14:12:08 +020049 .name = "PCI",
50 .size = sizeof(PCIBus),
51 .print_dev = pcibus_dev_print,
Alex Williamson4f43c1f2010-06-25 11:08:59 -060052 .get_dev_path = pcibus_get_dev_path,
Isaku Yamahata9bb33582010-11-19 18:56:02 +090053 .reset = pcibus_reset,
Gerd Hoffmannee6847d2009-07-15 13:43:31 +020054 .props = (Property[]) {
Gerd Hoffmann54586bd2009-08-03 17:35:19 +020055 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +010056 DEFINE_PROP_STRING("romfile", PCIDevice, romfile),
Gerd Hoffmann88169dd2010-01-08 15:25:41 +010057 DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1),
Isaku Yamahata49823862010-06-23 16:15:30 +090058 DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present,
59 QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false),
Gerd Hoffmann54586bd2009-08-03 17:35:19 +020060 DEFINE_PROP_END_OF_LIST()
Gerd Hoffmannee6847d2009-07-15 13:43:31 +020061 }
bellard30468f72004-06-21 19:45:35 +000062};
bellard69b91032004-05-18 23:05:28 +000063
bellard1941d192006-08-17 10:46:34 +000064static void pci_update_mappings(PCIDevice *d);
pbrookd537cf62007-04-07 18:14:41 +000065static void pci_set_irq(void *opaque, int irq_num, int level);
Stefan Weilab85ceb2010-10-19 23:08:21 +020066static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom);
Alex Williamson230741d2010-06-25 11:10:19 -060067static void pci_del_option_rom(PCIDevice *pdev);
bellard1941d192006-08-17 10:46:34 +000068
aliguorid350d972008-12-11 21:15:42 +000069static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET;
70static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU;
Isaku Yamahatae822a522009-10-30 21:21:13 +090071
72struct PCIHostBus {
73 int domain;
74 struct PCIBus *bus;
75 QLIST_ENTRY(PCIHostBus) next;
76};
77static QLIST_HEAD(, PCIHostBus) host_buses;
bellard30468f72004-06-21 19:45:35 +000078
Juan Quintela2d1e9f92009-08-20 19:42:34 +020079static const VMStateDescription vmstate_pcibus = {
80 .name = "PCIBUS",
81 .version_id = 1,
82 .minimum_version_id = 1,
83 .minimum_version_id_old = 1,
84 .fields = (VMStateField []) {
85 VMSTATE_INT32_EQUAL(nirq, PCIBus),
Juan Quintelac7bde572009-10-16 13:29:48 +020086 VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t),
Juan Quintela2d1e9f92009-08-20 19:42:34 +020087 VMSTATE_END_OF_LIST()
balrog52fc1d82007-12-09 23:56:13 +000088 }
Juan Quintela2d1e9f92009-08-20 19:42:34 +020089};
balrog52fc1d82007-12-09 23:56:13 +000090
Isaku Yamahatab3b11692009-10-30 21:21:05 +090091static int pci_bar(PCIDevice *d, int reg)
Michael S. Tsirkin5330de02009-09-16 13:40:57 +030092{
Isaku Yamahatab3b11692009-10-30 21:21:05 +090093 uint8_t type;
94
95 if (reg != PCI_ROM_SLOT)
96 return PCI_BASE_ADDRESS_0 + reg * 4;
97
98 type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
99 return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS;
Michael S. Tsirkin5330de02009-09-16 13:40:57 +0300100}
101
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200102static inline int pci_irq_state(PCIDevice *d, int irq_num)
103{
104 return (d->irq_state >> irq_num) & 0x1;
105}
106
107static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level)
108{
109 d->irq_state &= ~(0x1 << irq_num);
110 d->irq_state |= level << irq_num;
111}
112
113static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change)
114{
115 PCIBus *bus;
116 for (;;) {
117 bus = pci_dev->bus;
118 irq_num = bus->map_irq(pci_dev, irq_num);
119 if (bus->set_irq)
120 break;
121 pci_dev = bus->parent_dev;
122 }
123 bus->irq_count[irq_num] += change;
124 bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0);
125}
126
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +0200127/* Update interrupt status bit in config space on interrupt
128 * state change. */
129static void pci_update_irq_status(PCIDevice *dev)
130{
131 if (dev->irq_state) {
132 dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT;
133 } else {
134 dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
135 }
136}
137
Michael S. Tsirkin5330de02009-09-16 13:40:57 +0300138static void pci_device_reset(PCIDevice *dev)
139{
Michael S. Tsirkinc0b19052009-09-16 13:41:09 +0300140 int r;
Isaku Yamahata9bb33582010-11-19 18:56:02 +0900141 /* TODO: call the below unconditionally once all pci devices
142 * are qdevified */
143 if (dev->qdev.info) {
144 qdev_reset_all(&dev->qdev);
145 }
Michael S. Tsirkinc0b19052009-09-16 13:41:09 +0300146
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200147 dev->irq_state = 0;
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +0200148 pci_update_irq_status(dev);
Isaku Yamahata71ebd6d2010-06-17 15:15:45 +0900149 /* Clear all writeable bits */
Isaku Yamahata99443c22010-10-19 18:06:30 +0900150 pci_word_test_and_clear_mask(dev->config + PCI_COMMAND,
Michael S. Tsirkinf9aebe22010-10-27 16:01:25 +0200151 pci_get_word(dev->wmask + PCI_COMMAND) |
152 pci_get_word(dev->w1cmask + PCI_COMMAND));
Isaku Yamahata89d437d2010-11-16 17:26:07 +0900153 pci_word_test_and_clear_mask(dev->config + PCI_STATUS,
154 pci_get_word(dev->wmask + PCI_STATUS) |
155 pci_get_word(dev->w1cmask + PCI_STATUS));
Michael S. Tsirkinc0b19052009-09-16 13:41:09 +0300156 dev->config[PCI_CACHE_LINE_SIZE] = 0x0;
157 dev->config[PCI_INTERRUPT_LINE] = 0x0;
158 for (r = 0; r < PCI_NUM_REGIONS; ++r) {
Isaku Yamahata71ebd6d2010-06-17 15:15:45 +0900159 PCIIORegion *region = &dev->io_regions[r];
160 if (!region->size) {
Michael S. Tsirkinc0b19052009-09-16 13:41:09 +0300161 continue;
162 }
Isaku Yamahata71ebd6d2010-06-17 15:15:45 +0900163
164 if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) &&
165 region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
166 pci_set_quad(dev->config + pci_bar(dev, r), region->type);
167 } else {
168 pci_set_long(dev->config + pci_bar(dev, r), region->type);
169 }
Michael S. Tsirkinc0b19052009-09-16 13:41:09 +0300170 }
171 pci_update_mappings(dev);
Michael S. Tsirkin5330de02009-09-16 13:40:57 +0300172}
173
Isaku Yamahata9bb33582010-11-19 18:56:02 +0900174/*
175 * Trigger pci bus reset under a given bus.
176 * To be called on RST# assert.
177 */
178void pci_bus_reset(PCIBus *bus)
Gleb Natapov6eaa6842009-06-17 19:32:00 +0300179{
Gleb Natapov6eaa6842009-06-17 19:32:00 +0300180 int i;
181
182 for (i = 0; i < bus->nirq; i++) {
183 bus->irq_count[i] = 0;
184 }
Michael S. Tsirkin5330de02009-09-16 13:40:57 +0300185 for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) {
186 if (bus->devices[i]) {
187 pci_device_reset(bus->devices[i]);
188 }
Gleb Natapov6eaa6842009-06-17 19:32:00 +0300189 }
190}
191
Isaku Yamahata9bb33582010-11-19 18:56:02 +0900192static int pcibus_reset(BusState *qbus)
193{
194 pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus));
195
196 /* topology traverse is done by pci_bus_reset().
197 Tell qbus/qdev walker not to traverse the tree */
198 return 1;
199}
200
Isaku Yamahatae822a522009-10-30 21:21:13 +0900201static void pci_host_bus_register(int domain, PCIBus *bus)
202{
203 struct PCIHostBus *host;
204 host = qemu_mallocz(sizeof(*host));
205 host->domain = domain;
206 host->bus = bus;
207 QLIST_INSERT_HEAD(&host_buses, host, next);
208}
209
Isaku Yamahatac469e1d2009-11-12 14:58:36 +0900210PCIBus *pci_find_root_bus(int domain)
Isaku Yamahatae822a522009-10-30 21:21:13 +0900211{
212 struct PCIHostBus *host;
213
214 QLIST_FOREACH(host, &host_buses, next) {
215 if (host->domain == domain) {
216 return host->bus;
217 }
218 }
219
220 return NULL;
221}
222
Isaku Yamahatae075e782010-05-28 18:30:46 +0900223int pci_find_domain(const PCIBus *bus)
224{
225 PCIDevice *d;
226 struct PCIHostBus *host;
227
228 /* obtain root bus */
229 while ((d = bus->parent_dev) != NULL) {
230 bus = d->bus;
231 }
232
233 QLIST_FOREACH(host, &host_buses, next) {
234 if (host->bus == bus) {
235 return host->domain;
236 }
237 }
238
239 abort(); /* should not be reached */
240 return -1;
241}
242
Gerd Hoffmann21eea4b2009-09-16 22:25:31 +0200243void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent,
244 const char *name, int devfn_min)
245{
Gerd Hoffmann21eea4b2009-09-16 22:25:31 +0200246 qbus_create_inplace(&bus->qbus, &pci_bus_info, parent, name);
Isaku Yamahata6fa84912010-06-23 16:15:26 +0900247 assert(PCI_FUNC(devfn_min) == 0);
Gerd Hoffmann21eea4b2009-09-16 22:25:31 +0200248 bus->devfn_min = devfn_min;
Isaku Yamahatae822a522009-10-30 21:21:13 +0900249
250 /* host bridge */
251 QLIST_INIT(&bus->child);
252 pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */
253
Alex Williamson0be71e32010-06-25 11:09:07 -0600254 vmstate_register(NULL, -1, &vmstate_pcibus, bus);
Gerd Hoffmann21eea4b2009-09-16 22:25:31 +0200255}
256
257PCIBus *pci_bus_new(DeviceState *parent, const char *name, int devfn_min)
258{
259 PCIBus *bus;
260
261 bus = qemu_mallocz(sizeof(*bus));
262 bus->qbus.qdev_allocated = 1;
263 pci_bus_new_inplace(bus, parent, name, devfn_min);
264 return bus;
265}
266
267void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
268 void *irq_opaque, int nirq)
269{
270 bus->set_irq = set_irq;
271 bus->map_irq = map_irq;
272 bus->irq_opaque = irq_opaque;
273 bus->nirq = nirq;
274 bus->irq_count = qemu_mallocz(nirq * sizeof(bus->irq_count[0]));
275}
276
Isaku Yamahata87c30542010-05-14 16:29:19 +0900277void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev)
Gerd Hoffmannee995ff2009-09-25 21:42:44 +0200278{
279 bus->qbus.allow_hotplug = 1;
280 bus->hotplug = hotplug;
Isaku Yamahata87c30542010-05-14 16:29:19 +0900281 bus->hotplug_qdev = qdev;
Gerd Hoffmannee995ff2009-09-25 21:42:44 +0200282}
283
Blue Swirl2e01c8c2009-12-25 16:50:36 +0000284void pci_bus_set_mem_base(PCIBus *bus, target_phys_addr_t base)
285{
286 bus->mem_base = base;
287}
288
Paul Brook02e2da42009-05-23 00:05:19 +0100289PCIBus *pci_register_bus(DeviceState *parent, const char *name,
290 pci_set_irq_fn set_irq, pci_map_irq_fn map_irq,
Juan Quintela5d4e84c2009-08-28 15:28:17 +0200291 void *irq_opaque, int devfn_min, int nirq)
bellard30468f72004-06-21 19:45:35 +0000292{
293 PCIBus *bus;
balrog52fc1d82007-12-09 23:56:13 +0000294
Gerd Hoffmann21eea4b2009-09-16 22:25:31 +0200295 bus = pci_bus_new(parent, name, devfn_min);
296 pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq);
bellard30468f72004-06-21 19:45:35 +0000297 return bus;
298}
bellard69b91032004-05-18 23:05:28 +0000299
pbrook502a5392006-05-13 16:11:23 +0000300int pci_bus_num(PCIBus *s)
301{
Isaku Yamahatae94ff652009-10-30 21:21:12 +0900302 if (!s->parent_dev)
303 return 0; /* pci host bridge */
304 return s->parent_dev->config[PCI_SECONDARY_BUS];
pbrook502a5392006-05-13 16:11:23 +0000305}
306
Juan Quintela73534f22009-08-20 19:42:39 +0200307static int get_pci_config_device(QEMUFile *f, void *pv, size_t size)
bellard30ca2aa2004-10-03 13:56:00 +0000308{
Juan Quintela73534f22009-08-20 19:42:39 +0200309 PCIDevice *s = container_of(pv, PCIDevice, config);
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900310 uint8_t *config;
balrog52fc1d82007-12-09 23:56:13 +0000311 int i;
312
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900313 assert(size == pci_config_size(s));
314 config = qemu_malloc(size);
315
316 qemu_get_buffer(f, config, size);
317 for (i = 0; i < size; ++i) {
Michael S. Tsirkinf9aebe22010-10-27 16:01:25 +0200318 if ((config[i] ^ s->config[i]) &
319 s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) {
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900320 qemu_free(config);
Juan Quintela73534f22009-08-20 19:42:39 +0200321 return -EINVAL;
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900322 }
323 }
324 memcpy(s->config, config, size);
Juan Quintela73534f22009-08-20 19:42:39 +0200325
326 pci_update_mappings(s);
327
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900328 qemu_free(config);
Juan Quintela73534f22009-08-20 19:42:39 +0200329 return 0;
330}
331
332/* just put buffer */
Juan Quintela84e2e3e2009-09-29 22:48:20 +0200333static void put_pci_config_device(QEMUFile *f, void *pv, size_t size)
Juan Quintela73534f22009-08-20 19:42:39 +0200334{
Juan Quinteladbe73d72009-11-12 00:39:14 +0100335 const uint8_t **v = pv;
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900336 assert(size == pci_config_size(container_of(pv, PCIDevice, config)));
Juan Quinteladbe73d72009-11-12 00:39:14 +0100337 qemu_put_buffer(f, *v, size);
Juan Quintela73534f22009-08-20 19:42:39 +0200338}
339
340static VMStateInfo vmstate_info_pci_config = {
341 .name = "pci config",
342 .get = get_pci_config_device,
343 .put = put_pci_config_device,
344};
345
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200346static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size)
347{
Michael S. Tsirkinc3f8f612010-05-09 19:15:16 +0300348 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200349 uint32_t irq_state[PCI_NUM_PINS];
350 int i;
351 for (i = 0; i < PCI_NUM_PINS; ++i) {
352 irq_state[i] = qemu_get_be32(f);
353 if (irq_state[i] != 0x1 && irq_state[i] != 0) {
354 fprintf(stderr, "irq state %d: must be 0 or 1.\n",
355 irq_state[i]);
356 return -EINVAL;
357 }
358 }
359
360 for (i = 0; i < PCI_NUM_PINS; ++i) {
361 pci_set_irq_state(s, i, irq_state[i]);
362 }
363
364 return 0;
365}
366
367static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size)
368{
369 int i;
Michael S. Tsirkinc3f8f612010-05-09 19:15:16 +0300370 PCIDevice *s = container_of(pv, PCIDevice, irq_state);
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200371
372 for (i = 0; i < PCI_NUM_PINS; ++i) {
373 qemu_put_be32(f, pci_irq_state(s, i));
374 }
375}
376
377static VMStateInfo vmstate_info_pci_irq_state = {
378 .name = "pci irq state",
379 .get = get_pci_irq_state,
380 .put = put_pci_irq_state,
381};
382
Juan Quintela73534f22009-08-20 19:42:39 +0200383const VMStateDescription vmstate_pci_device = {
384 .name = "PCIDevice",
385 .version_id = 2,
386 .minimum_version_id = 1,
387 .minimum_version_id_old = 1,
388 .fields = (VMStateField []) {
389 VMSTATE_INT32_LE(version_id, PCIDevice),
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900390 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
391 vmstate_info_pci_config,
392 PCI_CONFIG_SPACE_SIZE),
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200393 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
394 vmstate_info_pci_irq_state,
395 PCI_NUM_PINS * sizeof(int32_t)),
Juan Quintela73534f22009-08-20 19:42:39 +0200396 VMSTATE_END_OF_LIST()
397 }
398};
399
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900400const VMStateDescription vmstate_pcie_device = {
401 .name = "PCIDevice",
402 .version_id = 2,
403 .minimum_version_id = 1,
404 .minimum_version_id_old = 1,
405 .fields = (VMStateField []) {
406 VMSTATE_INT32_LE(version_id, PCIDevice),
407 VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0,
408 vmstate_info_pci_config,
409 PCIE_CONFIG_SPACE_SIZE),
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200410 VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2,
411 vmstate_info_pci_irq_state,
412 PCI_NUM_PINS * sizeof(int32_t)),
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900413 VMSTATE_END_OF_LIST()
414 }
415};
416
417static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s)
418{
419 return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device;
420}
421
Juan Quintela73534f22009-08-20 19:42:39 +0200422void pci_device_save(PCIDevice *s, QEMUFile *f)
423{
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +0200424 /* Clear interrupt status bit: it is implicit
425 * in irq_state which we are saving.
426 * This makes us compatible with old devices
427 * which never set or clear this bit. */
428 s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT;
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900429 vmstate_save_state(f, pci_get_vmstate(s), s);
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +0200430 /* Restore the interrupt status bit. */
431 pci_update_irq_status(s);
bellard30ca2aa2004-10-03 13:56:00 +0000432}
433
bellard1941d192006-08-17 10:46:34 +0000434int pci_device_load(PCIDevice *s, QEMUFile *f)
bellard30ca2aa2004-10-03 13:56:00 +0000435{
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +0200436 int ret;
437 ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id);
438 /* Restore the interrupt status bit. */
439 pci_update_irq_status(s);
440 return ret;
bellard30ca2aa2004-10-03 13:56:00 +0000441}
442
Isaku Yamahata5e434f42010-05-27 14:42:06 +0900443static void pci_set_default_subsystem_id(PCIDevice *pci_dev)
aliguorid350d972008-12-11 21:15:42 +0000444{
Isaku Yamahata5e434f42010-05-27 14:42:06 +0900445 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID,
446 pci_default_sub_vendor_id);
447 pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID,
448 pci_default_sub_device_id);
aliguorid350d972008-12-11 21:15:42 +0000449}
450
aliguori880345c2009-02-11 15:21:48 +0000451/*
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900452 * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL
453 * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error
aliguori880345c2009-02-11 15:21:48 +0000454 */
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900455int pci_parse_devaddr(const char *addr, int *domp, int *busp,
456 unsigned int *slotp, unsigned int *funcp)
aliguori880345c2009-02-11 15:21:48 +0000457{
458 const char *p;
459 char *e;
460 unsigned long val;
461 unsigned long dom = 0, bus = 0;
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900462 unsigned int slot = 0;
463 unsigned int func = 0;
aliguori880345c2009-02-11 15:21:48 +0000464
465 p = addr;
466 val = strtoul(p, &e, 16);
467 if (e == p)
468 return -1;
469 if (*e == ':') {
470 bus = val;
471 p = e + 1;
472 val = strtoul(p, &e, 16);
473 if (e == p)
474 return -1;
475 if (*e == ':') {
476 dom = bus;
477 bus = val;
478 p = e + 1;
479 val = strtoul(p, &e, 16);
480 if (e == p)
481 return -1;
482 }
483 }
484
aliguori880345c2009-02-11 15:21:48 +0000485 slot = val;
486
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900487 if (funcp != NULL) {
488 if (*e != '.')
489 return -1;
490
491 p = e + 1;
492 val = strtoul(p, &e, 16);
493 if (e == p)
494 return -1;
495
496 func = val;
497 }
498
499 /* if funcp == NULL func is 0 */
500 if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7)
501 return -1;
502
aliguori880345c2009-02-11 15:21:48 +0000503 if (*e)
504 return -1;
505
506 /* Note: QEMU doesn't implement domains other than 0 */
Isaku Yamahatac469e1d2009-11-12 14:58:36 +0900507 if (!pci_find_bus(pci_find_root_bus(dom), bus))
aliguori880345c2009-02-11 15:21:48 +0000508 return -1;
509
510 *domp = dom;
511 *busp = bus;
512 *slotp = slot;
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900513 if (funcp != NULL)
514 *funcp = func;
aliguori880345c2009-02-11 15:21:48 +0000515 return 0;
516}
517
Jan Kiszkae9283f82009-06-26 00:04:00 +0200518int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp,
519 unsigned *slotp)
aliguori880345c2009-02-11 15:21:48 +0000520{
Jan Kiszkae9283f82009-06-26 00:04:00 +0200521 /* strip legacy tag */
522 if (!strncmp(addr, "pci_addr=", 9)) {
523 addr += 9;
524 }
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900525 if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) {
Jan Kiszkae9283f82009-06-26 00:04:00 +0200526 monitor_printf(mon, "Invalid pci address\n");
aliguori880345c2009-02-11 15:21:48 +0000527 return -1;
Jan Kiszkae9283f82009-06-26 00:04:00 +0200528 }
529 return 0;
aliguori880345c2009-02-11 15:21:48 +0000530}
531
Markus Armbruster49bd1452009-09-25 03:53:49 +0200532PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr)
Markus Armbruster5607c382009-06-18 15:14:08 +0200533{
534 int dom, bus;
535 unsigned slot;
536
537 if (!devaddr) {
538 *devfnp = -1;
Isaku Yamahatac469e1d2009-11-12 14:58:36 +0900539 return pci_find_bus(pci_find_root_bus(0), 0);
Markus Armbruster5607c382009-06-18 15:14:08 +0200540 }
541
Isaku Yamahata43c945f2010-09-06 16:46:19 +0900542 if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) {
Markus Armbruster5607c382009-06-18 15:14:08 +0200543 return NULL;
544 }
545
546 *devfnp = slot << 3;
Isaku Yamahatae075e782010-05-28 18:30:46 +0900547 return pci_find_bus(pci_find_root_bus(dom), bus);
Markus Armbruster5607c382009-06-18 15:14:08 +0200548}
549
Michael S. Tsirkinbd4b65e2009-06-21 19:49:40 +0300550static void pci_init_cmask(PCIDevice *dev)
551{
552 pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff);
553 pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff);
554 dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST;
555 dev->cmask[PCI_REVISION_ID] = 0xff;
556 dev->cmask[PCI_CLASS_PROG] = 0xff;
557 pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff);
558 dev->cmask[PCI_HEADER_TYPE] = 0xff;
559 dev->cmask[PCI_CAPABILITY_LIST] = 0xff;
560}
561
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300562static void pci_init_wmask(PCIDevice *dev)
563{
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900564 int config_size = pci_config_size(dev);
565
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300566 dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff;
567 dev->wmask[PCI_INTERRUPT_LINE] = 0xff;
Isaku Yamahata67a51b42009-10-30 21:21:02 +0900568 pci_set_word(dev->wmask + PCI_COMMAND,
Michael S. Tsirkina7b15a52009-12-23 16:33:56 +0200569 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
570 PCI_COMMAND_INTX_DISABLE);
Isaku Yamahata3e21ffc2009-11-12 14:58:39 +0900571
572 memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff,
573 config_size - PCI_CONFIG_HEADER_SIZE);
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300574}
575
Isaku Yamahata89d437d2010-11-16 17:26:07 +0900576static void pci_init_w1cmask(PCIDevice *dev)
577{
578 /*
Michael S. Tsirkinf6bdfcc2010-11-18 10:42:50 +0200579 * Note: It's okay to set w1cmask even for readonly bits as
Isaku Yamahata89d437d2010-11-16 17:26:07 +0900580 * long as their value is hardwired to 0.
581 */
582 pci_set_word(dev->w1cmask + PCI_STATUS,
583 PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT |
584 PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT |
585 PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY);
586}
587
Isaku Yamahatafb231622009-10-30 21:21:22 +0900588static void pci_init_wmask_bridge(PCIDevice *d)
589{
590 /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and
591 PCI_SEC_LETENCY_TIMER */
592 memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4);
593
594 /* base and limit */
595 d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff;
596 d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff;
597 pci_set_word(d->wmask + PCI_MEMORY_BASE,
598 PCI_MEMORY_RANGE_MASK & 0xffff);
599 pci_set_word(d->wmask + PCI_MEMORY_LIMIT,
600 PCI_MEMORY_RANGE_MASK & 0xffff);
601 pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE,
602 PCI_PREF_RANGE_MASK & 0xffff);
603 pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT,
604 PCI_PREF_RANGE_MASK & 0xffff);
605
606 /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */
607 memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8);
608
Michael S. Tsirkinf6bdfcc2010-11-18 10:42:50 +0200609/* TODO: add this define to pci_regs.h in linux and then in qemu. */
610#define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */
611#define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */
612#define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */
613#define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */
614#define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */
615 pci_set_word(d->wmask + PCI_BRIDGE_CONTROL,
616 PCI_BRIDGE_CTL_PARITY |
617 PCI_BRIDGE_CTL_SERR |
618 PCI_BRIDGE_CTL_ISA |
619 PCI_BRIDGE_CTL_VGA |
620 PCI_BRIDGE_CTL_VGA_16BIT |
621 PCI_BRIDGE_CTL_MASTER_ABORT |
622 PCI_BRIDGE_CTL_BUS_RESET |
623 PCI_BRIDGE_CTL_FAST_BACK |
624 PCI_BRIDGE_CTL_DISCARD |
625 PCI_BRIDGE_CTL_SEC_DISCARD |
626 PCI_BRIDGE_CTL_DISCARD_STATUS |
627 PCI_BRIDGE_CTL_DISCARD_SERR);
628 /* Below does not do anything as we never set this bit, put here for
629 * completeness. */
630 pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL,
631 PCI_BRIDGE_CTL_DISCARD_STATUS);
Isaku Yamahatafb231622009-10-30 21:21:22 +0900632}
633
Isaku Yamahata6eab3de2010-06-23 16:15:33 +0900634static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev)
635{
636 uint8_t slot = PCI_SLOT(dev->devfn);
637 uint8_t func;
638
639 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
640 dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION;
641 }
642
643 /*
Stefan Weilb0cd7122010-08-06 21:53:45 +0200644 * multifunction bit is interpreted in two ways as follows.
Isaku Yamahata6eab3de2010-06-23 16:15:33 +0900645 * - all functions must set the bit to 1.
646 * Example: Intel X53
647 * - function 0 must set the bit, but the rest function (> 0)
648 * is allowed to leave the bit to 0.
649 * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10,
650 *
651 * So OS (at least Linux) checks the bit of only function 0,
652 * and doesn't see the bit of function > 0.
653 *
654 * The below check allows both interpretation.
655 */
656 if (PCI_FUNC(dev->devfn)) {
657 PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)];
658 if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) {
659 /* function 0 should set multifunction bit */
660 error_report("PCI: single function device can't be populated "
661 "in function %x.%x", slot, PCI_FUNC(dev->devfn));
662 return -1;
663 }
664 return 0;
665 }
666
667 if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) {
668 return 0;
669 }
670 /* function 0 indicates single function, so function > 0 must be NULL */
671 for (func = 1; func < PCI_FUNC_MAX; ++func) {
672 if (bus->devices[PCI_DEVFN(slot, func)]) {
673 error_report("PCI: %x.0 indicates single function, "
674 "but %x.%x is already populated.",
675 slot, slot, func);
676 return -1;
677 }
678 }
679 return 0;
680}
681
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900682static void pci_config_alloc(PCIDevice *pci_dev)
683{
684 int config_size = pci_config_size(pci_dev);
685
686 pci_dev->config = qemu_mallocz(config_size);
687 pci_dev->cmask = qemu_mallocz(config_size);
688 pci_dev->wmask = qemu_mallocz(config_size);
Isaku Yamahata92ba5f52010-09-15 14:38:15 +0900689 pci_dev->w1cmask = qemu_mallocz(config_size);
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900690 pci_dev->used = qemu_mallocz(config_size);
691}
692
693static void pci_config_free(PCIDevice *pci_dev)
694{
695 qemu_free(pci_dev->config);
696 qemu_free(pci_dev->cmask);
697 qemu_free(pci_dev->wmask);
Isaku Yamahata92ba5f52010-09-15 14:38:15 +0900698 qemu_free(pci_dev->w1cmask);
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900699 qemu_free(pci_dev->used);
700}
701
bellard69b91032004-05-18 23:05:28 +0000702/* -1 for devfn means auto assign */
Paul Brook6b1b92d2009-05-14 22:35:07 +0100703static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
704 const char *name, int devfn,
705 PCIConfigReadFunc *config_read,
Isaku Yamahatafb231622009-10-30 21:21:22 +0900706 PCIConfigWriteFunc *config_write,
Isaku Yamahatae327e322010-06-23 16:15:28 +0900707 bool is_bridge)
bellard69b91032004-05-18 23:05:28 +0000708{
bellard69b91032004-05-18 23:05:28 +0000709 if (devfn < 0) {
Isaku Yamahatab47b0702009-11-12 14:58:45 +0900710 for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices);
Isaku Yamahata6fa84912010-06-23 16:15:26 +0900711 devfn += PCI_FUNC_MAX) {
bellard30468f72004-06-21 19:45:35 +0000712 if (!bus->devices[devfn])
bellard69b91032004-05-18 23:05:28 +0000713 goto found;
714 }
Daniel P. Berrange3709c1b2010-06-08 15:24:25 +0100715 error_report("PCI: no slot/function available for %s, all in use", name);
Gerd Hoffmann09e3acc2009-12-10 11:11:06 +0100716 return NULL;
bellard69b91032004-05-18 23:05:28 +0000717 found: ;
Markus Armbruster07b7d052009-06-18 15:14:07 +0200718 } else if (bus->devices[devfn]) {
Daniel P. Berrange3709c1b2010-06-08 15:24:25 +0100719 error_report("PCI: slot %d function %d not available for %s, in use by %s",
720 PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name);
Gerd Hoffmann09e3acc2009-12-10 11:11:06 +0100721 return NULL;
bellard69b91032004-05-18 23:05:28 +0000722 }
bellard30468f72004-06-21 19:45:35 +0000723 pci_dev->bus = bus;
bellard69b91032004-05-18 23:05:28 +0000724 pci_dev->devfn = devfn;
725 pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
Michael S. Tsirkind036bb22009-11-25 15:20:51 +0200726 pci_dev->irq_state = 0;
Isaku Yamahataa9f49942009-10-30 21:21:18 +0900727 pci_config_alloc(pci_dev);
Isaku Yamahatafb231622009-10-30 21:21:22 +0900728
Isaku Yamahatae327e322010-06-23 16:15:28 +0900729 if (!is_bridge) {
Isaku Yamahatafb231622009-10-30 21:21:22 +0900730 pci_set_default_subsystem_id(pci_dev);
731 }
Michael S. Tsirkinbd4b65e2009-06-21 19:49:40 +0300732 pci_init_cmask(pci_dev);
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300733 pci_init_wmask(pci_dev);
Isaku Yamahata89d437d2010-11-16 17:26:07 +0900734 pci_init_w1cmask(pci_dev);
Isaku Yamahatae327e322010-06-23 16:15:28 +0900735 if (is_bridge) {
Isaku Yamahatafb231622009-10-30 21:21:22 +0900736 pci_init_wmask_bridge(pci_dev);
737 }
Isaku Yamahata6eab3de2010-06-23 16:15:33 +0900738 if (pci_init_multifunction(bus, pci_dev)) {
739 pci_config_free(pci_dev);
740 return NULL;
741 }
bellard0ac32c82004-05-20 12:45:00 +0000742
743 if (!config_read)
744 config_read = pci_default_read_config;
745 if (!config_write)
746 config_write = pci_default_write_config;
bellard69b91032004-05-18 23:05:28 +0000747 pci_dev->config_read = config_read;
748 pci_dev->config_write = config_write;
bellard30468f72004-06-21 19:45:35 +0000749 bus->devices[devfn] = pci_dev;
Isaku Yamahatae369cad2009-10-30 21:20:56 +0900750 pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS);
Juan Quintelaf16c4ab2009-08-20 19:42:38 +0200751 pci_dev->version_id = 2; /* Current pci device vmstate version */
bellard69b91032004-05-18 23:05:28 +0000752 return pci_dev;
753}
754
Alex Williamson925fe642010-05-11 06:44:21 -0400755static void do_pci_unregister_device(PCIDevice *pci_dev)
756{
757 qemu_free_irqs(pci_dev->irq);
758 pci_dev->bus->devices[pci_dev->devfn] = NULL;
759 pci_config_free(pci_dev);
760}
761
Paul Brook6b1b92d2009-05-14 22:35:07 +0100762PCIDevice *pci_register_device(PCIBus *bus, const char *name,
763 int instance_size, int devfn,
764 PCIConfigReadFunc *config_read,
765 PCIConfigWriteFunc *config_write)
766{
767 PCIDevice *pci_dev;
768
769 pci_dev = qemu_mallocz(instance_size);
770 pci_dev = do_pci_register_device(pci_dev, bus, name, devfn,
Isaku Yamahatafb231622009-10-30 21:21:22 +0900771 config_read, config_write,
772 PCI_HEADER_TYPE_NORMAL);
Gerd Hoffmann09e3acc2009-12-10 11:11:06 +0100773 if (pci_dev == NULL) {
774 hw_error("PCI: can't register device\n");
775 }
Paul Brook6b1b92d2009-05-14 22:35:07 +0100776 return pci_dev;
777}
Blue Swirl2e01c8c2009-12-25 16:50:36 +0000778
779static target_phys_addr_t pci_to_cpu_addr(PCIBus *bus,
780 target_phys_addr_t addr)
aliguori5851e082009-02-11 15:21:10 +0000781{
Blue Swirl2e01c8c2009-12-25 16:50:36 +0000782 return addr + bus->mem_base;
aliguori5851e082009-02-11 15:21:10 +0000783}
784
785static void pci_unregister_io_regions(PCIDevice *pci_dev)
786{
787 PCIIORegion *r;
788 int i;
789
790 for(i = 0; i < PCI_NUM_REGIONS; i++) {
791 r = &pci_dev->io_regions[i];
Isaku Yamahata182f9c82009-10-30 21:20:58 +0900792 if (!r->size || r->addr == PCI_BAR_UNMAPPED)
aliguori5851e082009-02-11 15:21:10 +0000793 continue;
Isaku Yamahata0392a012009-10-30 21:21:03 +0900794 if (r->type == PCI_BASE_ADDRESS_SPACE_IO) {
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900795 isa_unassign_ioport(r->addr, r->filtered_size);
aliguori5851e082009-02-11 15:21:10 +0000796 } else {
Blue Swirl2e01c8c2009-12-25 16:50:36 +0000797 cpu_register_physical_memory(pci_to_cpu_addr(pci_dev->bus,
798 r->addr),
799 r->filtered_size,
800 IO_MEM_UNASSIGNED);
aliguori5851e082009-02-11 15:21:10 +0000801 }
802 }
803}
804
Gerd Hoffmanna36a3442009-09-25 21:42:37 +0200805static int pci_unregister_device(DeviceState *dev)
aliguori5851e082009-02-11 15:21:10 +0000806{
Gerd Hoffmanna36a3442009-09-25 21:42:37 +0200807 PCIDevice *pci_dev = DO_UPCAST(PCIDevice, qdev, dev);
Gerd Hoffmanne3936fa2009-09-25 21:42:38 +0200808 PCIDeviceInfo *info = DO_UPCAST(PCIDeviceInfo, qdev, dev->info);
aliguori5851e082009-02-11 15:21:10 +0000809 int ret = 0;
810
Gerd Hoffmanne3936fa2009-09-25 21:42:38 +0200811 if (info->exit)
812 ret = info->exit(pci_dev);
aliguori5851e082009-02-11 15:21:10 +0000813 if (ret)
814 return ret;
815
816 pci_unregister_io_regions(pci_dev);
Alex Williamson230741d2010-06-25 11:10:19 -0600817 pci_del_option_rom(pci_dev);
Alex Williamson925fe642010-05-11 06:44:21 -0400818 do_pci_unregister_device(pci_dev);
aliguori5851e082009-02-11 15:21:10 +0000819 return 0;
820}
821
Avi Kivity28c2c262009-06-14 11:38:53 +0300822void pci_register_bar(PCIDevice *pci_dev, int region_num,
Isaku Yamahata0bb750e2010-09-09 11:48:57 +0900823 pcibus_t size, uint8_t type,
bellard69b91032004-05-18 23:05:28 +0000824 PCIMapIORegionFunc *map_func)
825{
826 PCIIORegion *r;
pbrookd7ce4932006-04-18 16:55:22 +0000827 uint32_t addr;
Isaku Yamahata5a9ff382010-09-09 11:48:55 +0900828 uint64_t wmask;
bellard69b91032004-05-18 23:05:28 +0000829
Isaku Yamahata2bbb9c22010-09-09 11:48:56 +0900830 assert(region_num >= 0);
831 assert(region_num < PCI_NUM_REGIONS);
aliguoria4c20c62009-02-11 15:21:16 +0000832 if (size & (size-1)) {
833 fprintf(stderr, "ERROR: PCI region size must be pow2 "
Isaku Yamahata89e8b132009-10-30 21:21:09 +0900834 "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size);
aliguoria4c20c62009-02-11 15:21:16 +0000835 exit(1);
836 }
837
bellard69b91032004-05-18 23:05:28 +0000838 r = &pci_dev->io_regions[region_num];
Isaku Yamahata182f9c82009-10-30 21:20:58 +0900839 r->addr = PCI_BAR_UNMAPPED;
bellard69b91032004-05-18 23:05:28 +0000840 r->size = size;
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900841 r->filtered_size = size;
bellard69b91032004-05-18 23:05:28 +0000842 r->type = type;
843 r->map_func = map_func;
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300844
845 wmask = ~(size - 1);
Isaku Yamahatab3b11692009-10-30 21:21:05 +0900846 addr = pci_bar(pci_dev, region_num);
pbrookd7ce4932006-04-18 16:55:22 +0000847 if (region_num == PCI_ROM_SLOT) {
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +0300848 /* ROM enable bit is writeable */
Michael S. Tsirkin5330de02009-09-16 13:40:57 +0300849 wmask |= PCI_ROM_ADDRESS_ENABLE;
pbrookd7ce4932006-04-18 16:55:22 +0000850 }
Isaku Yamahatab0ff8eb2009-10-30 21:21:00 +0900851 pci_set_long(pci_dev->config + addr, type);
Isaku Yamahata14421252009-10-30 21:21:11 +0900852 if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) &&
853 r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
854 pci_set_quad(pci_dev->wmask + addr, wmask);
855 pci_set_quad(pci_dev->cmask + addr, ~0ULL);
856 } else {
857 pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff);
858 pci_set_long(pci_dev->cmask + addr, 0xffffffff);
859 }
bellard69b91032004-05-18 23:05:28 +0000860}
861
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900862static void pci_bridge_filter(PCIDevice *d, pcibus_t *addr, pcibus_t *size,
863 uint8_t type)
864{
865 pcibus_t base = *addr;
866 pcibus_t limit = *addr + *size - 1;
867 PCIDevice *br;
868
869 for (br = d->bus->parent_dev; br; br = br->bus->parent_dev) {
870 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND);
871
872 if (type & PCI_BASE_ADDRESS_SPACE_IO) {
873 if (!(cmd & PCI_COMMAND_IO)) {
874 goto no_map;
875 }
876 } else {
877 if (!(cmd & PCI_COMMAND_MEMORY)) {
878 goto no_map;
879 }
880 }
881
882 base = MAX(base, pci_bridge_get_base(br, type));
883 limit = MIN(limit, pci_bridge_get_limit(br, type));
884 }
885
886 if (base > limit) {
Michael S. Tsirkin88a95562009-11-12 13:54:31 +0200887 goto no_map;
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900888 }
Michael S. Tsirkin88a95562009-11-12 13:54:31 +0200889 *addr = base;
890 *size = limit - base + 1;
891 return;
892no_map:
893 *addr = PCI_BAR_UNMAPPED;
894 *size = 0;
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900895}
896
Michael S. Tsirkin876a3502009-11-12 13:47:17 +0200897static pcibus_t pci_bar_address(PCIDevice *d,
898 int reg, uint8_t type, pcibus_t size)
899{
900 pcibus_t new_addr, last_addr;
901 int bar = pci_bar(d, reg);
902 uint16_t cmd = pci_get_word(d->config + PCI_COMMAND);
903
904 if (type & PCI_BASE_ADDRESS_SPACE_IO) {
905 if (!(cmd & PCI_COMMAND_IO)) {
906 return PCI_BAR_UNMAPPED;
907 }
908 new_addr = pci_get_long(d->config + bar) & ~(size - 1);
909 last_addr = new_addr + size - 1;
910 /* NOTE: we have only 64K ioports on PC */
911 if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) {
912 return PCI_BAR_UNMAPPED;
913 }
914 return new_addr;
915 }
916
917 if (!(cmd & PCI_COMMAND_MEMORY)) {
918 return PCI_BAR_UNMAPPED;
919 }
920 if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) {
921 new_addr = pci_get_quad(d->config + bar);
922 } else {
923 new_addr = pci_get_long(d->config + bar);
924 }
925 /* the ROM slot has a specific enable bit */
926 if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) {
927 return PCI_BAR_UNMAPPED;
928 }
929 new_addr &= ~(size - 1);
930 last_addr = new_addr + size - 1;
931 /* NOTE: we do not support wrapping */
932 /* XXX: as we cannot support really dynamic
933 mappings, we handle specific values as invalid
934 mappings. */
935 if (last_addr <= new_addr || new_addr == 0 ||
936 last_addr == PCI_BAR_UNMAPPED) {
937 return PCI_BAR_UNMAPPED;
938 }
939
940 /* Now pcibus_t is 64bit.
941 * Check if 32 bit BAR wraps around explicitly.
942 * Without this, PC ide doesn't work well.
943 * TODO: remove this work around.
944 */
945 if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) {
946 return PCI_BAR_UNMAPPED;
947 }
948
949 /*
950 * OS is allowed to set BAR beyond its addressable
951 * bits. For example, 32 bit OS can set 64bit bar
952 * to >4G. Check it. TODO: we might need to support
953 * it in the future for e.g. PAE.
954 */
955 if (last_addr >= TARGET_PHYS_ADDR_MAX) {
956 return PCI_BAR_UNMAPPED;
957 }
958
959 return new_addr;
960}
961
bellard0ac32c82004-05-20 12:45:00 +0000962static void pci_update_mappings(PCIDevice *d)
bellard69b91032004-05-18 23:05:28 +0000963{
bellard0ac32c82004-05-20 12:45:00 +0000964 PCIIORegion *r;
Michael S. Tsirkin876a3502009-11-12 13:47:17 +0200965 int i;
Blue Swirlc71b5b42009-12-25 18:18:29 +0000966 pcibus_t new_addr, filtered_size;
ths3b46e622007-09-17 08:09:54 +0000967
bellard8a8696a2004-06-03 14:06:32 +0000968 for(i = 0; i < PCI_NUM_REGIONS; i++) {
bellard0ac32c82004-05-20 12:45:00 +0000969 r = &d->io_regions[i];
Isaku Yamahataa9688572009-10-30 21:21:23 +0900970
971 /* this region isn't registered */
Isaku Yamahataec503442009-11-12 14:58:43 +0900972 if (!r->size)
Isaku Yamahataa9688572009-10-30 21:21:23 +0900973 continue;
974
Michael S. Tsirkin876a3502009-11-12 13:47:17 +0200975 new_addr = pci_bar_address(d, i, r->type, r->size);
Isaku Yamahataa9688572009-10-30 21:21:23 +0900976
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900977 /* bridge filtering */
978 filtered_size = r->size;
979 if (new_addr != PCI_BAR_UNMAPPED) {
980 pci_bridge_filter(d, &new_addr, &filtered_size, r->type);
981 }
982
Isaku Yamahataa9688572009-10-30 21:21:23 +0900983 /* This bar isn't changed */
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900984 if (new_addr == r->addr && filtered_size == r->filtered_size)
Isaku Yamahataa9688572009-10-30 21:21:23 +0900985 continue;
986
987 /* now do the real mapping */
988 if (r->addr != PCI_BAR_UNMAPPED) {
989 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
990 int class;
991 /* NOTE: specific hack for IDE in PC case:
992 only one byte must be mapped. */
993 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
994 if (class == 0x0101 && r->size == 4) {
995 isa_unassign_ioport(r->addr + 2, 1);
996 } else {
Isaku Yamahataa0c7a972009-10-30 21:21:25 +0900997 isa_unassign_ioport(r->addr, r->filtered_size);
bellard0ac32c82004-05-20 12:45:00 +0000998 }
Isaku Yamahataa9688572009-10-30 21:21:23 +0900999 } else {
Blue Swirlc71b5b42009-12-25 18:18:29 +00001000 cpu_register_physical_memory(pci_to_cpu_addr(d->bus, r->addr),
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001001 r->filtered_size,
Isaku Yamahataa9688572009-10-30 21:21:23 +09001002 IO_MEM_UNASSIGNED);
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001003 qemu_unregister_coalesced_mmio(r->addr, r->filtered_size);
bellard0ac32c82004-05-20 12:45:00 +00001004 }
1005 }
Isaku Yamahataa9688572009-10-30 21:21:23 +09001006 r->addr = new_addr;
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001007 r->filtered_size = filtered_size;
Isaku Yamahataa9688572009-10-30 21:21:23 +09001008 if (r->addr != PCI_BAR_UNMAPPED) {
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001009 /*
1010 * TODO: currently almost all the map funcions assumes
1011 * filtered_size == size and addr & ~(size - 1) == addr.
1012 * However with bridge filtering, they aren't always true.
1013 * Teach them such cases, such that filtered_size < size and
1014 * addr & (size - 1) != 0.
1015 */
Blue Swirlcf616802009-12-27 20:52:36 +00001016 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
1017 r->map_func(d, i, r->addr, r->filtered_size, r->type);
1018 } else {
1019 r->map_func(d, i, pci_to_cpu_addr(d->bus, r->addr),
1020 r->filtered_size, r->type);
1021 }
Isaku Yamahataa9688572009-10-30 21:21:23 +09001022 }
bellard0ac32c82004-05-20 12:45:00 +00001023 }
1024}
1025
Michael S. Tsirkina7b15a52009-12-23 16:33:56 +02001026static inline int pci_irq_disabled(PCIDevice *d)
1027{
1028 return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE;
1029}
1030
1031/* Called after interrupt disabled field update in config space,
1032 * assert/deassert interrupts if necessary.
1033 * Gets original interrupt disable bit value (before update). */
1034static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled)
1035{
1036 int i, disabled = pci_irq_disabled(d);
1037 if (disabled == was_irq_disabled)
1038 return;
1039 for (i = 0; i < PCI_NUM_PINS; ++i) {
1040 int state = pci_irq_state(d, i);
1041 pci_change_irq_level(d, i, disabled ? -state : state);
1042 }
1043}
1044
ths5fafdf22007-09-16 21:08:06 +00001045uint32_t pci_default_read_config(PCIDevice *d,
bellard0ac32c82004-05-20 12:45:00 +00001046 uint32_t address, int len)
1047{
Isaku Yamahata5029fe12009-10-30 21:21:04 +09001048 uint32_t val = 0;
1049 assert(len == 1 || len == 2 || len == 4);
Isaku Yamahataa9f49942009-10-30 21:21:18 +09001050 len = MIN(len, pci_config_size(d) - address);
Isaku Yamahata5029fe12009-10-30 21:21:04 +09001051 memcpy(&val, d->config + address, len);
1052 return le32_to_cpu(val);
bellard0ac32c82004-05-20 12:45:00 +00001053}
1054
Michael S. Tsirkinb7ee1602009-06-21 19:45:18 +03001055void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l)
bellard0ac32c82004-05-20 12:45:00 +00001056{
Michael S. Tsirkina7b15a52009-12-23 16:33:56 +02001057 int i, was_irq_disabled = pci_irq_disabled(d);
Isaku Yamahataa9f49942009-10-30 21:21:18 +09001058 uint32_t config_size = pci_config_size(d);
bellard0ac32c82004-05-20 12:45:00 +00001059
Stefan Weil91011d42009-11-13 23:26:27 +01001060 for (i = 0; i < l && addr + i < config_size; val >>= 8, ++i) {
1061 uint8_t wmask = d->wmask[addr + i];
Isaku Yamahata92ba5f52010-09-15 14:38:15 +09001062 uint8_t w1cmask = d->w1cmask[addr + i];
1063 assert(!(wmask & w1cmask));
Stefan Weil91011d42009-11-13 23:26:27 +01001064 d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask);
Isaku Yamahata92ba5f52010-09-15 14:38:15 +09001065 d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */
bellard0ac32c82004-05-20 12:45:00 +00001066 }
Isaku Yamahata260c0cd2009-10-30 21:21:20 +09001067 if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) ||
Isaku Yamahataedb00032009-10-30 21:21:21 +09001068 ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) ||
1069 ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) ||
Isaku Yamahata260c0cd2009-10-30 21:21:20 +09001070 range_covers_byte(addr, l, PCI_COMMAND))
bellard0ac32c82004-05-20 12:45:00 +00001071 pci_update_mappings(d);
Michael S. Tsirkina7b15a52009-12-23 16:33:56 +02001072
1073 if (range_covers_byte(addr, l, PCI_COMMAND))
1074 pci_update_irq_disabled(d, was_irq_disabled);
bellard69b91032004-05-18 23:05:28 +00001075}
1076
bellard0ac32c82004-05-20 12:45:00 +00001077/***********************************************************/
1078/* generic PCI irq support */
1079
bellard0ac32c82004-05-20 12:45:00 +00001080/* 0 <= irq_num <= 3. level must be 0 or 1 */
pbrookd537cf62007-04-07 18:14:41 +00001081static void pci_set_irq(void *opaque, int irq_num, int level)
bellard77d4bc32004-05-26 22:13:53 +00001082{
Juan Quintelaa60380a2009-08-24 18:42:53 +02001083 PCIDevice *pci_dev = opaque;
pbrook80b3ada2006-09-24 17:01:44 +00001084 int change;
ths3b46e622007-09-17 08:09:54 +00001085
Michael S. Tsirkind036bb22009-11-25 15:20:51 +02001086 change = level - pci_irq_state(pci_dev, irq_num);
pbrook80b3ada2006-09-24 17:01:44 +00001087 if (!change)
1088 return;
pbrookd2b59312006-09-24 00:16:34 +00001089
Michael S. Tsirkind036bb22009-11-25 15:20:51 +02001090 pci_set_irq_state(pci_dev, irq_num, level);
Michael S. Tsirkinf9bf77d2009-11-25 15:44:40 +02001091 pci_update_irq_status(pci_dev);
Michael S. Tsirkina7b15a52009-12-23 16:33:56 +02001092 if (pci_irq_disabled(pci_dev))
1093 return;
Michael S. Tsirkind036bb22009-11-25 15:20:51 +02001094 pci_change_irq_level(pci_dev, irq_num, change);
bellard77d4bc32004-05-26 22:13:53 +00001095}
bellard0ac32c82004-05-20 12:45:00 +00001096
Isaku Yamahataa5d1fd22010-10-19 18:06:29 +09001097bool pci_msi_enabled(PCIDevice *dev)
1098{
1099 return msix_enabled(dev) || msi_enabled(dev);
1100}
1101
1102void pci_msi_notify(PCIDevice *dev, unsigned int vector)
1103{
1104 if (msix_enabled(dev)) {
1105 msix_notify(dev, vector);
1106 } else if (msi_enabled(dev)) {
1107 msi_notify(dev, vector);
1108 } else {
1109 /* MSI/MSI-X must be enabled */
1110 abort();
1111 }
1112}
1113
bellard0ac32c82004-05-20 12:45:00 +00001114/***********************************************************/
1115/* monitor info on PCI */
1116
pbrook6650ee62006-05-21 13:45:09 +00001117typedef struct {
1118 uint16_t class;
1119 const char *desc;
1120} pci_class_desc;
1121
blueswir109bc8782008-10-02 18:33:50 +00001122static const pci_class_desc pci_class_descriptions[] =
pbrook6650ee62006-05-21 13:45:09 +00001123{
pbrook4ca9c762006-08-10 01:03:35 +00001124 { 0x0100, "SCSI controller"},
pbrook6650ee62006-05-21 13:45:09 +00001125 { 0x0101, "IDE controller"},
thsdcb5b192007-04-14 12:24:46 +00001126 { 0x0102, "Floppy controller"},
1127 { 0x0103, "IPI controller"},
1128 { 0x0104, "RAID controller"},
1129 { 0x0106, "SATA controller"},
1130 { 0x0107, "SAS controller"},
1131 { 0x0180, "Storage controller"},
pbrook6650ee62006-05-21 13:45:09 +00001132 { 0x0200, "Ethernet controller"},
thsdcb5b192007-04-14 12:24:46 +00001133 { 0x0201, "Token Ring controller"},
1134 { 0x0202, "FDDI controller"},
1135 { 0x0203, "ATM controller"},
1136 { 0x0280, "Network controller"},
pbrook6650ee62006-05-21 13:45:09 +00001137 { 0x0300, "VGA controller"},
thsdcb5b192007-04-14 12:24:46 +00001138 { 0x0301, "XGA controller"},
1139 { 0x0302, "3D controller"},
1140 { 0x0380, "Display controller"},
1141 { 0x0400, "Video controller"},
1142 { 0x0401, "Audio controller"},
1143 { 0x0402, "Phone"},
1144 { 0x0480, "Multimedia controller"},
1145 { 0x0500, "RAM controller"},
1146 { 0x0501, "Flash controller"},
1147 { 0x0580, "Memory controller"},
pbrook6650ee62006-05-21 13:45:09 +00001148 { 0x0600, "Host bridge"},
1149 { 0x0601, "ISA bridge"},
thsdcb5b192007-04-14 12:24:46 +00001150 { 0x0602, "EISA bridge"},
1151 { 0x0603, "MC bridge"},
pbrook6650ee62006-05-21 13:45:09 +00001152 { 0x0604, "PCI bridge"},
thsdcb5b192007-04-14 12:24:46 +00001153 { 0x0605, "PCMCIA bridge"},
1154 { 0x0606, "NUBUS bridge"},
1155 { 0x0607, "CARDBUS bridge"},
1156 { 0x0608, "RACEWAY bridge"},
1157 { 0x0680, "Bridge"},
pbrook6650ee62006-05-21 13:45:09 +00001158 { 0x0c03, "USB controller"},
1159 { 0, NULL}
1160};
1161
Isaku Yamahata1074df42009-10-30 21:21:24 +09001162static void pci_for_each_device_under_bus(PCIBus *bus,
1163 void (*fn)(PCIBus *b, PCIDevice *d))
bellard0ac32c82004-05-20 12:45:00 +00001164{
bellard30468f72004-06-21 19:45:35 +00001165 PCIDevice *d;
1166 int devfn;
ths3b46e622007-09-17 08:09:54 +00001167
Isaku Yamahatab47b0702009-11-12 14:58:45 +09001168 for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
Isaku Yamahata1074df42009-10-30 21:21:24 +09001169 d = bus->devices[devfn];
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001170 if (d) {
Isaku Yamahata1074df42009-10-30 21:21:24 +09001171 fn(bus, d);
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001172 }
Isaku Yamahata1074df42009-10-30 21:21:24 +09001173 }
1174}
1175
1176void pci_for_each_device(PCIBus *bus, int bus_num,
1177 void (*fn)(PCIBus *b, PCIDevice *d))
1178{
Isaku Yamahatae822a522009-10-30 21:21:13 +09001179 bus = pci_find_bus(bus, bus_num);
Isaku Yamahata1074df42009-10-30 21:21:24 +09001180
bellard30468f72004-06-21 19:45:35 +00001181 if (bus) {
Isaku Yamahata1074df42009-10-30 21:21:24 +09001182 pci_for_each_device_under_bus(bus, fn);
bellard0ac32c82004-05-20 12:45:00 +00001183 }
1184}
1185
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001186static void pci_device_print(Monitor *mon, QDict *device)
bellard0ac32c82004-05-20 12:45:00 +00001187{
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001188 QDict *qdict;
1189 QListEntry *entry;
1190 uint64_t addr, size;
1191
1192 monitor_printf(mon, " Bus %2" PRId64 ", ", qdict_get_int(device, "bus"));
1193 monitor_printf(mon, "device %3" PRId64 ", function %" PRId64 ":\n",
1194 qdict_get_int(device, "slot"),
1195 qdict_get_int(device, "function"));
1196 monitor_printf(mon, " ");
1197
1198 qdict = qdict_get_qdict(device, "class_info");
1199 if (qdict_haskey(qdict, "desc")) {
1200 monitor_printf(mon, "%s", qdict_get_str(qdict, "desc"));
1201 } else {
1202 monitor_printf(mon, "Class %04" PRId64, qdict_get_int(qdict, "class"));
Isaku Yamahatae822a522009-10-30 21:21:13 +09001203 }
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001204
1205 qdict = qdict_get_qdict(device, "id");
1206 monitor_printf(mon, ": PCI device %04" PRIx64 ":%04" PRIx64 "\n",
1207 qdict_get_int(qdict, "device"),
1208 qdict_get_int(qdict, "vendor"));
1209
1210 if (qdict_haskey(device, "irq")) {
1211 monitor_printf(mon, " IRQ %" PRId64 ".\n",
1212 qdict_get_int(device, "irq"));
1213 }
1214
1215 if (qdict_haskey(device, "pci_bridge")) {
1216 QDict *info;
1217
1218 qdict = qdict_get_qdict(device, "pci_bridge");
1219
1220 info = qdict_get_qdict(qdict, "bus");
1221 monitor_printf(mon, " BUS %" PRId64 ".\n",
1222 qdict_get_int(info, "number"));
1223 monitor_printf(mon, " secondary bus %" PRId64 ".\n",
1224 qdict_get_int(info, "secondary"));
1225 monitor_printf(mon, " subordinate bus %" PRId64 ".\n",
1226 qdict_get_int(info, "subordinate"));
1227
1228 info = qdict_get_qdict(qdict, "io_range");
1229 monitor_printf(mon, " IO range [0x%04"PRIx64", 0x%04"PRIx64"]\n",
1230 qdict_get_int(info, "base"),
1231 qdict_get_int(info, "limit"));
1232
1233 info = qdict_get_qdict(qdict, "memory_range");
1234 monitor_printf(mon,
1235 " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n",
1236 qdict_get_int(info, "base"),
1237 qdict_get_int(info, "limit"));
1238
1239 info = qdict_get_qdict(qdict, "prefetchable_range");
1240 monitor_printf(mon, " prefetchable memory range "
1241 "[0x%08"PRIx64", 0x%08"PRIx64"]\n",
1242 qdict_get_int(info, "base"),
1243 qdict_get_int(info, "limit"));
1244 }
1245
1246 QLIST_FOREACH_ENTRY(qdict_get_qlist(device, "regions"), entry) {
1247 qdict = qobject_to_qdict(qlist_entry_obj(entry));
1248 monitor_printf(mon, " BAR%d: ", (int) qdict_get_int(qdict, "bar"));
1249
1250 addr = qdict_get_int(qdict, "address");
1251 size = qdict_get_int(qdict, "size");
1252
1253 if (!strcmp(qdict_get_str(qdict, "type"), "io")) {
1254 monitor_printf(mon, "I/O at 0x%04"FMT_PCIBUS
1255 " [0x%04"FMT_PCIBUS"].\n",
1256 addr, addr + size - 1);
1257 } else {
1258 monitor_printf(mon, "%d bit%s memory at 0x%08"FMT_PCIBUS
1259 " [0x%08"FMT_PCIBUS"].\n",
1260 qdict_get_bool(qdict, "mem_type_64") ? 64 : 32,
1261 qdict_get_bool(qdict, "prefetch") ?
1262 " prefetchable" : "", addr, addr + size - 1);
1263 }
1264 }
1265
1266 monitor_printf(mon, " id \"%s\"\n", qdict_get_str(device, "qdev_id"));
1267
Luiz Capitulinod5e4acf2010-01-21 19:15:41 -02001268 if (qdict_haskey(device, "pci_bridge")) {
1269 qdict = qdict_get_qdict(device, "pci_bridge");
1270 if (qdict_haskey(qdict, "devices")) {
1271 QListEntry *dev;
1272 QLIST_FOREACH_ENTRY(qdict_get_qlist(qdict, "devices"), dev) {
1273 pci_device_print(mon, qobject_to_qdict(qlist_entry_obj(dev)));
1274 }
1275 }
1276 }
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001277}
1278
1279void do_pci_info_print(Monitor *mon, const QObject *data)
1280{
1281 QListEntry *bus, *dev;
1282
1283 QLIST_FOREACH_ENTRY(qobject_to_qlist(data), bus) {
1284 QDict *qdict = qobject_to_qdict(qlist_entry_obj(bus));
1285 QLIST_FOREACH_ENTRY(qdict_get_qlist(qdict, "devices"), dev) {
1286 pci_device_print(mon, qobject_to_qdict(qlist_entry_obj(dev)));
1287 }
1288 }
1289}
1290
1291static QObject *pci_get_dev_class(const PCIDevice *dev)
1292{
1293 int class;
1294 const pci_class_desc *desc;
1295
1296 class = pci_get_word(dev->config + PCI_CLASS_DEVICE);
1297 desc = pci_class_descriptions;
1298 while (desc->desc && class != desc->class)
1299 desc++;
1300
1301 if (desc->desc) {
1302 return qobject_from_jsonf("{ 'desc': %s, 'class': %d }",
1303 desc->desc, class);
1304 } else {
1305 return qobject_from_jsonf("{ 'class': %d }", class);
1306 }
1307}
1308
1309static QObject *pci_get_dev_id(const PCIDevice *dev)
1310{
1311 return qobject_from_jsonf("{ 'device': %d, 'vendor': %d }",
1312 pci_get_word(dev->config + PCI_VENDOR_ID),
1313 pci_get_word(dev->config + PCI_DEVICE_ID));
1314}
1315
1316static QObject *pci_get_regions_list(const PCIDevice *dev)
1317{
1318 int i;
1319 QList *regions_list;
1320
1321 regions_list = qlist_new();
1322
1323 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1324 QObject *obj;
1325 const PCIIORegion *r = &dev->io_regions[i];
1326
1327 if (!r->size) {
1328 continue;
1329 }
1330
1331 if (r->type & PCI_BASE_ADDRESS_SPACE_IO) {
1332 obj = qobject_from_jsonf("{ 'bar': %d, 'type': 'io', "
1333 "'address': %" PRId64 ", "
1334 "'size': %" PRId64 " }",
1335 i, r->addr, r->size);
1336 } else {
1337 int mem_type_64 = r->type & PCI_BASE_ADDRESS_MEM_TYPE_64;
1338
1339 obj = qobject_from_jsonf("{ 'bar': %d, 'type': 'memory', "
1340 "'mem_type_64': %i, 'prefetch': %i, "
1341 "'address': %" PRId64 ", "
1342 "'size': %" PRId64 " }",
1343 i, mem_type_64,
1344 r->type & PCI_BASE_ADDRESS_MEM_PREFETCH,
1345 r->addr, r->size);
1346 }
1347
1348 qlist_append_obj(regions_list, obj);
1349 }
1350
1351 return QOBJECT(regions_list);
1352}
1353
Luiz Capitulinod5e4acf2010-01-21 19:15:41 -02001354static QObject *pci_get_devices_list(PCIBus *bus, int bus_num);
1355
1356static QObject *pci_get_dev_dict(PCIDevice *dev, PCIBus *bus, int bus_num)
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001357{
Isaku Yamahatab5937f22010-02-08 15:40:38 +09001358 uint8_t type;
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001359 QObject *obj;
1360
1361 obj = qobject_from_jsonf("{ 'bus': %d, 'slot': %d, 'function': %d," "'class_info': %p, 'id': %p, 'regions': %p,"
1362 " 'qdev_id': %s }",
1363 bus_num,
1364 PCI_SLOT(dev->devfn), PCI_FUNC(dev->devfn),
1365 pci_get_dev_class(dev), pci_get_dev_id(dev),
1366 pci_get_regions_list(dev),
1367 dev->qdev.id ? dev->qdev.id : "");
1368
1369 if (dev->config[PCI_INTERRUPT_PIN] != 0) {
1370 QDict *qdict = qobject_to_qdict(obj);
1371 qdict_put(qdict, "irq", qint_from_int(dev->config[PCI_INTERRUPT_LINE]));
1372 }
1373
Isaku Yamahatab5937f22010-02-08 15:40:38 +09001374 type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION;
1375 if (type == PCI_HEADER_TYPE_BRIDGE) {
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001376 QDict *qdict;
1377 QObject *pci_bridge;
1378
1379 pci_bridge = qobject_from_jsonf("{ 'bus': "
1380 "{ 'number': %d, 'secondary': %d, 'subordinate': %d }, "
1381 "'io_range': { 'base': %" PRId64 ", 'limit': %" PRId64 "}, "
1382 "'memory_range': { 'base': %" PRId64 ", 'limit': %" PRId64 "}, "
1383 "'prefetchable_range': { 'base': %" PRId64 ", 'limit': %" PRId64 "} }",
Blue Swirlc021f8e2010-02-06 09:20:13 +00001384 dev->config[PCI_PRIMARY_BUS], dev->config[PCI_SECONDARY_BUS],
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001385 dev->config[PCI_SUBORDINATE_BUS],
1386 pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO),
1387 pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO),
1388 pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY),
1389 pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY),
1390 pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY |
1391 PCI_BASE_ADDRESS_MEM_PREFETCH),
1392 pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY |
1393 PCI_BASE_ADDRESS_MEM_PREFETCH));
1394
Blue Swirlc021f8e2010-02-06 09:20:13 +00001395 if (dev->config[PCI_SECONDARY_BUS] != 0) {
1396 PCIBus *child_bus = pci_find_bus(bus, dev->config[PCI_SECONDARY_BUS]);
Luiz Capitulinod5e4acf2010-01-21 19:15:41 -02001397
Blue Swirlc021f8e2010-02-06 09:20:13 +00001398 if (child_bus) {
1399 qdict = qobject_to_qdict(pci_bridge);
1400 qdict_put_obj(qdict, "devices",
1401 pci_get_devices_list(child_bus,
1402 dev->config[PCI_SECONDARY_BUS]));
1403 }
1404 }
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001405 qdict = qobject_to_qdict(obj);
1406 qdict_put_obj(qdict, "pci_bridge", pci_bridge);
1407 }
1408
1409 return obj;
1410}
1411
1412static QObject *pci_get_devices_list(PCIBus *bus, int bus_num)
1413{
1414 int devfn;
1415 PCIDevice *dev;
1416 QList *dev_list;
1417
1418 dev_list = qlist_new();
1419
1420 for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
1421 dev = bus->devices[devfn];
1422 if (dev) {
Luiz Capitulinod5e4acf2010-01-21 19:15:41 -02001423 qlist_append_obj(dev_list, pci_get_dev_dict(dev, bus, bus_num));
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001424 }
1425 }
1426
1427 return QOBJECT(dev_list);
1428}
1429
1430static QObject *pci_get_bus_dict(PCIBus *bus, int bus_num)
1431{
1432 bus = pci_find_bus(bus, bus_num);
1433 if (bus) {
1434 return qobject_from_jsonf("{ 'bus': %d, 'devices': %p }",
1435 bus_num, pci_get_devices_list(bus, bus_num));
1436 }
1437
1438 return NULL;
1439}
1440
Luiz Capitulino163c8a52010-01-21 19:15:40 -02001441void do_pci_info(Monitor *mon, QObject **ret_data)
1442{
1443 QList *bus_list;
1444 struct PCIHostBus *host;
1445
1446 bus_list = qlist_new();
1447
1448 QLIST_FOREACH(host, &host_buses, next) {
1449 QObject *obj = pci_get_bus_dict(host->bus, 0);
1450 if (obj) {
1451 qlist_append_obj(bus_list, obj);
1452 }
1453 }
1454
1455 *ret_data = QOBJECT(bus_list);
bellard77d4bc32004-05-26 22:13:53 +00001456}
pbrooka41b2ff2006-02-05 04:14:41 +00001457
aliguoricb457d72009-01-13 19:47:10 +00001458static const char * const pci_nic_models[] = {
1459 "ne2k_pci",
1460 "i82551",
1461 "i82557b",
1462 "i82559er",
1463 "rtl8139",
1464 "e1000",
1465 "pcnet",
1466 "virtio",
1467 NULL
1468};
1469
Paul Brook9d07d752009-05-14 22:35:07 +01001470static const char * const pci_nic_names[] = {
1471 "ne2k_pci",
1472 "i82551",
1473 "i82557b",
1474 "i82559er",
1475 "rtl8139",
1476 "e1000",
1477 "pcnet",
Paul Brook53c25ce2009-05-18 14:51:59 +01001478 "virtio-net-pci",
aliguoricb457d72009-01-13 19:47:10 +00001479 NULL
1480};
1481
pbrooka41b2ff2006-02-05 04:14:41 +00001482/* Initialize a PCI NIC. */
Markus Armbruster33e66b82009-10-07 01:15:57 +02001483/* FIXME callers should check for failure, but don't */
Markus Armbruster5607c382009-06-18 15:14:08 +02001484PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model,
1485 const char *default_devaddr)
pbrooka41b2ff2006-02-05 04:14:41 +00001486{
Markus Armbruster5607c382009-06-18 15:14:08 +02001487 const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr;
Markus Armbruster07caea32009-09-25 03:53:51 +02001488 PCIBus *bus;
1489 int devfn;
Markus Armbruster5607c382009-06-18 15:14:08 +02001490 PCIDevice *pci_dev;
Paul Brook9d07d752009-05-14 22:35:07 +01001491 DeviceState *dev;
aliguoricb457d72009-01-13 19:47:10 +00001492 int i;
1493
Markus Armbruster07caea32009-09-25 03:53:51 +02001494 i = qemu_find_nic_model(nd, pci_nic_models, default_model);
1495 if (i < 0)
1496 return NULL;
1497
1498 bus = pci_get_bus_devfn(&devfn, devaddr);
1499 if (!bus) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001500 error_report("Invalid PCI device address %s for device %s",
1501 devaddr, pci_nic_names[i]);
Markus Armbruster07caea32009-09-25 03:53:51 +02001502 return NULL;
1503 }
1504
Markus Armbruster499cf102009-09-25 03:53:53 +02001505 pci_dev = pci_create(bus, devfn, pci_nic_names[i]);
Markus Armbruster9ee05822009-09-25 03:53:50 +02001506 dev = &pci_dev->qdev;
Gerd Hoffmann1cc33682009-10-21 15:25:41 +02001507 qdev_set_nic_properties(dev, nd);
Markus Armbruster07caea32009-09-25 03:53:51 +02001508 if (qdev_init(dev) < 0)
1509 return NULL;
Markus Armbruster9ee05822009-09-25 03:53:50 +02001510 return pci_dev;
pbrooka41b2ff2006-02-05 04:14:41 +00001511}
1512
Markus Armbruster07caea32009-09-25 03:53:51 +02001513PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model,
1514 const char *default_devaddr)
1515{
1516 PCIDevice *res;
1517
1518 if (qemu_show_nic_models(nd->model, pci_nic_models))
1519 exit(0);
1520
1521 res = pci_nic_init(nd, default_model, default_devaddr);
1522 if (!res)
1523 exit(1);
1524 return res;
1525}
1526
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001527static void pci_bridge_update_mappings_fn(PCIBus *b, PCIDevice *d)
1528{
1529 pci_update_mappings(d);
1530}
1531
Isaku Yamahata783753f2010-07-13 13:01:39 +09001532void pci_bridge_update_mappings(PCIBus *b)
Isaku Yamahataa0c7a972009-10-30 21:21:25 +09001533{
1534 PCIBus *child;
1535
1536 pci_for_each_device_under_bus(b, pci_bridge_update_mappings_fn);
1537
1538 QLIST_FOREACH(child, &b->child, sibling) {
1539 pci_bridge_update_mappings(child);
1540 }
1541}
1542
Michael S. Tsirkin929176c2010-11-24 07:23:25 +02001543/* Whether a given bus number is in range of the secondary
1544 * bus of the given bridge device. */
1545static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num)
1546{
1547 return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) &
1548 PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ &&
1549 dev->config[PCI_SECONDARY_BUS] < bus_num &&
1550 bus_num <= dev->config[PCI_SUBORDINATE_BUS];
1551}
1552
Isaku Yamahatae822a522009-10-30 21:21:13 +09001553PCIBus *pci_find_bus(PCIBus *bus, int bus_num)
aliguori3ae80612009-02-11 15:19:46 +00001554{
Isaku Yamahata470e6362010-04-12 11:58:59 +09001555 PCIBus *sec;
aliguori3ae80612009-02-11 15:19:46 +00001556
Isaku Yamahata470e6362010-04-12 11:58:59 +09001557 if (!bus) {
Isaku Yamahatae822a522009-10-30 21:21:13 +09001558 return NULL;
Isaku Yamahata470e6362010-04-12 11:58:59 +09001559 }
aliguori3ae80612009-02-11 15:19:46 +00001560
Isaku Yamahatae822a522009-10-30 21:21:13 +09001561 if (pci_bus_num(bus) == bus_num) {
1562 return bus;
1563 }
1564
Michael S. Tsirkin929176c2010-11-24 07:23:25 +02001565 /* Consider all bus numbers in range for the host pci bridge. */
1566 if (bus->parent_dev &&
1567 !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) {
1568 return NULL;
1569 }
1570
Isaku Yamahatae822a522009-10-30 21:21:13 +09001571 /* try child bus */
Michael S. Tsirkin929176c2010-11-24 07:23:25 +02001572 for (; bus; bus = sec) {
1573 QLIST_FOREACH(sec, &bus->child, sibling) {
1574 assert(sec->parent_dev);
1575 if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) {
1576 return sec;
1577 }
1578 if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) {
1579 break;
Blue Swirlc021f8e2010-02-06 09:20:13 +00001580 }
Isaku Yamahatae822a522009-10-30 21:21:13 +09001581 }
1582 }
1583
1584 return NULL;
aliguori3ae80612009-02-11 15:19:46 +00001585}
1586
Isaku Yamahatae822a522009-10-30 21:21:13 +09001587PCIDevice *pci_find_device(PCIBus *bus, int bus_num, int slot, int function)
aliguori3ae80612009-02-11 15:19:46 +00001588{
Isaku Yamahatae822a522009-10-30 21:21:13 +09001589 bus = pci_find_bus(bus, bus_num);
aliguori3ae80612009-02-11 15:19:46 +00001590
1591 if (!bus)
1592 return NULL;
1593
1594 return bus->devices[PCI_DEVFN(slot, function)];
1595}
1596
Gerd Hoffmann81a322d2009-08-14 10:36:05 +02001597static int pci_qdev_init(DeviceState *qdev, DeviceInfo *base)
Paul Brook6b1b92d2009-05-14 22:35:07 +01001598{
1599 PCIDevice *pci_dev = (PCIDevice *)qdev;
Paul Brook02e2da42009-05-23 00:05:19 +01001600 PCIDeviceInfo *info = container_of(base, PCIDeviceInfo, qdev);
Paul Brook6b1b92d2009-05-14 22:35:07 +01001601 PCIBus *bus;
Gerd Hoffmannee995ff2009-09-25 21:42:44 +02001602 int devfn, rc;
Stefan Weilab85ceb2010-10-19 23:08:21 +02001603 bool is_default_rom;
Paul Brook6b1b92d2009-05-14 22:35:07 +01001604
Isaku Yamahataa9f49942009-10-30 21:21:18 +09001605 /* initialize cap_present for pci_is_express() and pci_config_size() */
1606 if (info->is_express) {
1607 pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS;
1608 }
1609
Paul Brook02e2da42009-05-23 00:05:19 +01001610 bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev));
Gerd Hoffmannee6847d2009-07-15 13:43:31 +02001611 devfn = pci_dev->devfn;
Gerd Hoffmann16eaedf2009-06-30 14:12:11 +02001612 pci_dev = do_pci_register_device(pci_dev, bus, base->name, devfn,
Isaku Yamahatafb231622009-10-30 21:21:22 +09001613 info->config_read, info->config_write,
Isaku Yamahatae327e322010-06-23 16:15:28 +09001614 info->is_bridge);
Gerd Hoffmann09e3acc2009-12-10 11:11:06 +01001615 if (pci_dev == NULL)
1616 return -1;
Gerd Hoffmannee995ff2009-09-25 21:42:44 +02001617 rc = info->init(pci_dev);
Alex Williamson925fe642010-05-11 06:44:21 -04001618 if (rc != 0) {
1619 do_pci_unregister_device(pci_dev);
Gerd Hoffmannee995ff2009-09-25 21:42:44 +02001620 return rc;
Alex Williamson925fe642010-05-11 06:44:21 -04001621 }
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001622
1623 /* rom loading */
Stefan Weilab85ceb2010-10-19 23:08:21 +02001624 is_default_rom = false;
1625 if (pci_dev->romfile == NULL && info->romfile != NULL) {
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001626 pci_dev->romfile = qemu_strdup(info->romfile);
Stefan Weilab85ceb2010-10-19 23:08:21 +02001627 is_default_rom = true;
1628 }
1629 pci_add_option_rom(pci_dev, is_default_rom);
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001630
Isaku Yamahata5beb8ad2010-09-06 16:46:18 +09001631 if (bus->hotplug) {
Michael S. Tsirkine927d482010-11-12 16:21:35 +09001632 /* Let buses differentiate between hotplug and when device is
1633 * enabled during qemu machine creation. */
1634 rc = bus->hotplug(bus->hotplug_qdev, pci_dev,
1635 qdev->hotplugged ? PCI_HOTPLUG_ENABLED:
1636 PCI_COLDPLUG_ENABLED);
Isaku Yamahataa213ff62010-06-22 11:55:35 +09001637 if (rc != 0) {
1638 int r = pci_unregister_device(&pci_dev->qdev);
1639 assert(!r);
1640 return rc;
1641 }
1642 }
Gerd Hoffmannee995ff2009-09-25 21:42:44 +02001643 return 0;
1644}
1645
1646static int pci_unplug_device(DeviceState *qdev)
1647{
1648 PCIDevice *dev = DO_UPCAST(PCIDevice, qdev, qdev);
1649
Michael S. Tsirkine927d482010-11-12 16:21:35 +09001650 return dev->bus->hotplug(dev->bus->hotplug_qdev, dev,
1651 PCI_HOTPLUG_DISABLED);
Paul Brook6b1b92d2009-05-14 22:35:07 +01001652}
1653
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +02001654void pci_qdev_register(PCIDeviceInfo *info)
Paul Brook6b1b92d2009-05-14 22:35:07 +01001655{
Paul Brook02e2da42009-05-23 00:05:19 +01001656 info->qdev.init = pci_qdev_init;
Gerd Hoffmannee995ff2009-09-25 21:42:44 +02001657 info->qdev.unplug = pci_unplug_device;
Gerd Hoffmanna36a3442009-09-25 21:42:37 +02001658 info->qdev.exit = pci_unregister_device;
Gerd Hoffmann10c4c982009-06-30 14:12:08 +02001659 info->qdev.bus_info = &pci_bus_info;
Gerd Hoffmann074f2ff2009-06-10 09:41:42 +02001660 qdev_register(&info->qdev);
Paul Brook6b1b92d2009-05-14 22:35:07 +01001661}
1662
Gerd Hoffmann0aab0d32009-06-30 14:12:07 +02001663void pci_qdev_register_many(PCIDeviceInfo *info)
1664{
1665 while (info->qdev.name) {
1666 pci_qdev_register(info);
1667 info++;
1668 }
1669}
1670
Isaku Yamahata49823862010-06-23 16:15:30 +09001671PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction,
1672 const char *name)
Paul Brook6b1b92d2009-05-14 22:35:07 +01001673{
1674 DeviceState *dev;
1675
Paul Brook02e2da42009-05-23 00:05:19 +01001676 dev = qdev_create(&bus->qbus, name);
Gerd Hoffmanna6307b02009-07-15 13:59:23 +02001677 qdev_prop_set_uint32(dev, "addr", devfn);
Isaku Yamahata49823862010-06-23 16:15:30 +09001678 qdev_prop_set_bit(dev, "multifunction", multifunction);
Gerd Hoffmann71077c12009-09-15 19:23:25 +00001679 return DO_UPCAST(PCIDevice, qdev, dev);
1680}
Paul Brook6b1b92d2009-05-14 22:35:07 +01001681
Isaku Yamahata49823862010-06-23 16:15:30 +09001682PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn,
1683 bool multifunction,
1684 const char *name)
1685{
1686 PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name);
1687 qdev_init_nofail(&dev->qdev);
1688 return dev;
1689}
1690
1691PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name)
1692{
1693 return pci_create_multifunction(bus, devfn, false, name);
1694}
1695
Gerd Hoffmann71077c12009-09-15 19:23:25 +00001696PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
1697{
Isaku Yamahata49823862010-06-23 16:15:30 +09001698 return pci_create_simple_multifunction(bus, devfn, false, name);
Paul Brook6b1b92d2009-05-14 22:35:07 +01001699}
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001700
1701static int pci_find_space(PCIDevice *pdev, uint8_t size)
1702{
Isaku Yamahataa9f49942009-10-30 21:21:18 +09001703 int config_size = pci_config_size(pdev);
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001704 int offset = PCI_CONFIG_HEADER_SIZE;
1705 int i;
Isaku Yamahataa9f49942009-10-30 21:21:18 +09001706 for (i = PCI_CONFIG_HEADER_SIZE; i < config_size; ++i)
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001707 if (pdev->used[i])
1708 offset = i + 1;
1709 else if (i - offset + 1 == size)
1710 return offset;
1711 return 0;
1712}
1713
1714static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id,
1715 uint8_t *prev_p)
1716{
1717 uint8_t next, prev;
1718
1719 if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST))
1720 return 0;
1721
1722 for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]);
1723 prev = next + PCI_CAP_LIST_NEXT)
1724 if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id)
1725 break;
1726
1727 if (prev_p)
1728 *prev_p = prev;
1729 return next;
1730}
1731
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001732static void pci_map_option_rom(PCIDevice *pdev, int region_num, pcibus_t addr, pcibus_t size, int type)
1733{
1734 cpu_register_physical_memory(addr, size, pdev->rom_offset);
1735}
1736
Stefan Weilab85ceb2010-10-19 23:08:21 +02001737/* Patch the PCI vendor and device ids in a PCI rom image if necessary.
1738 This is needed for an option rom which is used for more than one device. */
1739static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size)
1740{
1741 uint16_t vendor_id;
1742 uint16_t device_id;
1743 uint16_t rom_vendor_id;
1744 uint16_t rom_device_id;
1745 uint16_t rom_magic;
1746 uint16_t pcir_offset;
1747 uint8_t checksum;
1748
1749 /* Words in rom data are little endian (like in PCI configuration),
1750 so they can be read / written with pci_get_word / pci_set_word. */
1751
1752 /* Only a valid rom will be patched. */
1753 rom_magic = pci_get_word(ptr);
1754 if (rom_magic != 0xaa55) {
1755 PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic);
1756 return;
1757 }
1758 pcir_offset = pci_get_word(ptr + 0x18);
1759 if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) {
1760 PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset);
1761 return;
1762 }
1763
1764 vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID);
1765 device_id = pci_get_word(pdev->config + PCI_DEVICE_ID);
1766 rom_vendor_id = pci_get_word(ptr + pcir_offset + 4);
1767 rom_device_id = pci_get_word(ptr + pcir_offset + 6);
1768
1769 PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile,
1770 vendor_id, device_id, rom_vendor_id, rom_device_id);
1771
1772 checksum = ptr[6];
1773
1774 if (vendor_id != rom_vendor_id) {
1775 /* Patch vendor id and checksum (at offset 6 for etherboot roms). */
1776 checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8);
1777 checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8);
1778 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1779 ptr[6] = checksum;
1780 pci_set_word(ptr + pcir_offset + 4, vendor_id);
1781 }
1782
1783 if (device_id != rom_device_id) {
1784 /* Patch device id and checksum (at offset 6 for etherboot roms). */
1785 checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8);
1786 checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8);
1787 PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum);
1788 ptr[6] = checksum;
1789 pci_set_word(ptr + pcir_offset + 6, device_id);
1790 }
1791}
1792
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001793/* Add an option rom for the device */
Stefan Weilab85ceb2010-10-19 23:08:21 +02001794static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom)
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001795{
1796 int size;
1797 char *path;
1798 void *ptr;
Alex Williamson1724f042010-06-25 11:09:35 -06001799 char name[32];
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001800
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001801 if (!pdev->romfile)
1802 return 0;
1803 if (strlen(pdev->romfile) == 0)
1804 return 0;
1805
Gerd Hoffmann88169dd2010-01-08 15:25:41 +01001806 if (!pdev->rom_bar) {
1807 /*
1808 * Load rom via fw_cfg instead of creating a rom bar,
1809 * for 0.11 compatibility.
1810 */
1811 int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE);
1812 if (class == 0x0300) {
1813 rom_add_vga(pdev->romfile);
1814 } else {
1815 rom_add_option(pdev->romfile);
1816 }
1817 return 0;
1818 }
1819
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001820 path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile);
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001821 if (path == NULL) {
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001822 path = qemu_strdup(pdev->romfile);
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001823 }
1824
1825 size = get_image_size(path);
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001826 if (size < 0) {
Markus Armbruster1ecda022010-02-18 17:25:24 +01001827 error_report("%s: failed to find romfile \"%s\"",
1828 __FUNCTION__, pdev->romfile);
Gerd Hoffmann8c52c8f2009-12-18 12:01:08 +01001829 return -1;
1830 }
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001831 if (size & (size - 1)) {
1832 size = 1 << qemu_fls(size);
1833 }
1834
Alex Williamson1724f042010-06-25 11:09:35 -06001835 if (pdev->qdev.info->vmsd)
1836 snprintf(name, sizeof(name), "%s.rom", pdev->qdev.info->vmsd->name);
1837 else
1838 snprintf(name, sizeof(name), "%s.rom", pdev->qdev.info->name);
1839 pdev->rom_offset = qemu_ram_alloc(&pdev->qdev, name, size);
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001840
1841 ptr = qemu_get_ram_ptr(pdev->rom_offset);
1842 load_image(path, ptr);
1843 qemu_free(path);
1844
Stefan Weilab85ceb2010-10-19 23:08:21 +02001845 if (is_default_rom) {
1846 /* Only the default rom images will be patched (if needed). */
1847 pci_patch_ids(pdev, ptr, size);
1848 }
1849
Anthony Liguoric2039bd2009-12-18 12:01:07 +01001850 pci_register_bar(pdev, PCI_ROM_SLOT, size,
1851 0, pci_map_option_rom);
1852
1853 return 0;
1854}
1855
Alex Williamson230741d2010-06-25 11:10:19 -06001856static void pci_del_option_rom(PCIDevice *pdev)
1857{
1858 if (!pdev->rom_offset)
1859 return;
1860
1861 qemu_ram_free(pdev->rom_offset);
1862 pdev->rom_offset = 0;
1863}
1864
Isaku Yamahataca770892010-09-06 16:46:16 +09001865/*
1866 * if !offset
1867 * Reserve space and add capability to the linked list in pci config space
1868 *
1869 * if offset = 0,
1870 * Find and reserve space and add capability to the linked list
1871 * in pci config space */
1872int pci_add_capability(PCIDevice *pdev, uint8_t cap_id,
1873 uint8_t offset, uint8_t size)
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001874{
Isaku Yamahataca770892010-09-06 16:46:16 +09001875 uint8_t *config;
1876 if (!offset) {
1877 offset = pci_find_space(pdev, size);
1878 if (!offset) {
1879 return -ENOSPC;
1880 }
1881 }
1882
1883 config = pdev->config + offset;
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001884 config[PCI_CAP_LIST_ID] = cap_id;
1885 config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST];
1886 pdev->config[PCI_CAPABILITY_LIST] = offset;
1887 pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST;
1888 memset(pdev->used + offset, 0xFF, size);
1889 /* Make capability read-only by default */
1890 memset(pdev->wmask + offset, 0, size);
Michael S. Tsirkinbd4b65e2009-06-21 19:49:40 +03001891 /* Check capability by default */
1892 memset(pdev->cmask + offset, 0xFF, size);
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001893 return offset;
1894}
1895
1896/* Unlink capability from the pci config space. */
1897void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size)
1898{
1899 uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev);
1900 if (!offset)
1901 return;
1902 pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT];
1903 /* Make capability writeable again */
1904 memset(pdev->wmask + offset, 0xff, size);
Isaku Yamahata1a4f5972010-10-18 12:17:42 +09001905 memset(pdev->w1cmask + offset, 0, size);
Michael S. Tsirkinbd4b65e2009-06-21 19:49:40 +03001906 /* Clear cmask as device-specific registers can't be checked */
1907 memset(pdev->cmask + offset, 0, size);
Michael S. Tsirkin6f4cbd32009-06-21 19:45:40 +03001908 memset(pdev->used + offset, 0, size);
1909
1910 if (!pdev->config[PCI_CAPABILITY_LIST])
1911 pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST;
1912}
1913
1914/* Reserve space for capability at a known offset (to call after load). */
1915void pci_reserve_capability(PCIDevice *pdev, uint8_t offset, uint8_t size)
1916{
1917 memset(pdev->used + offset, 0xff, size);
1918}
1919
1920uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id)
1921{
1922 return pci_find_capability_list(pdev, cap_id, NULL);
1923}
Gerd Hoffmann10c4c982009-06-30 14:12:08 +02001924
1925static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent)
1926{
1927 PCIDevice *d = (PCIDevice *)dev;
1928 const pci_class_desc *desc;
1929 char ctxt[64];
1930 PCIIORegion *r;
1931 int i, class;
1932
Isaku Yamahatab0ff8eb2009-10-30 21:21:00 +09001933 class = pci_get_word(d->config + PCI_CLASS_DEVICE);
Gerd Hoffmann10c4c982009-06-30 14:12:08 +02001934 desc = pci_class_descriptions;
1935 while (desc->desc && class != desc->class)
1936 desc++;
1937 if (desc->desc) {
1938 snprintf(ctxt, sizeof(ctxt), "%s", desc->desc);
1939 } else {
1940 snprintf(ctxt, sizeof(ctxt), "Class %04x", class);
1941 }
1942
1943 monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, "
1944 "pci id %04x:%04x (sub %04x:%04x)\n",
Alex Williamson7f5feab2010-10-04 15:53:11 -06001945 indent, "", ctxt, pci_bus_num(d->bus),
Isaku Yamahatae822a522009-10-30 21:21:13 +09001946 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn),
Isaku Yamahatab0ff8eb2009-10-30 21:21:00 +09001947 pci_get_word(d->config + PCI_VENDOR_ID),
1948 pci_get_word(d->config + PCI_DEVICE_ID),
1949 pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID),
1950 pci_get_word(d->config + PCI_SUBSYSTEM_ID));
Gerd Hoffmann10c4c982009-06-30 14:12:08 +02001951 for (i = 0; i < PCI_NUM_REGIONS; i++) {
1952 r = &d->io_regions[i];
1953 if (!r->size)
1954 continue;
Isaku Yamahata89e8b132009-10-30 21:21:09 +09001955 monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS
1956 " [0x%"FMT_PCIBUS"]\n",
1957 indent, "",
Isaku Yamahata0392a012009-10-30 21:21:03 +09001958 i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem",
Gerd Hoffmann10c4c982009-06-30 14:12:08 +02001959 r->addr, r->addr + r->size - 1);
1960 }
1961}
Gerd Hoffmann03587182009-09-16 22:25:32 +02001962
Alex Williamson4f43c1f2010-06-25 11:08:59 -06001963static char *pcibus_get_dev_path(DeviceState *dev)
1964{
1965 PCIDevice *d = (PCIDevice *)dev;
1966 char path[16];
1967
1968 snprintf(path, sizeof(path), "%04x:%02x:%02x.%x",
1969 pci_find_domain(d->bus), d->config[PCI_SECONDARY_BUS],
1970 PCI_SLOT(d->devfn), PCI_FUNC(d->devfn));
1971
1972 return strdup(path);
1973}
1974