bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU PCI bus manager |
| 3 | * |
| 4 | * Copyright (c) 2004 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 6 | * 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 | */ |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 24 | #include "hw.h" |
| 25 | #include "pci.h" |
Isaku Yamahata | 783753f | 2010-07-13 13:01:39 +0900 | [diff] [blame] | 26 | #include "pci_bridge.h" |
Isaku Yamahata | cfb0a50 | 2010-07-12 19:36:40 +0900 | [diff] [blame] | 27 | #include "pci_internals.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 28 | #include "monitor.h" |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 29 | #include "net.h" |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 30 | #include "sysemu.h" |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 31 | #include "loader.h" |
Blue Swirl | bf1b007 | 2010-09-18 05:53:14 +0000 | [diff] [blame] | 32 | #include "range.h" |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 33 | #include "qmp-commands.h" |
Jan Kiszka | cbd2d43 | 2012-05-15 20:09:56 -0300 | [diff] [blame] | 34 | #include "msi.h" |
| 35 | #include "msix.h" |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 36 | |
| 37 | //#define DEBUG_PCI |
Isaku Yamahata | d8d2e07 | 2009-07-07 15:59:22 +0900 | [diff] [blame] | 38 | #ifdef DEBUG_PCI |
Isaku Yamahata | 2e49d64 | 2009-10-30 21:20:55 +0900 | [diff] [blame] | 39 | # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) |
Isaku Yamahata | d8d2e07 | 2009-07-07 15:59:22 +0900 | [diff] [blame] | 40 | #else |
| 41 | # define PCI_DPRINTF(format, ...) do { } while (0) |
| 42 | #endif |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 43 | |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 44 | static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent); |
Alex Williamson | 4f43c1f | 2010-06-25 11:08:59 -0600 | [diff] [blame] | 45 | static char *pcibus_get_dev_path(DeviceState *dev); |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 46 | static char *pcibus_get_fw_dev_path(DeviceState *dev); |
Isaku Yamahata | 9bb3358 | 2010-11-19 18:56:02 +0900 | [diff] [blame] | 47 | static int pcibus_reset(BusState *qbus); |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 48 | |
Paolo Bonzini | 3cb75a7 | 2012-03-28 18:01:36 +0200 | [diff] [blame] | 49 | static Property pci_props[] = { |
| 50 | DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1), |
| 51 | DEFINE_PROP_STRING("romfile", PCIDevice, romfile), |
| 52 | DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1), |
| 53 | DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present, |
| 54 | QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false), |
| 55 | DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present, |
| 56 | QEMU_PCI_CAP_SERR_BITNR, true), |
| 57 | DEFINE_PROP_END_OF_LIST() |
| 58 | }; |
| 59 | |
Anthony Liguori | 0d93692 | 2012-05-02 09:00:20 +0200 | [diff] [blame] | 60 | static void pci_bus_class_init(ObjectClass *klass, void *data) |
| 61 | { |
| 62 | BusClass *k = BUS_CLASS(klass); |
| 63 | |
| 64 | k->print_dev = pcibus_dev_print; |
| 65 | k->get_dev_path = pcibus_get_dev_path; |
| 66 | k->get_fw_dev_path = pcibus_get_fw_dev_path; |
| 67 | k->reset = pcibus_reset; |
| 68 | } |
| 69 | |
| 70 | static const TypeInfo pci_bus_info = { |
| 71 | .name = TYPE_PCI_BUS, |
| 72 | .parent = TYPE_BUS, |
| 73 | .instance_size = sizeof(PCIBus), |
| 74 | .class_init = pci_bus_class_init, |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 75 | }; |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 76 | |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 77 | static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num); |
bellard | 1941d19 | 2006-08-17 10:46:34 +0000 | [diff] [blame] | 78 | static void pci_update_mappings(PCIDevice *d); |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 79 | static void pci_set_irq(void *opaque, int irq_num, int level); |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 80 | static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom); |
Alex Williamson | 230741d | 2010-06-25 11:10:19 -0600 | [diff] [blame] | 81 | static void pci_del_option_rom(PCIDevice *pdev); |
bellard | 1941d19 | 2006-08-17 10:46:34 +0000 | [diff] [blame] | 82 | |
aliguori | d350d97 | 2008-12-11 21:15:42 +0000 | [diff] [blame] | 83 | static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET; |
| 84 | static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 85 | |
| 86 | struct PCIHostBus { |
| 87 | int domain; |
| 88 | struct PCIBus *bus; |
| 89 | QLIST_ENTRY(PCIHostBus) next; |
| 90 | }; |
| 91 | static QLIST_HEAD(, PCIHostBus) host_buses; |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 92 | |
Juan Quintela | 2d1e9f9 | 2009-08-20 19:42:34 +0200 | [diff] [blame] | 93 | static const VMStateDescription vmstate_pcibus = { |
| 94 | .name = "PCIBUS", |
| 95 | .version_id = 1, |
| 96 | .minimum_version_id = 1, |
| 97 | .minimum_version_id_old = 1, |
| 98 | .fields = (VMStateField []) { |
| 99 | VMSTATE_INT32_EQUAL(nirq, PCIBus), |
Juan Quintela | c7bde57 | 2009-10-16 13:29:48 +0200 | [diff] [blame] | 100 | VMSTATE_VARRAY_INT32(irq_count, PCIBus, nirq, 0, vmstate_info_int32, int32_t), |
Juan Quintela | 2d1e9f9 | 2009-08-20 19:42:34 +0200 | [diff] [blame] | 101 | VMSTATE_END_OF_LIST() |
balrog | 52fc1d8 | 2007-12-09 23:56:13 +0000 | [diff] [blame] | 102 | } |
Juan Quintela | 2d1e9f9 | 2009-08-20 19:42:34 +0200 | [diff] [blame] | 103 | }; |
Isaku Yamahata | b3b1169 | 2009-10-30 21:21:05 +0900 | [diff] [blame] | 104 | static int pci_bar(PCIDevice *d, int reg) |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 105 | { |
Isaku Yamahata | b3b1169 | 2009-10-30 21:21:05 +0900 | [diff] [blame] | 106 | uint8_t type; |
| 107 | |
| 108 | if (reg != PCI_ROM_SLOT) |
| 109 | return PCI_BASE_ADDRESS_0 + reg * 4; |
| 110 | |
| 111 | type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; |
| 112 | return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS; |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 113 | } |
| 114 | |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 115 | static inline int pci_irq_state(PCIDevice *d, int irq_num) |
| 116 | { |
| 117 | return (d->irq_state >> irq_num) & 0x1; |
| 118 | } |
| 119 | |
| 120 | static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level) |
| 121 | { |
| 122 | d->irq_state &= ~(0x1 << irq_num); |
| 123 | d->irq_state |= level << irq_num; |
| 124 | } |
| 125 | |
| 126 | static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change) |
| 127 | { |
| 128 | PCIBus *bus; |
| 129 | for (;;) { |
| 130 | bus = pci_dev->bus; |
| 131 | irq_num = bus->map_irq(pci_dev, irq_num); |
| 132 | if (bus->set_irq) |
| 133 | break; |
| 134 | pci_dev = bus->parent_dev; |
| 135 | } |
| 136 | bus->irq_count[irq_num] += change; |
| 137 | bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0); |
| 138 | } |
| 139 | |
Isaku Yamahata | 9ddf843 | 2011-04-01 20:43:21 +0900 | [diff] [blame] | 140 | int pci_bus_get_irq_level(PCIBus *bus, int irq_num) |
| 141 | { |
| 142 | assert(irq_num >= 0); |
| 143 | assert(irq_num < bus->nirq); |
| 144 | return !!bus->irq_count[irq_num]; |
| 145 | } |
| 146 | |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 147 | /* Update interrupt status bit in config space on interrupt |
| 148 | * state change. */ |
| 149 | static void pci_update_irq_status(PCIDevice *dev) |
| 150 | { |
| 151 | if (dev->irq_state) { |
| 152 | dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT; |
| 153 | } else { |
| 154 | dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; |
| 155 | } |
| 156 | } |
| 157 | |
Isaku Yamahata | 4c92325 | 2011-01-20 16:21:38 +0900 | [diff] [blame] | 158 | void pci_device_deassert_intx(PCIDevice *dev) |
| 159 | { |
| 160 | int i; |
| 161 | for (i = 0; i < PCI_NUM_PINS; ++i) { |
| 162 | qemu_set_irq(dev->irq[i], 0); |
| 163 | } |
| 164 | } |
| 165 | |
Isaku Yamahata | 0ead87c | 2010-12-22 15:14:35 +0900 | [diff] [blame] | 166 | /* |
| 167 | * This function is called on #RST and FLR. |
| 168 | * FLR if PCI_EXP_DEVCTL_BCR_FLR is set |
| 169 | */ |
| 170 | void pci_device_reset(PCIDevice *dev) |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 171 | { |
Michael S. Tsirkin | c0b1905 | 2009-09-16 13:41:09 +0300 | [diff] [blame] | 172 | int r; |
Anthony Liguori | 6fc4925 | 2011-12-04 11:40:58 -0600 | [diff] [blame] | 173 | |
| 174 | qdev_reset_all(&dev->qdev); |
Michael S. Tsirkin | c0b1905 | 2009-09-16 13:41:09 +0300 | [diff] [blame] | 175 | |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 176 | dev->irq_state = 0; |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 177 | pci_update_irq_status(dev); |
Isaku Yamahata | 4c92325 | 2011-01-20 16:21:38 +0900 | [diff] [blame] | 178 | pci_device_deassert_intx(dev); |
Stefan Weil | ebabb67 | 2011-04-26 10:29:36 +0200 | [diff] [blame] | 179 | /* Clear all writable bits */ |
Isaku Yamahata | 99443c2 | 2010-10-19 18:06:30 +0900 | [diff] [blame] | 180 | pci_word_test_and_clear_mask(dev->config + PCI_COMMAND, |
Michael S. Tsirkin | f9aebe2 | 2010-10-27 16:01:25 +0200 | [diff] [blame] | 181 | pci_get_word(dev->wmask + PCI_COMMAND) | |
| 182 | pci_get_word(dev->w1cmask + PCI_COMMAND)); |
Isaku Yamahata | 89d437d | 2010-11-16 17:26:07 +0900 | [diff] [blame] | 183 | pci_word_test_and_clear_mask(dev->config + PCI_STATUS, |
| 184 | pci_get_word(dev->wmask + PCI_STATUS) | |
| 185 | pci_get_word(dev->w1cmask + PCI_STATUS)); |
Michael S. Tsirkin | c0b1905 | 2009-09-16 13:41:09 +0300 | [diff] [blame] | 186 | dev->config[PCI_CACHE_LINE_SIZE] = 0x0; |
| 187 | dev->config[PCI_INTERRUPT_LINE] = 0x0; |
| 188 | for (r = 0; r < PCI_NUM_REGIONS; ++r) { |
Isaku Yamahata | 71ebd6d | 2010-06-17 15:15:45 +0900 | [diff] [blame] | 189 | PCIIORegion *region = &dev->io_regions[r]; |
| 190 | if (!region->size) { |
Michael S. Tsirkin | c0b1905 | 2009-09-16 13:41:09 +0300 | [diff] [blame] | 191 | continue; |
| 192 | } |
Isaku Yamahata | 71ebd6d | 2010-06-17 15:15:45 +0900 | [diff] [blame] | 193 | |
| 194 | if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) && |
| 195 | region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { |
| 196 | pci_set_quad(dev->config + pci_bar(dev, r), region->type); |
| 197 | } else { |
| 198 | pci_set_long(dev->config + pci_bar(dev, r), region->type); |
| 199 | } |
Michael S. Tsirkin | c0b1905 | 2009-09-16 13:41:09 +0300 | [diff] [blame] | 200 | } |
| 201 | pci_update_mappings(dev); |
Jan Kiszka | cbd2d43 | 2012-05-15 20:09:56 -0300 | [diff] [blame] | 202 | |
| 203 | msi_reset(dev); |
| 204 | msix_reset(dev); |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 205 | } |
| 206 | |
Isaku Yamahata | 9bb3358 | 2010-11-19 18:56:02 +0900 | [diff] [blame] | 207 | /* |
| 208 | * Trigger pci bus reset under a given bus. |
| 209 | * To be called on RST# assert. |
| 210 | */ |
| 211 | void pci_bus_reset(PCIBus *bus) |
Gleb Natapov | 6eaa684 | 2009-06-17 19:32:00 +0300 | [diff] [blame] | 212 | { |
Gleb Natapov | 6eaa684 | 2009-06-17 19:32:00 +0300 | [diff] [blame] | 213 | int i; |
| 214 | |
| 215 | for (i = 0; i < bus->nirq; i++) { |
| 216 | bus->irq_count[i] = 0; |
| 217 | } |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 218 | for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { |
| 219 | if (bus->devices[i]) { |
| 220 | pci_device_reset(bus->devices[i]); |
| 221 | } |
Gleb Natapov | 6eaa684 | 2009-06-17 19:32:00 +0300 | [diff] [blame] | 222 | } |
| 223 | } |
| 224 | |
Isaku Yamahata | 9bb3358 | 2010-11-19 18:56:02 +0900 | [diff] [blame] | 225 | static int pcibus_reset(BusState *qbus) |
| 226 | { |
| 227 | pci_bus_reset(DO_UPCAST(PCIBus, qbus, qbus)); |
| 228 | |
| 229 | /* topology traverse is done by pci_bus_reset(). |
| 230 | Tell qbus/qdev walker not to traverse the tree */ |
| 231 | return 1; |
| 232 | } |
| 233 | |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 234 | static void pci_host_bus_register(int domain, PCIBus *bus) |
| 235 | { |
| 236 | struct PCIHostBus *host; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 237 | host = g_malloc0(sizeof(*host)); |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 238 | host->domain = domain; |
| 239 | host->bus = bus; |
| 240 | QLIST_INSERT_HEAD(&host_buses, host, next); |
| 241 | } |
| 242 | |
Isaku Yamahata | c469e1d | 2009-11-12 14:58:36 +0900 | [diff] [blame] | 243 | PCIBus *pci_find_root_bus(int domain) |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 244 | { |
| 245 | struct PCIHostBus *host; |
| 246 | |
| 247 | QLIST_FOREACH(host, &host_buses, next) { |
| 248 | if (host->domain == domain) { |
| 249 | return host->bus; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | return NULL; |
| 254 | } |
| 255 | |
Isaku Yamahata | e075e78 | 2010-05-28 18:30:46 +0900 | [diff] [blame] | 256 | int pci_find_domain(const PCIBus *bus) |
| 257 | { |
| 258 | PCIDevice *d; |
| 259 | struct PCIHostBus *host; |
| 260 | |
| 261 | /* obtain root bus */ |
| 262 | while ((d = bus->parent_dev) != NULL) { |
| 263 | bus = d->bus; |
| 264 | } |
| 265 | |
| 266 | QLIST_FOREACH(host, &host_buses, next) { |
| 267 | if (host->bus == bus) { |
| 268 | return host->domain; |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | abort(); /* should not be reached */ |
| 273 | return -1; |
| 274 | } |
| 275 | |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 276 | void pci_bus_new_inplace(PCIBus *bus, DeviceState *parent, |
Avi Kivity | 1e39101 | 2011-07-26 14:26:19 +0300 | [diff] [blame] | 277 | const char *name, |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 278 | MemoryRegion *address_space_mem, |
| 279 | MemoryRegion *address_space_io, |
Avi Kivity | 1e39101 | 2011-07-26 14:26:19 +0300 | [diff] [blame] | 280 | uint8_t devfn_min) |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 281 | { |
Anthony Liguori | 0d93692 | 2012-05-02 09:00:20 +0200 | [diff] [blame] | 282 | qbus_create_inplace(&bus->qbus, TYPE_PCI_BUS, parent, name); |
Isaku Yamahata | 6fa8491 | 2010-06-23 16:15:26 +0900 | [diff] [blame] | 283 | assert(PCI_FUNC(devfn_min) == 0); |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 284 | bus->devfn_min = devfn_min; |
Avi Kivity | 5968eca | 2011-08-08 16:09:05 +0300 | [diff] [blame] | 285 | bus->address_space_mem = address_space_mem; |
| 286 | bus->address_space_io = address_space_io; |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 287 | |
| 288 | /* host bridge */ |
| 289 | QLIST_INIT(&bus->child); |
| 290 | pci_host_bus_register(0, bus); /* for now only pci domain 0 is supported */ |
| 291 | |
Alex Williamson | 0be71e3 | 2010-06-25 11:09:07 -0600 | [diff] [blame] | 292 | vmstate_register(NULL, -1, &vmstate_pcibus, bus); |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 293 | } |
| 294 | |
Avi Kivity | 1e39101 | 2011-07-26 14:26:19 +0300 | [diff] [blame] | 295 | PCIBus *pci_bus_new(DeviceState *parent, const char *name, |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 296 | MemoryRegion *address_space_mem, |
| 297 | MemoryRegion *address_space_io, |
| 298 | uint8_t devfn_min) |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 299 | { |
| 300 | PCIBus *bus; |
| 301 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 302 | bus = g_malloc0(sizeof(*bus)); |
Anthony Liguori | 0d93692 | 2012-05-02 09:00:20 +0200 | [diff] [blame] | 303 | bus->qbus.glib_allocated = true; |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 304 | pci_bus_new_inplace(bus, parent, name, address_space_mem, |
| 305 | address_space_io, devfn_min); |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 306 | return bus; |
| 307 | } |
| 308 | |
| 309 | void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, |
| 310 | void *irq_opaque, int nirq) |
| 311 | { |
| 312 | bus->set_irq = set_irq; |
| 313 | bus->map_irq = map_irq; |
| 314 | bus->irq_opaque = irq_opaque; |
| 315 | bus->nirq = nirq; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 316 | bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0])); |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 317 | } |
| 318 | |
Isaku Yamahata | 87c3054 | 2010-05-14 16:29:19 +0900 | [diff] [blame] | 319 | void pci_bus_hotplug(PCIBus *bus, pci_hotplug_fn hotplug, DeviceState *qdev) |
Gerd Hoffmann | ee995ff | 2009-09-25 21:42:44 +0200 | [diff] [blame] | 320 | { |
| 321 | bus->qbus.allow_hotplug = 1; |
| 322 | bus->hotplug = hotplug; |
Isaku Yamahata | 87c3054 | 2010-05-14 16:29:19 +0900 | [diff] [blame] | 323 | bus->hotplug_qdev = qdev; |
Gerd Hoffmann | ee995ff | 2009-09-25 21:42:44 +0200 | [diff] [blame] | 324 | } |
| 325 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 326 | PCIBus *pci_register_bus(DeviceState *parent, const char *name, |
| 327 | pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, |
Avi Kivity | 1e39101 | 2011-07-26 14:26:19 +0300 | [diff] [blame] | 328 | void *irq_opaque, |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 329 | MemoryRegion *address_space_mem, |
| 330 | MemoryRegion *address_space_io, |
Avi Kivity | 1e39101 | 2011-07-26 14:26:19 +0300 | [diff] [blame] | 331 | uint8_t devfn_min, int nirq) |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 332 | { |
| 333 | PCIBus *bus; |
balrog | 52fc1d8 | 2007-12-09 23:56:13 +0000 | [diff] [blame] | 334 | |
Avi Kivity | aee97b8 | 2011-08-08 16:09:04 +0300 | [diff] [blame] | 335 | bus = pci_bus_new(parent, name, address_space_mem, |
| 336 | address_space_io, devfn_min); |
Gerd Hoffmann | 21eea4b | 2009-09-16 22:25:31 +0200 | [diff] [blame] | 337 | pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq); |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 338 | return bus; |
| 339 | } |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 340 | |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 341 | int pci_bus_num(PCIBus *s) |
| 342 | { |
Isaku Yamahata | e94ff65 | 2009-10-30 21:21:12 +0900 | [diff] [blame] | 343 | if (!s->parent_dev) |
| 344 | return 0; /* pci host bridge */ |
| 345 | return s->parent_dev->config[PCI_SECONDARY_BUS]; |
pbrook | 502a539 | 2006-05-13 16:11:23 +0000 | [diff] [blame] | 346 | } |
| 347 | |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 348 | static int get_pci_config_device(QEMUFile *f, void *pv, size_t size) |
bellard | 30ca2aa | 2004-10-03 13:56:00 +0000 | [diff] [blame] | 349 | { |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 350 | PCIDevice *s = container_of(pv, PCIDevice, config); |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 351 | uint8_t *config; |
balrog | 52fc1d8 | 2007-12-09 23:56:13 +0000 | [diff] [blame] | 352 | int i; |
| 353 | |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 354 | assert(size == pci_config_size(s)); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 355 | config = g_malloc(size); |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 356 | |
| 357 | qemu_get_buffer(f, config, size); |
| 358 | for (i = 0; i < size; ++i) { |
Michael S. Tsirkin | f9aebe2 | 2010-10-27 16:01:25 +0200 | [diff] [blame] | 359 | if ((config[i] ^ s->config[i]) & |
| 360 | s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 361 | g_free(config); |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 362 | return -EINVAL; |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 363 | } |
| 364 | } |
| 365 | memcpy(s->config, config, size); |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 366 | |
| 367 | pci_update_mappings(s); |
| 368 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 369 | g_free(config); |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | /* just put buffer */ |
Juan Quintela | 84e2e3e | 2009-09-29 22:48:20 +0200 | [diff] [blame] | 374 | static void put_pci_config_device(QEMUFile *f, void *pv, size_t size) |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 375 | { |
Juan Quintela | dbe73d7 | 2009-11-12 00:39:14 +0100 | [diff] [blame] | 376 | const uint8_t **v = pv; |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 377 | assert(size == pci_config_size(container_of(pv, PCIDevice, config))); |
Juan Quintela | dbe73d7 | 2009-11-12 00:39:14 +0100 | [diff] [blame] | 378 | qemu_put_buffer(f, *v, size); |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | static VMStateInfo vmstate_info_pci_config = { |
| 382 | .name = "pci config", |
| 383 | .get = get_pci_config_device, |
| 384 | .put = put_pci_config_device, |
| 385 | }; |
| 386 | |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 387 | static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size) |
| 388 | { |
Michael S. Tsirkin | c3f8f61 | 2010-05-09 19:15:16 +0300 | [diff] [blame] | 389 | PCIDevice *s = container_of(pv, PCIDevice, irq_state); |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 390 | uint32_t irq_state[PCI_NUM_PINS]; |
| 391 | int i; |
| 392 | for (i = 0; i < PCI_NUM_PINS; ++i) { |
| 393 | irq_state[i] = qemu_get_be32(f); |
| 394 | if (irq_state[i] != 0x1 && irq_state[i] != 0) { |
| 395 | fprintf(stderr, "irq state %d: must be 0 or 1.\n", |
| 396 | irq_state[i]); |
| 397 | return -EINVAL; |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | for (i = 0; i < PCI_NUM_PINS; ++i) { |
| 402 | pci_set_irq_state(s, i, irq_state[i]); |
| 403 | } |
| 404 | |
| 405 | return 0; |
| 406 | } |
| 407 | |
| 408 | static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size) |
| 409 | { |
| 410 | int i; |
Michael S. Tsirkin | c3f8f61 | 2010-05-09 19:15:16 +0300 | [diff] [blame] | 411 | PCIDevice *s = container_of(pv, PCIDevice, irq_state); |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 412 | |
| 413 | for (i = 0; i < PCI_NUM_PINS; ++i) { |
| 414 | qemu_put_be32(f, pci_irq_state(s, i)); |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | static VMStateInfo vmstate_info_pci_irq_state = { |
| 419 | .name = "pci irq state", |
| 420 | .get = get_pci_irq_state, |
| 421 | .put = put_pci_irq_state, |
| 422 | }; |
| 423 | |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 424 | const VMStateDescription vmstate_pci_device = { |
| 425 | .name = "PCIDevice", |
| 426 | .version_id = 2, |
| 427 | .minimum_version_id = 1, |
| 428 | .minimum_version_id_old = 1, |
| 429 | .fields = (VMStateField []) { |
| 430 | VMSTATE_INT32_LE(version_id, PCIDevice), |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 431 | VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, |
| 432 | vmstate_info_pci_config, |
| 433 | PCI_CONFIG_SPACE_SIZE), |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 434 | VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, |
| 435 | vmstate_info_pci_irq_state, |
| 436 | PCI_NUM_PINS * sizeof(int32_t)), |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 437 | VMSTATE_END_OF_LIST() |
| 438 | } |
| 439 | }; |
| 440 | |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 441 | const VMStateDescription vmstate_pcie_device = { |
| 442 | .name = "PCIDevice", |
| 443 | .version_id = 2, |
| 444 | .minimum_version_id = 1, |
| 445 | .minimum_version_id_old = 1, |
| 446 | .fields = (VMStateField []) { |
| 447 | VMSTATE_INT32_LE(version_id, PCIDevice), |
| 448 | VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, |
| 449 | vmstate_info_pci_config, |
| 450 | PCIE_CONFIG_SPACE_SIZE), |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 451 | VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, |
| 452 | vmstate_info_pci_irq_state, |
| 453 | PCI_NUM_PINS * sizeof(int32_t)), |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 454 | VMSTATE_END_OF_LIST() |
| 455 | } |
| 456 | }; |
| 457 | |
| 458 | static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s) |
| 459 | { |
| 460 | return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device; |
| 461 | } |
| 462 | |
Juan Quintela | 73534f2 | 2009-08-20 19:42:39 +0200 | [diff] [blame] | 463 | void pci_device_save(PCIDevice *s, QEMUFile *f) |
| 464 | { |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 465 | /* Clear interrupt status bit: it is implicit |
| 466 | * in irq_state which we are saving. |
| 467 | * This makes us compatible with old devices |
| 468 | * which never set or clear this bit. */ |
| 469 | s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 470 | vmstate_save_state(f, pci_get_vmstate(s), s); |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 471 | /* Restore the interrupt status bit. */ |
| 472 | pci_update_irq_status(s); |
bellard | 30ca2aa | 2004-10-03 13:56:00 +0000 | [diff] [blame] | 473 | } |
| 474 | |
bellard | 1941d19 | 2006-08-17 10:46:34 +0000 | [diff] [blame] | 475 | int pci_device_load(PCIDevice *s, QEMUFile *f) |
bellard | 30ca2aa | 2004-10-03 13:56:00 +0000 | [diff] [blame] | 476 | { |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 477 | int ret; |
| 478 | ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id); |
| 479 | /* Restore the interrupt status bit. */ |
| 480 | pci_update_irq_status(s); |
| 481 | return ret; |
bellard | 30ca2aa | 2004-10-03 13:56:00 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Isaku Yamahata | 5e434f4 | 2010-05-27 14:42:06 +0900 | [diff] [blame] | 484 | static void pci_set_default_subsystem_id(PCIDevice *pci_dev) |
aliguori | d350d97 | 2008-12-11 21:15:42 +0000 | [diff] [blame] | 485 | { |
Isaku Yamahata | 5e434f4 | 2010-05-27 14:42:06 +0900 | [diff] [blame] | 486 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, |
| 487 | pci_default_sub_vendor_id); |
| 488 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, |
| 489 | pci_default_sub_device_id); |
aliguori | d350d97 | 2008-12-11 21:15:42 +0000 | [diff] [blame] | 490 | } |
| 491 | |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 492 | /* |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 493 | * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL |
| 494 | * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 495 | */ |
Michael S. Tsirkin | 94a09e2 | 2012-02-15 23:32:00 +0200 | [diff] [blame] | 496 | static int pci_parse_devaddr(const char *addr, int *domp, int *busp, |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 497 | unsigned int *slotp, unsigned int *funcp) |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 498 | { |
| 499 | const char *p; |
| 500 | char *e; |
| 501 | unsigned long val; |
| 502 | unsigned long dom = 0, bus = 0; |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 503 | unsigned int slot = 0; |
| 504 | unsigned int func = 0; |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 505 | |
| 506 | p = addr; |
| 507 | val = strtoul(p, &e, 16); |
| 508 | if (e == p) |
| 509 | return -1; |
| 510 | if (*e == ':') { |
| 511 | bus = val; |
| 512 | p = e + 1; |
| 513 | val = strtoul(p, &e, 16); |
| 514 | if (e == p) |
| 515 | return -1; |
| 516 | if (*e == ':') { |
| 517 | dom = bus; |
| 518 | bus = val; |
| 519 | p = e + 1; |
| 520 | val = strtoul(p, &e, 16); |
| 521 | if (e == p) |
| 522 | return -1; |
| 523 | } |
| 524 | } |
| 525 | |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 526 | slot = val; |
| 527 | |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 528 | if (funcp != NULL) { |
| 529 | if (*e != '.') |
| 530 | return -1; |
| 531 | |
| 532 | p = e + 1; |
| 533 | val = strtoul(p, &e, 16); |
| 534 | if (e == p) |
| 535 | return -1; |
| 536 | |
| 537 | func = val; |
| 538 | } |
| 539 | |
| 540 | /* if funcp == NULL func is 0 */ |
| 541 | if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7) |
| 542 | return -1; |
| 543 | |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 544 | if (*e) |
| 545 | return -1; |
| 546 | |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 547 | *domp = dom; |
| 548 | *busp = bus; |
| 549 | *slotp = slot; |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 550 | if (funcp != NULL) |
| 551 | *funcp = func; |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 552 | return 0; |
| 553 | } |
| 554 | |
Jan Kiszka | e9283f8 | 2009-06-26 00:04:00 +0200 | [diff] [blame] | 555 | int pci_read_devaddr(Monitor *mon, const char *addr, int *domp, int *busp, |
| 556 | unsigned *slotp) |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 557 | { |
Jan Kiszka | e9283f8 | 2009-06-26 00:04:00 +0200 | [diff] [blame] | 558 | /* strip legacy tag */ |
| 559 | if (!strncmp(addr, "pci_addr=", 9)) { |
| 560 | addr += 9; |
| 561 | } |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 562 | if (pci_parse_devaddr(addr, domp, busp, slotp, NULL)) { |
Jan Kiszka | e9283f8 | 2009-06-26 00:04:00 +0200 | [diff] [blame] | 563 | monitor_printf(mon, "Invalid pci address\n"); |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 564 | return -1; |
Jan Kiszka | e9283f8 | 2009-06-26 00:04:00 +0200 | [diff] [blame] | 565 | } |
| 566 | return 0; |
aliguori | 880345c | 2009-02-11 15:21:48 +0000 | [diff] [blame] | 567 | } |
| 568 | |
Markus Armbruster | 49bd145 | 2009-09-25 03:53:49 +0200 | [diff] [blame] | 569 | PCIBus *pci_get_bus_devfn(int *devfnp, const char *devaddr) |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 570 | { |
| 571 | int dom, bus; |
| 572 | unsigned slot; |
| 573 | |
| 574 | if (!devaddr) { |
| 575 | *devfnp = -1; |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 576 | return pci_find_bus_nr(pci_find_root_bus(0), 0); |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 577 | } |
| 578 | |
Isaku Yamahata | 43c945f | 2010-09-06 16:46:19 +0900 | [diff] [blame] | 579 | if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) { |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 580 | return NULL; |
| 581 | } |
| 582 | |
Isaku Yamahata | 6ff534b | 2011-01-27 15:56:38 +0900 | [diff] [blame] | 583 | *devfnp = PCI_DEVFN(slot, 0); |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 584 | return pci_find_bus_nr(pci_find_root_bus(dom), bus); |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 585 | } |
| 586 | |
Michael S. Tsirkin | bd4b65e | 2009-06-21 19:49:40 +0300 | [diff] [blame] | 587 | static void pci_init_cmask(PCIDevice *dev) |
| 588 | { |
| 589 | pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff); |
| 590 | pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff); |
| 591 | dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST; |
| 592 | dev->cmask[PCI_REVISION_ID] = 0xff; |
| 593 | dev->cmask[PCI_CLASS_PROG] = 0xff; |
| 594 | pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff); |
| 595 | dev->cmask[PCI_HEADER_TYPE] = 0xff; |
| 596 | dev->cmask[PCI_CAPABILITY_LIST] = 0xff; |
| 597 | } |
| 598 | |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 599 | static void pci_init_wmask(PCIDevice *dev) |
| 600 | { |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 601 | int config_size = pci_config_size(dev); |
| 602 | |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 603 | dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff; |
| 604 | dev->wmask[PCI_INTERRUPT_LINE] = 0xff; |
Isaku Yamahata | 67a51b4 | 2009-10-30 21:21:02 +0900 | [diff] [blame] | 605 | pci_set_word(dev->wmask + PCI_COMMAND, |
Michael S. Tsirkin | a7b15a5 | 2009-12-23 16:33:56 +0200 | [diff] [blame] | 606 | PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | |
| 607 | PCI_COMMAND_INTX_DISABLE); |
Isaku Yamahata | b1aeb92 | 2010-11-26 21:01:41 +0900 | [diff] [blame] | 608 | if (dev->cap_present & QEMU_PCI_CAP_SERR) { |
| 609 | pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR); |
| 610 | } |
Isaku Yamahata | 3e21ffc | 2009-11-12 14:58:39 +0900 | [diff] [blame] | 611 | |
| 612 | memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff, |
| 613 | config_size - PCI_CONFIG_HEADER_SIZE); |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 614 | } |
| 615 | |
Isaku Yamahata | 89d437d | 2010-11-16 17:26:07 +0900 | [diff] [blame] | 616 | static void pci_init_w1cmask(PCIDevice *dev) |
| 617 | { |
| 618 | /* |
Michael S. Tsirkin | f6bdfcc | 2010-11-18 10:42:50 +0200 | [diff] [blame] | 619 | * Note: It's okay to set w1cmask even for readonly bits as |
Isaku Yamahata | 89d437d | 2010-11-16 17:26:07 +0900 | [diff] [blame] | 620 | * long as their value is hardwired to 0. |
| 621 | */ |
| 622 | pci_set_word(dev->w1cmask + PCI_STATUS, |
| 623 | PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT | |
| 624 | PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT | |
| 625 | PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY); |
| 626 | } |
| 627 | |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 628 | static void pci_init_mask_bridge(PCIDevice *d) |
Isaku Yamahata | fb23162 | 2009-10-30 21:21:22 +0900 | [diff] [blame] | 629 | { |
| 630 | /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and |
| 631 | PCI_SEC_LETENCY_TIMER */ |
| 632 | memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4); |
| 633 | |
| 634 | /* base and limit */ |
| 635 | d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff; |
| 636 | d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff; |
| 637 | pci_set_word(d->wmask + PCI_MEMORY_BASE, |
| 638 | PCI_MEMORY_RANGE_MASK & 0xffff); |
| 639 | pci_set_word(d->wmask + PCI_MEMORY_LIMIT, |
| 640 | PCI_MEMORY_RANGE_MASK & 0xffff); |
| 641 | pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE, |
| 642 | PCI_PREF_RANGE_MASK & 0xffff); |
| 643 | pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT, |
| 644 | PCI_PREF_RANGE_MASK & 0xffff); |
| 645 | |
| 646 | /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */ |
| 647 | memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8); |
| 648 | |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 649 | /* Supported memory and i/o types */ |
Michael S. Tsirkin | 6891710 | 2012-03-04 11:36:35 +0200 | [diff] [blame] | 650 | d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16; |
| 651 | d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16; |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 652 | pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE, |
| 653 | PCI_PREF_RANGE_TYPE_64); |
| 654 | pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT, |
| 655 | PCI_PREF_RANGE_TYPE_64); |
| 656 | |
Michael S. Tsirkin | f6bdfcc | 2010-11-18 10:42:50 +0200 | [diff] [blame] | 657 | /* TODO: add this define to pci_regs.h in linux and then in qemu. */ |
| 658 | #define PCI_BRIDGE_CTL_VGA_16BIT 0x10 /* VGA 16-bit decode */ |
| 659 | #define PCI_BRIDGE_CTL_DISCARD 0x100 /* Primary discard timer */ |
| 660 | #define PCI_BRIDGE_CTL_SEC_DISCARD 0x200 /* Secondary discard timer */ |
| 661 | #define PCI_BRIDGE_CTL_DISCARD_STATUS 0x400 /* Discard timer status */ |
| 662 | #define PCI_BRIDGE_CTL_DISCARD_SERR 0x800 /* Discard timer SERR# enable */ |
| 663 | pci_set_word(d->wmask + PCI_BRIDGE_CONTROL, |
| 664 | PCI_BRIDGE_CTL_PARITY | |
| 665 | PCI_BRIDGE_CTL_SERR | |
| 666 | PCI_BRIDGE_CTL_ISA | |
| 667 | PCI_BRIDGE_CTL_VGA | |
| 668 | PCI_BRIDGE_CTL_VGA_16BIT | |
| 669 | PCI_BRIDGE_CTL_MASTER_ABORT | |
| 670 | PCI_BRIDGE_CTL_BUS_RESET | |
| 671 | PCI_BRIDGE_CTL_FAST_BACK | |
| 672 | PCI_BRIDGE_CTL_DISCARD | |
| 673 | PCI_BRIDGE_CTL_SEC_DISCARD | |
Michael S. Tsirkin | f6bdfcc | 2010-11-18 10:42:50 +0200 | [diff] [blame] | 674 | PCI_BRIDGE_CTL_DISCARD_SERR); |
| 675 | /* Below does not do anything as we never set this bit, put here for |
| 676 | * completeness. */ |
| 677 | pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL, |
| 678 | PCI_BRIDGE_CTL_DISCARD_STATUS); |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 679 | d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK; |
Michael S. Tsirkin | 15ab7a7 | 2012-02-21 15:49:01 +0200 | [diff] [blame] | 680 | d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK; |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 681 | pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE, |
| 682 | PCI_PREF_RANGE_TYPE_MASK); |
Michael S. Tsirkin | 15ab7a7 | 2012-02-21 15:49:01 +0200 | [diff] [blame] | 683 | pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT, |
| 684 | PCI_PREF_RANGE_TYPE_MASK); |
Isaku Yamahata | fb23162 | 2009-10-30 21:21:22 +0900 | [diff] [blame] | 685 | } |
| 686 | |
Isaku Yamahata | 6eab3de | 2010-06-23 16:15:33 +0900 | [diff] [blame] | 687 | static int pci_init_multifunction(PCIBus *bus, PCIDevice *dev) |
| 688 | { |
| 689 | uint8_t slot = PCI_SLOT(dev->devfn); |
| 690 | uint8_t func; |
| 691 | |
| 692 | if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { |
| 693 | dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION; |
| 694 | } |
| 695 | |
| 696 | /* |
Stefan Weil | b0cd712 | 2010-08-06 21:53:45 +0200 | [diff] [blame] | 697 | * multifunction bit is interpreted in two ways as follows. |
Isaku Yamahata | 6eab3de | 2010-06-23 16:15:33 +0900 | [diff] [blame] | 698 | * - all functions must set the bit to 1. |
| 699 | * Example: Intel X53 |
| 700 | * - function 0 must set the bit, but the rest function (> 0) |
| 701 | * is allowed to leave the bit to 0. |
| 702 | * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10, |
| 703 | * |
| 704 | * So OS (at least Linux) checks the bit of only function 0, |
| 705 | * and doesn't see the bit of function > 0. |
| 706 | * |
| 707 | * The below check allows both interpretation. |
| 708 | */ |
| 709 | if (PCI_FUNC(dev->devfn)) { |
| 710 | PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)]; |
| 711 | if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) { |
| 712 | /* function 0 should set multifunction bit */ |
| 713 | error_report("PCI: single function device can't be populated " |
| 714 | "in function %x.%x", slot, PCI_FUNC(dev->devfn)); |
| 715 | return -1; |
| 716 | } |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { |
| 721 | return 0; |
| 722 | } |
| 723 | /* function 0 indicates single function, so function > 0 must be NULL */ |
| 724 | for (func = 1; func < PCI_FUNC_MAX; ++func) { |
| 725 | if (bus->devices[PCI_DEVFN(slot, func)]) { |
| 726 | error_report("PCI: %x.0 indicates single function, " |
| 727 | "but %x.%x is already populated.", |
| 728 | slot, slot, func); |
| 729 | return -1; |
| 730 | } |
| 731 | } |
| 732 | return 0; |
| 733 | } |
| 734 | |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 735 | static void pci_config_alloc(PCIDevice *pci_dev) |
| 736 | { |
| 737 | int config_size = pci_config_size(pci_dev); |
| 738 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 739 | pci_dev->config = g_malloc0(config_size); |
| 740 | pci_dev->cmask = g_malloc0(config_size); |
| 741 | pci_dev->wmask = g_malloc0(config_size); |
| 742 | pci_dev->w1cmask = g_malloc0(config_size); |
| 743 | pci_dev->used = g_malloc0(config_size); |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | static void pci_config_free(PCIDevice *pci_dev) |
| 747 | { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 748 | g_free(pci_dev->config); |
| 749 | g_free(pci_dev->cmask); |
| 750 | g_free(pci_dev->wmask); |
| 751 | g_free(pci_dev->w1cmask); |
| 752 | g_free(pci_dev->used); |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 753 | } |
| 754 | |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 755 | /* -1 for devfn means auto assign */ |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 756 | static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus, |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 757 | const char *name, int devfn) |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 758 | { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 759 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); |
| 760 | PCIConfigReadFunc *config_read = pc->config_read; |
| 761 | PCIConfigWriteFunc *config_write = pc->config_write; |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 762 | |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 763 | if (devfn < 0) { |
Isaku Yamahata | b47b070 | 2009-11-12 14:58:45 +0900 | [diff] [blame] | 764 | for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices); |
Isaku Yamahata | 6fa8491 | 2010-06-23 16:15:26 +0900 | [diff] [blame] | 765 | devfn += PCI_FUNC_MAX) { |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 766 | if (!bus->devices[devfn]) |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 767 | goto found; |
| 768 | } |
Daniel P. Berrange | 3709c1b | 2010-06-08 15:24:25 +0100 | [diff] [blame] | 769 | error_report("PCI: no slot/function available for %s, all in use", name); |
Gerd Hoffmann | 09e3acc | 2009-12-10 11:11:06 +0100 | [diff] [blame] | 770 | return NULL; |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 771 | found: ; |
Markus Armbruster | 07b7d05 | 2009-06-18 15:14:07 +0200 | [diff] [blame] | 772 | } else if (bus->devices[devfn]) { |
Daniel P. Berrange | 3709c1b | 2010-06-08 15:24:25 +0100 | [diff] [blame] | 773 | error_report("PCI: slot %d function %d not available for %s, in use by %s", |
| 774 | PCI_SLOT(devfn), PCI_FUNC(devfn), name, bus->devices[devfn]->name); |
Gerd Hoffmann | 09e3acc | 2009-12-10 11:11:06 +0100 | [diff] [blame] | 775 | return NULL; |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 776 | } |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 777 | pci_dev->bus = bus; |
David Gibson | 5fa45de | 2012-06-27 14:50:45 +1000 | [diff] [blame] | 778 | if (bus->dma_context_fn) { |
| 779 | pci_dev->dma = bus->dma_context_fn(bus, bus->dma_context_opaque, devfn); |
| 780 | } |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 781 | pci_dev->devfn = devfn; |
| 782 | pstrcpy(pci_dev->name, sizeof(pci_dev->name), name); |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 783 | pci_dev->irq_state = 0; |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 784 | pci_config_alloc(pci_dev); |
Isaku Yamahata | fb23162 | 2009-10-30 21:21:22 +0900 | [diff] [blame] | 785 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 786 | pci_config_set_vendor_id(pci_dev->config, pc->vendor_id); |
| 787 | pci_config_set_device_id(pci_dev->config, pc->device_id); |
| 788 | pci_config_set_revision(pci_dev->config, pc->revision); |
| 789 | pci_config_set_class(pci_dev->config, pc->class_id); |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 790 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 791 | if (!pc->is_bridge) { |
| 792 | if (pc->subsystem_vendor_id || pc->subsystem_id) { |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 793 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 794 | pc->subsystem_vendor_id); |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 795 | pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 796 | pc->subsystem_id); |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 797 | } else { |
| 798 | pci_set_default_subsystem_id(pci_dev); |
| 799 | } |
| 800 | } else { |
| 801 | /* subsystem_vendor_id/subsystem_id are only for header type 0 */ |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 802 | assert(!pc->subsystem_vendor_id); |
| 803 | assert(!pc->subsystem_id); |
Isaku Yamahata | fb23162 | 2009-10-30 21:21:22 +0900 | [diff] [blame] | 804 | } |
Michael S. Tsirkin | bd4b65e | 2009-06-21 19:49:40 +0300 | [diff] [blame] | 805 | pci_init_cmask(pci_dev); |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 806 | pci_init_wmask(pci_dev); |
Isaku Yamahata | 89d437d | 2010-11-16 17:26:07 +0900 | [diff] [blame] | 807 | pci_init_w1cmask(pci_dev); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 808 | if (pc->is_bridge) { |
Michael S. Tsirkin | d5f27e8 | 2012-02-21 15:57:58 +0200 | [diff] [blame] | 809 | pci_init_mask_bridge(pci_dev); |
Isaku Yamahata | fb23162 | 2009-10-30 21:21:22 +0900 | [diff] [blame] | 810 | } |
Isaku Yamahata | 6eab3de | 2010-06-23 16:15:33 +0900 | [diff] [blame] | 811 | if (pci_init_multifunction(bus, pci_dev)) { |
| 812 | pci_config_free(pci_dev); |
| 813 | return NULL; |
| 814 | } |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 815 | |
| 816 | if (!config_read) |
| 817 | config_read = pci_default_read_config; |
| 818 | if (!config_write) |
| 819 | config_write = pci_default_write_config; |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 820 | pci_dev->config_read = config_read; |
| 821 | pci_dev->config_write = config_write; |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 822 | bus->devices[devfn] = pci_dev; |
Isaku Yamahata | e369cad | 2009-10-30 21:20:56 +0900 | [diff] [blame] | 823 | pci_dev->irq = qemu_allocate_irqs(pci_set_irq, pci_dev, PCI_NUM_PINS); |
Juan Quintela | f16c4ab | 2009-08-20 19:42:38 +0200 | [diff] [blame] | 824 | pci_dev->version_id = 2; /* Current pci device vmstate version */ |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 825 | return pci_dev; |
| 826 | } |
| 827 | |
Alex Williamson | 925fe64 | 2010-05-11 06:44:21 -0400 | [diff] [blame] | 828 | static void do_pci_unregister_device(PCIDevice *pci_dev) |
| 829 | { |
| 830 | qemu_free_irqs(pci_dev->irq); |
| 831 | pci_dev->bus->devices[pci_dev->devfn] = NULL; |
| 832 | pci_config_free(pci_dev); |
| 833 | } |
| 834 | |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 835 | static void pci_unregister_io_regions(PCIDevice *pci_dev) |
| 836 | { |
| 837 | PCIIORegion *r; |
| 838 | int i; |
| 839 | |
| 840 | for(i = 0; i < PCI_NUM_REGIONS; i++) { |
| 841 | r = &pci_dev->io_regions[i]; |
Isaku Yamahata | 182f9c8 | 2009-10-30 21:20:58 +0900 | [diff] [blame] | 842 | if (!r->size || r->addr == PCI_BAR_UNMAPPED) |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 843 | continue; |
Avi Kivity | 0395233 | 2011-08-08 16:09:32 +0300 | [diff] [blame] | 844 | memory_region_del_subregion(r->address_space, r->memory); |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 845 | } |
| 846 | } |
| 847 | |
Gerd Hoffmann | a36a344 | 2009-09-25 21:42:37 +0200 | [diff] [blame] | 848 | static int pci_unregister_device(DeviceState *dev) |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 849 | { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 850 | PCIDevice *pci_dev = PCI_DEVICE(dev); |
| 851 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 852 | int ret = 0; |
| 853 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 854 | if (pc->exit) |
| 855 | ret = pc->exit(pci_dev); |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 856 | if (ret) |
| 857 | return ret; |
| 858 | |
| 859 | pci_unregister_io_regions(pci_dev); |
Alex Williamson | 230741d | 2010-06-25 11:10:19 -0600 | [diff] [blame] | 860 | pci_del_option_rom(pci_dev); |
Alex Williamson | 925fe64 | 2010-05-11 06:44:21 -0400 | [diff] [blame] | 861 | do_pci_unregister_device(pci_dev); |
aliguori | 5851e08 | 2009-02-11 15:21:10 +0000 | [diff] [blame] | 862 | return 0; |
| 863 | } |
| 864 | |
Avi Kivity | e824b2c | 2011-08-08 16:09:31 +0300 | [diff] [blame] | 865 | void pci_register_bar(PCIDevice *pci_dev, int region_num, |
| 866 | uint8_t type, MemoryRegion *memory) |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 867 | { |
| 868 | PCIIORegion *r; |
pbrook | d7ce493 | 2006-04-18 16:55:22 +0000 | [diff] [blame] | 869 | uint32_t addr; |
Isaku Yamahata | 5a9ff38 | 2010-09-09 11:48:55 +0900 | [diff] [blame] | 870 | uint64_t wmask; |
Avi Kivity | cfc0be2 | 2011-08-08 16:09:29 +0300 | [diff] [blame] | 871 | pcibus_t size = memory_region_size(memory); |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 872 | |
Isaku Yamahata | 2bbb9c2 | 2010-09-09 11:48:56 +0900 | [diff] [blame] | 873 | assert(region_num >= 0); |
| 874 | assert(region_num < PCI_NUM_REGIONS); |
aliguori | a4c20c6 | 2009-02-11 15:21:16 +0000 | [diff] [blame] | 875 | if (size & (size-1)) { |
| 876 | fprintf(stderr, "ERROR: PCI region size must be pow2 " |
Isaku Yamahata | 89e8b13 | 2009-10-30 21:21:09 +0900 | [diff] [blame] | 877 | "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size); |
aliguori | a4c20c6 | 2009-02-11 15:21:16 +0000 | [diff] [blame] | 878 | exit(1); |
| 879 | } |
| 880 | |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 881 | r = &pci_dev->io_regions[region_num]; |
Isaku Yamahata | 182f9c8 | 2009-10-30 21:20:58 +0900 | [diff] [blame] | 882 | r->addr = PCI_BAR_UNMAPPED; |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 883 | r->size = size; |
| 884 | r->type = type; |
Avi Kivity | 79ff8cb | 2011-07-26 14:26:20 +0300 | [diff] [blame] | 885 | r->memory = NULL; |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 886 | |
| 887 | wmask = ~(size - 1); |
Isaku Yamahata | b3b1169 | 2009-10-30 21:21:05 +0900 | [diff] [blame] | 888 | addr = pci_bar(pci_dev, region_num); |
pbrook | d7ce493 | 2006-04-18 16:55:22 +0000 | [diff] [blame] | 889 | if (region_num == PCI_ROM_SLOT) { |
Stefan Weil | ebabb67 | 2011-04-26 10:29:36 +0200 | [diff] [blame] | 890 | /* ROM enable bit is writable */ |
Michael S. Tsirkin | 5330de0 | 2009-09-16 13:40:57 +0300 | [diff] [blame] | 891 | wmask |= PCI_ROM_ADDRESS_ENABLE; |
pbrook | d7ce493 | 2006-04-18 16:55:22 +0000 | [diff] [blame] | 892 | } |
Isaku Yamahata | b0ff8eb | 2009-10-30 21:21:00 +0900 | [diff] [blame] | 893 | pci_set_long(pci_dev->config + addr, type); |
Isaku Yamahata | 1442125 | 2009-10-30 21:21:11 +0900 | [diff] [blame] | 894 | if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) && |
| 895 | r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { |
| 896 | pci_set_quad(pci_dev->wmask + addr, wmask); |
| 897 | pci_set_quad(pci_dev->cmask + addr, ~0ULL); |
| 898 | } else { |
| 899 | pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff); |
| 900 | pci_set_long(pci_dev->cmask + addr, 0xffffffff); |
| 901 | } |
Avi Kivity | 79ff8cb | 2011-07-26 14:26:20 +0300 | [diff] [blame] | 902 | pci_dev->io_regions[region_num].memory = memory; |
Avi Kivity | 5968eca | 2011-08-08 16:09:05 +0300 | [diff] [blame] | 903 | pci_dev->io_regions[region_num].address_space |
Avi Kivity | cfc0be2 | 2011-08-08 16:09:29 +0300 | [diff] [blame] | 904 | = type & PCI_BASE_ADDRESS_SPACE_IO |
Avi Kivity | 5968eca | 2011-08-08 16:09:05 +0300 | [diff] [blame] | 905 | ? pci_dev->bus->address_space_io |
| 906 | : pci_dev->bus->address_space_mem; |
Avi Kivity | 79ff8cb | 2011-07-26 14:26:20 +0300 | [diff] [blame] | 907 | } |
| 908 | |
Avi Kivity | 16a96f2 | 2011-08-08 16:08:55 +0300 | [diff] [blame] | 909 | pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num) |
| 910 | { |
| 911 | return pci_dev->io_regions[region_num].addr; |
| 912 | } |
| 913 | |
Michael S. Tsirkin | 876a350 | 2009-11-12 13:47:17 +0200 | [diff] [blame] | 914 | static pcibus_t pci_bar_address(PCIDevice *d, |
| 915 | int reg, uint8_t type, pcibus_t size) |
| 916 | { |
| 917 | pcibus_t new_addr, last_addr; |
| 918 | int bar = pci_bar(d, reg); |
| 919 | uint16_t cmd = pci_get_word(d->config + PCI_COMMAND); |
| 920 | |
| 921 | if (type & PCI_BASE_ADDRESS_SPACE_IO) { |
| 922 | if (!(cmd & PCI_COMMAND_IO)) { |
| 923 | return PCI_BAR_UNMAPPED; |
| 924 | } |
| 925 | new_addr = pci_get_long(d->config + bar) & ~(size - 1); |
| 926 | last_addr = new_addr + size - 1; |
| 927 | /* NOTE: we have only 64K ioports on PC */ |
| 928 | if (last_addr <= new_addr || new_addr == 0 || last_addr > UINT16_MAX) { |
| 929 | return PCI_BAR_UNMAPPED; |
| 930 | } |
| 931 | return new_addr; |
| 932 | } |
| 933 | |
| 934 | if (!(cmd & PCI_COMMAND_MEMORY)) { |
| 935 | return PCI_BAR_UNMAPPED; |
| 936 | } |
| 937 | if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) { |
| 938 | new_addr = pci_get_quad(d->config + bar); |
| 939 | } else { |
| 940 | new_addr = pci_get_long(d->config + bar); |
| 941 | } |
| 942 | /* the ROM slot has a specific enable bit */ |
| 943 | if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) { |
| 944 | return PCI_BAR_UNMAPPED; |
| 945 | } |
| 946 | new_addr &= ~(size - 1); |
| 947 | last_addr = new_addr + size - 1; |
| 948 | /* NOTE: we do not support wrapping */ |
| 949 | /* XXX: as we cannot support really dynamic |
| 950 | mappings, we handle specific values as invalid |
| 951 | mappings. */ |
| 952 | if (last_addr <= new_addr || new_addr == 0 || |
| 953 | last_addr == PCI_BAR_UNMAPPED) { |
| 954 | return PCI_BAR_UNMAPPED; |
| 955 | } |
| 956 | |
| 957 | /* Now pcibus_t is 64bit. |
| 958 | * Check if 32 bit BAR wraps around explicitly. |
| 959 | * Without this, PC ide doesn't work well. |
| 960 | * TODO: remove this work around. |
| 961 | */ |
| 962 | if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) { |
| 963 | return PCI_BAR_UNMAPPED; |
| 964 | } |
| 965 | |
| 966 | /* |
| 967 | * OS is allowed to set BAR beyond its addressable |
| 968 | * bits. For example, 32 bit OS can set 64bit bar |
| 969 | * to >4G. Check it. TODO: we might need to support |
| 970 | * it in the future for e.g. PAE. |
| 971 | */ |
| 972 | if (last_addr >= TARGET_PHYS_ADDR_MAX) { |
| 973 | return PCI_BAR_UNMAPPED; |
| 974 | } |
| 975 | |
| 976 | return new_addr; |
| 977 | } |
| 978 | |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 979 | static void pci_update_mappings(PCIDevice *d) |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 980 | { |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 981 | PCIIORegion *r; |
Michael S. Tsirkin | 876a350 | 2009-11-12 13:47:17 +0200 | [diff] [blame] | 982 | int i; |
Michael S. Tsirkin | 7df32ca | 2011-09-04 16:50:55 +0300 | [diff] [blame] | 983 | pcibus_t new_addr; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 984 | |
bellard | 8a8696a | 2004-06-03 14:06:32 +0000 | [diff] [blame] | 985 | for(i = 0; i < PCI_NUM_REGIONS; i++) { |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 986 | r = &d->io_regions[i]; |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 987 | |
| 988 | /* this region isn't registered */ |
Isaku Yamahata | ec50344 | 2009-11-12 14:58:43 +0900 | [diff] [blame] | 989 | if (!r->size) |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 990 | continue; |
| 991 | |
Michael S. Tsirkin | 876a350 | 2009-11-12 13:47:17 +0200 | [diff] [blame] | 992 | new_addr = pci_bar_address(d, i, r->type, r->size); |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 993 | |
| 994 | /* This bar isn't changed */ |
Michael S. Tsirkin | 7df32ca | 2011-09-04 16:50:55 +0300 | [diff] [blame] | 995 | if (new_addr == r->addr) |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 996 | continue; |
| 997 | |
| 998 | /* now do the real mapping */ |
| 999 | if (r->addr != PCI_BAR_UNMAPPED) { |
Avi Kivity | 0395233 | 2011-08-08 16:09:32 +0300 | [diff] [blame] | 1000 | memory_region_del_subregion(r->address_space, r->memory); |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1001 | } |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 1002 | r->addr = new_addr; |
| 1003 | if (r->addr != PCI_BAR_UNMAPPED) { |
Avi Kivity | 8b881e7 | 2011-08-11 14:40:58 +0300 | [diff] [blame] | 1004 | memory_region_add_subregion_overlap(r->address_space, |
| 1005 | r->addr, r->memory, 1); |
Isaku Yamahata | a968857 | 2009-10-30 21:21:23 +0900 | [diff] [blame] | 1006 | } |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1007 | } |
| 1008 | } |
| 1009 | |
Michael S. Tsirkin | a7b15a5 | 2009-12-23 16:33:56 +0200 | [diff] [blame] | 1010 | static inline int pci_irq_disabled(PCIDevice *d) |
| 1011 | { |
| 1012 | return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE; |
| 1013 | } |
| 1014 | |
| 1015 | /* Called after interrupt disabled field update in config space, |
| 1016 | * assert/deassert interrupts if necessary. |
| 1017 | * Gets original interrupt disable bit value (before update). */ |
| 1018 | static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled) |
| 1019 | { |
| 1020 | int i, disabled = pci_irq_disabled(d); |
| 1021 | if (disabled == was_irq_disabled) |
| 1022 | return; |
| 1023 | for (i = 0; i < PCI_NUM_PINS; ++i) { |
| 1024 | int state = pci_irq_state(d, i); |
| 1025 | pci_change_irq_level(d, i, disabled ? -state : state); |
| 1026 | } |
| 1027 | } |
| 1028 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1029 | uint32_t pci_default_read_config(PCIDevice *d, |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1030 | uint32_t address, int len) |
| 1031 | { |
Isaku Yamahata | 5029fe1 | 2009-10-30 21:21:04 +0900 | [diff] [blame] | 1032 | uint32_t val = 0; |
Jan Kiszka | 42e4126 | 2011-07-22 11:05:01 +0200 | [diff] [blame] | 1033 | |
Isaku Yamahata | 5029fe1 | 2009-10-30 21:21:04 +0900 | [diff] [blame] | 1034 | memcpy(&val, d->config + address, len); |
| 1035 | return le32_to_cpu(val); |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1036 | } |
| 1037 | |
Michael S. Tsirkin | b7ee160 | 2009-06-21 19:45:18 +0300 | [diff] [blame] | 1038 | void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l) |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1039 | { |
Michael S. Tsirkin | a7b15a5 | 2009-12-23 16:33:56 +0200 | [diff] [blame] | 1040 | int i, was_irq_disabled = pci_irq_disabled(d); |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1041 | |
Jan Kiszka | 42e4126 | 2011-07-22 11:05:01 +0200 | [diff] [blame] | 1042 | for (i = 0; i < l; val >>= 8, ++i) { |
Stefan Weil | 91011d4 | 2009-11-13 23:26:27 +0100 | [diff] [blame] | 1043 | uint8_t wmask = d->wmask[addr + i]; |
Isaku Yamahata | 92ba5f5 | 2010-09-15 14:38:15 +0900 | [diff] [blame] | 1044 | uint8_t w1cmask = d->w1cmask[addr + i]; |
| 1045 | assert(!(wmask & w1cmask)); |
Stefan Weil | 91011d4 | 2009-11-13 23:26:27 +0100 | [diff] [blame] | 1046 | d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask); |
Isaku Yamahata | 92ba5f5 | 2010-09-15 14:38:15 +0900 | [diff] [blame] | 1047 | d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */ |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1048 | } |
Isaku Yamahata | 260c0cd | 2009-10-30 21:21:20 +0900 | [diff] [blame] | 1049 | if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) || |
Isaku Yamahata | edb0003 | 2009-10-30 21:21:21 +0900 | [diff] [blame] | 1050 | ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) || |
| 1051 | ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) || |
Isaku Yamahata | 260c0cd | 2009-10-30 21:21:20 +0900 | [diff] [blame] | 1052 | range_covers_byte(addr, l, PCI_COMMAND)) |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1053 | pci_update_mappings(d); |
Michael S. Tsirkin | a7b15a5 | 2009-12-23 16:33:56 +0200 | [diff] [blame] | 1054 | |
| 1055 | if (range_covers_byte(addr, l, PCI_COMMAND)) |
| 1056 | pci_update_irq_disabled(d, was_irq_disabled); |
Jan Kiszka | 95d6580 | 2012-05-11 11:42:40 -0300 | [diff] [blame] | 1057 | |
| 1058 | msi_write_config(d, addr, val, l); |
| 1059 | msix_write_config(d, addr, val, l); |
bellard | 69b9103 | 2004-05-18 23:05:28 +0000 | [diff] [blame] | 1060 | } |
| 1061 | |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1062 | /***********************************************************/ |
| 1063 | /* generic PCI irq support */ |
| 1064 | |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1065 | /* 0 <= irq_num <= 3. level must be 0 or 1 */ |
pbrook | d537cf6 | 2007-04-07 18:14:41 +0000 | [diff] [blame] | 1066 | static void pci_set_irq(void *opaque, int irq_num, int level) |
bellard | 77d4bc3 | 2004-05-26 22:13:53 +0000 | [diff] [blame] | 1067 | { |
Juan Quintela | a60380a | 2009-08-24 18:42:53 +0200 | [diff] [blame] | 1068 | PCIDevice *pci_dev = opaque; |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 1069 | int change; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1070 | |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 1071 | change = level - pci_irq_state(pci_dev, irq_num); |
pbrook | 80b3ada | 2006-09-24 17:01:44 +0000 | [diff] [blame] | 1072 | if (!change) |
| 1073 | return; |
pbrook | d2b5931 | 2006-09-24 00:16:34 +0000 | [diff] [blame] | 1074 | |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 1075 | pci_set_irq_state(pci_dev, irq_num, level); |
Michael S. Tsirkin | f9bf77d | 2009-11-25 15:44:40 +0200 | [diff] [blame] | 1076 | pci_update_irq_status(pci_dev); |
Michael S. Tsirkin | a7b15a5 | 2009-12-23 16:33:56 +0200 | [diff] [blame] | 1077 | if (pci_irq_disabled(pci_dev)) |
| 1078 | return; |
Michael S. Tsirkin | d036bb2 | 2009-11-25 15:20:51 +0200 | [diff] [blame] | 1079 | pci_change_irq_level(pci_dev, irq_num, change); |
bellard | 77d4bc3 | 2004-05-26 22:13:53 +0000 | [diff] [blame] | 1080 | } |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1081 | |
| 1082 | /***********************************************************/ |
| 1083 | /* monitor info on PCI */ |
| 1084 | |
pbrook | 6650ee6 | 2006-05-21 13:45:09 +0000 | [diff] [blame] | 1085 | typedef struct { |
| 1086 | uint16_t class; |
| 1087 | const char *desc; |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1088 | const char *fw_name; |
| 1089 | uint16_t fw_ign_bits; |
pbrook | 6650ee6 | 2006-05-21 13:45:09 +0000 | [diff] [blame] | 1090 | } pci_class_desc; |
| 1091 | |
blueswir1 | 09bc878 | 2008-10-02 18:33:50 +0000 | [diff] [blame] | 1092 | static const pci_class_desc pci_class_descriptions[] = |
pbrook | 6650ee6 | 2006-05-21 13:45:09 +0000 | [diff] [blame] | 1093 | { |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1094 | { 0x0001, "VGA controller", "display"}, |
| 1095 | { 0x0100, "SCSI controller", "scsi"}, |
| 1096 | { 0x0101, "IDE controller", "ide"}, |
| 1097 | { 0x0102, "Floppy controller", "fdc"}, |
| 1098 | { 0x0103, "IPI controller", "ipi"}, |
| 1099 | { 0x0104, "RAID controller", "raid"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1100 | { 0x0106, "SATA controller"}, |
| 1101 | { 0x0107, "SAS controller"}, |
| 1102 | { 0x0180, "Storage controller"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1103 | { 0x0200, "Ethernet controller", "ethernet"}, |
| 1104 | { 0x0201, "Token Ring controller", "token-ring"}, |
| 1105 | { 0x0202, "FDDI controller", "fddi"}, |
| 1106 | { 0x0203, "ATM controller", "atm"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1107 | { 0x0280, "Network controller"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1108 | { 0x0300, "VGA controller", "display", 0x00ff}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1109 | { 0x0301, "XGA controller"}, |
| 1110 | { 0x0302, "3D controller"}, |
| 1111 | { 0x0380, "Display controller"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1112 | { 0x0400, "Video controller", "video"}, |
| 1113 | { 0x0401, "Audio controller", "sound"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1114 | { 0x0402, "Phone"}, |
Jan Kiszka | 602ef4d | 2011-05-02 20:01:37 +0200 | [diff] [blame] | 1115 | { 0x0403, "Audio controller", "sound"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1116 | { 0x0480, "Multimedia controller"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1117 | { 0x0500, "RAM controller", "memory"}, |
| 1118 | { 0x0501, "Flash controller", "flash"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1119 | { 0x0580, "Memory controller"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1120 | { 0x0600, "Host bridge", "host"}, |
| 1121 | { 0x0601, "ISA bridge", "isa"}, |
| 1122 | { 0x0602, "EISA bridge", "eisa"}, |
| 1123 | { 0x0603, "MC bridge", "mca"}, |
| 1124 | { 0x0604, "PCI bridge", "pci"}, |
| 1125 | { 0x0605, "PCMCIA bridge", "pcmcia"}, |
| 1126 | { 0x0606, "NUBUS bridge", "nubus"}, |
| 1127 | { 0x0607, "CARDBUS bridge", "cardbus"}, |
ths | dcb5b19 | 2007-04-14 12:24:46 +0000 | [diff] [blame] | 1128 | { 0x0608, "RACEWAY bridge"}, |
| 1129 | { 0x0680, "Bridge"}, |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1130 | { 0x0700, "Serial port", "serial"}, |
| 1131 | { 0x0701, "Parallel port", "parallel"}, |
| 1132 | { 0x0800, "Interrupt controller", "interrupt-controller"}, |
| 1133 | { 0x0801, "DMA controller", "dma-controller"}, |
| 1134 | { 0x0802, "Timer", "timer"}, |
| 1135 | { 0x0803, "RTC", "rtc"}, |
| 1136 | { 0x0900, "Keyboard", "keyboard"}, |
| 1137 | { 0x0901, "Pen", "pen"}, |
| 1138 | { 0x0902, "Mouse", "mouse"}, |
| 1139 | { 0x0A00, "Dock station", "dock", 0x00ff}, |
| 1140 | { 0x0B00, "i386 cpu", "cpu", 0x00ff}, |
| 1141 | { 0x0c00, "Fireware contorller", "fireware"}, |
| 1142 | { 0x0c01, "Access bus controller", "access-bus"}, |
| 1143 | { 0x0c02, "SSA controller", "ssa"}, |
| 1144 | { 0x0c03, "USB controller", "usb"}, |
| 1145 | { 0x0c04, "Fibre channel controller", "fibre-channel"}, |
pbrook | 6650ee6 | 2006-05-21 13:45:09 +0000 | [diff] [blame] | 1146 | { 0, NULL} |
| 1147 | }; |
| 1148 | |
Isaku Yamahata | 1074df4 | 2009-10-30 21:21:24 +0900 | [diff] [blame] | 1149 | static void pci_for_each_device_under_bus(PCIBus *bus, |
Anthony PERARD | 7aa8cbb | 2012-06-21 15:35:28 +0000 | [diff] [blame] | 1150 | void (*fn)(PCIBus *b, PCIDevice *d, |
| 1151 | void *opaque), |
| 1152 | void *opaque) |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1153 | { |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 1154 | PCIDevice *d; |
| 1155 | int devfn; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1156 | |
Isaku Yamahata | b47b070 | 2009-11-12 14:58:45 +0900 | [diff] [blame] | 1157 | for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { |
Isaku Yamahata | 1074df4 | 2009-10-30 21:21:24 +0900 | [diff] [blame] | 1158 | d = bus->devices[devfn]; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1159 | if (d) { |
Anthony PERARD | 7aa8cbb | 2012-06-21 15:35:28 +0000 | [diff] [blame] | 1160 | fn(bus, d, opaque); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1161 | } |
Isaku Yamahata | 1074df4 | 2009-10-30 21:21:24 +0900 | [diff] [blame] | 1162 | } |
| 1163 | } |
| 1164 | |
| 1165 | void pci_for_each_device(PCIBus *bus, int bus_num, |
Anthony PERARD | 7aa8cbb | 2012-06-21 15:35:28 +0000 | [diff] [blame] | 1166 | void (*fn)(PCIBus *b, PCIDevice *d, void *opaque), |
| 1167 | void *opaque) |
Isaku Yamahata | 1074df4 | 2009-10-30 21:21:24 +0900 | [diff] [blame] | 1168 | { |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 1169 | bus = pci_find_bus_nr(bus, bus_num); |
Isaku Yamahata | 1074df4 | 2009-10-30 21:21:24 +0900 | [diff] [blame] | 1170 | |
bellard | 30468f7 | 2004-06-21 19:45:35 +0000 | [diff] [blame] | 1171 | if (bus) { |
Anthony PERARD | 7aa8cbb | 2012-06-21 15:35:28 +0000 | [diff] [blame] | 1172 | pci_for_each_device_under_bus(bus, fn, opaque); |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1173 | } |
| 1174 | } |
| 1175 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1176 | static const pci_class_desc *get_class_desc(int class) |
bellard | 0ac32c8 | 2004-05-20 12:45:00 +0000 | [diff] [blame] | 1177 | { |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1178 | const pci_class_desc *desc; |
| 1179 | |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1180 | desc = pci_class_descriptions; |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1181 | while (desc->desc && class != desc->class) { |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1182 | desc++; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1183 | } |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1184 | |
| 1185 | return desc; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1186 | } |
| 1187 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1188 | static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1189 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1190 | static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev) |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1191 | { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1192 | PciMemoryRegionList *head = NULL, *cur_item = NULL; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1193 | int i; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1194 | |
| 1195 | for (i = 0; i < PCI_NUM_REGIONS; i++) { |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1196 | const PCIIORegion *r = &dev->io_regions[i]; |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1197 | PciMemoryRegionList *region; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1198 | |
| 1199 | if (!r->size) { |
| 1200 | continue; |
| 1201 | } |
| 1202 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1203 | region = g_malloc0(sizeof(*region)); |
| 1204 | region->value = g_malloc0(sizeof(*region->value)); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1205 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1206 | if (r->type & PCI_BASE_ADDRESS_SPACE_IO) { |
| 1207 | region->value->type = g_strdup("io"); |
| 1208 | } else { |
| 1209 | region->value->type = g_strdup("memory"); |
| 1210 | region->value->has_prefetch = true; |
| 1211 | region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH); |
| 1212 | region->value->has_mem_type_64 = true; |
| 1213 | region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1214 | } |
| 1215 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1216 | region->value->bar = i; |
| 1217 | region->value->address = r->addr; |
| 1218 | region->value->size = r->size; |
| 1219 | |
| 1220 | /* XXX: waiting for the qapi to support GSList */ |
| 1221 | if (!cur_item) { |
| 1222 | head = cur_item = region; |
| 1223 | } else { |
| 1224 | cur_item->next = region; |
| 1225 | cur_item = region; |
| 1226 | } |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1227 | } |
| 1228 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1229 | return head; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1230 | } |
| 1231 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1232 | static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus, |
| 1233 | int bus_num) |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1234 | { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1235 | PciBridgeInfo *info; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1236 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1237 | info = g_malloc0(sizeof(*info)); |
| 1238 | |
| 1239 | info->bus.number = dev->config[PCI_PRIMARY_BUS]; |
| 1240 | info->bus.secondary = dev->config[PCI_SECONDARY_BUS]; |
| 1241 | info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS]; |
| 1242 | |
| 1243 | info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range)); |
| 1244 | info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO); |
| 1245 | info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO); |
| 1246 | |
| 1247 | info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range)); |
| 1248 | info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); |
| 1249 | info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); |
| 1250 | |
| 1251 | info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range)); |
| 1252 | info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); |
| 1253 | info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); |
| 1254 | |
| 1255 | if (dev->config[PCI_SECONDARY_BUS] != 0) { |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 1256 | PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]); |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1257 | if (child_bus) { |
| 1258 | info->has_devices = true; |
| 1259 | info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]); |
| 1260 | } |
| 1261 | } |
| 1262 | |
| 1263 | return info; |
| 1264 | } |
| 1265 | |
| 1266 | static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus, |
| 1267 | int bus_num) |
| 1268 | { |
| 1269 | const pci_class_desc *desc; |
| 1270 | PciDeviceInfo *info; |
| 1271 | uint8_t type; |
| 1272 | int class; |
| 1273 | |
| 1274 | info = g_malloc0(sizeof(*info)); |
| 1275 | info->bus = bus_num; |
| 1276 | info->slot = PCI_SLOT(dev->devfn); |
| 1277 | info->function = PCI_FUNC(dev->devfn); |
| 1278 | |
| 1279 | class = pci_get_word(dev->config + PCI_CLASS_DEVICE); |
| 1280 | info->class_info.class = class; |
| 1281 | desc = get_class_desc(class); |
| 1282 | if (desc->desc) { |
| 1283 | info->class_info.has_desc = true; |
| 1284 | info->class_info.desc = g_strdup(desc->desc); |
| 1285 | } |
| 1286 | |
| 1287 | info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID); |
| 1288 | info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID); |
| 1289 | info->regions = qmp_query_pci_regions(dev); |
| 1290 | info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : ""); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1291 | |
| 1292 | if (dev->config[PCI_INTERRUPT_PIN] != 0) { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1293 | info->has_irq = true; |
| 1294 | info->irq = dev->config[PCI_INTERRUPT_LINE]; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1295 | } |
| 1296 | |
Isaku Yamahata | b5937f2 | 2010-02-08 15:40:38 +0900 | [diff] [blame] | 1297 | type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; |
| 1298 | if (type == PCI_HEADER_TYPE_BRIDGE) { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1299 | info->has_pci_bridge = true; |
| 1300 | info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1301 | } |
| 1302 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1303 | return info; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1304 | } |
| 1305 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1306 | static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num) |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1307 | { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1308 | PciDeviceInfoList *info, *head = NULL, *cur_item = NULL; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1309 | PCIDevice *dev; |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1310 | int devfn; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1311 | |
| 1312 | for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { |
| 1313 | dev = bus->devices[devfn]; |
| 1314 | if (dev) { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1315 | info = g_malloc0(sizeof(*info)); |
| 1316 | info->value = qmp_query_pci_device(dev, bus, bus_num); |
| 1317 | |
| 1318 | /* XXX: waiting for the qapi to support GSList */ |
| 1319 | if (!cur_item) { |
| 1320 | head = cur_item = info; |
| 1321 | } else { |
| 1322 | cur_item->next = info; |
| 1323 | cur_item = info; |
| 1324 | } |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1325 | } |
| 1326 | } |
| 1327 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1328 | return head; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1329 | } |
| 1330 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1331 | static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num) |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1332 | { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1333 | PciInfo *info = NULL; |
| 1334 | |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 1335 | bus = pci_find_bus_nr(bus, bus_num); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1336 | if (bus) { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1337 | info = g_malloc0(sizeof(*info)); |
| 1338 | info->bus = bus_num; |
| 1339 | info->devices = qmp_query_pci_devices(bus, bus_num); |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1340 | } |
| 1341 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1342 | return info; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1343 | } |
| 1344 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1345 | PciInfoList *qmp_query_pci(Error **errp) |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1346 | { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1347 | PciInfoList *info, *head = NULL, *cur_item = NULL; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1348 | struct PCIHostBus *host; |
| 1349 | |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1350 | QLIST_FOREACH(host, &host_buses, next) { |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1351 | info = g_malloc0(sizeof(*info)); |
| 1352 | info->value = qmp_query_pci_bus(host->bus, 0); |
| 1353 | |
| 1354 | /* XXX: waiting for the qapi to support GSList */ |
| 1355 | if (!cur_item) { |
| 1356 | head = cur_item = info; |
| 1357 | } else { |
| 1358 | cur_item->next = info; |
| 1359 | cur_item = info; |
Luiz Capitulino | 163c8a5 | 2010-01-21 19:15:40 -0200 | [diff] [blame] | 1360 | } |
| 1361 | } |
| 1362 | |
Luiz Capitulino | 7962747 | 2011-10-21 14:15:33 -0200 | [diff] [blame] | 1363 | return head; |
bellard | 77d4bc3 | 2004-05-26 22:13:53 +0000 | [diff] [blame] | 1364 | } |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 1365 | |
aliguori | cb457d7 | 2009-01-13 19:47:10 +0000 | [diff] [blame] | 1366 | static const char * const pci_nic_models[] = { |
| 1367 | "ne2k_pci", |
| 1368 | "i82551", |
| 1369 | "i82557b", |
| 1370 | "i82559er", |
| 1371 | "rtl8139", |
| 1372 | "e1000", |
| 1373 | "pcnet", |
| 1374 | "virtio", |
| 1375 | NULL |
| 1376 | }; |
| 1377 | |
Paul Brook | 9d07d75 | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1378 | static const char * const pci_nic_names[] = { |
| 1379 | "ne2k_pci", |
| 1380 | "i82551", |
| 1381 | "i82557b", |
| 1382 | "i82559er", |
| 1383 | "rtl8139", |
| 1384 | "e1000", |
| 1385 | "pcnet", |
Paul Brook | 53c25ce | 2009-05-18 14:51:59 +0100 | [diff] [blame] | 1386 | "virtio-net-pci", |
aliguori | cb457d7 | 2009-01-13 19:47:10 +0000 | [diff] [blame] | 1387 | NULL |
| 1388 | }; |
| 1389 | |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 1390 | /* Initialize a PCI NIC. */ |
Markus Armbruster | 33e66b8 | 2009-10-07 01:15:57 +0200 | [diff] [blame] | 1391 | /* FIXME callers should check for failure, but don't */ |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 1392 | PCIDevice *pci_nic_init(NICInfo *nd, const char *default_model, |
| 1393 | const char *default_devaddr) |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 1394 | { |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 1395 | const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr; |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 1396 | PCIBus *bus; |
| 1397 | int devfn; |
Markus Armbruster | 5607c38 | 2009-06-18 15:14:08 +0200 | [diff] [blame] | 1398 | PCIDevice *pci_dev; |
Paul Brook | 9d07d75 | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1399 | DeviceState *dev; |
aliguori | cb457d7 | 2009-01-13 19:47:10 +0000 | [diff] [blame] | 1400 | int i; |
| 1401 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 1402 | i = qemu_find_nic_model(nd, pci_nic_models, default_model); |
| 1403 | if (i < 0) |
| 1404 | return NULL; |
| 1405 | |
| 1406 | bus = pci_get_bus_devfn(&devfn, devaddr); |
| 1407 | if (!bus) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 1408 | error_report("Invalid PCI device address %s for device %s", |
| 1409 | devaddr, pci_nic_names[i]); |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 1410 | return NULL; |
| 1411 | } |
| 1412 | |
Markus Armbruster | 499cf10 | 2009-09-25 03:53:53 +0200 | [diff] [blame] | 1413 | pci_dev = pci_create(bus, devfn, pci_nic_names[i]); |
Markus Armbruster | 9ee0582 | 2009-09-25 03:53:50 +0200 | [diff] [blame] | 1414 | dev = &pci_dev->qdev; |
Gerd Hoffmann | 1cc3368 | 2009-10-21 15:25:41 +0200 | [diff] [blame] | 1415 | qdev_set_nic_properties(dev, nd); |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 1416 | if (qdev_init(dev) < 0) |
| 1417 | return NULL; |
Markus Armbruster | 9ee0582 | 2009-09-25 03:53:50 +0200 | [diff] [blame] | 1418 | return pci_dev; |
pbrook | a41b2ff | 2006-02-05 04:14:41 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 1421 | PCIDevice *pci_nic_init_nofail(NICInfo *nd, const char *default_model, |
| 1422 | const char *default_devaddr) |
| 1423 | { |
| 1424 | PCIDevice *res; |
| 1425 | |
| 1426 | if (qemu_show_nic_models(nd->model, pci_nic_models)) |
| 1427 | exit(0); |
| 1428 | |
| 1429 | res = pci_nic_init(nd, default_model, default_devaddr); |
| 1430 | if (!res) |
| 1431 | exit(1); |
| 1432 | return res; |
| 1433 | } |
| 1434 | |
Michael S. Tsirkin | 929176c | 2010-11-24 07:23:25 +0200 | [diff] [blame] | 1435 | /* Whether a given bus number is in range of the secondary |
| 1436 | * bus of the given bridge device. */ |
| 1437 | static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num) |
| 1438 | { |
| 1439 | return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) & |
| 1440 | PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ && |
| 1441 | dev->config[PCI_SECONDARY_BUS] < bus_num && |
| 1442 | bus_num <= dev->config[PCI_SUBORDINATE_BUS]; |
| 1443 | } |
| 1444 | |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 1445 | static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num) |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1446 | { |
Isaku Yamahata | 470e636 | 2010-04-12 11:58:59 +0900 | [diff] [blame] | 1447 | PCIBus *sec; |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1448 | |
Isaku Yamahata | 470e636 | 2010-04-12 11:58:59 +0900 | [diff] [blame] | 1449 | if (!bus) { |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 1450 | return NULL; |
Isaku Yamahata | 470e636 | 2010-04-12 11:58:59 +0900 | [diff] [blame] | 1451 | } |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1452 | |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 1453 | if (pci_bus_num(bus) == bus_num) { |
| 1454 | return bus; |
| 1455 | } |
| 1456 | |
Michael S. Tsirkin | 929176c | 2010-11-24 07:23:25 +0200 | [diff] [blame] | 1457 | /* Consider all bus numbers in range for the host pci bridge. */ |
| 1458 | if (bus->parent_dev && |
| 1459 | !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) { |
| 1460 | return NULL; |
| 1461 | } |
| 1462 | |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 1463 | /* try child bus */ |
Michael S. Tsirkin | 929176c | 2010-11-24 07:23:25 +0200 | [diff] [blame] | 1464 | for (; bus; bus = sec) { |
| 1465 | QLIST_FOREACH(sec, &bus->child, sibling) { |
| 1466 | assert(sec->parent_dev); |
| 1467 | if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) { |
| 1468 | return sec; |
| 1469 | } |
| 1470 | if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) { |
| 1471 | break; |
Blue Swirl | c021f8e | 2010-02-06 09:20:13 +0000 | [diff] [blame] | 1472 | } |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 1473 | } |
| 1474 | } |
| 1475 | |
| 1476 | return NULL; |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
Isaku Yamahata | 5256d8b | 2011-01-27 15:56:36 +0900 | [diff] [blame] | 1479 | PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn) |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1480 | { |
Michael S. Tsirkin | d662210 | 2012-02-19 18:16:02 +0200 | [diff] [blame] | 1481 | bus = pci_find_bus_nr(bus, bus_num); |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1482 | |
| 1483 | if (!bus) |
| 1484 | return NULL; |
| 1485 | |
Isaku Yamahata | 5256d8b | 2011-01-27 15:56:36 +0900 | [diff] [blame] | 1486 | return bus->devices[devfn]; |
aliguori | 3ae8061 | 2009-02-11 15:19:46 +0000 | [diff] [blame] | 1487 | } |
| 1488 | |
Anthony Liguori | d307af7 | 2011-12-09 15:02:56 -0600 | [diff] [blame] | 1489 | static int pci_qdev_init(DeviceState *qdev) |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1490 | { |
| 1491 | PCIDevice *pci_dev = (PCIDevice *)qdev; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1492 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1493 | PCIBus *bus; |
Isaku Yamahata | 113f89d | 2011-05-25 10:57:58 +0900 | [diff] [blame] | 1494 | int rc; |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1495 | bool is_default_rom; |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1496 | |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 1497 | /* initialize cap_present for pci_is_express() and pci_config_size() */ |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1498 | if (pc->is_express) { |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 1499 | pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS; |
| 1500 | } |
| 1501 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 1502 | bus = FROM_QBUS(PCIBus, qdev_get_parent_bus(qdev)); |
Anthony Liguori | 6e00858 | 2011-12-09 11:06:57 -0600 | [diff] [blame] | 1503 | pci_dev = do_pci_register_device(pci_dev, bus, |
| 1504 | object_get_typename(OBJECT(qdev)), |
| 1505 | pci_dev->devfn); |
Gerd Hoffmann | 09e3acc | 2009-12-10 11:11:06 +0100 | [diff] [blame] | 1506 | if (pci_dev == NULL) |
| 1507 | return -1; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1508 | if (qdev->hotplugged && pc->no_hotplug) { |
Anthony Liguori | f79f2bf | 2011-12-04 11:17:51 -0600 | [diff] [blame] | 1509 | qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(pci_dev))); |
Gerd Hoffmann | 180c22e | 2011-01-06 15:14:37 +0100 | [diff] [blame] | 1510 | do_pci_unregister_device(pci_dev); |
| 1511 | return -1; |
| 1512 | } |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1513 | if (pc->init) { |
| 1514 | rc = pc->init(pci_dev); |
Isaku Yamahata | c2afc92 | 2011-06-15 07:37:47 +0900 | [diff] [blame] | 1515 | if (rc != 0) { |
| 1516 | do_pci_unregister_device(pci_dev); |
| 1517 | return rc; |
| 1518 | } |
Alex Williamson | 925fe64 | 2010-05-11 06:44:21 -0400 | [diff] [blame] | 1519 | } |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1520 | |
| 1521 | /* rom loading */ |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1522 | is_default_rom = false; |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1523 | if (pci_dev->romfile == NULL && pc->romfile != NULL) { |
| 1524 | pci_dev->romfile = g_strdup(pc->romfile); |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1525 | is_default_rom = true; |
| 1526 | } |
| 1527 | pci_add_option_rom(pci_dev, is_default_rom); |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1528 | |
Isaku Yamahata | 5beb8ad | 2010-09-06 16:46:18 +0900 | [diff] [blame] | 1529 | if (bus->hotplug) { |
Michael S. Tsirkin | e927d48 | 2010-11-12 16:21:35 +0900 | [diff] [blame] | 1530 | /* Let buses differentiate between hotplug and when device is |
| 1531 | * enabled during qemu machine creation. */ |
| 1532 | rc = bus->hotplug(bus->hotplug_qdev, pci_dev, |
| 1533 | qdev->hotplugged ? PCI_HOTPLUG_ENABLED: |
| 1534 | PCI_COLDPLUG_ENABLED); |
Isaku Yamahata | a213ff6 | 2010-06-22 11:55:35 +0900 | [diff] [blame] | 1535 | if (rc != 0) { |
| 1536 | int r = pci_unregister_device(&pci_dev->qdev); |
| 1537 | assert(!r); |
| 1538 | return rc; |
| 1539 | } |
| 1540 | } |
Gerd Hoffmann | ee995ff | 2009-09-25 21:42:44 +0200 | [diff] [blame] | 1541 | return 0; |
| 1542 | } |
| 1543 | |
| 1544 | static int pci_unplug_device(DeviceState *qdev) |
| 1545 | { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1546 | PCIDevice *dev = PCI_DEVICE(qdev); |
| 1547 | PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); |
Gerd Hoffmann | ee995ff | 2009-09-25 21:42:44 +0200 | [diff] [blame] | 1548 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1549 | if (pc->no_hotplug) { |
Anthony Liguori | f79f2bf | 2011-12-04 11:17:51 -0600 | [diff] [blame] | 1550 | qerror_report(QERR_DEVICE_NO_HOTPLUG, object_get_typename(OBJECT(dev))); |
Gerd Hoffmann | 180c22e | 2011-01-06 15:14:37 +0100 | [diff] [blame] | 1551 | return -1; |
| 1552 | } |
Michael S. Tsirkin | e927d48 | 2010-11-12 16:21:35 +0900 | [diff] [blame] | 1553 | return dev->bus->hotplug(dev->bus->hotplug_qdev, dev, |
| 1554 | PCI_HOTPLUG_DISABLED); |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1555 | } |
| 1556 | |
Isaku Yamahata | 4982386 | 2010-06-23 16:15:30 +0900 | [diff] [blame] | 1557 | PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction, |
| 1558 | const char *name) |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1559 | { |
| 1560 | DeviceState *dev; |
| 1561 | |
Paul Brook | 02e2da4 | 2009-05-23 00:05:19 +0100 | [diff] [blame] | 1562 | dev = qdev_create(&bus->qbus, name); |
Michael Roth | 09f1bbc | 2012-03-04 13:38:27 -0600 | [diff] [blame] | 1563 | qdev_prop_set_int32(dev, "addr", devfn); |
Isaku Yamahata | 4982386 | 2010-06-23 16:15:30 +0900 | [diff] [blame] | 1564 | qdev_prop_set_bit(dev, "multifunction", multifunction); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1565 | return PCI_DEVICE(dev); |
Gerd Hoffmann | 71077c1 | 2009-09-15 19:23:25 +0000 | [diff] [blame] | 1566 | } |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1567 | |
Isaku Yamahata | 4982386 | 2010-06-23 16:15:30 +0900 | [diff] [blame] | 1568 | PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn, |
| 1569 | bool multifunction, |
| 1570 | const char *name) |
| 1571 | { |
| 1572 | PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name); |
| 1573 | qdev_init_nofail(&dev->qdev); |
| 1574 | return dev; |
| 1575 | } |
| 1576 | |
| 1577 | PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name) |
| 1578 | { |
| 1579 | return pci_create_multifunction(bus, devfn, false, name); |
| 1580 | } |
| 1581 | |
Gerd Hoffmann | 71077c1 | 2009-09-15 19:23:25 +0000 | [diff] [blame] | 1582 | PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name) |
| 1583 | { |
Isaku Yamahata | 4982386 | 2010-06-23 16:15:30 +0900 | [diff] [blame] | 1584 | return pci_create_simple_multifunction(bus, devfn, false, name); |
Paul Brook | 6b1b92d | 2009-05-14 22:35:07 +0100 | [diff] [blame] | 1585 | } |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1586 | |
| 1587 | static int pci_find_space(PCIDevice *pdev, uint8_t size) |
| 1588 | { |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 1589 | int config_size = pci_config_size(pdev); |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1590 | int offset = PCI_CONFIG_HEADER_SIZE; |
| 1591 | int i; |
Isaku Yamahata | a9f4994 | 2009-10-30 21:21:18 +0900 | [diff] [blame] | 1592 | for (i = PCI_CONFIG_HEADER_SIZE; i < config_size; ++i) |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1593 | if (pdev->used[i]) |
| 1594 | offset = i + 1; |
| 1595 | else if (i - offset + 1 == size) |
| 1596 | return offset; |
| 1597 | return 0; |
| 1598 | } |
| 1599 | |
| 1600 | static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id, |
| 1601 | uint8_t *prev_p) |
| 1602 | { |
| 1603 | uint8_t next, prev; |
| 1604 | |
| 1605 | if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST)) |
| 1606 | return 0; |
| 1607 | |
| 1608 | for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); |
| 1609 | prev = next + PCI_CAP_LIST_NEXT) |
| 1610 | if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id) |
| 1611 | break; |
| 1612 | |
| 1613 | if (prev_p) |
| 1614 | *prev_p = prev; |
| 1615 | return next; |
| 1616 | } |
| 1617 | |
Jan Kiszka | c9abe11 | 2011-08-24 14:29:30 +0200 | [diff] [blame] | 1618 | static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset) |
| 1619 | { |
| 1620 | uint8_t next, prev, found = 0; |
| 1621 | |
| 1622 | if (!(pdev->used[offset])) { |
| 1623 | return 0; |
| 1624 | } |
| 1625 | |
| 1626 | assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST); |
| 1627 | |
| 1628 | for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); |
| 1629 | prev = next + PCI_CAP_LIST_NEXT) { |
| 1630 | if (next <= offset && next > found) { |
| 1631 | found = next; |
| 1632 | } |
| 1633 | } |
| 1634 | return found; |
| 1635 | } |
| 1636 | |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1637 | /* Patch the PCI vendor and device ids in a PCI rom image if necessary. |
| 1638 | This is needed for an option rom which is used for more than one device. */ |
| 1639 | static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size) |
| 1640 | { |
| 1641 | uint16_t vendor_id; |
| 1642 | uint16_t device_id; |
| 1643 | uint16_t rom_vendor_id; |
| 1644 | uint16_t rom_device_id; |
| 1645 | uint16_t rom_magic; |
| 1646 | uint16_t pcir_offset; |
| 1647 | uint8_t checksum; |
| 1648 | |
| 1649 | /* Words in rom data are little endian (like in PCI configuration), |
| 1650 | so they can be read / written with pci_get_word / pci_set_word. */ |
| 1651 | |
| 1652 | /* Only a valid rom will be patched. */ |
| 1653 | rom_magic = pci_get_word(ptr); |
| 1654 | if (rom_magic != 0xaa55) { |
| 1655 | PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic); |
| 1656 | return; |
| 1657 | } |
| 1658 | pcir_offset = pci_get_word(ptr + 0x18); |
| 1659 | if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) { |
| 1660 | PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset); |
| 1661 | return; |
| 1662 | } |
| 1663 | |
| 1664 | vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID); |
| 1665 | device_id = pci_get_word(pdev->config + PCI_DEVICE_ID); |
| 1666 | rom_vendor_id = pci_get_word(ptr + pcir_offset + 4); |
| 1667 | rom_device_id = pci_get_word(ptr + pcir_offset + 6); |
| 1668 | |
| 1669 | PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile, |
| 1670 | vendor_id, device_id, rom_vendor_id, rom_device_id); |
| 1671 | |
| 1672 | checksum = ptr[6]; |
| 1673 | |
| 1674 | if (vendor_id != rom_vendor_id) { |
| 1675 | /* Patch vendor id and checksum (at offset 6 for etherboot roms). */ |
| 1676 | checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8); |
| 1677 | checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8); |
| 1678 | PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); |
| 1679 | ptr[6] = checksum; |
| 1680 | pci_set_word(ptr + pcir_offset + 4, vendor_id); |
| 1681 | } |
| 1682 | |
| 1683 | if (device_id != rom_device_id) { |
| 1684 | /* Patch device id and checksum (at offset 6 for etherboot roms). */ |
| 1685 | checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8); |
| 1686 | checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8); |
| 1687 | PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); |
| 1688 | ptr[6] = checksum; |
| 1689 | pci_set_word(ptr + pcir_offset + 6, device_id); |
| 1690 | } |
| 1691 | } |
| 1692 | |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1693 | /* Add an option rom for the device */ |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1694 | static int pci_add_option_rom(PCIDevice *pdev, bool is_default_rom) |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1695 | { |
| 1696 | int size; |
| 1697 | char *path; |
| 1698 | void *ptr; |
Alex Williamson | 1724f04 | 2010-06-25 11:09:35 -0600 | [diff] [blame] | 1699 | char name[32]; |
Anthony Liguori | 4be9f0d | 2011-12-09 10:51:49 -0600 | [diff] [blame] | 1700 | const VMStateDescription *vmsd; |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1701 | |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1702 | if (!pdev->romfile) |
| 1703 | return 0; |
| 1704 | if (strlen(pdev->romfile) == 0) |
| 1705 | return 0; |
| 1706 | |
Gerd Hoffmann | 88169dd | 2010-01-08 15:25:41 +0100 | [diff] [blame] | 1707 | if (!pdev->rom_bar) { |
| 1708 | /* |
| 1709 | * Load rom via fw_cfg instead of creating a rom bar, |
| 1710 | * for 0.11 compatibility. |
| 1711 | */ |
| 1712 | int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE); |
| 1713 | if (class == 0x0300) { |
| 1714 | rom_add_vga(pdev->romfile); |
| 1715 | } else { |
Gleb Natapov | 2e55e84 | 2010-12-08 13:35:07 +0200 | [diff] [blame] | 1716 | rom_add_option(pdev->romfile, -1); |
Gerd Hoffmann | 88169dd | 2010-01-08 15:25:41 +0100 | [diff] [blame] | 1717 | } |
| 1718 | return 0; |
| 1719 | } |
| 1720 | |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1721 | path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile); |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1722 | if (path == NULL) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1723 | path = g_strdup(pdev->romfile); |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1724 | } |
| 1725 | |
| 1726 | size = get_image_size(path); |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1727 | if (size < 0) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 1728 | error_report("%s: failed to find romfile \"%s\"", |
| 1729 | __FUNCTION__, pdev->romfile); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1730 | g_free(path); |
Gerd Hoffmann | 8c52c8f | 2009-12-18 12:01:08 +0100 | [diff] [blame] | 1731 | return -1; |
| 1732 | } |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1733 | if (size & (size - 1)) { |
| 1734 | size = 1 << qemu_fls(size); |
| 1735 | } |
| 1736 | |
Anthony Liguori | 4be9f0d | 2011-12-09 10:51:49 -0600 | [diff] [blame] | 1737 | vmsd = qdev_get_vmsd(DEVICE(pdev)); |
| 1738 | |
| 1739 | if (vmsd) { |
| 1740 | snprintf(name, sizeof(name), "%s.rom", vmsd->name); |
| 1741 | } else { |
Anthony Liguori | f79f2bf | 2011-12-04 11:17:51 -0600 | [diff] [blame] | 1742 | snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev))); |
Anthony Liguori | 4be9f0d | 2011-12-09 10:51:49 -0600 | [diff] [blame] | 1743 | } |
Avi Kivity | 14caaf7 | 2011-08-08 16:09:28 +0300 | [diff] [blame] | 1744 | pdev->has_rom = true; |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 1745 | memory_region_init_ram(&pdev->rom, name, size); |
| 1746 | vmstate_register_ram(&pdev->rom, &pdev->qdev); |
Avi Kivity | 14caaf7 | 2011-08-08 16:09:28 +0300 | [diff] [blame] | 1747 | ptr = memory_region_get_ram_ptr(&pdev->rom); |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1748 | load_image(path, ptr); |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1749 | g_free(path); |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1750 | |
Stefan Weil | ab85ceb | 2010-10-19 23:08:21 +0200 | [diff] [blame] | 1751 | if (is_default_rom) { |
| 1752 | /* Only the default rom images will be patched (if needed). */ |
| 1753 | pci_patch_ids(pdev, ptr, size); |
| 1754 | } |
| 1755 | |
John Baboval | 8c12f19 | 2011-03-22 14:52:09 +0000 | [diff] [blame] | 1756 | qemu_put_ram_ptr(ptr); |
| 1757 | |
Avi Kivity | e824b2c | 2011-08-08 16:09:31 +0300 | [diff] [blame] | 1758 | pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom); |
Anthony Liguori | c2039bd | 2009-12-18 12:01:07 +0100 | [diff] [blame] | 1759 | |
| 1760 | return 0; |
| 1761 | } |
| 1762 | |
Alex Williamson | 230741d | 2010-06-25 11:10:19 -0600 | [diff] [blame] | 1763 | static void pci_del_option_rom(PCIDevice *pdev) |
| 1764 | { |
Avi Kivity | 14caaf7 | 2011-08-08 16:09:28 +0300 | [diff] [blame] | 1765 | if (!pdev->has_rom) |
Alex Williamson | 230741d | 2010-06-25 11:10:19 -0600 | [diff] [blame] | 1766 | return; |
| 1767 | |
Avi Kivity | c5705a7 | 2011-12-20 15:59:12 +0200 | [diff] [blame] | 1768 | vmstate_unregister_ram(&pdev->rom, &pdev->qdev); |
Avi Kivity | 14caaf7 | 2011-08-08 16:09:28 +0300 | [diff] [blame] | 1769 | memory_region_destroy(&pdev->rom); |
| 1770 | pdev->has_rom = false; |
Alex Williamson | 230741d | 2010-06-25 11:10:19 -0600 | [diff] [blame] | 1771 | } |
| 1772 | |
Isaku Yamahata | ca77089 | 2010-09-06 16:46:16 +0900 | [diff] [blame] | 1773 | /* |
| 1774 | * if !offset |
| 1775 | * Reserve space and add capability to the linked list in pci config space |
| 1776 | * |
| 1777 | * if offset = 0, |
| 1778 | * Find and reserve space and add capability to the linked list |
| 1779 | * in pci config space */ |
| 1780 | int pci_add_capability(PCIDevice *pdev, uint8_t cap_id, |
| 1781 | uint8_t offset, uint8_t size) |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1782 | { |
Isaku Yamahata | ca77089 | 2010-09-06 16:46:16 +0900 | [diff] [blame] | 1783 | uint8_t *config; |
Jan Kiszka | c9abe11 | 2011-08-24 14:29:30 +0200 | [diff] [blame] | 1784 | int i, overlapping_cap; |
| 1785 | |
Isaku Yamahata | ca77089 | 2010-09-06 16:46:16 +0900 | [diff] [blame] | 1786 | if (!offset) { |
| 1787 | offset = pci_find_space(pdev, size); |
| 1788 | if (!offset) { |
| 1789 | return -ENOSPC; |
| 1790 | } |
Jan Kiszka | c9abe11 | 2011-08-24 14:29:30 +0200 | [diff] [blame] | 1791 | } else { |
| 1792 | /* Verify that capabilities don't overlap. Note: device assignment |
| 1793 | * depends on this check to verify that the device is not broken. |
| 1794 | * Should never trigger for emulated devices, but it's helpful |
| 1795 | * for debugging these. */ |
| 1796 | for (i = offset; i < offset + size; i++) { |
| 1797 | overlapping_cap = pci_find_capability_at_offset(pdev, i); |
| 1798 | if (overlapping_cap) { |
| 1799 | fprintf(stderr, "ERROR: %04x:%02x:%02x.%x " |
| 1800 | "Attempt to add PCI capability %x at offset " |
| 1801 | "%x overlaps existing capability %x at offset %x\n", |
| 1802 | pci_find_domain(pdev->bus), pci_bus_num(pdev->bus), |
| 1803 | PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), |
| 1804 | cap_id, offset, overlapping_cap, i); |
| 1805 | return -EINVAL; |
| 1806 | } |
| 1807 | } |
Isaku Yamahata | ca77089 | 2010-09-06 16:46:16 +0900 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | config = pdev->config + offset; |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1811 | config[PCI_CAP_LIST_ID] = cap_id; |
| 1812 | config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST]; |
| 1813 | pdev->config[PCI_CAPABILITY_LIST] = offset; |
| 1814 | pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST; |
| 1815 | memset(pdev->used + offset, 0xFF, size); |
| 1816 | /* Make capability read-only by default */ |
| 1817 | memset(pdev->wmask + offset, 0, size); |
Michael S. Tsirkin | bd4b65e | 2009-06-21 19:49:40 +0300 | [diff] [blame] | 1818 | /* Check capability by default */ |
| 1819 | memset(pdev->cmask + offset, 0xFF, size); |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1820 | return offset; |
| 1821 | } |
| 1822 | |
| 1823 | /* Unlink capability from the pci config space. */ |
| 1824 | void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size) |
| 1825 | { |
| 1826 | uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev); |
| 1827 | if (!offset) |
| 1828 | return; |
| 1829 | pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT]; |
Stefan Weil | ebabb67 | 2011-04-26 10:29:36 +0200 | [diff] [blame] | 1830 | /* Make capability writable again */ |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1831 | memset(pdev->wmask + offset, 0xff, size); |
Isaku Yamahata | 1a4f597 | 2010-10-18 12:17:42 +0900 | [diff] [blame] | 1832 | memset(pdev->w1cmask + offset, 0, size); |
Michael S. Tsirkin | bd4b65e | 2009-06-21 19:49:40 +0300 | [diff] [blame] | 1833 | /* Clear cmask as device-specific registers can't be checked */ |
| 1834 | memset(pdev->cmask + offset, 0, size); |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1835 | memset(pdev->used + offset, 0, size); |
| 1836 | |
| 1837 | if (!pdev->config[PCI_CAPABILITY_LIST]) |
| 1838 | pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST; |
| 1839 | } |
| 1840 | |
Michael S. Tsirkin | 6f4cbd3 | 2009-06-21 19:45:40 +0300 | [diff] [blame] | 1841 | uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id) |
| 1842 | { |
| 1843 | return pci_find_capability_list(pdev, cap_id, NULL); |
| 1844 | } |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 1845 | |
| 1846 | static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent) |
| 1847 | { |
| 1848 | PCIDevice *d = (PCIDevice *)dev; |
| 1849 | const pci_class_desc *desc; |
| 1850 | char ctxt[64]; |
| 1851 | PCIIORegion *r; |
| 1852 | int i, class; |
| 1853 | |
Isaku Yamahata | b0ff8eb | 2009-10-30 21:21:00 +0900 | [diff] [blame] | 1854 | class = pci_get_word(d->config + PCI_CLASS_DEVICE); |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 1855 | desc = pci_class_descriptions; |
| 1856 | while (desc->desc && class != desc->class) |
| 1857 | desc++; |
| 1858 | if (desc->desc) { |
| 1859 | snprintf(ctxt, sizeof(ctxt), "%s", desc->desc); |
| 1860 | } else { |
| 1861 | snprintf(ctxt, sizeof(ctxt), "Class %04x", class); |
| 1862 | } |
| 1863 | |
| 1864 | monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, " |
| 1865 | "pci id %04x:%04x (sub %04x:%04x)\n", |
Alex Williamson | 7f5feab | 2010-10-04 15:53:11 -0600 | [diff] [blame] | 1866 | indent, "", ctxt, pci_bus_num(d->bus), |
Isaku Yamahata | e822a52 | 2009-10-30 21:21:13 +0900 | [diff] [blame] | 1867 | PCI_SLOT(d->devfn), PCI_FUNC(d->devfn), |
Isaku Yamahata | b0ff8eb | 2009-10-30 21:21:00 +0900 | [diff] [blame] | 1868 | pci_get_word(d->config + PCI_VENDOR_ID), |
| 1869 | pci_get_word(d->config + PCI_DEVICE_ID), |
| 1870 | pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID), |
| 1871 | pci_get_word(d->config + PCI_SUBSYSTEM_ID)); |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 1872 | for (i = 0; i < PCI_NUM_REGIONS; i++) { |
| 1873 | r = &d->io_regions[i]; |
| 1874 | if (!r->size) |
| 1875 | continue; |
Isaku Yamahata | 89e8b13 | 2009-10-30 21:21:09 +0900 | [diff] [blame] | 1876 | monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS |
| 1877 | " [0x%"FMT_PCIBUS"]\n", |
| 1878 | indent, "", |
Isaku Yamahata | 0392a01 | 2009-10-30 21:21:03 +0900 | [diff] [blame] | 1879 | i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem", |
Gerd Hoffmann | 10c4c98 | 2009-06-30 14:12:08 +0200 | [diff] [blame] | 1880 | r->addr, r->addr + r->size - 1); |
| 1881 | } |
| 1882 | } |
Gerd Hoffmann | 0358718 | 2009-09-16 22:25:32 +0200 | [diff] [blame] | 1883 | |
Gleb Natapov | 5e0259e | 2010-12-08 13:35:01 +0200 | [diff] [blame] | 1884 | static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len) |
| 1885 | { |
| 1886 | PCIDevice *d = (PCIDevice *)dev; |
| 1887 | const char *name = NULL; |
| 1888 | const pci_class_desc *desc = pci_class_descriptions; |
| 1889 | int class = pci_get_word(d->config + PCI_CLASS_DEVICE); |
| 1890 | |
| 1891 | while (desc->desc && |
| 1892 | (class & ~desc->fw_ign_bits) != |
| 1893 | (desc->class & ~desc->fw_ign_bits)) { |
| 1894 | desc++; |
| 1895 | } |
| 1896 | |
| 1897 | if (desc->desc) { |
| 1898 | name = desc->fw_name; |
| 1899 | } |
| 1900 | |
| 1901 | if (name) { |
| 1902 | pstrcpy(buf, len, name); |
| 1903 | } else { |
| 1904 | snprintf(buf, len, "pci%04x,%04x", |
| 1905 | pci_get_word(d->config + PCI_VENDOR_ID), |
| 1906 | pci_get_word(d->config + PCI_DEVICE_ID)); |
| 1907 | } |
| 1908 | |
| 1909 | return buf; |
| 1910 | } |
| 1911 | |
| 1912 | static char *pcibus_get_fw_dev_path(DeviceState *dev) |
| 1913 | { |
| 1914 | PCIDevice *d = (PCIDevice *)dev; |
| 1915 | char path[50], name[33]; |
| 1916 | int off; |
| 1917 | |
| 1918 | off = snprintf(path, sizeof(path), "%s@%x", |
| 1919 | pci_dev_fw_name(dev, name, sizeof name), |
| 1920 | PCI_SLOT(d->devfn)); |
| 1921 | if (PCI_FUNC(d->devfn)) |
| 1922 | snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn)); |
| 1923 | return strdup(path); |
| 1924 | } |
| 1925 | |
Alex Williamson | 4f43c1f | 2010-06-25 11:08:59 -0600 | [diff] [blame] | 1926 | static char *pcibus_get_dev_path(DeviceState *dev) |
| 1927 | { |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1928 | PCIDevice *d = container_of(dev, PCIDevice, qdev); |
| 1929 | PCIDevice *t; |
| 1930 | int slot_depth; |
| 1931 | /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function. |
| 1932 | * 00 is added here to make this format compatible with |
| 1933 | * domain:Bus:Slot.Func for systems without nested PCI bridges. |
| 1934 | * Slot.Function list specifies the slot and function numbers for all |
| 1935 | * devices on the path from root to the specific device. */ |
Michael S. Tsirkin | 2991181 | 2011-01-19 21:18:19 +0200 | [diff] [blame] | 1936 | char domain[] = "DDDD:00"; |
| 1937 | char slot[] = ":SS.F"; |
| 1938 | int domain_len = sizeof domain - 1 /* For '\0' */; |
| 1939 | int slot_len = sizeof slot - 1 /* For '\0' */; |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1940 | int path_len; |
| 1941 | char *path, *p; |
Michael S. Tsirkin | 2991181 | 2011-01-19 21:18:19 +0200 | [diff] [blame] | 1942 | int s; |
Alex Williamson | 4f43c1f | 2010-06-25 11:08:59 -0600 | [diff] [blame] | 1943 | |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1944 | /* Calculate # of slots on path between device and root. */; |
| 1945 | slot_depth = 0; |
| 1946 | for (t = d; t; t = t->bus->parent_dev) { |
| 1947 | ++slot_depth; |
| 1948 | } |
Alex Williamson | 4f43c1f | 2010-06-25 11:08:59 -0600 | [diff] [blame] | 1949 | |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1950 | path_len = domain_len + slot_len * slot_depth; |
| 1951 | |
| 1952 | /* Allocate memory, fill in the terminating null byte. */ |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 1953 | path = g_malloc(path_len + 1 /* For '\0' */); |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1954 | path[path_len] = '\0'; |
| 1955 | |
| 1956 | /* First field is the domain. */ |
Michael S. Tsirkin | 2991181 | 2011-01-19 21:18:19 +0200 | [diff] [blame] | 1957 | s = snprintf(domain, sizeof domain, "%04x:00", pci_find_domain(d->bus)); |
| 1958 | assert(s == domain_len); |
| 1959 | memcpy(path, domain, domain_len); |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1960 | |
| 1961 | /* Fill in slot numbers. We walk up from device to root, so need to print |
| 1962 | * them in the reverse order, last to first. */ |
| 1963 | p = path + path_len; |
| 1964 | for (t = d; t; t = t->bus->parent_dev) { |
| 1965 | p -= slot_len; |
Michael S. Tsirkin | 2991181 | 2011-01-19 21:18:19 +0200 | [diff] [blame] | 1966 | s = snprintf(slot, sizeof slot, ":%02x.%x", |
Isaku Yamahata | 4c90051 | 2011-01-27 12:49:04 +0900 | [diff] [blame] | 1967 | PCI_SLOT(t->devfn), PCI_FUNC(t->devfn)); |
Michael S. Tsirkin | 2991181 | 2011-01-19 21:18:19 +0200 | [diff] [blame] | 1968 | assert(s == slot_len); |
| 1969 | memcpy(p, slot, slot_len); |
Michael S. Tsirkin | a6a7005 | 2010-12-27 11:21:38 +0200 | [diff] [blame] | 1970 | } |
| 1971 | |
| 1972 | return path; |
Alex Williamson | 4f43c1f | 2010-06-25 11:08:59 -0600 | [diff] [blame] | 1973 | } |
| 1974 | |
Isaku Yamahata | f3006dd | 2010-12-24 12:14:13 +0900 | [diff] [blame] | 1975 | static int pci_qdev_find_recursive(PCIBus *bus, |
| 1976 | const char *id, PCIDevice **pdev) |
| 1977 | { |
| 1978 | DeviceState *qdev = qdev_find_recursive(&bus->qbus, id); |
| 1979 | if (!qdev) { |
| 1980 | return -ENODEV; |
| 1981 | } |
| 1982 | |
| 1983 | /* roughly check if given qdev is pci device */ |
Anthony Liguori | 4be9f0d | 2011-12-09 10:51:49 -0600 | [diff] [blame] | 1984 | if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) { |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 1985 | *pdev = PCI_DEVICE(qdev); |
Isaku Yamahata | f3006dd | 2010-12-24 12:14:13 +0900 | [diff] [blame] | 1986 | return 0; |
| 1987 | } |
| 1988 | return -EINVAL; |
| 1989 | } |
| 1990 | |
| 1991 | int pci_qdev_find_device(const char *id, PCIDevice **pdev) |
| 1992 | { |
| 1993 | struct PCIHostBus *host; |
| 1994 | int rc = -ENODEV; |
| 1995 | |
| 1996 | QLIST_FOREACH(host, &host_buses, next) { |
| 1997 | int tmp = pci_qdev_find_recursive(host->bus, id, pdev); |
| 1998 | if (!tmp) { |
| 1999 | rc = 0; |
| 2000 | break; |
| 2001 | } |
| 2002 | if (tmp != -ENODEV) { |
| 2003 | rc = tmp; |
| 2004 | } |
| 2005 | } |
| 2006 | |
| 2007 | return rc; |
| 2008 | } |
Avi Kivity | f5e6fed | 2011-08-15 17:17:36 +0300 | [diff] [blame] | 2009 | |
| 2010 | MemoryRegion *pci_address_space(PCIDevice *dev) |
| 2011 | { |
| 2012 | return dev->bus->address_space_mem; |
| 2013 | } |
Richard Henderson | e11d643 | 2011-08-10 15:28:10 -0700 | [diff] [blame] | 2014 | |
| 2015 | MemoryRegion *pci_address_space_io(PCIDevice *dev) |
| 2016 | { |
| 2017 | return dev->bus->address_space_io; |
| 2018 | } |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 2019 | |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 2020 | static void pci_device_class_init(ObjectClass *klass, void *data) |
| 2021 | { |
| 2022 | DeviceClass *k = DEVICE_CLASS(klass); |
| 2023 | k->init = pci_qdev_init; |
| 2024 | k->unplug = pci_unplug_device; |
| 2025 | k->exit = pci_unregister_device; |
Anthony Liguori | 0d93692 | 2012-05-02 09:00:20 +0200 | [diff] [blame] | 2026 | k->bus_type = TYPE_PCI_BUS; |
Paolo Bonzini | bce5447 | 2012-03-28 18:12:47 +0200 | [diff] [blame] | 2027 | k->props = pci_props; |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 2028 | } |
| 2029 | |
David Gibson | 5fa45de | 2012-06-27 14:50:45 +1000 | [diff] [blame] | 2030 | void pci_setup_iommu(PCIBus *bus, PCIDMAContextFunc fn, void *opaque) |
| 2031 | { |
| 2032 | bus->dma_context_fn = fn; |
| 2033 | bus->dma_context_opaque = opaque; |
| 2034 | } |
| 2035 | |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 2036 | static TypeInfo pci_device_type_info = { |
| 2037 | .name = TYPE_PCI_DEVICE, |
| 2038 | .parent = TYPE_DEVICE, |
| 2039 | .instance_size = sizeof(PCIDevice), |
| 2040 | .abstract = true, |
| 2041 | .class_size = sizeof(PCIDeviceClass), |
Anthony Liguori | 39bffca | 2011-12-07 21:34:16 -0600 | [diff] [blame] | 2042 | .class_init = pci_device_class_init, |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 2043 | }; |
| 2044 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 2045 | static void pci_register_types(void) |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 2046 | { |
Anthony Liguori | 0d93692 | 2012-05-02 09:00:20 +0200 | [diff] [blame] | 2047 | type_register_static(&pci_bus_info); |
Anthony Liguori | 40021f0 | 2011-12-04 12:22:06 -0600 | [diff] [blame] | 2048 | type_register_static(&pci_device_type_info); |
| 2049 | } |
| 2050 | |
Andreas Färber | 83f7d43 | 2012-02-09 15:20:55 +0100 | [diff] [blame] | 2051 | type_init(pci_register_types) |