pci.c 14.2 KB
Newer Older
B
bellard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * QEMU PCI bus manager
 *
 * Copyright (c) 2004 Fabrice Bellard
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include "vl.h"

//#define DEBUG_PCI

28 29 30
struct PCIBus {
    int bus_num;
    int devfn_min;
P
pbrook 已提交
31
    pci_set_irq_fn set_irq;
32
    uint32_t config_reg; /* XXX: suppress */
33 34 35
    /* low level pic */
    SetIRQFunc *low_set_irq;
    void *irq_opaque;
36 37
    PCIDevice *devices[256];
};
B
bellard 已提交
38 39

target_phys_addr_t pci_mem_base;
40
static int pci_irq_index;
41 42
static PCIBus *first_bus;

P
pbrook 已提交
43
PCIBus *pci_register_bus(pci_set_irq_fn set_irq, void *pic, int devfn_min)
44 45 46
{
    PCIBus *bus;
    bus = qemu_mallocz(sizeof(PCIBus));
P
pbrook 已提交
47 48 49
    bus->set_irq = set_irq;
    bus->irq_opaque = pic;
    bus->devfn_min = devfn_min;
50 51 52
    first_bus = bus;
    return bus;
}
B
bellard 已提交
53

P
pbrook 已提交
54 55 56 57 58
int pci_bus_num(PCIBus *s)
{
    return s->bus_num;
}

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
void generic_pci_save(QEMUFile* f, void *opaque)
{
    PCIDevice* s=(PCIDevice*)opaque;

    qemu_put_buffer(f, s->config, 256);
}

int generic_pci_load(QEMUFile* f, void *opaque, int version_id)
{
    PCIDevice* s=(PCIDevice*)opaque;

    if (version_id != 1)
        return -EINVAL;

    qemu_get_buffer(f, s->config, 256);
    return 0;
}

B
bellard 已提交
77
/* -1 for devfn means auto assign */
78 79
PCIDevice *pci_register_device(PCIBus *bus, const char *name, 
                               int instance_size, int devfn,
B
bellard 已提交
80 81 82
                               PCIConfigReadFunc *config_read, 
                               PCIConfigWriteFunc *config_write)
{
83
    PCIDevice *pci_dev;
B
bellard 已提交
84

85 86 87
    if (pci_irq_index >= PCI_DEVICES_MAX)
        return NULL;
    
B
bellard 已提交
88
    if (devfn < 0) {
89 90
        for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
            if (!bus->devices[devfn])
B
bellard 已提交
91 92 93 94 95 96 97 98
                goto found;
        }
        return NULL;
    found: ;
    }
    pci_dev = qemu_mallocz(instance_size);
    if (!pci_dev)
        return NULL;
99
    pci_dev->bus = bus;
B
bellard 已提交
100 101
    pci_dev->devfn = devfn;
    pstrcpy(pci_dev->name, sizeof(pci_dev->name), name);
102 103 104 105 106

    if (!config_read)
        config_read = pci_default_read_config;
    if (!config_write)
        config_write = pci_default_write_config;
B
bellard 已提交
107 108
    pci_dev->config_read = config_read;
    pci_dev->config_write = config_write;
109
    pci_dev->irq_index = pci_irq_index++;
110
    bus->devices[devfn] = pci_dev;
B
bellard 已提交
111 112 113 114 115 116 117 118
    return pci_dev;
}

void pci_register_io_region(PCIDevice *pci_dev, int region_num, 
                            uint32_t size, int type, 
                            PCIMapIORegionFunc *map_func)
{
    PCIIORegion *r;
P
pbrook 已提交
119
    uint32_t addr;
B
bellard 已提交
120

121
    if ((unsigned int)region_num >= PCI_NUM_REGIONS)
B
bellard 已提交
122 123 124 125 126 127
        return;
    r = &pci_dev->io_regions[region_num];
    r->addr = -1;
    r->size = size;
    r->type = type;
    r->map_func = map_func;
P
pbrook 已提交
128 129 130 131 132 133
    if (region_num == PCI_ROM_SLOT) {
        addr = 0x30;
    } else {
        addr = 0x10 + region_num * 4;
    }
    *(uint32_t *)(pci_dev->config + addr) = cpu_to_le32(type);
B
bellard 已提交
134 135
}

P
pbrook 已提交
136
target_phys_addr_t pci_to_cpu_addr(target_phys_addr_t addr)
B
bellard 已提交
137
{
P
pbrook 已提交
138
    return addr + pci_mem_base;
B
bellard 已提交
139 140
}

141 142 143 144
static void pci_update_mappings(PCIDevice *d)
{
    PCIIORegion *r;
    int cmd, i;
145
    uint32_t last_addr, new_addr, config_ofs;
146 147
    
    cmd = le16_to_cpu(*(uint16_t *)(d->config + PCI_COMMAND));
148
    for(i = 0; i < PCI_NUM_REGIONS; i++) {
149
        r = &d->io_regions[i];
150 151 152 153 154
        if (i == PCI_ROM_SLOT) {
            config_ofs = 0x30;
        } else {
            config_ofs = 0x10 + i * 4;
        }
155 156 157 158
        if (r->size != 0) {
            if (r->type & PCI_ADDRESS_SPACE_IO) {
                if (cmd & PCI_COMMAND_IO) {
                    new_addr = le32_to_cpu(*(uint32_t *)(d->config + 
159
                                                         config_ofs));
160 161 162 163 164 165 166 167 168 169 170 171 172
                    new_addr = new_addr & ~(r->size - 1);
                    last_addr = new_addr + r->size - 1;
                    /* NOTE: we have only 64K ioports on PC */
                    if (last_addr <= new_addr || new_addr == 0 ||
                        last_addr >= 0x10000) {
                        new_addr = -1;
                    }
                } else {
                    new_addr = -1;
                }
            } else {
                if (cmd & PCI_COMMAND_MEMORY) {
                    new_addr = le32_to_cpu(*(uint32_t *)(d->config + 
173 174 175 176
                                                         config_ofs));
                    /* the ROM slot has a specific enable bit */
                    if (i == PCI_ROM_SLOT && !(new_addr & 1))
                        goto no_mem_map;
177 178 179 180 181 182 183 184 185 186 187
                    new_addr = new_addr & ~(r->size - 1);
                    last_addr = new_addr + r->size - 1;
                    /* NOTE: we do not support wrapping */
                    /* XXX: as we cannot support really dynamic
                       mappings, we handle specific values as invalid
                       mappings. */
                    if (last_addr <= new_addr || new_addr == 0 ||
                        last_addr == -1) {
                        new_addr = -1;
                    }
                } else {
188
                no_mem_map:
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
                    new_addr = -1;
                }
            }
            /* now do the real mapping */
            if (new_addr != r->addr) {
                if (r->addr != -1) {
                    if (r->type & PCI_ADDRESS_SPACE_IO) {
                        int class;
                        /* NOTE: specific hack for IDE in PC case:
                           only one byte must be mapped. */
                        class = d->config[0x0a] | (d->config[0x0b] << 8);
                        if (class == 0x0101 && r->size == 4) {
                            isa_unassign_ioport(r->addr + 2, 1);
                        } else {
                            isa_unassign_ioport(r->addr, r->size);
                        }
                    } else {
P
pbrook 已提交
206
                        cpu_register_physical_memory(pci_to_cpu_addr(r->addr),
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
                                                     r->size, 
                                                     IO_MEM_UNASSIGNED);
                    }
                }
                r->addr = new_addr;
                if (r->addr != -1) {
                    r->map_func(d, i, r->addr, r->size, r->type);
                }
            }
        }
    }
}

uint32_t pci_default_read_config(PCIDevice *d, 
                                 uint32_t address, int len)
B
bellard 已提交
222
{
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
    uint32_t val;
    switch(len) {
    case 1:
        val = d->config[address];
        break;
    case 2:
        val = le16_to_cpu(*(uint16_t *)(d->config + address));
        break;
    default:
    case 4:
        val = le32_to_cpu(*(uint32_t *)(d->config + address));
        break;
    }
    return val;
}

void pci_default_write_config(PCIDevice *d, 
                              uint32_t address, uint32_t val, int len)
{
    int can_write, i;
B
bellard 已提交
243
    uint32_t end, addr;
244

245 246
    if (len == 4 && ((address >= 0x10 && address < 0x10 + 4 * 6) || 
                     (address >= 0x30 && address < 0x34))) {
247 248 249
        PCIIORegion *r;
        int reg;

250 251 252 253 254
        if ( address >= 0x30 ) {
            reg = PCI_ROM_SLOT;
        }else{
            reg = (address - 0x10) >> 2;
        }
255 256 257 258
        r = &d->io_regions[reg];
        if (r->size == 0)
            goto default_config;
        /* compute the stored value */
259 260 261 262 263 264 265 266
        if (reg == PCI_ROM_SLOT) {
            /* keep ROM enable bit */
            val &= (~(r->size - 1)) | 1;
        } else {
            val &= ~(r->size - 1);
            val |= r->type;
        }
        *(uint32_t *)(d->config + address) = cpu_to_le32(val);
267
        pci_update_mappings(d);
B
bellard 已提交
268
        return;
269 270 271
    }
 default_config:
    /* not efficient, but simple */
B
bellard 已提交
272
    addr = address;
273 274
    for(i = 0; i < len; i++) {
        /* default read/write accesses */
275
        switch(d->config[0x0e]) {
276
        case 0x00:
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
        case 0x80:
            switch(addr) {
            case 0x00:
            case 0x01:
            case 0x02:
            case 0x03:
            case 0x08:
            case 0x09:
            case 0x0a:
            case 0x0b:
            case 0x0e:
            case 0x10 ... 0x27: /* base */
            case 0x30 ... 0x33: /* rom */
            case 0x3d:
                can_write = 0;
                break;
            default:
                can_write = 1;
                break;
            }
297 298
            break;
        default:
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
        case 0x01:
            switch(addr) {
            case 0x00:
            case 0x01:
            case 0x02:
            case 0x03:
            case 0x08:
            case 0x09:
            case 0x0a:
            case 0x0b:
            case 0x0e:
            case 0x38 ... 0x3b: /* rom */
            case 0x3d:
                can_write = 0;
                break;
            default:
                can_write = 1;
                break;
            }
318 319 320
            break;
        }
        if (can_write) {
B
bellard 已提交
321
            d->config[addr] = val;
322
        }
B
bellard 已提交
323
        addr++;
324 325 326 327 328 329 330
        val >>= 8;
    }

    end = address + len;
    if (end > PCI_COMMAND && address < (PCI_COMMAND + 2)) {
        /* if the command register is modified, we must modify the mappings */
        pci_update_mappings(d);
B
bellard 已提交
331 332 333
    }
}

P
pbrook 已提交
334
void pci_data_write(void *opaque, uint32_t addr, uint32_t val, int len)
B
bellard 已提交
335
{
336 337 338
    PCIBus *s = opaque;
    PCIDevice *pci_dev;
    int config_addr, bus_num;
B
bellard 已提交
339 340 341
    
#if defined(DEBUG_PCI) && 0
    printf("pci_data_write: addr=%08x val=%08x len=%d\n",
P
pbrook 已提交
342
           addr, val, len);
B
bellard 已提交
343
#endif
P
pbrook 已提交
344
    bus_num = (addr >> 16) & 0xff;
345
    if (bus_num != 0)
B
bellard 已提交
346
        return;
P
pbrook 已提交
347
    pci_dev = s->devices[(addr >> 8) & 0xff];
B
bellard 已提交
348 349
    if (!pci_dev)
        return;
P
pbrook 已提交
350
    config_addr = addr & 0xff;
B
bellard 已提交
351 352 353 354
#if defined(DEBUG_PCI)
    printf("pci_config_write: %s: addr=%02x val=%08x len=%d\n",
           pci_dev->name, config_addr, val, len);
#endif
355
    pci_dev->config_write(pci_dev, config_addr, val, len);
B
bellard 已提交
356 357
}

P
pbrook 已提交
358
uint32_t pci_data_read(void *opaque, uint32_t addr, int len)
B
bellard 已提交
359
{
360 361 362
    PCIBus *s = opaque;
    PCIDevice *pci_dev;
    int config_addr, bus_num;
B
bellard 已提交
363 364
    uint32_t val;

P
pbrook 已提交
365
    bus_num = (addr >> 16) & 0xff;
366
    if (bus_num != 0)
B
bellard 已提交
367
        goto fail;
P
pbrook 已提交
368
    pci_dev = s->devices[(addr >> 8) & 0xff];
B
bellard 已提交
369 370
    if (!pci_dev) {
    fail:
371 372 373 374 375 376 377 378 379 380 381 382
        switch(len) {
        case 1:
            val = 0xff;
            break;
        case 2:
            val = 0xffff;
            break;
        default:
        case 4:
            val = 0xffffffff;
            break;
        }
B
bellard 已提交
383 384
        goto the_end;
    }
P
pbrook 已提交
385
    config_addr = addr & 0xff;
B
bellard 已提交
386 387 388 389 390 391 392 393
    val = pci_dev->config_read(pci_dev, config_addr, len);
#if defined(DEBUG_PCI)
    printf("pci_config_read: %s: addr=%02x val=%08x len=%d\n",
           pci_dev->name, config_addr, val, len);
#endif
 the_end:
#if defined(DEBUG_PCI) && 0
    printf("pci_data_read: addr=%08x val=%08x len=%d\n",
P
pbrook 已提交
394
           addr, val, len);
B
bellard 已提交
395 396 397 398
#endif
    return val;
}

P
pbrook 已提交
399 400
/***********************************************************/
/* generic PCI irq support */
401

P
pbrook 已提交
402 403
/* 0 <= irq_num <= 3. level must be 0 or 1 */
void pci_set_irq(PCIDevice *pci_dev, int irq_num, int level)
B
bellard 已提交
404
{
P
pbrook 已提交
405 406
    PCIBus *bus = pci_dev->bus;
    bus->set_irq(pci_dev, bus->irq_opaque, irq_num, level);
B
bellard 已提交
407 408
}

P
pbrook 已提交
409 410
/***********************************************************/
/* monitor info on PCI */
411

412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
typedef struct {
    uint16_t class;
    const char *desc;
} pci_class_desc;

static pci_class_desc pci_class_descriptions[] = 
{
    { 0x0101, "IDE controller"},
    { 0x0200, "Ethernet controller"},
    { 0x0300, "VGA controller"},
    { 0x0600, "Host bridge"},
    { 0x0601, "ISA bridge"},
    { 0x0604, "PCI bridge"},
    { 0x0c03, "USB controller"},
    { 0, NULL}
};

P
pbrook 已提交
429
static void pci_info_device(PCIDevice *d)
430
{
P
pbrook 已提交
431 432
    int i, class;
    PCIIORegion *r;
433
    pci_class_desc *desc;
434

P
pbrook 已提交
435 436 437 438
    term_printf("  Bus %2d, device %3d, function %d:\n",
           d->bus->bus_num, d->devfn >> 3, d->devfn & 7);
    class = le16_to_cpu(*((uint16_t *)(d->config + PCI_CLASS_DEVICE)));
    term_printf("    ");
439 440 441 442 443 444
    desc = pci_class_descriptions;
    while (desc->desc && class != desc->class)
        desc++;
    if (desc->desc) {
        term_printf("%s", desc->desc);
    } else {
P
pbrook 已提交
445
        term_printf("Class %04x", class);
446
    }
P
pbrook 已提交
447 448 449
    term_printf(": PCI device %04x:%04x\n",
           le16_to_cpu(*((uint16_t *)(d->config + PCI_VENDOR_ID))),
           le16_to_cpu(*((uint16_t *)(d->config + PCI_DEVICE_ID))));
450

P
pbrook 已提交
451 452
    if (d->config[PCI_INTERRUPT_PIN] != 0) {
        term_printf("      IRQ %d.\n", d->config[PCI_INTERRUPT_LINE]);
453
    }
P
pbrook 已提交
454 455 456 457 458 459 460 461 462 463 464 465
    for(i = 0;i < PCI_NUM_REGIONS; i++) {
        r = &d->io_regions[i];
        if (r->size != 0) {
            term_printf("      BAR%d: ", i);
            if (r->type & PCI_ADDRESS_SPACE_IO) {
                term_printf("I/O at 0x%04x [0x%04x].\n", 
                       r->addr, r->addr + r->size - 1);
            } else {
                term_printf("32 bit memory at 0x%08x [0x%08x].\n", 
                       r->addr, r->addr + r->size - 1);
            }
        }
B
bellard 已提交
466
    }
467 468
}

P
pbrook 已提交
469
void pci_for_each_device(void (*fn)(PCIDevice *d))
470
{
P
pbrook 已提交
471
    PCIBus *bus = first_bus;
472
    PCIDevice *d;
P
pbrook 已提交
473
    int devfn;
474
    
P
pbrook 已提交
475 476 477 478 479 480
    if (bus) {
        for(devfn = 0; devfn < 256; devfn++) {
            d = bus->devices[devfn];
            if (d)
                fn(d);
        }
B
bellard 已提交
481 482 483
    }
}

P
pbrook 已提交
484
void pci_info(void)
B
bellard 已提交
485
{
P
pbrook 已提交
486
    pci_for_each_device(pci_info_device);
B
bellard 已提交
487
}
488 489 490 491 492 493 494 495 496 497 498 499 500 501

/* Initialize a PCI NIC.  */
void pci_nic_init(PCIBus *bus, NICInfo *nd)
{
    if (strcmp(nd->model, "ne2k_pci") == 0) {
        pci_ne2000_init(bus, nd);
    } else if (strcmp(nd->model, "rtl8139") == 0) {
        pci_rtl8139_init(bus, nd);
    } else {
        fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
        exit (1);
    }
}