1315a1350SMichael S. Tsirkin /* 2315a1350SMichael S. Tsirkin * QEMU PCI bus manager 3315a1350SMichael S. Tsirkin * 4315a1350SMichael S. Tsirkin * Copyright (c) 2004 Fabrice Bellard 5315a1350SMichael S. Tsirkin * 6315a1350SMichael S. Tsirkin * Permission is hereby granted, free of charge, to any person obtaining a copy 7315a1350SMichael S. Tsirkin * of this software and associated documentation files (the "Software"), to deal 8315a1350SMichael S. Tsirkin * in the Software without restriction, including without limitation the rights 9315a1350SMichael S. Tsirkin * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10315a1350SMichael S. Tsirkin * copies of the Software, and to permit persons to whom the Software is 11315a1350SMichael S. Tsirkin * furnished to do so, subject to the following conditions: 12315a1350SMichael S. Tsirkin * 13315a1350SMichael S. Tsirkin * The above copyright notice and this permission notice shall be included in 14315a1350SMichael S. Tsirkin * all copies or substantial portions of the Software. 15315a1350SMichael S. Tsirkin * 16315a1350SMichael S. Tsirkin * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17315a1350SMichael S. Tsirkin * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18315a1350SMichael S. Tsirkin * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19315a1350SMichael S. Tsirkin * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20315a1350SMichael S. Tsirkin * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21315a1350SMichael S. Tsirkin * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22315a1350SMichael S. Tsirkin * THE SOFTWARE. 23315a1350SMichael S. Tsirkin */ 24c759b24fSMichael S. Tsirkin #include "hw/hw.h" 25c759b24fSMichael S. Tsirkin #include "hw/pci/pci.h" 26c759b24fSMichael S. Tsirkin #include "hw/pci/pci_bridge.h" 2706aac7bdSMichael S. Tsirkin #include "hw/pci/pci_bus.h" 28568f0690SDavid Gibson #include "hw/pci/pci_host.h" 2983c9089eSPaolo Bonzini #include "monitor/monitor.h" 301422e32dSPaolo Bonzini #include "net/net.h" 319c17d615SPaolo Bonzini #include "sysemu/sysemu.h" 32c759b24fSMichael S. Tsirkin #include "hw/loader.h" 331de7afc9SPaolo Bonzini #include "qemu/range.h" 34315a1350SMichael S. Tsirkin #include "qmp-commands.h" 357828d750SDon Koch #include "trace.h" 36c759b24fSMichael S. Tsirkin #include "hw/pci/msi.h" 37c759b24fSMichael S. Tsirkin #include "hw/pci/msix.h" 38022c62cbSPaolo Bonzini #include "exec/address-spaces.h" 395e954943SIgor Mammedov #include "hw/hotplug.h" 40315a1350SMichael S. Tsirkin 41315a1350SMichael S. Tsirkin //#define DEBUG_PCI 42315a1350SMichael S. Tsirkin #ifdef DEBUG_PCI 43315a1350SMichael S. Tsirkin # define PCI_DPRINTF(format, ...) printf(format, ## __VA_ARGS__) 44315a1350SMichael S. Tsirkin #else 45315a1350SMichael S. Tsirkin # define PCI_DPRINTF(format, ...) do { } while (0) 46315a1350SMichael S. Tsirkin #endif 47315a1350SMichael S. Tsirkin 48315a1350SMichael S. Tsirkin static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent); 49315a1350SMichael S. Tsirkin static char *pcibus_get_dev_path(DeviceState *dev); 50315a1350SMichael S. Tsirkin static char *pcibus_get_fw_dev_path(DeviceState *dev); 51dcc20931SPaolo Bonzini static void pcibus_reset(BusState *qbus); 52315a1350SMichael S. Tsirkin 53315a1350SMichael S. Tsirkin static Property pci_props[] = { 54315a1350SMichael S. Tsirkin DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1), 55315a1350SMichael S. Tsirkin DEFINE_PROP_STRING("romfile", PCIDevice, romfile), 56315a1350SMichael S. Tsirkin DEFINE_PROP_UINT32("rombar", PCIDevice, rom_bar, 1), 57315a1350SMichael S. Tsirkin DEFINE_PROP_BIT("multifunction", PCIDevice, cap_present, 58315a1350SMichael S. Tsirkin QEMU_PCI_CAP_MULTIFUNCTION_BITNR, false), 59315a1350SMichael S. Tsirkin DEFINE_PROP_BIT("command_serr_enable", PCIDevice, cap_present, 60315a1350SMichael S. Tsirkin QEMU_PCI_CAP_SERR_BITNR, true), 61315a1350SMichael S. Tsirkin DEFINE_PROP_END_OF_LIST() 62315a1350SMichael S. Tsirkin }; 63315a1350SMichael S. Tsirkin 64d2f69df7SBandan Das static const VMStateDescription vmstate_pcibus = { 65d2f69df7SBandan Das .name = "PCIBUS", 66d2f69df7SBandan Das .version_id = 1, 67d2f69df7SBandan Das .minimum_version_id = 1, 68d2f69df7SBandan Das .fields = (VMStateField[]) { 69d2f69df7SBandan Das VMSTATE_INT32_EQUAL(nirq, PCIBus), 70d2f69df7SBandan Das VMSTATE_VARRAY_INT32(irq_count, PCIBus, 71d2f69df7SBandan Das nirq, 0, vmstate_info_int32, 72d2f69df7SBandan Das int32_t), 73d2f69df7SBandan Das VMSTATE_END_OF_LIST() 74d2f69df7SBandan Das } 75d2f69df7SBandan Das }; 76d2f69df7SBandan Das 77d2f69df7SBandan Das static void pci_bus_realize(BusState *qbus, Error **errp) 78d2f69df7SBandan Das { 79d2f69df7SBandan Das PCIBus *bus = PCI_BUS(qbus); 80d2f69df7SBandan Das 81d2f69df7SBandan Das vmstate_register(NULL, -1, &vmstate_pcibus, bus); 82d2f69df7SBandan Das } 83d2f69df7SBandan Das 84d2f69df7SBandan Das static void pci_bus_unrealize(BusState *qbus, Error **errp) 85d2f69df7SBandan Das { 86d2f69df7SBandan Das PCIBus *bus = PCI_BUS(qbus); 87d2f69df7SBandan Das 88d2f69df7SBandan Das vmstate_unregister(NULL, &vmstate_pcibus, bus); 89d2f69df7SBandan Das } 90d2f69df7SBandan Das 91315a1350SMichael S. Tsirkin static void pci_bus_class_init(ObjectClass *klass, void *data) 92315a1350SMichael S. Tsirkin { 93315a1350SMichael S. Tsirkin BusClass *k = BUS_CLASS(klass); 94315a1350SMichael S. Tsirkin 95315a1350SMichael S. Tsirkin k->print_dev = pcibus_dev_print; 96315a1350SMichael S. Tsirkin k->get_dev_path = pcibus_get_dev_path; 97315a1350SMichael S. Tsirkin k->get_fw_dev_path = pcibus_get_fw_dev_path; 98d2f69df7SBandan Das k->realize = pci_bus_realize; 99d2f69df7SBandan Das k->unrealize = pci_bus_unrealize; 100315a1350SMichael S. Tsirkin k->reset = pcibus_reset; 101315a1350SMichael S. Tsirkin } 102315a1350SMichael S. Tsirkin 103315a1350SMichael S. Tsirkin static const TypeInfo pci_bus_info = { 104315a1350SMichael S. Tsirkin .name = TYPE_PCI_BUS, 105315a1350SMichael S. Tsirkin .parent = TYPE_BUS, 106315a1350SMichael S. Tsirkin .instance_size = sizeof(PCIBus), 107315a1350SMichael S. Tsirkin .class_init = pci_bus_class_init, 108315a1350SMichael S. Tsirkin }; 109315a1350SMichael S. Tsirkin 1103a861c46SAlex Williamson static const TypeInfo pcie_bus_info = { 1113a861c46SAlex Williamson .name = TYPE_PCIE_BUS, 1123a861c46SAlex Williamson .parent = TYPE_PCI_BUS, 1133a861c46SAlex Williamson }; 1143a861c46SAlex Williamson 115315a1350SMichael S. Tsirkin static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num); 116315a1350SMichael S. Tsirkin static void pci_update_mappings(PCIDevice *d); 117d98f08f5SMarcel Apfelbaum static void pci_irq_handler(void *opaque, int irq_num, int level); 118133e9b22SMarkus Armbruster static void pci_add_option_rom(PCIDevice *pdev, bool is_default_rom, Error **); 119315a1350SMichael S. Tsirkin static void pci_del_option_rom(PCIDevice *pdev); 120315a1350SMichael S. Tsirkin 121315a1350SMichael S. Tsirkin static uint16_t pci_default_sub_vendor_id = PCI_SUBVENDOR_ID_REDHAT_QUMRANET; 122315a1350SMichael S. Tsirkin static uint16_t pci_default_sub_device_id = PCI_SUBDEVICE_ID_QEMU; 123315a1350SMichael S. Tsirkin 1247588e2b0SDavid Gibson static QLIST_HEAD(, PCIHostState) pci_host_bridges; 125315a1350SMichael S. Tsirkin 126315a1350SMichael S. Tsirkin static int pci_bar(PCIDevice *d, int reg) 127315a1350SMichael S. Tsirkin { 128315a1350SMichael S. Tsirkin uint8_t type; 129315a1350SMichael S. Tsirkin 130315a1350SMichael S. Tsirkin if (reg != PCI_ROM_SLOT) 131315a1350SMichael S. Tsirkin return PCI_BASE_ADDRESS_0 + reg * 4; 132315a1350SMichael S. Tsirkin 133315a1350SMichael S. Tsirkin type = d->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; 134315a1350SMichael S. Tsirkin return type == PCI_HEADER_TYPE_BRIDGE ? PCI_ROM_ADDRESS1 : PCI_ROM_ADDRESS; 135315a1350SMichael S. Tsirkin } 136315a1350SMichael S. Tsirkin 137315a1350SMichael S. Tsirkin static inline int pci_irq_state(PCIDevice *d, int irq_num) 138315a1350SMichael S. Tsirkin { 139315a1350SMichael S. Tsirkin return (d->irq_state >> irq_num) & 0x1; 140315a1350SMichael S. Tsirkin } 141315a1350SMichael S. Tsirkin 142315a1350SMichael S. Tsirkin static inline void pci_set_irq_state(PCIDevice *d, int irq_num, int level) 143315a1350SMichael S. Tsirkin { 144315a1350SMichael S. Tsirkin d->irq_state &= ~(0x1 << irq_num); 145315a1350SMichael S. Tsirkin d->irq_state |= level << irq_num; 146315a1350SMichael S. Tsirkin } 147315a1350SMichael S. Tsirkin 148315a1350SMichael S. Tsirkin static void pci_change_irq_level(PCIDevice *pci_dev, int irq_num, int change) 149315a1350SMichael S. Tsirkin { 150315a1350SMichael S. Tsirkin PCIBus *bus; 151315a1350SMichael S. Tsirkin for (;;) { 152315a1350SMichael S. Tsirkin bus = pci_dev->bus; 153315a1350SMichael S. Tsirkin irq_num = bus->map_irq(pci_dev, irq_num); 154315a1350SMichael S. Tsirkin if (bus->set_irq) 155315a1350SMichael S. Tsirkin break; 156315a1350SMichael S. Tsirkin pci_dev = bus->parent_dev; 157315a1350SMichael S. Tsirkin } 158315a1350SMichael S. Tsirkin bus->irq_count[irq_num] += change; 159315a1350SMichael S. Tsirkin bus->set_irq(bus->irq_opaque, irq_num, bus->irq_count[irq_num] != 0); 160315a1350SMichael S. Tsirkin } 161315a1350SMichael S. Tsirkin 162315a1350SMichael S. Tsirkin int pci_bus_get_irq_level(PCIBus *bus, int irq_num) 163315a1350SMichael S. Tsirkin { 164315a1350SMichael S. Tsirkin assert(irq_num >= 0); 165315a1350SMichael S. Tsirkin assert(irq_num < bus->nirq); 166315a1350SMichael S. Tsirkin return !!bus->irq_count[irq_num]; 167315a1350SMichael S. Tsirkin } 168315a1350SMichael S. Tsirkin 169315a1350SMichael S. Tsirkin /* Update interrupt status bit in config space on interrupt 170315a1350SMichael S. Tsirkin * state change. */ 171315a1350SMichael S. Tsirkin static void pci_update_irq_status(PCIDevice *dev) 172315a1350SMichael S. Tsirkin { 173315a1350SMichael S. Tsirkin if (dev->irq_state) { 174315a1350SMichael S. Tsirkin dev->config[PCI_STATUS] |= PCI_STATUS_INTERRUPT; 175315a1350SMichael S. Tsirkin } else { 176315a1350SMichael S. Tsirkin dev->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; 177315a1350SMichael S. Tsirkin } 178315a1350SMichael S. Tsirkin } 179315a1350SMichael S. Tsirkin 180315a1350SMichael S. Tsirkin void pci_device_deassert_intx(PCIDevice *dev) 181315a1350SMichael S. Tsirkin { 182315a1350SMichael S. Tsirkin int i; 183315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_PINS; ++i) { 184d98f08f5SMarcel Apfelbaum pci_irq_handler(dev, i, 0); 185315a1350SMichael S. Tsirkin } 186315a1350SMichael S. Tsirkin } 187315a1350SMichael S. Tsirkin 188dcc20931SPaolo Bonzini static void pci_do_device_reset(PCIDevice *dev) 189315a1350SMichael S. Tsirkin { 190315a1350SMichael S. Tsirkin int r; 191315a1350SMichael S. Tsirkin 192315a1350SMichael S. Tsirkin pci_device_deassert_intx(dev); 19358b59014SCole Robinson assert(dev->irq_state == 0); 19458b59014SCole Robinson 195315a1350SMichael S. Tsirkin /* Clear all writable bits */ 196315a1350SMichael S. Tsirkin pci_word_test_and_clear_mask(dev->config + PCI_COMMAND, 197315a1350SMichael S. Tsirkin pci_get_word(dev->wmask + PCI_COMMAND) | 198315a1350SMichael S. Tsirkin pci_get_word(dev->w1cmask + PCI_COMMAND)); 199315a1350SMichael S. Tsirkin pci_word_test_and_clear_mask(dev->config + PCI_STATUS, 200315a1350SMichael S. Tsirkin pci_get_word(dev->wmask + PCI_STATUS) | 201315a1350SMichael S. Tsirkin pci_get_word(dev->w1cmask + PCI_STATUS)); 202315a1350SMichael S. Tsirkin dev->config[PCI_CACHE_LINE_SIZE] = 0x0; 203315a1350SMichael S. Tsirkin dev->config[PCI_INTERRUPT_LINE] = 0x0; 204315a1350SMichael S. Tsirkin for (r = 0; r < PCI_NUM_REGIONS; ++r) { 205315a1350SMichael S. Tsirkin PCIIORegion *region = &dev->io_regions[r]; 206315a1350SMichael S. Tsirkin if (!region->size) { 207315a1350SMichael S. Tsirkin continue; 208315a1350SMichael S. Tsirkin } 209315a1350SMichael S. Tsirkin 210315a1350SMichael S. Tsirkin if (!(region->type & PCI_BASE_ADDRESS_SPACE_IO) && 211315a1350SMichael S. Tsirkin region->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 212315a1350SMichael S. Tsirkin pci_set_quad(dev->config + pci_bar(dev, r), region->type); 213315a1350SMichael S. Tsirkin } else { 214315a1350SMichael S. Tsirkin pci_set_long(dev->config + pci_bar(dev, r), region->type); 215315a1350SMichael S. Tsirkin } 216315a1350SMichael S. Tsirkin } 217315a1350SMichael S. Tsirkin pci_update_mappings(dev); 218315a1350SMichael S. Tsirkin 219315a1350SMichael S. Tsirkin msi_reset(dev); 220315a1350SMichael S. Tsirkin msix_reset(dev); 221315a1350SMichael S. Tsirkin } 222315a1350SMichael S. Tsirkin 223315a1350SMichael S. Tsirkin /* 224dcc20931SPaolo Bonzini * This function is called on #RST and FLR. 225dcc20931SPaolo Bonzini * FLR if PCI_EXP_DEVCTL_BCR_FLR is set 226315a1350SMichael S. Tsirkin */ 227dcc20931SPaolo Bonzini void pci_device_reset(PCIDevice *dev) 228dcc20931SPaolo Bonzini { 229dcc20931SPaolo Bonzini qdev_reset_all(&dev->qdev); 230dcc20931SPaolo Bonzini pci_do_device_reset(dev); 231dcc20931SPaolo Bonzini } 232dcc20931SPaolo Bonzini 233dcc20931SPaolo Bonzini /* 234dcc20931SPaolo Bonzini * Trigger pci bus reset under a given bus. 235dcc20931SPaolo Bonzini * Called via qbus_reset_all on RST# assert, after the devices 236dcc20931SPaolo Bonzini * have been reset qdev_reset_all-ed already. 237dcc20931SPaolo Bonzini */ 238dcc20931SPaolo Bonzini static void pcibus_reset(BusState *qbus) 239315a1350SMichael S. Tsirkin { 24081e3e75bSPaolo Bonzini PCIBus *bus = DO_UPCAST(PCIBus, qbus, qbus); 241315a1350SMichael S. Tsirkin int i; 242315a1350SMichael S. Tsirkin 243315a1350SMichael S. Tsirkin for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 244315a1350SMichael S. Tsirkin if (bus->devices[i]) { 245dcc20931SPaolo Bonzini pci_do_device_reset(bus->devices[i]); 246315a1350SMichael S. Tsirkin } 247315a1350SMichael S. Tsirkin } 248315a1350SMichael S. Tsirkin 2499bdbbfc3SPaolo Bonzini for (i = 0; i < bus->nirq; i++) { 2509bdbbfc3SPaolo Bonzini assert(bus->irq_count[i] == 0); 2519bdbbfc3SPaolo Bonzini } 252315a1350SMichael S. Tsirkin } 253315a1350SMichael S. Tsirkin 2547588e2b0SDavid Gibson static void pci_host_bus_register(PCIBus *bus, DeviceState *parent) 255315a1350SMichael S. Tsirkin { 2567588e2b0SDavid Gibson PCIHostState *host_bridge = PCI_HOST_BRIDGE(parent); 2577588e2b0SDavid Gibson 2587588e2b0SDavid Gibson QLIST_INSERT_HEAD(&pci_host_bridges, host_bridge, next); 259315a1350SMichael S. Tsirkin } 260315a1350SMichael S. Tsirkin 2611ef7a2a2SDavid Gibson PCIBus *pci_find_primary_bus(void) 262315a1350SMichael S. Tsirkin { 2639bc47305SDavid Gibson PCIBus *primary_bus = NULL; 2647588e2b0SDavid Gibson PCIHostState *host; 265315a1350SMichael S. Tsirkin 2667588e2b0SDavid Gibson QLIST_FOREACH(host, &pci_host_bridges, next) { 2679bc47305SDavid Gibson if (primary_bus) { 2689bc47305SDavid Gibson /* We have multiple root buses, refuse to select a primary */ 269315a1350SMichael S. Tsirkin return NULL; 270315a1350SMichael S. Tsirkin } 2719bc47305SDavid Gibson primary_bus = host->bus; 272315a1350SMichael S. Tsirkin } 273315a1350SMichael S. Tsirkin 2749bc47305SDavid Gibson return primary_bus; 275315a1350SMichael S. Tsirkin } 276315a1350SMichael S. Tsirkin 277c473d18dSDavid Gibson PCIBus *pci_device_root_bus(const PCIDevice *d) 278315a1350SMichael S. Tsirkin { 279c473d18dSDavid Gibson PCIBus *bus = d->bus; 280315a1350SMichael S. Tsirkin 281315a1350SMichael S. Tsirkin while ((d = bus->parent_dev) != NULL) { 282315a1350SMichael S. Tsirkin bus = d->bus; 283315a1350SMichael S. Tsirkin } 284315a1350SMichael S. Tsirkin 285c473d18dSDavid Gibson return bus; 286315a1350SMichael S. Tsirkin } 287315a1350SMichael S. Tsirkin 288568f0690SDavid Gibson const char *pci_root_bus_path(PCIDevice *dev) 289c473d18dSDavid Gibson { 290568f0690SDavid Gibson PCIBus *rootbus = pci_device_root_bus(dev); 291568f0690SDavid Gibson PCIHostState *host_bridge = PCI_HOST_BRIDGE(rootbus->qbus.parent); 292568f0690SDavid Gibson PCIHostBridgeClass *hc = PCI_HOST_BRIDGE_GET_CLASS(host_bridge); 293c473d18dSDavid Gibson 294568f0690SDavid Gibson assert(!rootbus->parent_dev); 295568f0690SDavid Gibson assert(host_bridge->bus == rootbus); 296568f0690SDavid Gibson 297568f0690SDavid Gibson if (hc->root_bus_path) { 298568f0690SDavid Gibson return (*hc->root_bus_path)(host_bridge, rootbus); 299315a1350SMichael S. Tsirkin } 300315a1350SMichael S. Tsirkin 301568f0690SDavid Gibson return rootbus->qbus.name; 302315a1350SMichael S. Tsirkin } 303315a1350SMichael S. Tsirkin 3044fec6404SPaolo Bonzini static void pci_bus_init(PCIBus *bus, DeviceState *parent, 305315a1350SMichael S. Tsirkin const char *name, 306315a1350SMichael S. Tsirkin MemoryRegion *address_space_mem, 307315a1350SMichael S. Tsirkin MemoryRegion *address_space_io, 308315a1350SMichael S. Tsirkin uint8_t devfn_min) 309315a1350SMichael S. Tsirkin { 310315a1350SMichael S. Tsirkin assert(PCI_FUNC(devfn_min) == 0); 311315a1350SMichael S. Tsirkin bus->devfn_min = devfn_min; 312315a1350SMichael S. Tsirkin bus->address_space_mem = address_space_mem; 313315a1350SMichael S. Tsirkin bus->address_space_io = address_space_io; 314315a1350SMichael S. Tsirkin 315315a1350SMichael S. Tsirkin /* host bridge */ 316315a1350SMichael S. Tsirkin QLIST_INIT(&bus->child); 3172b8cc89aSDavid Gibson 3187588e2b0SDavid Gibson pci_host_bus_register(bus, parent); 319315a1350SMichael S. Tsirkin } 320315a1350SMichael S. Tsirkin 3218c0bf9e2SAlex Williamson bool pci_bus_is_express(PCIBus *bus) 3228c0bf9e2SAlex Williamson { 3238c0bf9e2SAlex Williamson return object_dynamic_cast(OBJECT(bus), TYPE_PCIE_BUS); 3248c0bf9e2SAlex Williamson } 3258c0bf9e2SAlex Williamson 3260889464aSAlex Williamson bool pci_bus_is_root(PCIBus *bus) 3270889464aSAlex Williamson { 3280889464aSAlex Williamson return !bus->parent_dev; 3290889464aSAlex Williamson } 3300889464aSAlex Williamson 331dd301ca6SAndreas Färber void pci_bus_new_inplace(PCIBus *bus, size_t bus_size, DeviceState *parent, 3324fec6404SPaolo Bonzini const char *name, 3334fec6404SPaolo Bonzini MemoryRegion *address_space_mem, 3344fec6404SPaolo Bonzini MemoryRegion *address_space_io, 33560a0e443SAlex Williamson uint8_t devfn_min, const char *typename) 3364fec6404SPaolo Bonzini { 337fb17dfe0SAndreas Färber qbus_create_inplace(bus, bus_size, typename, parent, name); 3384fec6404SPaolo Bonzini pci_bus_init(bus, parent, name, address_space_mem, 3394fec6404SPaolo Bonzini address_space_io, devfn_min); 3404fec6404SPaolo Bonzini } 3414fec6404SPaolo Bonzini 342315a1350SMichael S. Tsirkin PCIBus *pci_bus_new(DeviceState *parent, const char *name, 343315a1350SMichael S. Tsirkin MemoryRegion *address_space_mem, 344315a1350SMichael S. Tsirkin MemoryRegion *address_space_io, 34560a0e443SAlex Williamson uint8_t devfn_min, const char *typename) 346315a1350SMichael S. Tsirkin { 347315a1350SMichael S. Tsirkin PCIBus *bus; 348315a1350SMichael S. Tsirkin 34960a0e443SAlex Williamson bus = PCI_BUS(qbus_create(typename, parent, name)); 3504fec6404SPaolo Bonzini pci_bus_init(bus, parent, name, address_space_mem, 351315a1350SMichael S. Tsirkin address_space_io, devfn_min); 352315a1350SMichael S. Tsirkin return bus; 353315a1350SMichael S. Tsirkin } 354315a1350SMichael S. Tsirkin 355315a1350SMichael S. Tsirkin void pci_bus_irqs(PCIBus *bus, pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, 356315a1350SMichael S. Tsirkin void *irq_opaque, int nirq) 357315a1350SMichael S. Tsirkin { 358315a1350SMichael S. Tsirkin bus->set_irq = set_irq; 359315a1350SMichael S. Tsirkin bus->map_irq = map_irq; 360315a1350SMichael S. Tsirkin bus->irq_opaque = irq_opaque; 361315a1350SMichael S. Tsirkin bus->nirq = nirq; 362315a1350SMichael S. Tsirkin bus->irq_count = g_malloc0(nirq * sizeof(bus->irq_count[0])); 363315a1350SMichael S. Tsirkin } 364315a1350SMichael S. Tsirkin 365315a1350SMichael S. Tsirkin PCIBus *pci_register_bus(DeviceState *parent, const char *name, 366315a1350SMichael S. Tsirkin pci_set_irq_fn set_irq, pci_map_irq_fn map_irq, 367315a1350SMichael S. Tsirkin void *irq_opaque, 368315a1350SMichael S. Tsirkin MemoryRegion *address_space_mem, 369315a1350SMichael S. Tsirkin MemoryRegion *address_space_io, 37060a0e443SAlex Williamson uint8_t devfn_min, int nirq, const char *typename) 371315a1350SMichael S. Tsirkin { 372315a1350SMichael S. Tsirkin PCIBus *bus; 373315a1350SMichael S. Tsirkin 374315a1350SMichael S. Tsirkin bus = pci_bus_new(parent, name, address_space_mem, 37560a0e443SAlex Williamson address_space_io, devfn_min, typename); 376315a1350SMichael S. Tsirkin pci_bus_irqs(bus, set_irq, map_irq, irq_opaque, nirq); 377315a1350SMichael S. Tsirkin return bus; 378315a1350SMichael S. Tsirkin } 379315a1350SMichael S. Tsirkin 380315a1350SMichael S. Tsirkin int pci_bus_num(PCIBus *s) 381315a1350SMichael S. Tsirkin { 3820889464aSAlex Williamson if (pci_bus_is_root(s)) 383315a1350SMichael S. Tsirkin return 0; /* pci host bridge */ 384315a1350SMichael S. Tsirkin return s->parent_dev->config[PCI_SECONDARY_BUS]; 385315a1350SMichael S. Tsirkin } 386315a1350SMichael S. Tsirkin 387315a1350SMichael S. Tsirkin static int get_pci_config_device(QEMUFile *f, void *pv, size_t size) 388315a1350SMichael S. Tsirkin { 389315a1350SMichael S. Tsirkin PCIDevice *s = container_of(pv, PCIDevice, config); 390e78e9ae4SDon Koch PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(s); 391315a1350SMichael S. Tsirkin uint8_t *config; 392315a1350SMichael S. Tsirkin int i; 393315a1350SMichael S. Tsirkin 394315a1350SMichael S. Tsirkin assert(size == pci_config_size(s)); 395315a1350SMichael S. Tsirkin config = g_malloc(size); 396315a1350SMichael S. Tsirkin 397315a1350SMichael S. Tsirkin qemu_get_buffer(f, config, size); 398315a1350SMichael S. Tsirkin for (i = 0; i < size; ++i) { 399315a1350SMichael S. Tsirkin if ((config[i] ^ s->config[i]) & 400315a1350SMichael S. Tsirkin s->cmask[i] & ~s->wmask[i] & ~s->w1cmask[i]) { 401315a1350SMichael S. Tsirkin g_free(config); 402315a1350SMichael S. Tsirkin return -EINVAL; 403315a1350SMichael S. Tsirkin } 404315a1350SMichael S. Tsirkin } 405315a1350SMichael S. Tsirkin memcpy(s->config, config, size); 406315a1350SMichael S. Tsirkin 407315a1350SMichael S. Tsirkin pci_update_mappings(s); 408e78e9ae4SDon Koch if (pc->is_bridge) { 409f055e96bSAndreas Färber PCIBridge *b = PCI_BRIDGE(s); 410e78e9ae4SDon Koch pci_bridge_update_mappings(b); 411e78e9ae4SDon Koch } 412315a1350SMichael S. Tsirkin 413315a1350SMichael S. Tsirkin memory_region_set_enabled(&s->bus_master_enable_region, 414315a1350SMichael S. Tsirkin pci_get_word(s->config + PCI_COMMAND) 415315a1350SMichael S. Tsirkin & PCI_COMMAND_MASTER); 416315a1350SMichael S. Tsirkin 417315a1350SMichael S. Tsirkin g_free(config); 418315a1350SMichael S. Tsirkin return 0; 419315a1350SMichael S. Tsirkin } 420315a1350SMichael S. Tsirkin 421315a1350SMichael S. Tsirkin /* just put buffer */ 422315a1350SMichael S. Tsirkin static void put_pci_config_device(QEMUFile *f, void *pv, size_t size) 423315a1350SMichael S. Tsirkin { 424315a1350SMichael S. Tsirkin const uint8_t **v = pv; 425315a1350SMichael S. Tsirkin assert(size == pci_config_size(container_of(pv, PCIDevice, config))); 426315a1350SMichael S. Tsirkin qemu_put_buffer(f, *v, size); 427315a1350SMichael S. Tsirkin } 428315a1350SMichael S. Tsirkin 429315a1350SMichael S. Tsirkin static VMStateInfo vmstate_info_pci_config = { 430315a1350SMichael S. Tsirkin .name = "pci config", 431315a1350SMichael S. Tsirkin .get = get_pci_config_device, 432315a1350SMichael S. Tsirkin .put = put_pci_config_device, 433315a1350SMichael S. Tsirkin }; 434315a1350SMichael S. Tsirkin 435315a1350SMichael S. Tsirkin static int get_pci_irq_state(QEMUFile *f, void *pv, size_t size) 436315a1350SMichael S. Tsirkin { 437315a1350SMichael S. Tsirkin PCIDevice *s = container_of(pv, PCIDevice, irq_state); 438315a1350SMichael S. Tsirkin uint32_t irq_state[PCI_NUM_PINS]; 439315a1350SMichael S. Tsirkin int i; 440315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_PINS; ++i) { 441315a1350SMichael S. Tsirkin irq_state[i] = qemu_get_be32(f); 442315a1350SMichael S. Tsirkin if (irq_state[i] != 0x1 && irq_state[i] != 0) { 443315a1350SMichael S. Tsirkin fprintf(stderr, "irq state %d: must be 0 or 1.\n", 444315a1350SMichael S. Tsirkin irq_state[i]); 445315a1350SMichael S. Tsirkin return -EINVAL; 446315a1350SMichael S. Tsirkin } 447315a1350SMichael S. Tsirkin } 448315a1350SMichael S. Tsirkin 449315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_PINS; ++i) { 450315a1350SMichael S. Tsirkin pci_set_irq_state(s, i, irq_state[i]); 451315a1350SMichael S. Tsirkin } 452315a1350SMichael S. Tsirkin 453315a1350SMichael S. Tsirkin return 0; 454315a1350SMichael S. Tsirkin } 455315a1350SMichael S. Tsirkin 456315a1350SMichael S. Tsirkin static void put_pci_irq_state(QEMUFile *f, void *pv, size_t size) 457315a1350SMichael S. Tsirkin { 458315a1350SMichael S. Tsirkin int i; 459315a1350SMichael S. Tsirkin PCIDevice *s = container_of(pv, PCIDevice, irq_state); 460315a1350SMichael S. Tsirkin 461315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_PINS; ++i) { 462315a1350SMichael S. Tsirkin qemu_put_be32(f, pci_irq_state(s, i)); 463315a1350SMichael S. Tsirkin } 464315a1350SMichael S. Tsirkin } 465315a1350SMichael S. Tsirkin 466315a1350SMichael S. Tsirkin static VMStateInfo vmstate_info_pci_irq_state = { 467315a1350SMichael S. Tsirkin .name = "pci irq state", 468315a1350SMichael S. Tsirkin .get = get_pci_irq_state, 469315a1350SMichael S. Tsirkin .put = put_pci_irq_state, 470315a1350SMichael S. Tsirkin }; 471315a1350SMichael S. Tsirkin 472315a1350SMichael S. Tsirkin const VMStateDescription vmstate_pci_device = { 473315a1350SMichael S. Tsirkin .name = "PCIDevice", 474315a1350SMichael S. Tsirkin .version_id = 2, 475315a1350SMichael S. Tsirkin .minimum_version_id = 1, 476315a1350SMichael S. Tsirkin .fields = (VMStateField[]) { 4773476436aSMichael S. Tsirkin VMSTATE_INT32_POSITIVE_LE(version_id, PCIDevice), 478315a1350SMichael S. Tsirkin VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, 479315a1350SMichael S. Tsirkin vmstate_info_pci_config, 480315a1350SMichael S. Tsirkin PCI_CONFIG_SPACE_SIZE), 481315a1350SMichael S. Tsirkin VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, 482315a1350SMichael S. Tsirkin vmstate_info_pci_irq_state, 483315a1350SMichael S. Tsirkin PCI_NUM_PINS * sizeof(int32_t)), 484315a1350SMichael S. Tsirkin VMSTATE_END_OF_LIST() 485315a1350SMichael S. Tsirkin } 486315a1350SMichael S. Tsirkin }; 487315a1350SMichael S. Tsirkin 488315a1350SMichael S. Tsirkin const VMStateDescription vmstate_pcie_device = { 489315a1350SMichael S. Tsirkin .name = "PCIEDevice", 490315a1350SMichael S. Tsirkin .version_id = 2, 491315a1350SMichael S. Tsirkin .minimum_version_id = 1, 492315a1350SMichael S. Tsirkin .fields = (VMStateField[]) { 4933476436aSMichael S. Tsirkin VMSTATE_INT32_POSITIVE_LE(version_id, PCIDevice), 494315a1350SMichael S. Tsirkin VMSTATE_BUFFER_UNSAFE_INFO(config, PCIDevice, 0, 495315a1350SMichael S. Tsirkin vmstate_info_pci_config, 496315a1350SMichael S. Tsirkin PCIE_CONFIG_SPACE_SIZE), 497315a1350SMichael S. Tsirkin VMSTATE_BUFFER_UNSAFE_INFO(irq_state, PCIDevice, 2, 498315a1350SMichael S. Tsirkin vmstate_info_pci_irq_state, 499315a1350SMichael S. Tsirkin PCI_NUM_PINS * sizeof(int32_t)), 500315a1350SMichael S. Tsirkin VMSTATE_END_OF_LIST() 501315a1350SMichael S. Tsirkin } 502315a1350SMichael S. Tsirkin }; 503315a1350SMichael S. Tsirkin 504315a1350SMichael S. Tsirkin static inline const VMStateDescription *pci_get_vmstate(PCIDevice *s) 505315a1350SMichael S. Tsirkin { 506315a1350SMichael S. Tsirkin return pci_is_express(s) ? &vmstate_pcie_device : &vmstate_pci_device; 507315a1350SMichael S. Tsirkin } 508315a1350SMichael S. Tsirkin 509315a1350SMichael S. Tsirkin void pci_device_save(PCIDevice *s, QEMUFile *f) 510315a1350SMichael S. Tsirkin { 511315a1350SMichael S. Tsirkin /* Clear interrupt status bit: it is implicit 512315a1350SMichael S. Tsirkin * in irq_state which we are saving. 513315a1350SMichael S. Tsirkin * This makes us compatible with old devices 514315a1350SMichael S. Tsirkin * which never set or clear this bit. */ 515315a1350SMichael S. Tsirkin s->config[PCI_STATUS] &= ~PCI_STATUS_INTERRUPT; 5168118f095SAlexander Graf vmstate_save_state(f, pci_get_vmstate(s), s, NULL); 517315a1350SMichael S. Tsirkin /* Restore the interrupt status bit. */ 518315a1350SMichael S. Tsirkin pci_update_irq_status(s); 519315a1350SMichael S. Tsirkin } 520315a1350SMichael S. Tsirkin 521315a1350SMichael S. Tsirkin int pci_device_load(PCIDevice *s, QEMUFile *f) 522315a1350SMichael S. Tsirkin { 523315a1350SMichael S. Tsirkin int ret; 524315a1350SMichael S. Tsirkin ret = vmstate_load_state(f, pci_get_vmstate(s), s, s->version_id); 525315a1350SMichael S. Tsirkin /* Restore the interrupt status bit. */ 526315a1350SMichael S. Tsirkin pci_update_irq_status(s); 527315a1350SMichael S. Tsirkin return ret; 528315a1350SMichael S. Tsirkin } 529315a1350SMichael S. Tsirkin 530315a1350SMichael S. Tsirkin static void pci_set_default_subsystem_id(PCIDevice *pci_dev) 531315a1350SMichael S. Tsirkin { 532315a1350SMichael S. Tsirkin pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, 533315a1350SMichael S. Tsirkin pci_default_sub_vendor_id); 534315a1350SMichael S. Tsirkin pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, 535315a1350SMichael S. Tsirkin pci_default_sub_device_id); 536315a1350SMichael S. Tsirkin } 537315a1350SMichael S. Tsirkin 538315a1350SMichael S. Tsirkin /* 539315a1350SMichael S. Tsirkin * Parse [[<domain>:]<bus>:]<slot>, return -1 on error if funcp == NULL 540315a1350SMichael S. Tsirkin * [[<domain>:]<bus>:]<slot>.<func>, return -1 on error 541315a1350SMichael S. Tsirkin */ 5426dbcb819SMarkus Armbruster static int pci_parse_devaddr(const char *addr, int *domp, int *busp, 543315a1350SMichael S. Tsirkin unsigned int *slotp, unsigned int *funcp) 544315a1350SMichael S. Tsirkin { 545315a1350SMichael S. Tsirkin const char *p; 546315a1350SMichael S. Tsirkin char *e; 547315a1350SMichael S. Tsirkin unsigned long val; 548315a1350SMichael S. Tsirkin unsigned long dom = 0, bus = 0; 549315a1350SMichael S. Tsirkin unsigned int slot = 0; 550315a1350SMichael S. Tsirkin unsigned int func = 0; 551315a1350SMichael S. Tsirkin 552315a1350SMichael S. Tsirkin p = addr; 553315a1350SMichael S. Tsirkin val = strtoul(p, &e, 16); 554315a1350SMichael S. Tsirkin if (e == p) 555315a1350SMichael S. Tsirkin return -1; 556315a1350SMichael S. Tsirkin if (*e == ':') { 557315a1350SMichael S. Tsirkin bus = val; 558315a1350SMichael S. Tsirkin p = e + 1; 559315a1350SMichael S. Tsirkin val = strtoul(p, &e, 16); 560315a1350SMichael S. Tsirkin if (e == p) 561315a1350SMichael S. Tsirkin return -1; 562315a1350SMichael S. Tsirkin if (*e == ':') { 563315a1350SMichael S. Tsirkin dom = bus; 564315a1350SMichael S. Tsirkin bus = val; 565315a1350SMichael S. Tsirkin p = e + 1; 566315a1350SMichael S. Tsirkin val = strtoul(p, &e, 16); 567315a1350SMichael S. Tsirkin if (e == p) 568315a1350SMichael S. Tsirkin return -1; 569315a1350SMichael S. Tsirkin } 570315a1350SMichael S. Tsirkin } 571315a1350SMichael S. Tsirkin 572315a1350SMichael S. Tsirkin slot = val; 573315a1350SMichael S. Tsirkin 574315a1350SMichael S. Tsirkin if (funcp != NULL) { 575315a1350SMichael S. Tsirkin if (*e != '.') 576315a1350SMichael S. Tsirkin return -1; 577315a1350SMichael S. Tsirkin 578315a1350SMichael S. Tsirkin p = e + 1; 579315a1350SMichael S. Tsirkin val = strtoul(p, &e, 16); 580315a1350SMichael S. Tsirkin if (e == p) 581315a1350SMichael S. Tsirkin return -1; 582315a1350SMichael S. Tsirkin 583315a1350SMichael S. Tsirkin func = val; 584315a1350SMichael S. Tsirkin } 585315a1350SMichael S. Tsirkin 586315a1350SMichael S. Tsirkin /* if funcp == NULL func is 0 */ 587315a1350SMichael S. Tsirkin if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7) 588315a1350SMichael S. Tsirkin return -1; 589315a1350SMichael S. Tsirkin 590315a1350SMichael S. Tsirkin if (*e) 591315a1350SMichael S. Tsirkin return -1; 592315a1350SMichael S. Tsirkin 593315a1350SMichael S. Tsirkin *domp = dom; 594315a1350SMichael S. Tsirkin *busp = bus; 595315a1350SMichael S. Tsirkin *slotp = slot; 596315a1350SMichael S. Tsirkin if (funcp != NULL) 597315a1350SMichael S. Tsirkin *funcp = func; 598315a1350SMichael S. Tsirkin return 0; 599315a1350SMichael S. Tsirkin } 600315a1350SMichael S. Tsirkin 6016dbcb819SMarkus Armbruster static PCIBus *pci_get_bus_devfn(int *devfnp, PCIBus *root, 6026dbcb819SMarkus Armbruster const char *devaddr) 603315a1350SMichael S. Tsirkin { 604315a1350SMichael S. Tsirkin int dom, bus; 605315a1350SMichael S. Tsirkin unsigned slot; 606315a1350SMichael S. Tsirkin 6071ef7a2a2SDavid Gibson if (!root) { 6081ef7a2a2SDavid Gibson fprintf(stderr, "No primary PCI bus\n"); 6091ef7a2a2SDavid Gibson return NULL; 6101ef7a2a2SDavid Gibson } 6111ef7a2a2SDavid Gibson 612b645000eSSaravanakumar assert(!root->parent_dev); 613b645000eSSaravanakumar 614315a1350SMichael S. Tsirkin if (!devaddr) { 615315a1350SMichael S. Tsirkin *devfnp = -1; 6161ef7a2a2SDavid Gibson return pci_find_bus_nr(root, 0); 617315a1350SMichael S. Tsirkin } 618315a1350SMichael S. Tsirkin 619315a1350SMichael S. Tsirkin if (pci_parse_devaddr(devaddr, &dom, &bus, &slot, NULL) < 0) { 620315a1350SMichael S. Tsirkin return NULL; 621315a1350SMichael S. Tsirkin } 622315a1350SMichael S. Tsirkin 6231ef7a2a2SDavid Gibson if (dom != 0) { 6241ef7a2a2SDavid Gibson fprintf(stderr, "No support for non-zero PCI domains\n"); 6251ef7a2a2SDavid Gibson return NULL; 6261ef7a2a2SDavid Gibson } 6271ef7a2a2SDavid Gibson 628315a1350SMichael S. Tsirkin *devfnp = PCI_DEVFN(slot, 0); 6291ef7a2a2SDavid Gibson return pci_find_bus_nr(root, bus); 630315a1350SMichael S. Tsirkin } 631315a1350SMichael S. Tsirkin 632315a1350SMichael S. Tsirkin static void pci_init_cmask(PCIDevice *dev) 633315a1350SMichael S. Tsirkin { 634315a1350SMichael S. Tsirkin pci_set_word(dev->cmask + PCI_VENDOR_ID, 0xffff); 635315a1350SMichael S. Tsirkin pci_set_word(dev->cmask + PCI_DEVICE_ID, 0xffff); 636315a1350SMichael S. Tsirkin dev->cmask[PCI_STATUS] = PCI_STATUS_CAP_LIST; 637315a1350SMichael S. Tsirkin dev->cmask[PCI_REVISION_ID] = 0xff; 638315a1350SMichael S. Tsirkin dev->cmask[PCI_CLASS_PROG] = 0xff; 639315a1350SMichael S. Tsirkin pci_set_word(dev->cmask + PCI_CLASS_DEVICE, 0xffff); 640315a1350SMichael S. Tsirkin dev->cmask[PCI_HEADER_TYPE] = 0xff; 641315a1350SMichael S. Tsirkin dev->cmask[PCI_CAPABILITY_LIST] = 0xff; 642315a1350SMichael S. Tsirkin } 643315a1350SMichael S. Tsirkin 644315a1350SMichael S. Tsirkin static void pci_init_wmask(PCIDevice *dev) 645315a1350SMichael S. Tsirkin { 646315a1350SMichael S. Tsirkin int config_size = pci_config_size(dev); 647315a1350SMichael S. Tsirkin 648315a1350SMichael S. Tsirkin dev->wmask[PCI_CACHE_LINE_SIZE] = 0xff; 649315a1350SMichael S. Tsirkin dev->wmask[PCI_INTERRUPT_LINE] = 0xff; 650315a1350SMichael S. Tsirkin pci_set_word(dev->wmask + PCI_COMMAND, 651315a1350SMichael S. Tsirkin PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | 652315a1350SMichael S. Tsirkin PCI_COMMAND_INTX_DISABLE); 653315a1350SMichael S. Tsirkin if (dev->cap_present & QEMU_PCI_CAP_SERR) { 654315a1350SMichael S. Tsirkin pci_word_test_and_set_mask(dev->wmask + PCI_COMMAND, PCI_COMMAND_SERR); 655315a1350SMichael S. Tsirkin } 656315a1350SMichael S. Tsirkin 657315a1350SMichael S. Tsirkin memset(dev->wmask + PCI_CONFIG_HEADER_SIZE, 0xff, 658315a1350SMichael S. Tsirkin config_size - PCI_CONFIG_HEADER_SIZE); 659315a1350SMichael S. Tsirkin } 660315a1350SMichael S. Tsirkin 661315a1350SMichael S. Tsirkin static void pci_init_w1cmask(PCIDevice *dev) 662315a1350SMichael S. Tsirkin { 663315a1350SMichael S. Tsirkin /* 664315a1350SMichael S. Tsirkin * Note: It's okay to set w1cmask even for readonly bits as 665315a1350SMichael S. Tsirkin * long as their value is hardwired to 0. 666315a1350SMichael S. Tsirkin */ 667315a1350SMichael S. Tsirkin pci_set_word(dev->w1cmask + PCI_STATUS, 668315a1350SMichael S. Tsirkin PCI_STATUS_PARITY | PCI_STATUS_SIG_TARGET_ABORT | 669315a1350SMichael S. Tsirkin PCI_STATUS_REC_TARGET_ABORT | PCI_STATUS_REC_MASTER_ABORT | 670315a1350SMichael S. Tsirkin PCI_STATUS_SIG_SYSTEM_ERROR | PCI_STATUS_DETECTED_PARITY); 671315a1350SMichael S. Tsirkin } 672315a1350SMichael S. Tsirkin 673315a1350SMichael S. Tsirkin static void pci_init_mask_bridge(PCIDevice *d) 674315a1350SMichael S. Tsirkin { 675315a1350SMichael S. Tsirkin /* PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS and 676315a1350SMichael S. Tsirkin PCI_SEC_LETENCY_TIMER */ 677315a1350SMichael S. Tsirkin memset(d->wmask + PCI_PRIMARY_BUS, 0xff, 4); 678315a1350SMichael S. Tsirkin 679315a1350SMichael S. Tsirkin /* base and limit */ 680315a1350SMichael S. Tsirkin d->wmask[PCI_IO_BASE] = PCI_IO_RANGE_MASK & 0xff; 681315a1350SMichael S. Tsirkin d->wmask[PCI_IO_LIMIT] = PCI_IO_RANGE_MASK & 0xff; 682315a1350SMichael S. Tsirkin pci_set_word(d->wmask + PCI_MEMORY_BASE, 683315a1350SMichael S. Tsirkin PCI_MEMORY_RANGE_MASK & 0xffff); 684315a1350SMichael S. Tsirkin pci_set_word(d->wmask + PCI_MEMORY_LIMIT, 685315a1350SMichael S. Tsirkin PCI_MEMORY_RANGE_MASK & 0xffff); 686315a1350SMichael S. Tsirkin pci_set_word(d->wmask + PCI_PREF_MEMORY_BASE, 687315a1350SMichael S. Tsirkin PCI_PREF_RANGE_MASK & 0xffff); 688315a1350SMichael S. Tsirkin pci_set_word(d->wmask + PCI_PREF_MEMORY_LIMIT, 689315a1350SMichael S. Tsirkin PCI_PREF_RANGE_MASK & 0xffff); 690315a1350SMichael S. Tsirkin 691315a1350SMichael S. Tsirkin /* PCI_PREF_BASE_UPPER32 and PCI_PREF_LIMIT_UPPER32 */ 692315a1350SMichael S. Tsirkin memset(d->wmask + PCI_PREF_BASE_UPPER32, 0xff, 8); 693315a1350SMichael S. Tsirkin 694315a1350SMichael S. Tsirkin /* Supported memory and i/o types */ 695315a1350SMichael S. Tsirkin d->config[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_16; 696315a1350SMichael S. Tsirkin d->config[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_16; 697315a1350SMichael S. Tsirkin pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_BASE, 698315a1350SMichael S. Tsirkin PCI_PREF_RANGE_TYPE_64); 699315a1350SMichael S. Tsirkin pci_word_test_and_set_mask(d->config + PCI_PREF_MEMORY_LIMIT, 700315a1350SMichael S. Tsirkin PCI_PREF_RANGE_TYPE_64); 701315a1350SMichael S. Tsirkin 702ba7d8515SAlex Williamson /* 703ba7d8515SAlex Williamson * TODO: Bridges default to 10-bit VGA decoding but we currently only 704ba7d8515SAlex Williamson * implement 16-bit decoding (no alias support). 705ba7d8515SAlex Williamson */ 706315a1350SMichael S. Tsirkin pci_set_word(d->wmask + PCI_BRIDGE_CONTROL, 707315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_PARITY | 708315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_SERR | 709315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_ISA | 710315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_VGA | 711315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_VGA_16BIT | 712315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_MASTER_ABORT | 713315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_BUS_RESET | 714315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_FAST_BACK | 715315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_DISCARD | 716315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_SEC_DISCARD | 717315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_DISCARD_SERR); 718315a1350SMichael S. Tsirkin /* Below does not do anything as we never set this bit, put here for 719315a1350SMichael S. Tsirkin * completeness. */ 720315a1350SMichael S. Tsirkin pci_set_word(d->w1cmask + PCI_BRIDGE_CONTROL, 721315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_DISCARD_STATUS); 722315a1350SMichael S. Tsirkin d->cmask[PCI_IO_BASE] |= PCI_IO_RANGE_TYPE_MASK; 723315a1350SMichael S. Tsirkin d->cmask[PCI_IO_LIMIT] |= PCI_IO_RANGE_TYPE_MASK; 724315a1350SMichael S. Tsirkin pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_BASE, 725315a1350SMichael S. Tsirkin PCI_PREF_RANGE_TYPE_MASK); 726315a1350SMichael S. Tsirkin pci_word_test_and_set_mask(d->cmask + PCI_PREF_MEMORY_LIMIT, 727315a1350SMichael S. Tsirkin PCI_PREF_RANGE_TYPE_MASK); 728315a1350SMichael S. Tsirkin } 729315a1350SMichael S. Tsirkin 730133e9b22SMarkus Armbruster static void pci_init_multifunction(PCIBus *bus, PCIDevice *dev, Error **errp) 731315a1350SMichael S. Tsirkin { 732315a1350SMichael S. Tsirkin uint8_t slot = PCI_SLOT(dev->devfn); 733315a1350SMichael S. Tsirkin uint8_t func; 734315a1350SMichael S. Tsirkin 735315a1350SMichael S. Tsirkin if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { 736315a1350SMichael S. Tsirkin dev->config[PCI_HEADER_TYPE] |= PCI_HEADER_TYPE_MULTI_FUNCTION; 737315a1350SMichael S. Tsirkin } 738315a1350SMichael S. Tsirkin 739315a1350SMichael S. Tsirkin /* 740315a1350SMichael S. Tsirkin * multifunction bit is interpreted in two ways as follows. 741315a1350SMichael S. Tsirkin * - all functions must set the bit to 1. 742315a1350SMichael S. Tsirkin * Example: Intel X53 743315a1350SMichael S. Tsirkin * - function 0 must set the bit, but the rest function (> 0) 744315a1350SMichael S. Tsirkin * is allowed to leave the bit to 0. 745315a1350SMichael S. Tsirkin * Example: PIIX3(also in qemu), PIIX4(also in qemu), ICH10, 746315a1350SMichael S. Tsirkin * 747315a1350SMichael S. Tsirkin * So OS (at least Linux) checks the bit of only function 0, 748315a1350SMichael S. Tsirkin * and doesn't see the bit of function > 0. 749315a1350SMichael S. Tsirkin * 750315a1350SMichael S. Tsirkin * The below check allows both interpretation. 751315a1350SMichael S. Tsirkin */ 752315a1350SMichael S. Tsirkin if (PCI_FUNC(dev->devfn)) { 753315a1350SMichael S. Tsirkin PCIDevice *f0 = bus->devices[PCI_DEVFN(slot, 0)]; 754315a1350SMichael S. Tsirkin if (f0 && !(f0->cap_present & QEMU_PCI_CAP_MULTIFUNCTION)) { 755315a1350SMichael S. Tsirkin /* function 0 should set multifunction bit */ 756133e9b22SMarkus Armbruster error_setg(errp, "PCI: single function device can't be populated " 757315a1350SMichael S. Tsirkin "in function %x.%x", slot, PCI_FUNC(dev->devfn)); 758133e9b22SMarkus Armbruster return; 759315a1350SMichael S. Tsirkin } 760133e9b22SMarkus Armbruster return; 761315a1350SMichael S. Tsirkin } 762315a1350SMichael S. Tsirkin 763315a1350SMichael S. Tsirkin if (dev->cap_present & QEMU_PCI_CAP_MULTIFUNCTION) { 764133e9b22SMarkus Armbruster return; 765315a1350SMichael S. Tsirkin } 766315a1350SMichael S. Tsirkin /* function 0 indicates single function, so function > 0 must be NULL */ 767315a1350SMichael S. Tsirkin for (func = 1; func < PCI_FUNC_MAX; ++func) { 768315a1350SMichael S. Tsirkin if (bus->devices[PCI_DEVFN(slot, func)]) { 769133e9b22SMarkus Armbruster error_setg(errp, "PCI: %x.0 indicates single function, " 770315a1350SMichael S. Tsirkin "but %x.%x is already populated.", 771315a1350SMichael S. Tsirkin slot, slot, func); 772133e9b22SMarkus Armbruster return; 773315a1350SMichael S. Tsirkin } 774315a1350SMichael S. Tsirkin } 775315a1350SMichael S. Tsirkin } 776315a1350SMichael S. Tsirkin 777315a1350SMichael S. Tsirkin static void pci_config_alloc(PCIDevice *pci_dev) 778315a1350SMichael S. Tsirkin { 779315a1350SMichael S. Tsirkin int config_size = pci_config_size(pci_dev); 780315a1350SMichael S. Tsirkin 781315a1350SMichael S. Tsirkin pci_dev->config = g_malloc0(config_size); 782315a1350SMichael S. Tsirkin pci_dev->cmask = g_malloc0(config_size); 783315a1350SMichael S. Tsirkin pci_dev->wmask = g_malloc0(config_size); 784315a1350SMichael S. Tsirkin pci_dev->w1cmask = g_malloc0(config_size); 785315a1350SMichael S. Tsirkin pci_dev->used = g_malloc0(config_size); 786315a1350SMichael S. Tsirkin } 787315a1350SMichael S. Tsirkin 788315a1350SMichael S. Tsirkin static void pci_config_free(PCIDevice *pci_dev) 789315a1350SMichael S. Tsirkin { 790315a1350SMichael S. Tsirkin g_free(pci_dev->config); 791315a1350SMichael S. Tsirkin g_free(pci_dev->cmask); 792315a1350SMichael S. Tsirkin g_free(pci_dev->wmask); 793315a1350SMichael S. Tsirkin g_free(pci_dev->w1cmask); 794315a1350SMichael S. Tsirkin g_free(pci_dev->used); 795315a1350SMichael S. Tsirkin } 796315a1350SMichael S. Tsirkin 79730607764SMarcel Apfelbaum static void do_pci_unregister_device(PCIDevice *pci_dev) 79830607764SMarcel Apfelbaum { 79930607764SMarcel Apfelbaum pci_dev->bus->devices[pci_dev->devfn] = NULL; 80030607764SMarcel Apfelbaum pci_config_free(pci_dev); 80130607764SMarcel Apfelbaum 80230607764SMarcel Apfelbaum address_space_destroy(&pci_dev->bus_master_as); 80330607764SMarcel Apfelbaum } 80430607764SMarcel Apfelbaum 805315a1350SMichael S. Tsirkin /* -1 for devfn means auto assign */ 806315a1350SMichael S. Tsirkin static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus, 807133e9b22SMarkus Armbruster const char *name, int devfn, 808133e9b22SMarkus Armbruster Error **errp) 809315a1350SMichael S. Tsirkin { 810315a1350SMichael S. Tsirkin PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 811315a1350SMichael S. Tsirkin PCIConfigReadFunc *config_read = pc->config_read; 812315a1350SMichael S. Tsirkin PCIConfigWriteFunc *config_write = pc->config_write; 813133e9b22SMarkus Armbruster Error *local_err = NULL; 814e00387d5SAvi Kivity AddressSpace *dma_as; 815315a1350SMichael S. Tsirkin 816315a1350SMichael S. Tsirkin if (devfn < 0) { 817315a1350SMichael S. Tsirkin for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices); 818315a1350SMichael S. Tsirkin devfn += PCI_FUNC_MAX) { 819315a1350SMichael S. Tsirkin if (!bus->devices[devfn]) 820315a1350SMichael S. Tsirkin goto found; 821315a1350SMichael S. Tsirkin } 822133e9b22SMarkus Armbruster error_setg(errp, "PCI: no slot/function available for %s, all in use", 823133e9b22SMarkus Armbruster name); 824315a1350SMichael S. Tsirkin return NULL; 825315a1350SMichael S. Tsirkin found: ; 826315a1350SMichael S. Tsirkin } else if (bus->devices[devfn]) { 827133e9b22SMarkus Armbruster error_setg(errp, "PCI: slot %d function %d not available for %s," 828133e9b22SMarkus Armbruster " in use by %s", 829133e9b22SMarkus Armbruster PCI_SLOT(devfn), PCI_FUNC(devfn), name, 830133e9b22SMarkus Armbruster bus->devices[devfn]->name); 831315a1350SMichael S. Tsirkin return NULL; 832315a1350SMichael S. Tsirkin } 833e00387d5SAvi Kivity 834315a1350SMichael S. Tsirkin pci_dev->bus = bus; 835efc8188eSLe Tan pci_dev->devfn = devfn; 8369eda7d37SAlexey Kardashevskiy dma_as = pci_device_iommu_address_space(pci_dev); 837e00387d5SAvi Kivity 83840c5dce9SPaolo Bonzini memory_region_init_alias(&pci_dev->bus_master_enable_region, 83940c5dce9SPaolo Bonzini OBJECT(pci_dev), "bus master", 840e00387d5SAvi Kivity dma_as->root, 0, memory_region_size(dma_as->root)); 841315a1350SMichael S. Tsirkin memory_region_set_enabled(&pci_dev->bus_master_enable_region, false); 8427dca8043SAlexey Kardashevskiy address_space_init(&pci_dev->bus_master_as, &pci_dev->bus_master_enable_region, 8437dca8043SAlexey Kardashevskiy name); 84424addbc7SPaolo Bonzini 845315a1350SMichael S. Tsirkin pstrcpy(pci_dev->name, sizeof(pci_dev->name), name); 846315a1350SMichael S. Tsirkin pci_dev->irq_state = 0; 847315a1350SMichael S. Tsirkin pci_config_alloc(pci_dev); 848315a1350SMichael S. Tsirkin 849315a1350SMichael S. Tsirkin pci_config_set_vendor_id(pci_dev->config, pc->vendor_id); 850315a1350SMichael S. Tsirkin pci_config_set_device_id(pci_dev->config, pc->device_id); 851315a1350SMichael S. Tsirkin pci_config_set_revision(pci_dev->config, pc->revision); 852315a1350SMichael S. Tsirkin pci_config_set_class(pci_dev->config, pc->class_id); 853315a1350SMichael S. Tsirkin 854315a1350SMichael S. Tsirkin if (!pc->is_bridge) { 855315a1350SMichael S. Tsirkin if (pc->subsystem_vendor_id || pc->subsystem_id) { 856315a1350SMichael S. Tsirkin pci_set_word(pci_dev->config + PCI_SUBSYSTEM_VENDOR_ID, 857315a1350SMichael S. Tsirkin pc->subsystem_vendor_id); 858315a1350SMichael S. Tsirkin pci_set_word(pci_dev->config + PCI_SUBSYSTEM_ID, 859315a1350SMichael S. Tsirkin pc->subsystem_id); 860315a1350SMichael S. Tsirkin } else { 861315a1350SMichael S. Tsirkin pci_set_default_subsystem_id(pci_dev); 862315a1350SMichael S. Tsirkin } 863315a1350SMichael S. Tsirkin } else { 864315a1350SMichael S. Tsirkin /* subsystem_vendor_id/subsystem_id are only for header type 0 */ 865315a1350SMichael S. Tsirkin assert(!pc->subsystem_vendor_id); 866315a1350SMichael S. Tsirkin assert(!pc->subsystem_id); 867315a1350SMichael S. Tsirkin } 868315a1350SMichael S. Tsirkin pci_init_cmask(pci_dev); 869315a1350SMichael S. Tsirkin pci_init_wmask(pci_dev); 870315a1350SMichael S. Tsirkin pci_init_w1cmask(pci_dev); 871315a1350SMichael S. Tsirkin if (pc->is_bridge) { 872315a1350SMichael S. Tsirkin pci_init_mask_bridge(pci_dev); 873315a1350SMichael S. Tsirkin } 874133e9b22SMarkus Armbruster pci_init_multifunction(bus, pci_dev, &local_err); 875133e9b22SMarkus Armbruster if (local_err) { 876133e9b22SMarkus Armbruster error_propagate(errp, local_err); 87730607764SMarcel Apfelbaum do_pci_unregister_device(pci_dev); 878315a1350SMichael S. Tsirkin return NULL; 879315a1350SMichael S. Tsirkin } 880315a1350SMichael S. Tsirkin 881315a1350SMichael S. Tsirkin if (!config_read) 882315a1350SMichael S. Tsirkin config_read = pci_default_read_config; 883315a1350SMichael S. Tsirkin if (!config_write) 884315a1350SMichael S. Tsirkin config_write = pci_default_write_config; 885315a1350SMichael S. Tsirkin pci_dev->config_read = config_read; 886315a1350SMichael S. Tsirkin pci_dev->config_write = config_write; 887315a1350SMichael S. Tsirkin bus->devices[devfn] = pci_dev; 888315a1350SMichael S. Tsirkin pci_dev->version_id = 2; /* Current pci device vmstate version */ 889315a1350SMichael S. Tsirkin return pci_dev; 890315a1350SMichael S. Tsirkin } 891315a1350SMichael S. Tsirkin 892315a1350SMichael S. Tsirkin static void pci_unregister_io_regions(PCIDevice *pci_dev) 893315a1350SMichael S. Tsirkin { 894315a1350SMichael S. Tsirkin PCIIORegion *r; 895315a1350SMichael S. Tsirkin int i; 896315a1350SMichael S. Tsirkin 897315a1350SMichael S. Tsirkin for(i = 0; i < PCI_NUM_REGIONS; i++) { 898315a1350SMichael S. Tsirkin r = &pci_dev->io_regions[i]; 899315a1350SMichael S. Tsirkin if (!r->size || r->addr == PCI_BAR_UNMAPPED) 900315a1350SMichael S. Tsirkin continue; 901315a1350SMichael S. Tsirkin memory_region_del_subregion(r->address_space, r->memory); 902315a1350SMichael S. Tsirkin } 903e01fd687SAlex Williamson 904e01fd687SAlex Williamson pci_unregister_vga(pci_dev); 905315a1350SMichael S. Tsirkin } 906315a1350SMichael S. Tsirkin 907133e9b22SMarkus Armbruster static void pci_qdev_unrealize(DeviceState *dev, Error **errp) 908315a1350SMichael S. Tsirkin { 909315a1350SMichael S. Tsirkin PCIDevice *pci_dev = PCI_DEVICE(dev); 910315a1350SMichael S. Tsirkin PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 911315a1350SMichael S. Tsirkin 912315a1350SMichael S. Tsirkin pci_unregister_io_regions(pci_dev); 913315a1350SMichael S. Tsirkin pci_del_option_rom(pci_dev); 914315a1350SMichael S. Tsirkin 915315a1350SMichael S. Tsirkin if (pc->exit) { 916315a1350SMichael S. Tsirkin pc->exit(pci_dev); 917315a1350SMichael S. Tsirkin } 918315a1350SMichael S. Tsirkin 919315a1350SMichael S. Tsirkin do_pci_unregister_device(pci_dev); 920315a1350SMichael S. Tsirkin } 921315a1350SMichael S. Tsirkin 922315a1350SMichael S. Tsirkin void pci_register_bar(PCIDevice *pci_dev, int region_num, 923315a1350SMichael S. Tsirkin uint8_t type, MemoryRegion *memory) 924315a1350SMichael S. Tsirkin { 925315a1350SMichael S. Tsirkin PCIIORegion *r; 926315a1350SMichael S. Tsirkin uint32_t addr; 927315a1350SMichael S. Tsirkin uint64_t wmask; 928315a1350SMichael S. Tsirkin pcibus_t size = memory_region_size(memory); 929315a1350SMichael S. Tsirkin 930315a1350SMichael S. Tsirkin assert(region_num >= 0); 931315a1350SMichael S. Tsirkin assert(region_num < PCI_NUM_REGIONS); 932315a1350SMichael S. Tsirkin if (size & (size-1)) { 933315a1350SMichael S. Tsirkin fprintf(stderr, "ERROR: PCI region size must be pow2 " 934315a1350SMichael S. Tsirkin "type=0x%x, size=0x%"FMT_PCIBUS"\n", type, size); 935315a1350SMichael S. Tsirkin exit(1); 936315a1350SMichael S. Tsirkin } 937315a1350SMichael S. Tsirkin 938315a1350SMichael S. Tsirkin r = &pci_dev->io_regions[region_num]; 939315a1350SMichael S. Tsirkin r->addr = PCI_BAR_UNMAPPED; 940315a1350SMichael S. Tsirkin r->size = size; 941315a1350SMichael S. Tsirkin r->type = type; 942315a1350SMichael S. Tsirkin r->memory = NULL; 943315a1350SMichael S. Tsirkin 944315a1350SMichael S. Tsirkin wmask = ~(size - 1); 945315a1350SMichael S. Tsirkin addr = pci_bar(pci_dev, region_num); 946315a1350SMichael S. Tsirkin if (region_num == PCI_ROM_SLOT) { 947315a1350SMichael S. Tsirkin /* ROM enable bit is writable */ 948315a1350SMichael S. Tsirkin wmask |= PCI_ROM_ADDRESS_ENABLE; 949315a1350SMichael S. Tsirkin } 950315a1350SMichael S. Tsirkin pci_set_long(pci_dev->config + addr, type); 951315a1350SMichael S. Tsirkin if (!(r->type & PCI_BASE_ADDRESS_SPACE_IO) && 952315a1350SMichael S. Tsirkin r->type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 953315a1350SMichael S. Tsirkin pci_set_quad(pci_dev->wmask + addr, wmask); 954315a1350SMichael S. Tsirkin pci_set_quad(pci_dev->cmask + addr, ~0ULL); 955315a1350SMichael S. Tsirkin } else { 956315a1350SMichael S. Tsirkin pci_set_long(pci_dev->wmask + addr, wmask & 0xffffffff); 957315a1350SMichael S. Tsirkin pci_set_long(pci_dev->cmask + addr, 0xffffffff); 958315a1350SMichael S. Tsirkin } 959315a1350SMichael S. Tsirkin pci_dev->io_regions[region_num].memory = memory; 960315a1350SMichael S. Tsirkin pci_dev->io_regions[region_num].address_space 961315a1350SMichael S. Tsirkin = type & PCI_BASE_ADDRESS_SPACE_IO 962315a1350SMichael S. Tsirkin ? pci_dev->bus->address_space_io 963315a1350SMichael S. Tsirkin : pci_dev->bus->address_space_mem; 964315a1350SMichael S. Tsirkin } 965315a1350SMichael S. Tsirkin 966e01fd687SAlex Williamson static void pci_update_vga(PCIDevice *pci_dev) 967e01fd687SAlex Williamson { 968e01fd687SAlex Williamson uint16_t cmd; 969e01fd687SAlex Williamson 970e01fd687SAlex Williamson if (!pci_dev->has_vga) { 971e01fd687SAlex Williamson return; 972e01fd687SAlex Williamson } 973e01fd687SAlex Williamson 974e01fd687SAlex Williamson cmd = pci_get_word(pci_dev->config + PCI_COMMAND); 975e01fd687SAlex Williamson 976e01fd687SAlex Williamson memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_MEM], 977e01fd687SAlex Williamson cmd & PCI_COMMAND_MEMORY); 978e01fd687SAlex Williamson memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO], 979e01fd687SAlex Williamson cmd & PCI_COMMAND_IO); 980e01fd687SAlex Williamson memory_region_set_enabled(pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI], 981e01fd687SAlex Williamson cmd & PCI_COMMAND_IO); 982e01fd687SAlex Williamson } 983e01fd687SAlex Williamson 984e01fd687SAlex Williamson void pci_register_vga(PCIDevice *pci_dev, MemoryRegion *mem, 985e01fd687SAlex Williamson MemoryRegion *io_lo, MemoryRegion *io_hi) 986e01fd687SAlex Williamson { 987e01fd687SAlex Williamson assert(!pci_dev->has_vga); 988e01fd687SAlex Williamson 989e01fd687SAlex Williamson assert(memory_region_size(mem) == QEMU_PCI_VGA_MEM_SIZE); 990e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_MEM] = mem; 991e01fd687SAlex Williamson memory_region_add_subregion_overlap(pci_dev->bus->address_space_mem, 992e01fd687SAlex Williamson QEMU_PCI_VGA_MEM_BASE, mem, 1); 993e01fd687SAlex Williamson 994e01fd687SAlex Williamson assert(memory_region_size(io_lo) == QEMU_PCI_VGA_IO_LO_SIZE); 995e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO] = io_lo; 996e01fd687SAlex Williamson memory_region_add_subregion_overlap(pci_dev->bus->address_space_io, 997e01fd687SAlex Williamson QEMU_PCI_VGA_IO_LO_BASE, io_lo, 1); 998e01fd687SAlex Williamson 999e01fd687SAlex Williamson assert(memory_region_size(io_hi) == QEMU_PCI_VGA_IO_HI_SIZE); 1000e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI] = io_hi; 1001e01fd687SAlex Williamson memory_region_add_subregion_overlap(pci_dev->bus->address_space_io, 1002e01fd687SAlex Williamson QEMU_PCI_VGA_IO_HI_BASE, io_hi, 1); 1003e01fd687SAlex Williamson pci_dev->has_vga = true; 1004e01fd687SAlex Williamson 1005e01fd687SAlex Williamson pci_update_vga(pci_dev); 1006e01fd687SAlex Williamson } 1007e01fd687SAlex Williamson 1008e01fd687SAlex Williamson void pci_unregister_vga(PCIDevice *pci_dev) 1009e01fd687SAlex Williamson { 1010e01fd687SAlex Williamson if (!pci_dev->has_vga) { 1011e01fd687SAlex Williamson return; 1012e01fd687SAlex Williamson } 1013e01fd687SAlex Williamson 1014e01fd687SAlex Williamson memory_region_del_subregion(pci_dev->bus->address_space_mem, 1015e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_MEM]); 1016e01fd687SAlex Williamson memory_region_del_subregion(pci_dev->bus->address_space_io, 1017e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_IO_LO]); 1018e01fd687SAlex Williamson memory_region_del_subregion(pci_dev->bus->address_space_io, 1019e01fd687SAlex Williamson pci_dev->vga_regions[QEMU_PCI_VGA_IO_HI]); 1020e01fd687SAlex Williamson pci_dev->has_vga = false; 1021e01fd687SAlex Williamson } 1022e01fd687SAlex Williamson 1023315a1350SMichael S. Tsirkin pcibus_t pci_get_bar_addr(PCIDevice *pci_dev, int region_num) 1024315a1350SMichael S. Tsirkin { 1025315a1350SMichael S. Tsirkin return pci_dev->io_regions[region_num].addr; 1026315a1350SMichael S. Tsirkin } 1027315a1350SMichael S. Tsirkin 1028315a1350SMichael S. Tsirkin static pcibus_t pci_bar_address(PCIDevice *d, 1029315a1350SMichael S. Tsirkin int reg, uint8_t type, pcibus_t size) 1030315a1350SMichael S. Tsirkin { 1031315a1350SMichael S. Tsirkin pcibus_t new_addr, last_addr; 1032315a1350SMichael S. Tsirkin int bar = pci_bar(d, reg); 1033315a1350SMichael S. Tsirkin uint16_t cmd = pci_get_word(d->config + PCI_COMMAND); 1034315a1350SMichael S. Tsirkin 1035315a1350SMichael S. Tsirkin if (type & PCI_BASE_ADDRESS_SPACE_IO) { 1036315a1350SMichael S. Tsirkin if (!(cmd & PCI_COMMAND_IO)) { 1037315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1038315a1350SMichael S. Tsirkin } 1039315a1350SMichael S. Tsirkin new_addr = pci_get_long(d->config + bar) & ~(size - 1); 1040315a1350SMichael S. Tsirkin last_addr = new_addr + size - 1; 10419f1a029aSHervé Poussineau /* Check if 32 bit BAR wraps around explicitly. 10429f1a029aSHervé Poussineau * TODO: make priorities correct and remove this work around. 10439f1a029aSHervé Poussineau */ 10449f1a029aSHervé Poussineau if (last_addr <= new_addr || new_addr == 0 || last_addr >= UINT32_MAX) { 1045315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1046315a1350SMichael S. Tsirkin } 1047315a1350SMichael S. Tsirkin return new_addr; 1048315a1350SMichael S. Tsirkin } 1049315a1350SMichael S. Tsirkin 1050315a1350SMichael S. Tsirkin if (!(cmd & PCI_COMMAND_MEMORY)) { 1051315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1052315a1350SMichael S. Tsirkin } 1053315a1350SMichael S. Tsirkin if (type & PCI_BASE_ADDRESS_MEM_TYPE_64) { 1054315a1350SMichael S. Tsirkin new_addr = pci_get_quad(d->config + bar); 1055315a1350SMichael S. Tsirkin } else { 1056315a1350SMichael S. Tsirkin new_addr = pci_get_long(d->config + bar); 1057315a1350SMichael S. Tsirkin } 1058315a1350SMichael S. Tsirkin /* the ROM slot has a specific enable bit */ 1059315a1350SMichael S. Tsirkin if (reg == PCI_ROM_SLOT && !(new_addr & PCI_ROM_ADDRESS_ENABLE)) { 1060315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1061315a1350SMichael S. Tsirkin } 1062315a1350SMichael S. Tsirkin new_addr &= ~(size - 1); 1063315a1350SMichael S. Tsirkin last_addr = new_addr + size - 1; 1064315a1350SMichael S. Tsirkin /* NOTE: we do not support wrapping */ 1065315a1350SMichael S. Tsirkin /* XXX: as we cannot support really dynamic 1066315a1350SMichael S. Tsirkin mappings, we handle specific values as invalid 1067315a1350SMichael S. Tsirkin mappings. */ 1068315a1350SMichael S. Tsirkin if (last_addr <= new_addr || new_addr == 0 || 1069315a1350SMichael S. Tsirkin last_addr == PCI_BAR_UNMAPPED) { 1070315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1071315a1350SMichael S. Tsirkin } 1072315a1350SMichael S. Tsirkin 1073315a1350SMichael S. Tsirkin /* Now pcibus_t is 64bit. 1074315a1350SMichael S. Tsirkin * Check if 32 bit BAR wraps around explicitly. 1075315a1350SMichael S. Tsirkin * Without this, PC ide doesn't work well. 1076315a1350SMichael S. Tsirkin * TODO: remove this work around. 1077315a1350SMichael S. Tsirkin */ 1078315a1350SMichael S. Tsirkin if (!(type & PCI_BASE_ADDRESS_MEM_TYPE_64) && last_addr >= UINT32_MAX) { 1079315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1080315a1350SMichael S. Tsirkin } 1081315a1350SMichael S. Tsirkin 1082315a1350SMichael S. Tsirkin /* 1083315a1350SMichael S. Tsirkin * OS is allowed to set BAR beyond its addressable 1084315a1350SMichael S. Tsirkin * bits. For example, 32 bit OS can set 64bit bar 1085315a1350SMichael S. Tsirkin * to >4G. Check it. TODO: we might need to support 1086315a1350SMichael S. Tsirkin * it in the future for e.g. PAE. 1087315a1350SMichael S. Tsirkin */ 1088315a1350SMichael S. Tsirkin if (last_addr >= HWADDR_MAX) { 1089315a1350SMichael S. Tsirkin return PCI_BAR_UNMAPPED; 1090315a1350SMichael S. Tsirkin } 1091315a1350SMichael S. Tsirkin 1092315a1350SMichael S. Tsirkin return new_addr; 1093315a1350SMichael S. Tsirkin } 1094315a1350SMichael S. Tsirkin 1095315a1350SMichael S. Tsirkin static void pci_update_mappings(PCIDevice *d) 1096315a1350SMichael S. Tsirkin { 1097315a1350SMichael S. Tsirkin PCIIORegion *r; 1098315a1350SMichael S. Tsirkin int i; 1099315a1350SMichael S. Tsirkin pcibus_t new_addr; 1100315a1350SMichael S. Tsirkin 1101315a1350SMichael S. Tsirkin for(i = 0; i < PCI_NUM_REGIONS; i++) { 1102315a1350SMichael S. Tsirkin r = &d->io_regions[i]; 1103315a1350SMichael S. Tsirkin 1104315a1350SMichael S. Tsirkin /* this region isn't registered */ 1105315a1350SMichael S. Tsirkin if (!r->size) 1106315a1350SMichael S. Tsirkin continue; 1107315a1350SMichael S. Tsirkin 1108315a1350SMichael S. Tsirkin new_addr = pci_bar_address(d, i, r->type, r->size); 1109315a1350SMichael S. Tsirkin 1110315a1350SMichael S. Tsirkin /* This bar isn't changed */ 1111315a1350SMichael S. Tsirkin if (new_addr == r->addr) 1112315a1350SMichael S. Tsirkin continue; 1113315a1350SMichael S. Tsirkin 1114315a1350SMichael S. Tsirkin /* now do the real mapping */ 1115315a1350SMichael S. Tsirkin if (r->addr != PCI_BAR_UNMAPPED) { 11167828d750SDon Koch trace_pci_update_mappings_del(d, pci_bus_num(d->bus), 11177828d750SDon Koch PCI_FUNC(d->devfn), 11187828d750SDon Koch PCI_SLOT(d->devfn), 11197828d750SDon Koch i, r->addr, r->size); 1120315a1350SMichael S. Tsirkin memory_region_del_subregion(r->address_space, r->memory); 1121315a1350SMichael S. Tsirkin } 1122315a1350SMichael S. Tsirkin r->addr = new_addr; 1123315a1350SMichael S. Tsirkin if (r->addr != PCI_BAR_UNMAPPED) { 11247828d750SDon Koch trace_pci_update_mappings_add(d, pci_bus_num(d->bus), 11257828d750SDon Koch PCI_FUNC(d->devfn), 11267828d750SDon Koch PCI_SLOT(d->devfn), 11277828d750SDon Koch i, r->addr, r->size); 1128315a1350SMichael S. Tsirkin memory_region_add_subregion_overlap(r->address_space, 1129315a1350SMichael S. Tsirkin r->addr, r->memory, 1); 1130315a1350SMichael S. Tsirkin } 1131315a1350SMichael S. Tsirkin } 1132e01fd687SAlex Williamson 1133e01fd687SAlex Williamson pci_update_vga(d); 1134315a1350SMichael S. Tsirkin } 1135315a1350SMichael S. Tsirkin 1136315a1350SMichael S. Tsirkin static inline int pci_irq_disabled(PCIDevice *d) 1137315a1350SMichael S. Tsirkin { 1138315a1350SMichael S. Tsirkin return pci_get_word(d->config + PCI_COMMAND) & PCI_COMMAND_INTX_DISABLE; 1139315a1350SMichael S. Tsirkin } 1140315a1350SMichael S. Tsirkin 1141315a1350SMichael S. Tsirkin /* Called after interrupt disabled field update in config space, 1142315a1350SMichael S. Tsirkin * assert/deassert interrupts if necessary. 1143315a1350SMichael S. Tsirkin * Gets original interrupt disable bit value (before update). */ 1144315a1350SMichael S. Tsirkin static void pci_update_irq_disabled(PCIDevice *d, int was_irq_disabled) 1145315a1350SMichael S. Tsirkin { 1146315a1350SMichael S. Tsirkin int i, disabled = pci_irq_disabled(d); 1147315a1350SMichael S. Tsirkin if (disabled == was_irq_disabled) 1148315a1350SMichael S. Tsirkin return; 1149315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_PINS; ++i) { 1150315a1350SMichael S. Tsirkin int state = pci_irq_state(d, i); 1151315a1350SMichael S. Tsirkin pci_change_irq_level(d, i, disabled ? -state : state); 1152315a1350SMichael S. Tsirkin } 1153315a1350SMichael S. Tsirkin } 1154315a1350SMichael S. Tsirkin 1155315a1350SMichael S. Tsirkin uint32_t pci_default_read_config(PCIDevice *d, 1156315a1350SMichael S. Tsirkin uint32_t address, int len) 1157315a1350SMichael S. Tsirkin { 1158315a1350SMichael S. Tsirkin uint32_t val = 0; 1159315a1350SMichael S. Tsirkin 1160315a1350SMichael S. Tsirkin memcpy(&val, d->config + address, len); 1161315a1350SMichael S. Tsirkin return le32_to_cpu(val); 1162315a1350SMichael S. Tsirkin } 1163315a1350SMichael S. Tsirkin 1164d7efb7e0SKnut Omang void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val_in, int l) 1165315a1350SMichael S. Tsirkin { 1166315a1350SMichael S. Tsirkin int i, was_irq_disabled = pci_irq_disabled(d); 1167d7efb7e0SKnut Omang uint32_t val = val_in; 1168315a1350SMichael S. Tsirkin 1169315a1350SMichael S. Tsirkin for (i = 0; i < l; val >>= 8, ++i) { 1170315a1350SMichael S. Tsirkin uint8_t wmask = d->wmask[addr + i]; 1171315a1350SMichael S. Tsirkin uint8_t w1cmask = d->w1cmask[addr + i]; 1172315a1350SMichael S. Tsirkin assert(!(wmask & w1cmask)); 1173315a1350SMichael S. Tsirkin d->config[addr + i] = (d->config[addr + i] & ~wmask) | (val & wmask); 1174315a1350SMichael S. Tsirkin d->config[addr + i] &= ~(val & w1cmask); /* W1C: Write 1 to Clear */ 1175315a1350SMichael S. Tsirkin } 1176315a1350SMichael S. Tsirkin if (ranges_overlap(addr, l, PCI_BASE_ADDRESS_0, 24) || 1177315a1350SMichael S. Tsirkin ranges_overlap(addr, l, PCI_ROM_ADDRESS, 4) || 1178315a1350SMichael S. Tsirkin ranges_overlap(addr, l, PCI_ROM_ADDRESS1, 4) || 1179315a1350SMichael S. Tsirkin range_covers_byte(addr, l, PCI_COMMAND)) 1180315a1350SMichael S. Tsirkin pci_update_mappings(d); 1181315a1350SMichael S. Tsirkin 1182315a1350SMichael S. Tsirkin if (range_covers_byte(addr, l, PCI_COMMAND)) { 1183315a1350SMichael S. Tsirkin pci_update_irq_disabled(d, was_irq_disabled); 1184315a1350SMichael S. Tsirkin memory_region_set_enabled(&d->bus_master_enable_region, 1185315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_COMMAND) 1186315a1350SMichael S. Tsirkin & PCI_COMMAND_MASTER); 1187315a1350SMichael S. Tsirkin } 1188315a1350SMichael S. Tsirkin 1189d7efb7e0SKnut Omang msi_write_config(d, addr, val_in, l); 1190d7efb7e0SKnut Omang msix_write_config(d, addr, val_in, l); 1191315a1350SMichael S. Tsirkin } 1192315a1350SMichael S. Tsirkin 1193315a1350SMichael S. Tsirkin /***********************************************************/ 1194315a1350SMichael S. Tsirkin /* generic PCI irq support */ 1195315a1350SMichael S. Tsirkin 1196315a1350SMichael S. Tsirkin /* 0 <= irq_num <= 3. level must be 0 or 1 */ 1197d98f08f5SMarcel Apfelbaum static void pci_irq_handler(void *opaque, int irq_num, int level) 1198315a1350SMichael S. Tsirkin { 1199315a1350SMichael S. Tsirkin PCIDevice *pci_dev = opaque; 1200315a1350SMichael S. Tsirkin int change; 1201315a1350SMichael S. Tsirkin 1202315a1350SMichael S. Tsirkin change = level - pci_irq_state(pci_dev, irq_num); 1203315a1350SMichael S. Tsirkin if (!change) 1204315a1350SMichael S. Tsirkin return; 1205315a1350SMichael S. Tsirkin 1206315a1350SMichael S. Tsirkin pci_set_irq_state(pci_dev, irq_num, level); 1207315a1350SMichael S. Tsirkin pci_update_irq_status(pci_dev); 1208315a1350SMichael S. Tsirkin if (pci_irq_disabled(pci_dev)) 1209315a1350SMichael S. Tsirkin return; 1210315a1350SMichael S. Tsirkin pci_change_irq_level(pci_dev, irq_num, change); 1211315a1350SMichael S. Tsirkin } 1212315a1350SMichael S. Tsirkin 1213d98f08f5SMarcel Apfelbaum static inline int pci_intx(PCIDevice *pci_dev) 1214d98f08f5SMarcel Apfelbaum { 1215d98f08f5SMarcel Apfelbaum return pci_get_byte(pci_dev->config + PCI_INTERRUPT_PIN) - 1; 1216d98f08f5SMarcel Apfelbaum } 1217d98f08f5SMarcel Apfelbaum 1218d98f08f5SMarcel Apfelbaum qemu_irq pci_allocate_irq(PCIDevice *pci_dev) 1219d98f08f5SMarcel Apfelbaum { 1220d98f08f5SMarcel Apfelbaum int intx = pci_intx(pci_dev); 1221d98f08f5SMarcel Apfelbaum 1222d98f08f5SMarcel Apfelbaum return qemu_allocate_irq(pci_irq_handler, pci_dev, intx); 1223d98f08f5SMarcel Apfelbaum } 1224d98f08f5SMarcel Apfelbaum 1225d98f08f5SMarcel Apfelbaum void pci_set_irq(PCIDevice *pci_dev, int level) 1226d98f08f5SMarcel Apfelbaum { 1227d98f08f5SMarcel Apfelbaum int intx = pci_intx(pci_dev); 1228d98f08f5SMarcel Apfelbaum pci_irq_handler(pci_dev, intx, level); 1229d98f08f5SMarcel Apfelbaum } 1230d98f08f5SMarcel Apfelbaum 1231315a1350SMichael S. Tsirkin /* Special hooks used by device assignment */ 1232315a1350SMichael S. Tsirkin void pci_bus_set_route_irq_fn(PCIBus *bus, pci_route_irq_fn route_intx_to_irq) 1233315a1350SMichael S. Tsirkin { 12340889464aSAlex Williamson assert(pci_bus_is_root(bus)); 1235315a1350SMichael S. Tsirkin bus->route_intx_to_irq = route_intx_to_irq; 1236315a1350SMichael S. Tsirkin } 1237315a1350SMichael S. Tsirkin 1238315a1350SMichael S. Tsirkin PCIINTxRoute pci_device_route_intx_to_irq(PCIDevice *dev, int pin) 1239315a1350SMichael S. Tsirkin { 1240315a1350SMichael S. Tsirkin PCIBus *bus; 1241315a1350SMichael S. Tsirkin 1242315a1350SMichael S. Tsirkin do { 1243315a1350SMichael S. Tsirkin bus = dev->bus; 1244315a1350SMichael S. Tsirkin pin = bus->map_irq(dev, pin); 1245315a1350SMichael S. Tsirkin dev = bus->parent_dev; 1246315a1350SMichael S. Tsirkin } while (dev); 1247315a1350SMichael S. Tsirkin 1248315a1350SMichael S. Tsirkin if (!bus->route_intx_to_irq) { 1249312fd5f2SMarkus Armbruster error_report("PCI: Bug - unimplemented PCI INTx routing (%s)", 1250315a1350SMichael S. Tsirkin object_get_typename(OBJECT(bus->qbus.parent))); 1251315a1350SMichael S. Tsirkin return (PCIINTxRoute) { PCI_INTX_DISABLED, -1 }; 1252315a1350SMichael S. Tsirkin } 1253315a1350SMichael S. Tsirkin 1254315a1350SMichael S. Tsirkin return bus->route_intx_to_irq(bus->irq_opaque, pin); 1255315a1350SMichael S. Tsirkin } 1256315a1350SMichael S. Tsirkin 1257315a1350SMichael S. Tsirkin bool pci_intx_route_changed(PCIINTxRoute *old, PCIINTxRoute *new) 1258315a1350SMichael S. Tsirkin { 1259315a1350SMichael S. Tsirkin return old->mode != new->mode || old->irq != new->irq; 1260315a1350SMichael S. Tsirkin } 1261315a1350SMichael S. Tsirkin 1262315a1350SMichael S. Tsirkin void pci_bus_fire_intx_routing_notifier(PCIBus *bus) 1263315a1350SMichael S. Tsirkin { 1264315a1350SMichael S. Tsirkin PCIDevice *dev; 1265315a1350SMichael S. Tsirkin PCIBus *sec; 1266315a1350SMichael S. Tsirkin int i; 1267315a1350SMichael S. Tsirkin 1268315a1350SMichael S. Tsirkin for (i = 0; i < ARRAY_SIZE(bus->devices); ++i) { 1269315a1350SMichael S. Tsirkin dev = bus->devices[i]; 1270315a1350SMichael S. Tsirkin if (dev && dev->intx_routing_notifier) { 1271315a1350SMichael S. Tsirkin dev->intx_routing_notifier(dev); 1272315a1350SMichael S. Tsirkin } 1273e5368f0dSAlex Williamson } 1274e5368f0dSAlex Williamson 1275315a1350SMichael S. Tsirkin QLIST_FOREACH(sec, &bus->child, sibling) { 1276315a1350SMichael S. Tsirkin pci_bus_fire_intx_routing_notifier(sec); 1277315a1350SMichael S. Tsirkin } 1278315a1350SMichael S. Tsirkin } 1279315a1350SMichael S. Tsirkin 1280315a1350SMichael S. Tsirkin void pci_device_set_intx_routing_notifier(PCIDevice *dev, 1281315a1350SMichael S. Tsirkin PCIINTxRoutingNotifier notifier) 1282315a1350SMichael S. Tsirkin { 1283315a1350SMichael S. Tsirkin dev->intx_routing_notifier = notifier; 1284315a1350SMichael S. Tsirkin } 1285315a1350SMichael S. Tsirkin 1286315a1350SMichael S. Tsirkin /* 1287315a1350SMichael S. Tsirkin * PCI-to-PCI bridge specification 1288315a1350SMichael S. Tsirkin * 9.1: Interrupt routing. Table 9-1 1289315a1350SMichael S. Tsirkin * 1290315a1350SMichael S. Tsirkin * the PCI Express Base Specification, Revision 2.1 1291315a1350SMichael S. Tsirkin * 2.2.8.1: INTx interrutp signaling - Rules 1292315a1350SMichael S. Tsirkin * the Implementation Note 1293315a1350SMichael S. Tsirkin * Table 2-20 1294315a1350SMichael S. Tsirkin */ 1295315a1350SMichael S. Tsirkin /* 1296315a1350SMichael S. Tsirkin * 0 <= pin <= 3 0 = INTA, 1 = INTB, 2 = INTC, 3 = INTD 1297315a1350SMichael S. Tsirkin * 0-origin unlike PCI interrupt pin register. 1298315a1350SMichael S. Tsirkin */ 1299315a1350SMichael S. Tsirkin int pci_swizzle_map_irq_fn(PCIDevice *pci_dev, int pin) 1300315a1350SMichael S. Tsirkin { 1301315a1350SMichael S. Tsirkin return (pin + PCI_SLOT(pci_dev->devfn)) % PCI_NUM_PINS; 1302315a1350SMichael S. Tsirkin } 1303315a1350SMichael S. Tsirkin 1304315a1350SMichael S. Tsirkin /***********************************************************/ 1305315a1350SMichael S. Tsirkin /* monitor info on PCI */ 1306315a1350SMichael S. Tsirkin 1307315a1350SMichael S. Tsirkin typedef struct { 1308315a1350SMichael S. Tsirkin uint16_t class; 1309315a1350SMichael S. Tsirkin const char *desc; 1310315a1350SMichael S. Tsirkin const char *fw_name; 1311315a1350SMichael S. Tsirkin uint16_t fw_ign_bits; 1312315a1350SMichael S. Tsirkin } pci_class_desc; 1313315a1350SMichael S. Tsirkin 1314315a1350SMichael S. Tsirkin static const pci_class_desc pci_class_descriptions[] = 1315315a1350SMichael S. Tsirkin { 1316315a1350SMichael S. Tsirkin { 0x0001, "VGA controller", "display"}, 1317315a1350SMichael S. Tsirkin { 0x0100, "SCSI controller", "scsi"}, 1318315a1350SMichael S. Tsirkin { 0x0101, "IDE controller", "ide"}, 1319315a1350SMichael S. Tsirkin { 0x0102, "Floppy controller", "fdc"}, 1320315a1350SMichael S. Tsirkin { 0x0103, "IPI controller", "ipi"}, 1321315a1350SMichael S. Tsirkin { 0x0104, "RAID controller", "raid"}, 1322315a1350SMichael S. Tsirkin { 0x0106, "SATA controller"}, 1323315a1350SMichael S. Tsirkin { 0x0107, "SAS controller"}, 1324315a1350SMichael S. Tsirkin { 0x0180, "Storage controller"}, 1325315a1350SMichael S. Tsirkin { 0x0200, "Ethernet controller", "ethernet"}, 1326315a1350SMichael S. Tsirkin { 0x0201, "Token Ring controller", "token-ring"}, 1327315a1350SMichael S. Tsirkin { 0x0202, "FDDI controller", "fddi"}, 1328315a1350SMichael S. Tsirkin { 0x0203, "ATM controller", "atm"}, 1329315a1350SMichael S. Tsirkin { 0x0280, "Network controller"}, 1330315a1350SMichael S. Tsirkin { 0x0300, "VGA controller", "display", 0x00ff}, 1331315a1350SMichael S. Tsirkin { 0x0301, "XGA controller"}, 1332315a1350SMichael S. Tsirkin { 0x0302, "3D controller"}, 1333315a1350SMichael S. Tsirkin { 0x0380, "Display controller"}, 1334315a1350SMichael S. Tsirkin { 0x0400, "Video controller", "video"}, 1335315a1350SMichael S. Tsirkin { 0x0401, "Audio controller", "sound"}, 1336315a1350SMichael S. Tsirkin { 0x0402, "Phone"}, 1337315a1350SMichael S. Tsirkin { 0x0403, "Audio controller", "sound"}, 1338315a1350SMichael S. Tsirkin { 0x0480, "Multimedia controller"}, 1339315a1350SMichael S. Tsirkin { 0x0500, "RAM controller", "memory"}, 1340315a1350SMichael S. Tsirkin { 0x0501, "Flash controller", "flash"}, 1341315a1350SMichael S. Tsirkin { 0x0580, "Memory controller"}, 1342315a1350SMichael S. Tsirkin { 0x0600, "Host bridge", "host"}, 1343315a1350SMichael S. Tsirkin { 0x0601, "ISA bridge", "isa"}, 1344315a1350SMichael S. Tsirkin { 0x0602, "EISA bridge", "eisa"}, 1345315a1350SMichael S. Tsirkin { 0x0603, "MC bridge", "mca"}, 13464c41425dSGerd Hoffmann { 0x0604, "PCI bridge", "pci-bridge"}, 1347315a1350SMichael S. Tsirkin { 0x0605, "PCMCIA bridge", "pcmcia"}, 1348315a1350SMichael S. Tsirkin { 0x0606, "NUBUS bridge", "nubus"}, 1349315a1350SMichael S. Tsirkin { 0x0607, "CARDBUS bridge", "cardbus"}, 1350315a1350SMichael S. Tsirkin { 0x0608, "RACEWAY bridge"}, 1351315a1350SMichael S. Tsirkin { 0x0680, "Bridge"}, 1352315a1350SMichael S. Tsirkin { 0x0700, "Serial port", "serial"}, 1353315a1350SMichael S. Tsirkin { 0x0701, "Parallel port", "parallel"}, 1354315a1350SMichael S. Tsirkin { 0x0800, "Interrupt controller", "interrupt-controller"}, 1355315a1350SMichael S. Tsirkin { 0x0801, "DMA controller", "dma-controller"}, 1356315a1350SMichael S. Tsirkin { 0x0802, "Timer", "timer"}, 1357315a1350SMichael S. Tsirkin { 0x0803, "RTC", "rtc"}, 1358315a1350SMichael S. Tsirkin { 0x0900, "Keyboard", "keyboard"}, 1359315a1350SMichael S. Tsirkin { 0x0901, "Pen", "pen"}, 1360315a1350SMichael S. Tsirkin { 0x0902, "Mouse", "mouse"}, 1361315a1350SMichael S. Tsirkin { 0x0A00, "Dock station", "dock", 0x00ff}, 1362315a1350SMichael S. Tsirkin { 0x0B00, "i386 cpu", "cpu", 0x00ff}, 1363315a1350SMichael S. Tsirkin { 0x0c00, "Fireware contorller", "fireware"}, 1364315a1350SMichael S. Tsirkin { 0x0c01, "Access bus controller", "access-bus"}, 1365315a1350SMichael S. Tsirkin { 0x0c02, "SSA controller", "ssa"}, 1366315a1350SMichael S. Tsirkin { 0x0c03, "USB controller", "usb"}, 1367315a1350SMichael S. Tsirkin { 0x0c04, "Fibre channel controller", "fibre-channel"}, 1368315a1350SMichael S. Tsirkin { 0x0c05, "SMBus"}, 1369315a1350SMichael S. Tsirkin { 0, NULL} 1370315a1350SMichael S. Tsirkin }; 1371315a1350SMichael S. Tsirkin 1372315a1350SMichael S. Tsirkin static void pci_for_each_device_under_bus(PCIBus *bus, 1373315a1350SMichael S. Tsirkin void (*fn)(PCIBus *b, PCIDevice *d, 1374315a1350SMichael S. Tsirkin void *opaque), 1375315a1350SMichael S. Tsirkin void *opaque) 1376315a1350SMichael S. Tsirkin { 1377315a1350SMichael S. Tsirkin PCIDevice *d; 1378315a1350SMichael S. Tsirkin int devfn; 1379315a1350SMichael S. Tsirkin 1380315a1350SMichael S. Tsirkin for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { 1381315a1350SMichael S. Tsirkin d = bus->devices[devfn]; 1382315a1350SMichael S. Tsirkin if (d) { 1383315a1350SMichael S. Tsirkin fn(bus, d, opaque); 1384315a1350SMichael S. Tsirkin } 1385315a1350SMichael S. Tsirkin } 1386315a1350SMichael S. Tsirkin } 1387315a1350SMichael S. Tsirkin 1388315a1350SMichael S. Tsirkin void pci_for_each_device(PCIBus *bus, int bus_num, 1389315a1350SMichael S. Tsirkin void (*fn)(PCIBus *b, PCIDevice *d, void *opaque), 1390315a1350SMichael S. Tsirkin void *opaque) 1391315a1350SMichael S. Tsirkin { 1392315a1350SMichael S. Tsirkin bus = pci_find_bus_nr(bus, bus_num); 1393315a1350SMichael S. Tsirkin 1394315a1350SMichael S. Tsirkin if (bus) { 1395315a1350SMichael S. Tsirkin pci_for_each_device_under_bus(bus, fn, opaque); 1396315a1350SMichael S. Tsirkin } 1397315a1350SMichael S. Tsirkin } 1398315a1350SMichael S. Tsirkin 1399315a1350SMichael S. Tsirkin static const pci_class_desc *get_class_desc(int class) 1400315a1350SMichael S. Tsirkin { 1401315a1350SMichael S. Tsirkin const pci_class_desc *desc; 1402315a1350SMichael S. Tsirkin 1403315a1350SMichael S. Tsirkin desc = pci_class_descriptions; 1404315a1350SMichael S. Tsirkin while (desc->desc && class != desc->class) { 1405315a1350SMichael S. Tsirkin desc++; 1406315a1350SMichael S. Tsirkin } 1407315a1350SMichael S. Tsirkin 1408315a1350SMichael S. Tsirkin return desc; 1409315a1350SMichael S. Tsirkin } 1410315a1350SMichael S. Tsirkin 1411315a1350SMichael S. Tsirkin static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num); 1412315a1350SMichael S. Tsirkin 1413315a1350SMichael S. Tsirkin static PciMemoryRegionList *qmp_query_pci_regions(const PCIDevice *dev) 1414315a1350SMichael S. Tsirkin { 1415315a1350SMichael S. Tsirkin PciMemoryRegionList *head = NULL, *cur_item = NULL; 1416315a1350SMichael S. Tsirkin int i; 1417315a1350SMichael S. Tsirkin 1418315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_REGIONS; i++) { 1419315a1350SMichael S. Tsirkin const PCIIORegion *r = &dev->io_regions[i]; 1420315a1350SMichael S. Tsirkin PciMemoryRegionList *region; 1421315a1350SMichael S. Tsirkin 1422315a1350SMichael S. Tsirkin if (!r->size) { 1423315a1350SMichael S. Tsirkin continue; 1424315a1350SMichael S. Tsirkin } 1425315a1350SMichael S. Tsirkin 1426315a1350SMichael S. Tsirkin region = g_malloc0(sizeof(*region)); 1427315a1350SMichael S. Tsirkin region->value = g_malloc0(sizeof(*region->value)); 1428315a1350SMichael S. Tsirkin 1429315a1350SMichael S. Tsirkin if (r->type & PCI_BASE_ADDRESS_SPACE_IO) { 1430315a1350SMichael S. Tsirkin region->value->type = g_strdup("io"); 1431315a1350SMichael S. Tsirkin } else { 1432315a1350SMichael S. Tsirkin region->value->type = g_strdup("memory"); 1433315a1350SMichael S. Tsirkin region->value->has_prefetch = true; 1434315a1350SMichael S. Tsirkin region->value->prefetch = !!(r->type & PCI_BASE_ADDRESS_MEM_PREFETCH); 1435315a1350SMichael S. Tsirkin region->value->has_mem_type_64 = true; 1436315a1350SMichael S. Tsirkin region->value->mem_type_64 = !!(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64); 1437315a1350SMichael S. Tsirkin } 1438315a1350SMichael S. Tsirkin 1439315a1350SMichael S. Tsirkin region->value->bar = i; 1440315a1350SMichael S. Tsirkin region->value->address = r->addr; 1441315a1350SMichael S. Tsirkin region->value->size = r->size; 1442315a1350SMichael S. Tsirkin 1443315a1350SMichael S. Tsirkin /* XXX: waiting for the qapi to support GSList */ 1444315a1350SMichael S. Tsirkin if (!cur_item) { 1445315a1350SMichael S. Tsirkin head = cur_item = region; 1446315a1350SMichael S. Tsirkin } else { 1447315a1350SMichael S. Tsirkin cur_item->next = region; 1448315a1350SMichael S. Tsirkin cur_item = region; 1449315a1350SMichael S. Tsirkin } 1450315a1350SMichael S. Tsirkin } 1451315a1350SMichael S. Tsirkin 1452315a1350SMichael S. Tsirkin return head; 1453315a1350SMichael S. Tsirkin } 1454315a1350SMichael S. Tsirkin 1455315a1350SMichael S. Tsirkin static PciBridgeInfo *qmp_query_pci_bridge(PCIDevice *dev, PCIBus *bus, 1456315a1350SMichael S. Tsirkin int bus_num) 1457315a1350SMichael S. Tsirkin { 1458315a1350SMichael S. Tsirkin PciBridgeInfo *info; 1459315a1350SMichael S. Tsirkin 1460315a1350SMichael S. Tsirkin info = g_malloc0(sizeof(*info)); 1461315a1350SMichael S. Tsirkin 1462315a1350SMichael S. Tsirkin info->bus.number = dev->config[PCI_PRIMARY_BUS]; 1463315a1350SMichael S. Tsirkin info->bus.secondary = dev->config[PCI_SECONDARY_BUS]; 1464315a1350SMichael S. Tsirkin info->bus.subordinate = dev->config[PCI_SUBORDINATE_BUS]; 1465315a1350SMichael S. Tsirkin 1466315a1350SMichael S. Tsirkin info->bus.io_range = g_malloc0(sizeof(*info->bus.io_range)); 1467315a1350SMichael S. Tsirkin info->bus.io_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_IO); 1468315a1350SMichael S. Tsirkin info->bus.io_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_IO); 1469315a1350SMichael S. Tsirkin 1470315a1350SMichael S. Tsirkin info->bus.memory_range = g_malloc0(sizeof(*info->bus.memory_range)); 1471315a1350SMichael S. Tsirkin info->bus.memory_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); 1472315a1350SMichael S. Tsirkin info->bus.memory_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_SPACE_MEMORY); 1473315a1350SMichael S. Tsirkin 1474315a1350SMichael S. Tsirkin info->bus.prefetchable_range = g_malloc0(sizeof(*info->bus.prefetchable_range)); 1475315a1350SMichael S. Tsirkin info->bus.prefetchable_range->base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 1476315a1350SMichael S. Tsirkin info->bus.prefetchable_range->limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 1477315a1350SMichael S. Tsirkin 1478315a1350SMichael S. Tsirkin if (dev->config[PCI_SECONDARY_BUS] != 0) { 1479315a1350SMichael S. Tsirkin PCIBus *child_bus = pci_find_bus_nr(bus, dev->config[PCI_SECONDARY_BUS]); 1480315a1350SMichael S. Tsirkin if (child_bus) { 1481315a1350SMichael S. Tsirkin info->has_devices = true; 1482315a1350SMichael S. Tsirkin info->devices = qmp_query_pci_devices(child_bus, dev->config[PCI_SECONDARY_BUS]); 1483315a1350SMichael S. Tsirkin } 1484315a1350SMichael S. Tsirkin } 1485315a1350SMichael S. Tsirkin 1486315a1350SMichael S. Tsirkin return info; 1487315a1350SMichael S. Tsirkin } 1488315a1350SMichael S. Tsirkin 1489315a1350SMichael S. Tsirkin static PciDeviceInfo *qmp_query_pci_device(PCIDevice *dev, PCIBus *bus, 1490315a1350SMichael S. Tsirkin int bus_num) 1491315a1350SMichael S. Tsirkin { 1492315a1350SMichael S. Tsirkin const pci_class_desc *desc; 1493315a1350SMichael S. Tsirkin PciDeviceInfo *info; 1494315a1350SMichael S. Tsirkin uint8_t type; 1495315a1350SMichael S. Tsirkin int class; 1496315a1350SMichael S. Tsirkin 1497315a1350SMichael S. Tsirkin info = g_malloc0(sizeof(*info)); 1498315a1350SMichael S. Tsirkin info->bus = bus_num; 1499315a1350SMichael S. Tsirkin info->slot = PCI_SLOT(dev->devfn); 1500315a1350SMichael S. Tsirkin info->function = PCI_FUNC(dev->devfn); 1501315a1350SMichael S. Tsirkin 1502315a1350SMichael S. Tsirkin class = pci_get_word(dev->config + PCI_CLASS_DEVICE); 15036f88009eSTomoki Sekiyama info->class_info.q_class = class; 1504315a1350SMichael S. Tsirkin desc = get_class_desc(class); 1505315a1350SMichael S. Tsirkin if (desc->desc) { 1506315a1350SMichael S. Tsirkin info->class_info.has_desc = true; 1507315a1350SMichael S. Tsirkin info->class_info.desc = g_strdup(desc->desc); 1508315a1350SMichael S. Tsirkin } 1509315a1350SMichael S. Tsirkin 1510315a1350SMichael S. Tsirkin info->id.vendor = pci_get_word(dev->config + PCI_VENDOR_ID); 1511315a1350SMichael S. Tsirkin info->id.device = pci_get_word(dev->config + PCI_DEVICE_ID); 1512315a1350SMichael S. Tsirkin info->regions = qmp_query_pci_regions(dev); 1513315a1350SMichael S. Tsirkin info->qdev_id = g_strdup(dev->qdev.id ? dev->qdev.id : ""); 1514315a1350SMichael S. Tsirkin 1515315a1350SMichael S. Tsirkin if (dev->config[PCI_INTERRUPT_PIN] != 0) { 1516315a1350SMichael S. Tsirkin info->has_irq = true; 1517315a1350SMichael S. Tsirkin info->irq = dev->config[PCI_INTERRUPT_LINE]; 1518315a1350SMichael S. Tsirkin } 1519315a1350SMichael S. Tsirkin 1520315a1350SMichael S. Tsirkin type = dev->config[PCI_HEADER_TYPE] & ~PCI_HEADER_TYPE_MULTI_FUNCTION; 1521315a1350SMichael S. Tsirkin if (type == PCI_HEADER_TYPE_BRIDGE) { 1522315a1350SMichael S. Tsirkin info->has_pci_bridge = true; 1523315a1350SMichael S. Tsirkin info->pci_bridge = qmp_query_pci_bridge(dev, bus, bus_num); 1524315a1350SMichael S. Tsirkin } 1525315a1350SMichael S. Tsirkin 1526315a1350SMichael S. Tsirkin return info; 1527315a1350SMichael S. Tsirkin } 1528315a1350SMichael S. Tsirkin 1529315a1350SMichael S. Tsirkin static PciDeviceInfoList *qmp_query_pci_devices(PCIBus *bus, int bus_num) 1530315a1350SMichael S. Tsirkin { 1531315a1350SMichael S. Tsirkin PciDeviceInfoList *info, *head = NULL, *cur_item = NULL; 1532315a1350SMichael S. Tsirkin PCIDevice *dev; 1533315a1350SMichael S. Tsirkin int devfn; 1534315a1350SMichael S. Tsirkin 1535315a1350SMichael S. Tsirkin for (devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) { 1536315a1350SMichael S. Tsirkin dev = bus->devices[devfn]; 1537315a1350SMichael S. Tsirkin if (dev) { 1538315a1350SMichael S. Tsirkin info = g_malloc0(sizeof(*info)); 1539315a1350SMichael S. Tsirkin info->value = qmp_query_pci_device(dev, bus, bus_num); 1540315a1350SMichael S. Tsirkin 1541315a1350SMichael S. Tsirkin /* XXX: waiting for the qapi to support GSList */ 1542315a1350SMichael S. Tsirkin if (!cur_item) { 1543315a1350SMichael S. Tsirkin head = cur_item = info; 1544315a1350SMichael S. Tsirkin } else { 1545315a1350SMichael S. Tsirkin cur_item->next = info; 1546315a1350SMichael S. Tsirkin cur_item = info; 1547315a1350SMichael S. Tsirkin } 1548315a1350SMichael S. Tsirkin } 1549315a1350SMichael S. Tsirkin } 1550315a1350SMichael S. Tsirkin 1551315a1350SMichael S. Tsirkin return head; 1552315a1350SMichael S. Tsirkin } 1553315a1350SMichael S. Tsirkin 1554315a1350SMichael S. Tsirkin static PciInfo *qmp_query_pci_bus(PCIBus *bus, int bus_num) 1555315a1350SMichael S. Tsirkin { 1556315a1350SMichael S. Tsirkin PciInfo *info = NULL; 1557315a1350SMichael S. Tsirkin 1558315a1350SMichael S. Tsirkin bus = pci_find_bus_nr(bus, bus_num); 1559315a1350SMichael S. Tsirkin if (bus) { 1560315a1350SMichael S. Tsirkin info = g_malloc0(sizeof(*info)); 1561315a1350SMichael S. Tsirkin info->bus = bus_num; 1562315a1350SMichael S. Tsirkin info->devices = qmp_query_pci_devices(bus, bus_num); 1563315a1350SMichael S. Tsirkin } 1564315a1350SMichael S. Tsirkin 1565315a1350SMichael S. Tsirkin return info; 1566315a1350SMichael S. Tsirkin } 1567315a1350SMichael S. Tsirkin 1568315a1350SMichael S. Tsirkin PciInfoList *qmp_query_pci(Error **errp) 1569315a1350SMichael S. Tsirkin { 1570315a1350SMichael S. Tsirkin PciInfoList *info, *head = NULL, *cur_item = NULL; 15717588e2b0SDavid Gibson PCIHostState *host_bridge; 1572315a1350SMichael S. Tsirkin 15737588e2b0SDavid Gibson QLIST_FOREACH(host_bridge, &pci_host_bridges, next) { 1574315a1350SMichael S. Tsirkin info = g_malloc0(sizeof(*info)); 15757588e2b0SDavid Gibson info->value = qmp_query_pci_bus(host_bridge->bus, 0); 1576315a1350SMichael S. Tsirkin 1577315a1350SMichael S. Tsirkin /* XXX: waiting for the qapi to support GSList */ 1578315a1350SMichael S. Tsirkin if (!cur_item) { 1579315a1350SMichael S. Tsirkin head = cur_item = info; 1580315a1350SMichael S. Tsirkin } else { 1581315a1350SMichael S. Tsirkin cur_item->next = info; 1582315a1350SMichael S. Tsirkin cur_item = info; 1583315a1350SMichael S. Tsirkin } 1584315a1350SMichael S. Tsirkin } 1585315a1350SMichael S. Tsirkin 1586315a1350SMichael S. Tsirkin return head; 1587315a1350SMichael S. Tsirkin } 1588315a1350SMichael S. Tsirkin 1589315a1350SMichael S. Tsirkin static const char * const pci_nic_models[] = { 1590315a1350SMichael S. Tsirkin "ne2k_pci", 1591315a1350SMichael S. Tsirkin "i82551", 1592315a1350SMichael S. Tsirkin "i82557b", 1593315a1350SMichael S. Tsirkin "i82559er", 1594315a1350SMichael S. Tsirkin "rtl8139", 1595315a1350SMichael S. Tsirkin "e1000", 1596315a1350SMichael S. Tsirkin "pcnet", 1597315a1350SMichael S. Tsirkin "virtio", 1598315a1350SMichael S. Tsirkin NULL 1599315a1350SMichael S. Tsirkin }; 1600315a1350SMichael S. Tsirkin 1601315a1350SMichael S. Tsirkin static const char * const pci_nic_names[] = { 1602315a1350SMichael S. Tsirkin "ne2k_pci", 1603315a1350SMichael S. Tsirkin "i82551", 1604315a1350SMichael S. Tsirkin "i82557b", 1605315a1350SMichael S. Tsirkin "i82559er", 1606315a1350SMichael S. Tsirkin "rtl8139", 1607315a1350SMichael S. Tsirkin "e1000", 1608315a1350SMichael S. Tsirkin "pcnet", 1609315a1350SMichael S. Tsirkin "virtio-net-pci", 1610315a1350SMichael S. Tsirkin NULL 1611315a1350SMichael S. Tsirkin }; 1612315a1350SMichael S. Tsirkin 1613315a1350SMichael S. Tsirkin /* Initialize a PCI NIC. */ 16146dbcb819SMarkus Armbruster static PCIDevice *pci_nic_init(NICInfo *nd, PCIBus *rootbus, 161529b358f9SDavid Gibson const char *default_model, 1616*558ecef2SMarkus Armbruster const char *default_devaddr, 1617*558ecef2SMarkus Armbruster Error **errp) 1618315a1350SMichael S. Tsirkin { 1619315a1350SMichael S. Tsirkin const char *devaddr = nd->devaddr ? nd->devaddr : default_devaddr; 1620*558ecef2SMarkus Armbruster Error *err = NULL; 1621315a1350SMichael S. Tsirkin PCIBus *bus; 1622315a1350SMichael S. Tsirkin int devfn; 1623315a1350SMichael S. Tsirkin PCIDevice *pci_dev; 1624315a1350SMichael S. Tsirkin DeviceState *dev; 1625315a1350SMichael S. Tsirkin int i; 1626315a1350SMichael S. Tsirkin 1627315a1350SMichael S. Tsirkin i = qemu_find_nic_model(nd, pci_nic_models, default_model); 1628315a1350SMichael S. Tsirkin if (i < 0) 1629315a1350SMichael S. Tsirkin return NULL; 1630315a1350SMichael S. Tsirkin 163129b358f9SDavid Gibson bus = pci_get_bus_devfn(&devfn, rootbus, devaddr); 1632315a1350SMichael S. Tsirkin if (!bus) { 1633315a1350SMichael S. Tsirkin error_report("Invalid PCI device address %s for device %s", 1634315a1350SMichael S. Tsirkin devaddr, pci_nic_names[i]); 1635315a1350SMichael S. Tsirkin return NULL; 1636315a1350SMichael S. Tsirkin } 1637315a1350SMichael S. Tsirkin 1638315a1350SMichael S. Tsirkin pci_dev = pci_create(bus, devfn, pci_nic_names[i]); 1639315a1350SMichael S. Tsirkin dev = &pci_dev->qdev; 1640315a1350SMichael S. Tsirkin qdev_set_nic_properties(dev, nd); 1641*558ecef2SMarkus Armbruster 1642*558ecef2SMarkus Armbruster object_property_set_bool(OBJECT(dev), true, "realized", &err); 1643*558ecef2SMarkus Armbruster if (err) { 1644*558ecef2SMarkus Armbruster error_propagate(errp, err); 1645*558ecef2SMarkus Armbruster object_unparent(OBJECT(dev)); 1646315a1350SMichael S. Tsirkin return NULL; 1647*558ecef2SMarkus Armbruster } 1648315a1350SMichael S. Tsirkin return pci_dev; 1649315a1350SMichael S. Tsirkin } 1650315a1350SMichael S. Tsirkin 165129b358f9SDavid Gibson PCIDevice *pci_nic_init_nofail(NICInfo *nd, PCIBus *rootbus, 165229b358f9SDavid Gibson const char *default_model, 1653315a1350SMichael S. Tsirkin const char *default_devaddr) 1654315a1350SMichael S. Tsirkin { 1655*558ecef2SMarkus Armbruster Error *err = NULL; 1656315a1350SMichael S. Tsirkin PCIDevice *res; 1657315a1350SMichael S. Tsirkin 1658315a1350SMichael S. Tsirkin if (qemu_show_nic_models(nd->model, pci_nic_models)) 1659315a1350SMichael S. Tsirkin exit(0); 1660315a1350SMichael S. Tsirkin 1661*558ecef2SMarkus Armbruster res = pci_nic_init(nd, rootbus, default_model, default_devaddr, &err); 1662*558ecef2SMarkus Armbruster if (!res) { 1663*558ecef2SMarkus Armbruster error_report_err(err); 1664315a1350SMichael S. Tsirkin exit(1); 1665*558ecef2SMarkus Armbruster } 1666315a1350SMichael S. Tsirkin return res; 1667315a1350SMichael S. Tsirkin } 1668315a1350SMichael S. Tsirkin 1669315a1350SMichael S. Tsirkin PCIDevice *pci_vga_init(PCIBus *bus) 1670315a1350SMichael S. Tsirkin { 1671315a1350SMichael S. Tsirkin switch (vga_interface_type) { 1672315a1350SMichael S. Tsirkin case VGA_CIRRUS: 1673315a1350SMichael S. Tsirkin return pci_create_simple(bus, -1, "cirrus-vga"); 1674315a1350SMichael S. Tsirkin case VGA_QXL: 1675315a1350SMichael S. Tsirkin return pci_create_simple(bus, -1, "qxl-vga"); 1676315a1350SMichael S. Tsirkin case VGA_STD: 1677315a1350SMichael S. Tsirkin return pci_create_simple(bus, -1, "VGA"); 1678315a1350SMichael S. Tsirkin case VGA_VMWARE: 1679315a1350SMichael S. Tsirkin return pci_create_simple(bus, -1, "vmware-svga"); 1680315a1350SMichael S. Tsirkin case VGA_NONE: 1681315a1350SMichael S. Tsirkin default: /* Other non-PCI types. Checking for unsupported types is already 1682315a1350SMichael S. Tsirkin done in vl.c. */ 1683315a1350SMichael S. Tsirkin return NULL; 1684315a1350SMichael S. Tsirkin } 1685315a1350SMichael S. Tsirkin } 1686315a1350SMichael S. Tsirkin 1687315a1350SMichael S. Tsirkin /* Whether a given bus number is in range of the secondary 1688315a1350SMichael S. Tsirkin * bus of the given bridge device. */ 1689315a1350SMichael S. Tsirkin static bool pci_secondary_bus_in_range(PCIDevice *dev, int bus_num) 1690315a1350SMichael S. Tsirkin { 1691315a1350SMichael S. Tsirkin return !(pci_get_word(dev->config + PCI_BRIDGE_CONTROL) & 1692315a1350SMichael S. Tsirkin PCI_BRIDGE_CTL_BUS_RESET) /* Don't walk the bus if it's reset. */ && 1693315a1350SMichael S. Tsirkin dev->config[PCI_SECONDARY_BUS] < bus_num && 1694315a1350SMichael S. Tsirkin bus_num <= dev->config[PCI_SUBORDINATE_BUS]; 1695315a1350SMichael S. Tsirkin } 1696315a1350SMichael S. Tsirkin 1697315a1350SMichael S. Tsirkin static PCIBus *pci_find_bus_nr(PCIBus *bus, int bus_num) 1698315a1350SMichael S. Tsirkin { 1699315a1350SMichael S. Tsirkin PCIBus *sec; 1700315a1350SMichael S. Tsirkin 1701315a1350SMichael S. Tsirkin if (!bus) { 1702315a1350SMichael S. Tsirkin return NULL; 1703315a1350SMichael S. Tsirkin } 1704315a1350SMichael S. Tsirkin 1705315a1350SMichael S. Tsirkin if (pci_bus_num(bus) == bus_num) { 1706315a1350SMichael S. Tsirkin return bus; 1707315a1350SMichael S. Tsirkin } 1708315a1350SMichael S. Tsirkin 1709315a1350SMichael S. Tsirkin /* Consider all bus numbers in range for the host pci bridge. */ 17100889464aSAlex Williamson if (!pci_bus_is_root(bus) && 1711315a1350SMichael S. Tsirkin !pci_secondary_bus_in_range(bus->parent_dev, bus_num)) { 1712315a1350SMichael S. Tsirkin return NULL; 1713315a1350SMichael S. Tsirkin } 1714315a1350SMichael S. Tsirkin 1715315a1350SMichael S. Tsirkin /* try child bus */ 1716315a1350SMichael S. Tsirkin for (; bus; bus = sec) { 1717315a1350SMichael S. Tsirkin QLIST_FOREACH(sec, &bus->child, sibling) { 17180889464aSAlex Williamson assert(!pci_bus_is_root(sec)); 1719315a1350SMichael S. Tsirkin if (sec->parent_dev->config[PCI_SECONDARY_BUS] == bus_num) { 1720315a1350SMichael S. Tsirkin return sec; 1721315a1350SMichael S. Tsirkin } 1722315a1350SMichael S. Tsirkin if (pci_secondary_bus_in_range(sec->parent_dev, bus_num)) { 1723315a1350SMichael S. Tsirkin break; 1724315a1350SMichael S. Tsirkin } 1725315a1350SMichael S. Tsirkin } 1726315a1350SMichael S. Tsirkin } 1727315a1350SMichael S. Tsirkin 1728315a1350SMichael S. Tsirkin return NULL; 1729315a1350SMichael S. Tsirkin } 1730315a1350SMichael S. Tsirkin 1731eb0acfddSMichael S. Tsirkin void pci_for_each_bus_depth_first(PCIBus *bus, 1732eb0acfddSMichael S. Tsirkin void *(*begin)(PCIBus *bus, void *parent_state), 1733eb0acfddSMichael S. Tsirkin void (*end)(PCIBus *bus, void *state), 1734eb0acfddSMichael S. Tsirkin void *parent_state) 1735eb0acfddSMichael S. Tsirkin { 1736eb0acfddSMichael S. Tsirkin PCIBus *sec; 1737eb0acfddSMichael S. Tsirkin void *state; 1738eb0acfddSMichael S. Tsirkin 1739eb0acfddSMichael S. Tsirkin if (!bus) { 1740eb0acfddSMichael S. Tsirkin return; 1741eb0acfddSMichael S. Tsirkin } 1742eb0acfddSMichael S. Tsirkin 1743eb0acfddSMichael S. Tsirkin if (begin) { 1744eb0acfddSMichael S. Tsirkin state = begin(bus, parent_state); 1745eb0acfddSMichael S. Tsirkin } else { 1746eb0acfddSMichael S. Tsirkin state = parent_state; 1747eb0acfddSMichael S. Tsirkin } 1748eb0acfddSMichael S. Tsirkin 1749eb0acfddSMichael S. Tsirkin QLIST_FOREACH(sec, &bus->child, sibling) { 1750eb0acfddSMichael S. Tsirkin pci_for_each_bus_depth_first(sec, begin, end, state); 1751eb0acfddSMichael S. Tsirkin } 1752eb0acfddSMichael S. Tsirkin 1753eb0acfddSMichael S. Tsirkin if (end) { 1754eb0acfddSMichael S. Tsirkin end(bus, state); 1755eb0acfddSMichael S. Tsirkin } 1756eb0acfddSMichael S. Tsirkin } 1757eb0acfddSMichael S. Tsirkin 1758eb0acfddSMichael S. Tsirkin 1759315a1350SMichael S. Tsirkin PCIDevice *pci_find_device(PCIBus *bus, int bus_num, uint8_t devfn) 1760315a1350SMichael S. Tsirkin { 1761315a1350SMichael S. Tsirkin bus = pci_find_bus_nr(bus, bus_num); 1762315a1350SMichael S. Tsirkin 1763315a1350SMichael S. Tsirkin if (!bus) 1764315a1350SMichael S. Tsirkin return NULL; 1765315a1350SMichael S. Tsirkin 1766315a1350SMichael S. Tsirkin return bus->devices[devfn]; 1767315a1350SMichael S. Tsirkin } 1768315a1350SMichael S. Tsirkin 1769133e9b22SMarkus Armbruster static void pci_qdev_realize(DeviceState *qdev, Error **errp) 1770315a1350SMichael S. Tsirkin { 1771315a1350SMichael S. Tsirkin PCIDevice *pci_dev = (PCIDevice *)qdev; 1772315a1350SMichael S. Tsirkin PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(pci_dev); 1773133e9b22SMarkus Armbruster Error *local_err = NULL; 1774315a1350SMichael S. Tsirkin PCIBus *bus; 1775315a1350SMichael S. Tsirkin bool is_default_rom; 1776315a1350SMichael S. Tsirkin 1777315a1350SMichael S. Tsirkin /* initialize cap_present for pci_is_express() and pci_config_size() */ 1778315a1350SMichael S. Tsirkin if (pc->is_express) { 1779315a1350SMichael S. Tsirkin pci_dev->cap_present |= QEMU_PCI_CAP_EXPRESS; 1780315a1350SMichael S. Tsirkin } 1781315a1350SMichael S. Tsirkin 1782fef7fbc9SAndreas Färber bus = PCI_BUS(qdev_get_parent_bus(qdev)); 1783315a1350SMichael S. Tsirkin pci_dev = do_pci_register_device(pci_dev, bus, 1784315a1350SMichael S. Tsirkin object_get_typename(OBJECT(qdev)), 1785133e9b22SMarkus Armbruster pci_dev->devfn, errp); 1786315a1350SMichael S. Tsirkin if (pci_dev == NULL) 1787133e9b22SMarkus Armbruster return; 17882897ae02SIgor Mammedov 17897ee6c1e1SMarkus Armbruster if (pc->realize) { 17907ee6c1e1SMarkus Armbruster pc->realize(pci_dev, &local_err); 17917ee6c1e1SMarkus Armbruster if (local_err) { 17927ee6c1e1SMarkus Armbruster error_propagate(errp, local_err); 1793315a1350SMichael S. Tsirkin do_pci_unregister_device(pci_dev); 1794133e9b22SMarkus Armbruster return; 1795315a1350SMichael S. Tsirkin } 1796315a1350SMichael S. Tsirkin } 1797315a1350SMichael S. Tsirkin 1798315a1350SMichael S. Tsirkin /* rom loading */ 1799315a1350SMichael S. Tsirkin is_default_rom = false; 1800315a1350SMichael S. Tsirkin if (pci_dev->romfile == NULL && pc->romfile != NULL) { 1801315a1350SMichael S. Tsirkin pci_dev->romfile = g_strdup(pc->romfile); 1802315a1350SMichael S. Tsirkin is_default_rom = true; 1803315a1350SMichael S. Tsirkin } 1804178e785fSMarcel Apfelbaum 1805133e9b22SMarkus Armbruster pci_add_option_rom(pci_dev, is_default_rom, &local_err); 1806133e9b22SMarkus Armbruster if (local_err) { 1807133e9b22SMarkus Armbruster error_propagate(errp, local_err); 1808133e9b22SMarkus Armbruster pci_qdev_unrealize(DEVICE(pci_dev), NULL); 1809133e9b22SMarkus Armbruster return; 1810178e785fSMarcel Apfelbaum } 1811315a1350SMichael S. Tsirkin } 1812315a1350SMichael S. Tsirkin 18137ee6c1e1SMarkus Armbruster static void pci_default_realize(PCIDevice *dev, Error **errp) 18147ee6c1e1SMarkus Armbruster { 18157ee6c1e1SMarkus Armbruster PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); 18167ee6c1e1SMarkus Armbruster 18177ee6c1e1SMarkus Armbruster if (pc->init) { 18187ee6c1e1SMarkus Armbruster if (pc->init(dev) < 0) { 18197ee6c1e1SMarkus Armbruster error_setg(errp, "Device initialization failed"); 18207ee6c1e1SMarkus Armbruster return; 18217ee6c1e1SMarkus Armbruster } 18227ee6c1e1SMarkus Armbruster } 18237ee6c1e1SMarkus Armbruster } 18247ee6c1e1SMarkus Armbruster 1825315a1350SMichael S. Tsirkin PCIDevice *pci_create_multifunction(PCIBus *bus, int devfn, bool multifunction, 1826315a1350SMichael S. Tsirkin const char *name) 1827315a1350SMichael S. Tsirkin { 1828315a1350SMichael S. Tsirkin DeviceState *dev; 1829315a1350SMichael S. Tsirkin 1830315a1350SMichael S. Tsirkin dev = qdev_create(&bus->qbus, name); 1831315a1350SMichael S. Tsirkin qdev_prop_set_int32(dev, "addr", devfn); 1832315a1350SMichael S. Tsirkin qdev_prop_set_bit(dev, "multifunction", multifunction); 1833315a1350SMichael S. Tsirkin return PCI_DEVICE(dev); 1834315a1350SMichael S. Tsirkin } 1835315a1350SMichael S. Tsirkin 1836315a1350SMichael S. Tsirkin PCIDevice *pci_create_simple_multifunction(PCIBus *bus, int devfn, 1837315a1350SMichael S. Tsirkin bool multifunction, 1838315a1350SMichael S. Tsirkin const char *name) 1839315a1350SMichael S. Tsirkin { 1840315a1350SMichael S. Tsirkin PCIDevice *dev = pci_create_multifunction(bus, devfn, multifunction, name); 1841315a1350SMichael S. Tsirkin qdev_init_nofail(&dev->qdev); 1842315a1350SMichael S. Tsirkin return dev; 1843315a1350SMichael S. Tsirkin } 1844315a1350SMichael S. Tsirkin 1845315a1350SMichael S. Tsirkin PCIDevice *pci_create(PCIBus *bus, int devfn, const char *name) 1846315a1350SMichael S. Tsirkin { 1847315a1350SMichael S. Tsirkin return pci_create_multifunction(bus, devfn, false, name); 1848315a1350SMichael S. Tsirkin } 1849315a1350SMichael S. Tsirkin 1850315a1350SMichael S. Tsirkin PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name) 1851315a1350SMichael S. Tsirkin { 1852315a1350SMichael S. Tsirkin return pci_create_simple_multifunction(bus, devfn, false, name); 1853315a1350SMichael S. Tsirkin } 1854315a1350SMichael S. Tsirkin 1855315a1350SMichael S. Tsirkin static uint8_t pci_find_space(PCIDevice *pdev, uint8_t size) 1856315a1350SMichael S. Tsirkin { 1857315a1350SMichael S. Tsirkin int offset = PCI_CONFIG_HEADER_SIZE; 1858315a1350SMichael S. Tsirkin int i; 1859315a1350SMichael S. Tsirkin for (i = PCI_CONFIG_HEADER_SIZE; i < PCI_CONFIG_SPACE_SIZE; ++i) { 1860315a1350SMichael S. Tsirkin if (pdev->used[i]) 1861315a1350SMichael S. Tsirkin offset = i + 1; 1862315a1350SMichael S. Tsirkin else if (i - offset + 1 == size) 1863315a1350SMichael S. Tsirkin return offset; 1864315a1350SMichael S. Tsirkin } 1865315a1350SMichael S. Tsirkin return 0; 1866315a1350SMichael S. Tsirkin } 1867315a1350SMichael S. Tsirkin 1868315a1350SMichael S. Tsirkin static uint8_t pci_find_capability_list(PCIDevice *pdev, uint8_t cap_id, 1869315a1350SMichael S. Tsirkin uint8_t *prev_p) 1870315a1350SMichael S. Tsirkin { 1871315a1350SMichael S. Tsirkin uint8_t next, prev; 1872315a1350SMichael S. Tsirkin 1873315a1350SMichael S. Tsirkin if (!(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST)) 1874315a1350SMichael S. Tsirkin return 0; 1875315a1350SMichael S. Tsirkin 1876315a1350SMichael S. Tsirkin for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); 1877315a1350SMichael S. Tsirkin prev = next + PCI_CAP_LIST_NEXT) 1878315a1350SMichael S. Tsirkin if (pdev->config[next + PCI_CAP_LIST_ID] == cap_id) 1879315a1350SMichael S. Tsirkin break; 1880315a1350SMichael S. Tsirkin 1881315a1350SMichael S. Tsirkin if (prev_p) 1882315a1350SMichael S. Tsirkin *prev_p = prev; 1883315a1350SMichael S. Tsirkin return next; 1884315a1350SMichael S. Tsirkin } 1885315a1350SMichael S. Tsirkin 1886315a1350SMichael S. Tsirkin static uint8_t pci_find_capability_at_offset(PCIDevice *pdev, uint8_t offset) 1887315a1350SMichael S. Tsirkin { 1888315a1350SMichael S. Tsirkin uint8_t next, prev, found = 0; 1889315a1350SMichael S. Tsirkin 1890315a1350SMichael S. Tsirkin if (!(pdev->used[offset])) { 1891315a1350SMichael S. Tsirkin return 0; 1892315a1350SMichael S. Tsirkin } 1893315a1350SMichael S. Tsirkin 1894315a1350SMichael S. Tsirkin assert(pdev->config[PCI_STATUS] & PCI_STATUS_CAP_LIST); 1895315a1350SMichael S. Tsirkin 1896315a1350SMichael S. Tsirkin for (prev = PCI_CAPABILITY_LIST; (next = pdev->config[prev]); 1897315a1350SMichael S. Tsirkin prev = next + PCI_CAP_LIST_NEXT) { 1898315a1350SMichael S. Tsirkin if (next <= offset && next > found) { 1899315a1350SMichael S. Tsirkin found = next; 1900315a1350SMichael S. Tsirkin } 1901315a1350SMichael S. Tsirkin } 1902315a1350SMichael S. Tsirkin return found; 1903315a1350SMichael S. Tsirkin } 1904315a1350SMichael S. Tsirkin 1905315a1350SMichael S. Tsirkin /* Patch the PCI vendor and device ids in a PCI rom image if necessary. 1906315a1350SMichael S. Tsirkin This is needed for an option rom which is used for more than one device. */ 1907315a1350SMichael S. Tsirkin static void pci_patch_ids(PCIDevice *pdev, uint8_t *ptr, int size) 1908315a1350SMichael S. Tsirkin { 1909315a1350SMichael S. Tsirkin uint16_t vendor_id; 1910315a1350SMichael S. Tsirkin uint16_t device_id; 1911315a1350SMichael S. Tsirkin uint16_t rom_vendor_id; 1912315a1350SMichael S. Tsirkin uint16_t rom_device_id; 1913315a1350SMichael S. Tsirkin uint16_t rom_magic; 1914315a1350SMichael S. Tsirkin uint16_t pcir_offset; 1915315a1350SMichael S. Tsirkin uint8_t checksum; 1916315a1350SMichael S. Tsirkin 1917315a1350SMichael S. Tsirkin /* Words in rom data are little endian (like in PCI configuration), 1918315a1350SMichael S. Tsirkin so they can be read / written with pci_get_word / pci_set_word. */ 1919315a1350SMichael S. Tsirkin 1920315a1350SMichael S. Tsirkin /* Only a valid rom will be patched. */ 1921315a1350SMichael S. Tsirkin rom_magic = pci_get_word(ptr); 1922315a1350SMichael S. Tsirkin if (rom_magic != 0xaa55) { 1923315a1350SMichael S. Tsirkin PCI_DPRINTF("Bad ROM magic %04x\n", rom_magic); 1924315a1350SMichael S. Tsirkin return; 1925315a1350SMichael S. Tsirkin } 1926315a1350SMichael S. Tsirkin pcir_offset = pci_get_word(ptr + 0x18); 1927315a1350SMichael S. Tsirkin if (pcir_offset + 8 >= size || memcmp(ptr + pcir_offset, "PCIR", 4)) { 1928315a1350SMichael S. Tsirkin PCI_DPRINTF("Bad PCIR offset 0x%x or signature\n", pcir_offset); 1929315a1350SMichael S. Tsirkin return; 1930315a1350SMichael S. Tsirkin } 1931315a1350SMichael S. Tsirkin 1932315a1350SMichael S. Tsirkin vendor_id = pci_get_word(pdev->config + PCI_VENDOR_ID); 1933315a1350SMichael S. Tsirkin device_id = pci_get_word(pdev->config + PCI_DEVICE_ID); 1934315a1350SMichael S. Tsirkin rom_vendor_id = pci_get_word(ptr + pcir_offset + 4); 1935315a1350SMichael S. Tsirkin rom_device_id = pci_get_word(ptr + pcir_offset + 6); 1936315a1350SMichael S. Tsirkin 1937315a1350SMichael S. Tsirkin PCI_DPRINTF("%s: ROM id %04x%04x / PCI id %04x%04x\n", pdev->romfile, 1938315a1350SMichael S. Tsirkin vendor_id, device_id, rom_vendor_id, rom_device_id); 1939315a1350SMichael S. Tsirkin 1940315a1350SMichael S. Tsirkin checksum = ptr[6]; 1941315a1350SMichael S. Tsirkin 1942315a1350SMichael S. Tsirkin if (vendor_id != rom_vendor_id) { 1943315a1350SMichael S. Tsirkin /* Patch vendor id and checksum (at offset 6 for etherboot roms). */ 1944315a1350SMichael S. Tsirkin checksum += (uint8_t)rom_vendor_id + (uint8_t)(rom_vendor_id >> 8); 1945315a1350SMichael S. Tsirkin checksum -= (uint8_t)vendor_id + (uint8_t)(vendor_id >> 8); 1946315a1350SMichael S. Tsirkin PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); 1947315a1350SMichael S. Tsirkin ptr[6] = checksum; 1948315a1350SMichael S. Tsirkin pci_set_word(ptr + pcir_offset + 4, vendor_id); 1949315a1350SMichael S. Tsirkin } 1950315a1350SMichael S. Tsirkin 1951315a1350SMichael S. Tsirkin if (device_id != rom_device_id) { 1952315a1350SMichael S. Tsirkin /* Patch device id and checksum (at offset 6 for etherboot roms). */ 1953315a1350SMichael S. Tsirkin checksum += (uint8_t)rom_device_id + (uint8_t)(rom_device_id >> 8); 1954315a1350SMichael S. Tsirkin checksum -= (uint8_t)device_id + (uint8_t)(device_id >> 8); 1955315a1350SMichael S. Tsirkin PCI_DPRINTF("ROM checksum %02x / %02x\n", ptr[6], checksum); 1956315a1350SMichael S. Tsirkin ptr[6] = checksum; 1957315a1350SMichael S. Tsirkin pci_set_word(ptr + pcir_offset + 6, device_id); 1958315a1350SMichael S. Tsirkin } 1959315a1350SMichael S. Tsirkin } 1960315a1350SMichael S. Tsirkin 1961315a1350SMichael S. Tsirkin /* Add an option rom for the device */ 1962133e9b22SMarkus Armbruster static void pci_add_option_rom(PCIDevice *pdev, bool is_default_rom, 1963133e9b22SMarkus Armbruster Error **errp) 1964315a1350SMichael S. Tsirkin { 1965315a1350SMichael S. Tsirkin int size; 1966315a1350SMichael S. Tsirkin char *path; 1967315a1350SMichael S. Tsirkin void *ptr; 1968315a1350SMichael S. Tsirkin char name[32]; 1969315a1350SMichael S. Tsirkin const VMStateDescription *vmsd; 1970315a1350SMichael S. Tsirkin 1971315a1350SMichael S. Tsirkin if (!pdev->romfile) 1972133e9b22SMarkus Armbruster return; 1973315a1350SMichael S. Tsirkin if (strlen(pdev->romfile) == 0) 1974133e9b22SMarkus Armbruster return; 1975315a1350SMichael S. Tsirkin 1976315a1350SMichael S. Tsirkin if (!pdev->rom_bar) { 1977315a1350SMichael S. Tsirkin /* 1978315a1350SMichael S. Tsirkin * Load rom via fw_cfg instead of creating a rom bar, 1979315a1350SMichael S. Tsirkin * for 0.11 compatibility. 1980315a1350SMichael S. Tsirkin */ 1981315a1350SMichael S. Tsirkin int class = pci_get_word(pdev->config + PCI_CLASS_DEVICE); 1982db80c7b9SMarcel Apfelbaum 1983db80c7b9SMarcel Apfelbaum /* 1984db80c7b9SMarcel Apfelbaum * Hot-plugged devices can't use the option ROM 1985db80c7b9SMarcel Apfelbaum * if the rom bar is disabled. 1986db80c7b9SMarcel Apfelbaum */ 1987db80c7b9SMarcel Apfelbaum if (DEVICE(pdev)->hotplugged) { 1988133e9b22SMarkus Armbruster error_setg(errp, "Hot-plugged device without ROM bar" 1989133e9b22SMarkus Armbruster " can't have an option ROM"); 1990133e9b22SMarkus Armbruster return; 1991db80c7b9SMarcel Apfelbaum } 1992db80c7b9SMarcel Apfelbaum 1993315a1350SMichael S. Tsirkin if (class == 0x0300) { 1994315a1350SMichael S. Tsirkin rom_add_vga(pdev->romfile); 1995315a1350SMichael S. Tsirkin } else { 1996315a1350SMichael S. Tsirkin rom_add_option(pdev->romfile, -1); 1997315a1350SMichael S. Tsirkin } 1998133e9b22SMarkus Armbruster return; 1999315a1350SMichael S. Tsirkin } 2000315a1350SMichael S. Tsirkin 2001315a1350SMichael S. Tsirkin path = qemu_find_file(QEMU_FILE_TYPE_BIOS, pdev->romfile); 2002315a1350SMichael S. Tsirkin if (path == NULL) { 2003315a1350SMichael S. Tsirkin path = g_strdup(pdev->romfile); 2004315a1350SMichael S. Tsirkin } 2005315a1350SMichael S. Tsirkin 2006315a1350SMichael S. Tsirkin size = get_image_size(path); 2007315a1350SMichael S. Tsirkin if (size < 0) { 2008133e9b22SMarkus Armbruster error_setg(errp, "failed to find romfile \"%s\"", pdev->romfile); 20098c7f3dd0SStefan Hajnoczi g_free(path); 2010133e9b22SMarkus Armbruster return; 20118c7f3dd0SStefan Hajnoczi } else if (size == 0) { 2012133e9b22SMarkus Armbruster error_setg(errp, "romfile \"%s\" is empty", pdev->romfile); 2013315a1350SMichael S. Tsirkin g_free(path); 2014133e9b22SMarkus Armbruster return; 2015315a1350SMichael S. Tsirkin } 2016315a1350SMichael S. Tsirkin if (size & (size - 1)) { 2017315a1350SMichael S. Tsirkin size = 1 << qemu_fls(size); 2018315a1350SMichael S. Tsirkin } 2019315a1350SMichael S. Tsirkin 2020315a1350SMichael S. Tsirkin vmsd = qdev_get_vmsd(DEVICE(pdev)); 2021315a1350SMichael S. Tsirkin 2022315a1350SMichael S. Tsirkin if (vmsd) { 2023315a1350SMichael S. Tsirkin snprintf(name, sizeof(name), "%s.rom", vmsd->name); 2024315a1350SMichael S. Tsirkin } else { 2025315a1350SMichael S. Tsirkin snprintf(name, sizeof(name), "%s.rom", object_get_typename(OBJECT(pdev))); 2026315a1350SMichael S. Tsirkin } 2027315a1350SMichael S. Tsirkin pdev->has_rom = true; 202849946538SHu Tao memory_region_init_ram(&pdev->rom, OBJECT(pdev), name, size, &error_abort); 2029315a1350SMichael S. Tsirkin vmstate_register_ram(&pdev->rom, &pdev->qdev); 2030315a1350SMichael S. Tsirkin ptr = memory_region_get_ram_ptr(&pdev->rom); 2031315a1350SMichael S. Tsirkin load_image(path, ptr); 2032315a1350SMichael S. Tsirkin g_free(path); 2033315a1350SMichael S. Tsirkin 2034315a1350SMichael S. Tsirkin if (is_default_rom) { 2035315a1350SMichael S. Tsirkin /* Only the default rom images will be patched (if needed). */ 2036315a1350SMichael S. Tsirkin pci_patch_ids(pdev, ptr, size); 2037315a1350SMichael S. Tsirkin } 2038315a1350SMichael S. Tsirkin 2039315a1350SMichael S. Tsirkin pci_register_bar(pdev, PCI_ROM_SLOT, 0, &pdev->rom); 2040315a1350SMichael S. Tsirkin } 2041315a1350SMichael S. Tsirkin 2042315a1350SMichael S. Tsirkin static void pci_del_option_rom(PCIDevice *pdev) 2043315a1350SMichael S. Tsirkin { 2044315a1350SMichael S. Tsirkin if (!pdev->has_rom) 2045315a1350SMichael S. Tsirkin return; 2046315a1350SMichael S. Tsirkin 2047315a1350SMichael S. Tsirkin vmstate_unregister_ram(&pdev->rom, &pdev->qdev); 2048315a1350SMichael S. Tsirkin pdev->has_rom = false; 2049315a1350SMichael S. Tsirkin } 2050315a1350SMichael S. Tsirkin 2051315a1350SMichael S. Tsirkin /* 2052315a1350SMichael S. Tsirkin * if !offset 2053315a1350SMichael S. Tsirkin * Reserve space and add capability to the linked list in pci config space 2054315a1350SMichael S. Tsirkin * 2055315a1350SMichael S. Tsirkin * if offset = 0, 2056315a1350SMichael S. Tsirkin * Find and reserve space and add capability to the linked list 2057315a1350SMichael S. Tsirkin * in pci config space */ 2058315a1350SMichael S. Tsirkin int pci_add_capability(PCIDevice *pdev, uint8_t cap_id, 2059315a1350SMichael S. Tsirkin uint8_t offset, uint8_t size) 2060315a1350SMichael S. Tsirkin { 2061cd9aa33eSLaszlo Ersek int ret; 2062cd9aa33eSLaszlo Ersek Error *local_err = NULL; 2063cd9aa33eSLaszlo Ersek 2064cd9aa33eSLaszlo Ersek ret = pci_add_capability2(pdev, cap_id, offset, size, &local_err); 2065cd9aa33eSLaszlo Ersek if (local_err) { 2066cd9aa33eSLaszlo Ersek assert(ret < 0); 2067565f65d2SMarkus Armbruster error_report_err(local_err); 2068cd9aa33eSLaszlo Ersek } else { 2069cd9aa33eSLaszlo Ersek /* success implies a positive offset in config space */ 2070cd9aa33eSLaszlo Ersek assert(ret > 0); 2071cd9aa33eSLaszlo Ersek } 2072cd9aa33eSLaszlo Ersek return ret; 2073cd9aa33eSLaszlo Ersek } 2074cd9aa33eSLaszlo Ersek 2075cd9aa33eSLaszlo Ersek int pci_add_capability2(PCIDevice *pdev, uint8_t cap_id, 2076cd9aa33eSLaszlo Ersek uint8_t offset, uint8_t size, 2077cd9aa33eSLaszlo Ersek Error **errp) 2078cd9aa33eSLaszlo Ersek { 2079315a1350SMichael S. Tsirkin uint8_t *config; 2080315a1350SMichael S. Tsirkin int i, overlapping_cap; 2081315a1350SMichael S. Tsirkin 2082315a1350SMichael S. Tsirkin if (!offset) { 2083315a1350SMichael S. Tsirkin offset = pci_find_space(pdev, size); 2084315a1350SMichael S. Tsirkin if (!offset) { 2085cd9aa33eSLaszlo Ersek error_setg(errp, "out of PCI config space"); 2086315a1350SMichael S. Tsirkin return -ENOSPC; 2087315a1350SMichael S. Tsirkin } 2088315a1350SMichael S. Tsirkin } else { 2089315a1350SMichael S. Tsirkin /* Verify that capabilities don't overlap. Note: device assignment 2090315a1350SMichael S. Tsirkin * depends on this check to verify that the device is not broken. 2091315a1350SMichael S. Tsirkin * Should never trigger for emulated devices, but it's helpful 2092315a1350SMichael S. Tsirkin * for debugging these. */ 2093315a1350SMichael S. Tsirkin for (i = offset; i < offset + size; i++) { 2094315a1350SMichael S. Tsirkin overlapping_cap = pci_find_capability_at_offset(pdev, i); 2095315a1350SMichael S. Tsirkin if (overlapping_cap) { 2096cd9aa33eSLaszlo Ersek error_setg(errp, "%s:%02x:%02x.%x " 2097315a1350SMichael S. Tsirkin "Attempt to add PCI capability %x at offset " 2098cd9aa33eSLaszlo Ersek "%x overlaps existing capability %x at offset %x", 2099568f0690SDavid Gibson pci_root_bus_path(pdev), pci_bus_num(pdev->bus), 2100315a1350SMichael S. Tsirkin PCI_SLOT(pdev->devfn), PCI_FUNC(pdev->devfn), 2101315a1350SMichael S. Tsirkin cap_id, offset, overlapping_cap, i); 2102315a1350SMichael S. Tsirkin return -EINVAL; 2103315a1350SMichael S. Tsirkin } 2104315a1350SMichael S. Tsirkin } 2105315a1350SMichael S. Tsirkin } 2106315a1350SMichael S. Tsirkin 2107315a1350SMichael S. Tsirkin config = pdev->config + offset; 2108315a1350SMichael S. Tsirkin config[PCI_CAP_LIST_ID] = cap_id; 2109315a1350SMichael S. Tsirkin config[PCI_CAP_LIST_NEXT] = pdev->config[PCI_CAPABILITY_LIST]; 2110315a1350SMichael S. Tsirkin pdev->config[PCI_CAPABILITY_LIST] = offset; 2111315a1350SMichael S. Tsirkin pdev->config[PCI_STATUS] |= PCI_STATUS_CAP_LIST; 2112315a1350SMichael S. Tsirkin memset(pdev->used + offset, 0xFF, QEMU_ALIGN_UP(size, 4)); 2113315a1350SMichael S. Tsirkin /* Make capability read-only by default */ 2114315a1350SMichael S. Tsirkin memset(pdev->wmask + offset, 0, size); 2115315a1350SMichael S. Tsirkin /* Check capability by default */ 2116315a1350SMichael S. Tsirkin memset(pdev->cmask + offset, 0xFF, size); 2117315a1350SMichael S. Tsirkin return offset; 2118315a1350SMichael S. Tsirkin } 2119315a1350SMichael S. Tsirkin 2120315a1350SMichael S. Tsirkin /* Unlink capability from the pci config space. */ 2121315a1350SMichael S. Tsirkin void pci_del_capability(PCIDevice *pdev, uint8_t cap_id, uint8_t size) 2122315a1350SMichael S. Tsirkin { 2123315a1350SMichael S. Tsirkin uint8_t prev, offset = pci_find_capability_list(pdev, cap_id, &prev); 2124315a1350SMichael S. Tsirkin if (!offset) 2125315a1350SMichael S. Tsirkin return; 2126315a1350SMichael S. Tsirkin pdev->config[prev] = pdev->config[offset + PCI_CAP_LIST_NEXT]; 2127315a1350SMichael S. Tsirkin /* Make capability writable again */ 2128315a1350SMichael S. Tsirkin memset(pdev->wmask + offset, 0xff, size); 2129315a1350SMichael S. Tsirkin memset(pdev->w1cmask + offset, 0, size); 2130315a1350SMichael S. Tsirkin /* Clear cmask as device-specific registers can't be checked */ 2131315a1350SMichael S. Tsirkin memset(pdev->cmask + offset, 0, size); 2132315a1350SMichael S. Tsirkin memset(pdev->used + offset, 0, QEMU_ALIGN_UP(size, 4)); 2133315a1350SMichael S. Tsirkin 2134315a1350SMichael S. Tsirkin if (!pdev->config[PCI_CAPABILITY_LIST]) 2135315a1350SMichael S. Tsirkin pdev->config[PCI_STATUS] &= ~PCI_STATUS_CAP_LIST; 2136315a1350SMichael S. Tsirkin } 2137315a1350SMichael S. Tsirkin 2138315a1350SMichael S. Tsirkin uint8_t pci_find_capability(PCIDevice *pdev, uint8_t cap_id) 2139315a1350SMichael S. Tsirkin { 2140315a1350SMichael S. Tsirkin return pci_find_capability_list(pdev, cap_id, NULL); 2141315a1350SMichael S. Tsirkin } 2142315a1350SMichael S. Tsirkin 2143315a1350SMichael S. Tsirkin static void pcibus_dev_print(Monitor *mon, DeviceState *dev, int indent) 2144315a1350SMichael S. Tsirkin { 2145315a1350SMichael S. Tsirkin PCIDevice *d = (PCIDevice *)dev; 2146315a1350SMichael S. Tsirkin const pci_class_desc *desc; 2147315a1350SMichael S. Tsirkin char ctxt[64]; 2148315a1350SMichael S. Tsirkin PCIIORegion *r; 2149315a1350SMichael S. Tsirkin int i, class; 2150315a1350SMichael S. Tsirkin 2151315a1350SMichael S. Tsirkin class = pci_get_word(d->config + PCI_CLASS_DEVICE); 2152315a1350SMichael S. Tsirkin desc = pci_class_descriptions; 2153315a1350SMichael S. Tsirkin while (desc->desc && class != desc->class) 2154315a1350SMichael S. Tsirkin desc++; 2155315a1350SMichael S. Tsirkin if (desc->desc) { 2156315a1350SMichael S. Tsirkin snprintf(ctxt, sizeof(ctxt), "%s", desc->desc); 2157315a1350SMichael S. Tsirkin } else { 2158315a1350SMichael S. Tsirkin snprintf(ctxt, sizeof(ctxt), "Class %04x", class); 2159315a1350SMichael S. Tsirkin } 2160315a1350SMichael S. Tsirkin 2161315a1350SMichael S. Tsirkin monitor_printf(mon, "%*sclass %s, addr %02x:%02x.%x, " 2162315a1350SMichael S. Tsirkin "pci id %04x:%04x (sub %04x:%04x)\n", 2163315a1350SMichael S. Tsirkin indent, "", ctxt, pci_bus_num(d->bus), 2164315a1350SMichael S. Tsirkin PCI_SLOT(d->devfn), PCI_FUNC(d->devfn), 2165315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_VENDOR_ID), 2166315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_DEVICE_ID), 2167315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_SUBSYSTEM_VENDOR_ID), 2168315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_SUBSYSTEM_ID)); 2169315a1350SMichael S. Tsirkin for (i = 0; i < PCI_NUM_REGIONS; i++) { 2170315a1350SMichael S. Tsirkin r = &d->io_regions[i]; 2171315a1350SMichael S. Tsirkin if (!r->size) 2172315a1350SMichael S. Tsirkin continue; 2173315a1350SMichael S. Tsirkin monitor_printf(mon, "%*sbar %d: %s at 0x%"FMT_PCIBUS 2174315a1350SMichael S. Tsirkin " [0x%"FMT_PCIBUS"]\n", 2175315a1350SMichael S. Tsirkin indent, "", 2176315a1350SMichael S. Tsirkin i, r->type & PCI_BASE_ADDRESS_SPACE_IO ? "i/o" : "mem", 2177315a1350SMichael S. Tsirkin r->addr, r->addr + r->size - 1); 2178315a1350SMichael S. Tsirkin } 2179315a1350SMichael S. Tsirkin } 2180315a1350SMichael S. Tsirkin 2181315a1350SMichael S. Tsirkin static char *pci_dev_fw_name(DeviceState *dev, char *buf, int len) 2182315a1350SMichael S. Tsirkin { 2183315a1350SMichael S. Tsirkin PCIDevice *d = (PCIDevice *)dev; 2184315a1350SMichael S. Tsirkin const char *name = NULL; 2185315a1350SMichael S. Tsirkin const pci_class_desc *desc = pci_class_descriptions; 2186315a1350SMichael S. Tsirkin int class = pci_get_word(d->config + PCI_CLASS_DEVICE); 2187315a1350SMichael S. Tsirkin 2188315a1350SMichael S. Tsirkin while (desc->desc && 2189315a1350SMichael S. Tsirkin (class & ~desc->fw_ign_bits) != 2190315a1350SMichael S. Tsirkin (desc->class & ~desc->fw_ign_bits)) { 2191315a1350SMichael S. Tsirkin desc++; 2192315a1350SMichael S. Tsirkin } 2193315a1350SMichael S. Tsirkin 2194315a1350SMichael S. Tsirkin if (desc->desc) { 2195315a1350SMichael S. Tsirkin name = desc->fw_name; 2196315a1350SMichael S. Tsirkin } 2197315a1350SMichael S. Tsirkin 2198315a1350SMichael S. Tsirkin if (name) { 2199315a1350SMichael S. Tsirkin pstrcpy(buf, len, name); 2200315a1350SMichael S. Tsirkin } else { 2201315a1350SMichael S. Tsirkin snprintf(buf, len, "pci%04x,%04x", 2202315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_VENDOR_ID), 2203315a1350SMichael S. Tsirkin pci_get_word(d->config + PCI_DEVICE_ID)); 2204315a1350SMichael S. Tsirkin } 2205315a1350SMichael S. Tsirkin 2206315a1350SMichael S. Tsirkin return buf; 2207315a1350SMichael S. Tsirkin } 2208315a1350SMichael S. Tsirkin 2209315a1350SMichael S. Tsirkin static char *pcibus_get_fw_dev_path(DeviceState *dev) 2210315a1350SMichael S. Tsirkin { 2211315a1350SMichael S. Tsirkin PCIDevice *d = (PCIDevice *)dev; 2212315a1350SMichael S. Tsirkin char path[50], name[33]; 2213315a1350SMichael S. Tsirkin int off; 2214315a1350SMichael S. Tsirkin 2215315a1350SMichael S. Tsirkin off = snprintf(path, sizeof(path), "%s@%x", 2216315a1350SMichael S. Tsirkin pci_dev_fw_name(dev, name, sizeof name), 2217315a1350SMichael S. Tsirkin PCI_SLOT(d->devfn)); 2218315a1350SMichael S. Tsirkin if (PCI_FUNC(d->devfn)) 2219315a1350SMichael S. Tsirkin snprintf(path + off, sizeof(path) + off, ",%x", PCI_FUNC(d->devfn)); 2220315a1350SMichael S. Tsirkin return g_strdup(path); 2221315a1350SMichael S. Tsirkin } 2222315a1350SMichael S. Tsirkin 2223315a1350SMichael S. Tsirkin static char *pcibus_get_dev_path(DeviceState *dev) 2224315a1350SMichael S. Tsirkin { 2225315a1350SMichael S. Tsirkin PCIDevice *d = container_of(dev, PCIDevice, qdev); 2226315a1350SMichael S. Tsirkin PCIDevice *t; 2227315a1350SMichael S. Tsirkin int slot_depth; 2228315a1350SMichael S. Tsirkin /* Path format: Domain:00:Slot.Function:Slot.Function....:Slot.Function. 2229315a1350SMichael S. Tsirkin * 00 is added here to make this format compatible with 2230315a1350SMichael S. Tsirkin * domain:Bus:Slot.Func for systems without nested PCI bridges. 2231315a1350SMichael S. Tsirkin * Slot.Function list specifies the slot and function numbers for all 2232315a1350SMichael S. Tsirkin * devices on the path from root to the specific device. */ 2233568f0690SDavid Gibson const char *root_bus_path; 2234568f0690SDavid Gibson int root_bus_len; 2235315a1350SMichael S. Tsirkin char slot[] = ":SS.F"; 2236315a1350SMichael S. Tsirkin int slot_len = sizeof slot - 1 /* For '\0' */; 2237315a1350SMichael S. Tsirkin int path_len; 2238315a1350SMichael S. Tsirkin char *path, *p; 2239315a1350SMichael S. Tsirkin int s; 2240315a1350SMichael S. Tsirkin 2241568f0690SDavid Gibson root_bus_path = pci_root_bus_path(d); 2242568f0690SDavid Gibson root_bus_len = strlen(root_bus_path); 2243568f0690SDavid Gibson 2244315a1350SMichael S. Tsirkin /* Calculate # of slots on path between device and root. */; 2245315a1350SMichael S. Tsirkin slot_depth = 0; 2246315a1350SMichael S. Tsirkin for (t = d; t; t = t->bus->parent_dev) { 2247315a1350SMichael S. Tsirkin ++slot_depth; 2248315a1350SMichael S. Tsirkin } 2249315a1350SMichael S. Tsirkin 2250568f0690SDavid Gibson path_len = root_bus_len + slot_len * slot_depth; 2251315a1350SMichael S. Tsirkin 2252315a1350SMichael S. Tsirkin /* Allocate memory, fill in the terminating null byte. */ 2253315a1350SMichael S. Tsirkin path = g_malloc(path_len + 1 /* For '\0' */); 2254315a1350SMichael S. Tsirkin path[path_len] = '\0'; 2255315a1350SMichael S. Tsirkin 2256568f0690SDavid Gibson memcpy(path, root_bus_path, root_bus_len); 2257315a1350SMichael S. Tsirkin 2258315a1350SMichael S. Tsirkin /* Fill in slot numbers. We walk up from device to root, so need to print 2259315a1350SMichael S. Tsirkin * them in the reverse order, last to first. */ 2260315a1350SMichael S. Tsirkin p = path + path_len; 2261315a1350SMichael S. Tsirkin for (t = d; t; t = t->bus->parent_dev) { 2262315a1350SMichael S. Tsirkin p -= slot_len; 2263315a1350SMichael S. Tsirkin s = snprintf(slot, sizeof slot, ":%02x.%x", 2264315a1350SMichael S. Tsirkin PCI_SLOT(t->devfn), PCI_FUNC(t->devfn)); 2265315a1350SMichael S. Tsirkin assert(s == slot_len); 2266315a1350SMichael S. Tsirkin memcpy(p, slot, slot_len); 2267315a1350SMichael S. Tsirkin } 2268315a1350SMichael S. Tsirkin 2269315a1350SMichael S. Tsirkin return path; 2270315a1350SMichael S. Tsirkin } 2271315a1350SMichael S. Tsirkin 2272315a1350SMichael S. Tsirkin static int pci_qdev_find_recursive(PCIBus *bus, 2273315a1350SMichael S. Tsirkin const char *id, PCIDevice **pdev) 2274315a1350SMichael S. Tsirkin { 2275315a1350SMichael S. Tsirkin DeviceState *qdev = qdev_find_recursive(&bus->qbus, id); 2276315a1350SMichael S. Tsirkin if (!qdev) { 2277315a1350SMichael S. Tsirkin return -ENODEV; 2278315a1350SMichael S. Tsirkin } 2279315a1350SMichael S. Tsirkin 2280315a1350SMichael S. Tsirkin /* roughly check if given qdev is pci device */ 2281315a1350SMichael S. Tsirkin if (object_dynamic_cast(OBJECT(qdev), TYPE_PCI_DEVICE)) { 2282315a1350SMichael S. Tsirkin *pdev = PCI_DEVICE(qdev); 2283315a1350SMichael S. Tsirkin return 0; 2284315a1350SMichael S. Tsirkin } 2285315a1350SMichael S. Tsirkin return -EINVAL; 2286315a1350SMichael S. Tsirkin } 2287315a1350SMichael S. Tsirkin 2288315a1350SMichael S. Tsirkin int pci_qdev_find_device(const char *id, PCIDevice **pdev) 2289315a1350SMichael S. Tsirkin { 22907588e2b0SDavid Gibson PCIHostState *host_bridge; 2291315a1350SMichael S. Tsirkin int rc = -ENODEV; 2292315a1350SMichael S. Tsirkin 22937588e2b0SDavid Gibson QLIST_FOREACH(host_bridge, &pci_host_bridges, next) { 22947588e2b0SDavid Gibson int tmp = pci_qdev_find_recursive(host_bridge->bus, id, pdev); 2295315a1350SMichael S. Tsirkin if (!tmp) { 2296315a1350SMichael S. Tsirkin rc = 0; 2297315a1350SMichael S. Tsirkin break; 2298315a1350SMichael S. Tsirkin } 2299315a1350SMichael S. Tsirkin if (tmp != -ENODEV) { 2300315a1350SMichael S. Tsirkin rc = tmp; 2301315a1350SMichael S. Tsirkin } 2302315a1350SMichael S. Tsirkin } 2303315a1350SMichael S. Tsirkin 2304315a1350SMichael S. Tsirkin return rc; 2305315a1350SMichael S. Tsirkin } 2306315a1350SMichael S. Tsirkin 2307315a1350SMichael S. Tsirkin MemoryRegion *pci_address_space(PCIDevice *dev) 2308315a1350SMichael S. Tsirkin { 2309315a1350SMichael S. Tsirkin return dev->bus->address_space_mem; 2310315a1350SMichael S. Tsirkin } 2311315a1350SMichael S. Tsirkin 2312315a1350SMichael S. Tsirkin MemoryRegion *pci_address_space_io(PCIDevice *dev) 2313315a1350SMichael S. Tsirkin { 2314315a1350SMichael S. Tsirkin return dev->bus->address_space_io; 2315315a1350SMichael S. Tsirkin } 2316315a1350SMichael S. Tsirkin 2317315a1350SMichael S. Tsirkin static void pci_device_class_init(ObjectClass *klass, void *data) 2318315a1350SMichael S. Tsirkin { 2319315a1350SMichael S. Tsirkin DeviceClass *k = DEVICE_CLASS(klass); 23207ee6c1e1SMarkus Armbruster PCIDeviceClass *pc = PCI_DEVICE_CLASS(klass); 23217ee6c1e1SMarkus Armbruster 2322133e9b22SMarkus Armbruster k->realize = pci_qdev_realize; 2323133e9b22SMarkus Armbruster k->unrealize = pci_qdev_unrealize; 2324315a1350SMichael S. Tsirkin k->bus_type = TYPE_PCI_BUS; 2325315a1350SMichael S. Tsirkin k->props = pci_props; 23267ee6c1e1SMarkus Armbruster pc->realize = pci_default_realize; 2327315a1350SMichael S. Tsirkin } 2328315a1350SMichael S. Tsirkin 23299eda7d37SAlexey Kardashevskiy AddressSpace *pci_device_iommu_address_space(PCIDevice *dev) 23309eda7d37SAlexey Kardashevskiy { 23319eda7d37SAlexey Kardashevskiy PCIBus *bus = PCI_BUS(dev->bus); 23329eda7d37SAlexey Kardashevskiy 23339eda7d37SAlexey Kardashevskiy if (bus->iommu_fn) { 23349eda7d37SAlexey Kardashevskiy return bus->iommu_fn(bus, bus->iommu_opaque, dev->devfn); 23359eda7d37SAlexey Kardashevskiy } 23369eda7d37SAlexey Kardashevskiy 23379eda7d37SAlexey Kardashevskiy if (bus->parent_dev) { 23389eda7d37SAlexey Kardashevskiy /** We are ignoring the bus master DMA bit of the bridge 23399eda7d37SAlexey Kardashevskiy * as it would complicate things such as VFIO for no good reason */ 23409eda7d37SAlexey Kardashevskiy return pci_device_iommu_address_space(bus->parent_dev); 23419eda7d37SAlexey Kardashevskiy } 23429eda7d37SAlexey Kardashevskiy 23439eda7d37SAlexey Kardashevskiy return &address_space_memory; 23449eda7d37SAlexey Kardashevskiy } 23459eda7d37SAlexey Kardashevskiy 2346e00387d5SAvi Kivity void pci_setup_iommu(PCIBus *bus, PCIIOMMUFunc fn, void *opaque) 2347315a1350SMichael S. Tsirkin { 2348e00387d5SAvi Kivity bus->iommu_fn = fn; 2349e00387d5SAvi Kivity bus->iommu_opaque = opaque; 2350315a1350SMichael S. Tsirkin } 2351315a1350SMichael S. Tsirkin 235243864069SMichael S. Tsirkin static void pci_dev_get_w64(PCIBus *b, PCIDevice *dev, void *opaque) 235343864069SMichael S. Tsirkin { 235443864069SMichael S. Tsirkin Range *range = opaque; 235543864069SMichael S. Tsirkin PCIDeviceClass *pc = PCI_DEVICE_GET_CLASS(dev); 235643864069SMichael S. Tsirkin uint16_t cmd = pci_get_word(dev->config + PCI_COMMAND); 235777d6f4eaSMichael S. Tsirkin int i; 235843864069SMichael S. Tsirkin 235943864069SMichael S. Tsirkin if (!(cmd & PCI_COMMAND_MEMORY)) { 236043864069SMichael S. Tsirkin return; 236143864069SMichael S. Tsirkin } 236243864069SMichael S. Tsirkin 236343864069SMichael S. Tsirkin if (pc->is_bridge) { 236443864069SMichael S. Tsirkin pcibus_t base = pci_bridge_get_base(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 236543864069SMichael S. Tsirkin pcibus_t limit = pci_bridge_get_limit(dev, PCI_BASE_ADDRESS_MEM_PREFETCH); 236643864069SMichael S. Tsirkin 236743864069SMichael S. Tsirkin base = MAX(base, 0x1ULL << 32); 236843864069SMichael S. Tsirkin 236943864069SMichael S. Tsirkin if (limit >= base) { 237043864069SMichael S. Tsirkin Range pref_range; 237143864069SMichael S. Tsirkin pref_range.begin = base; 237243864069SMichael S. Tsirkin pref_range.end = limit + 1; 237343864069SMichael S. Tsirkin range_extend(range, &pref_range); 237443864069SMichael S. Tsirkin } 237543864069SMichael S. Tsirkin } 237677d6f4eaSMichael S. Tsirkin for (i = 0; i < PCI_NUM_REGIONS; ++i) { 237777d6f4eaSMichael S. Tsirkin PCIIORegion *r = &dev->io_regions[i]; 237843864069SMichael S. Tsirkin Range region_range; 237943864069SMichael S. Tsirkin 238077d6f4eaSMichael S. Tsirkin if (!r->size || 238177d6f4eaSMichael S. Tsirkin (r->type & PCI_BASE_ADDRESS_SPACE_IO) || 238277d6f4eaSMichael S. Tsirkin !(r->type & PCI_BASE_ADDRESS_MEM_TYPE_64)) { 238343864069SMichael S. Tsirkin continue; 238443864069SMichael S. Tsirkin } 238577d6f4eaSMichael S. Tsirkin region_range.begin = pci_bar_address(dev, i, r->type, r->size); 238677d6f4eaSMichael S. Tsirkin region_range.end = region_range.begin + r->size; 238777d6f4eaSMichael S. Tsirkin 238877d6f4eaSMichael S. Tsirkin if (region_range.begin == PCI_BAR_UNMAPPED) { 238977d6f4eaSMichael S. Tsirkin continue; 239077d6f4eaSMichael S. Tsirkin } 239143864069SMichael S. Tsirkin 239243864069SMichael S. Tsirkin region_range.begin = MAX(region_range.begin, 0x1ULL << 32); 239343864069SMichael S. Tsirkin 239443864069SMichael S. Tsirkin if (region_range.end - 1 >= region_range.begin) { 239543864069SMichael S. Tsirkin range_extend(range, ®ion_range); 239643864069SMichael S. Tsirkin } 239743864069SMichael S. Tsirkin } 239843864069SMichael S. Tsirkin } 239943864069SMichael S. Tsirkin 240043864069SMichael S. Tsirkin void pci_bus_get_w64_range(PCIBus *bus, Range *range) 240143864069SMichael S. Tsirkin { 240243864069SMichael S. Tsirkin range->begin = range->end = 0; 240343864069SMichael S. Tsirkin pci_for_each_device_under_bus(bus, pci_dev_get_w64, range); 240443864069SMichael S. Tsirkin } 240543864069SMichael S. Tsirkin 24068c43a6f0SAndreas Färber static const TypeInfo pci_device_type_info = { 2407315a1350SMichael S. Tsirkin .name = TYPE_PCI_DEVICE, 2408315a1350SMichael S. Tsirkin .parent = TYPE_DEVICE, 2409315a1350SMichael S. Tsirkin .instance_size = sizeof(PCIDevice), 2410315a1350SMichael S. Tsirkin .abstract = true, 2411315a1350SMichael S. Tsirkin .class_size = sizeof(PCIDeviceClass), 2412315a1350SMichael S. Tsirkin .class_init = pci_device_class_init, 2413315a1350SMichael S. Tsirkin }; 2414315a1350SMichael S. Tsirkin 2415315a1350SMichael S. Tsirkin static void pci_register_types(void) 2416315a1350SMichael S. Tsirkin { 2417315a1350SMichael S. Tsirkin type_register_static(&pci_bus_info); 24183a861c46SAlex Williamson type_register_static(&pcie_bus_info); 2419315a1350SMichael S. Tsirkin type_register_static(&pci_device_type_info); 2420315a1350SMichael S. Tsirkin } 2421315a1350SMichael S. Tsirkin 2422315a1350SMichael S. Tsirkin type_init(pci_register_types) 2423