Statistics
| Branch: | Revision:

root / hw / piix_pci.c @ e735b55a

History | View | Annotate | Download (11.2 kB)

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

    
25
#include "hw.h"
26
#include "pc.h"
27
#include "pci.h"
28
#include "pci_host.h"
29
#include "isa.h"
30
#include "sysbus.h"
31
#include "range.h"
32

    
33
/*
34
 * I440FX chipset data sheet.
35
 * http://download.intel.com/design/chipsets/datashts/29054901.pdf
36
 */
37

    
38
typedef PCIHostState I440FXState;
39

    
40
#define PIIX_NUM_PIRQS          4ULL    /* PIRQ[A-D] */
41

    
42
typedef struct PIIX3State {
43
    PCIDevice dev;
44
    qemu_irq *pic;
45

    
46
    /* This member isn't used. Just for save/load compatibility */
47
    int32_t pci_irq_levels_vmstate[PIIX_NUM_PIRQS];
48
} PIIX3State;
49

    
50
struct PCII440FXState {
51
    PCIDevice dev;
52
    target_phys_addr_t isa_page_descs[384 / 4];
53
    uint8_t smm_enabled;
54
    PIIX3State *piix3;
55
};
56

    
57

    
58
#define I440FX_PAM      0x59
59
#define I440FX_PAM_SIZE 7
60
#define I440FX_SMRAM    0x72
61

    
62
static void piix3_set_irq(void *opaque, int irq_num, int level);
63

    
64
/* return the global irq number corresponding to a given device irq
65
   pin. We could also use the bus number to have a more precise
66
   mapping. */
67
static int pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
68
{
69
    int slot_addend;
70
    slot_addend = (pci_dev->devfn >> 3) - 1;
71
    return (irq_num + slot_addend) & 3;
72
}
73

    
74
static void update_pam(PCII440FXState *d, uint32_t start, uint32_t end, int r)
75
{
76
    uint32_t addr;
77

    
78
    //    printf("ISA mapping %08x-0x%08x: %d\n", start, end, r);
79
    switch(r) {
80
    case 3:
81
        /* RAM */
82
        cpu_register_physical_memory(start, end - start,
83
                                     start);
84
        break;
85
    case 1:
86
        /* ROM (XXX: not quite correct) */
87
        cpu_register_physical_memory(start, end - start,
88
                                     start | IO_MEM_ROM);
89
        break;
90
    case 2:
91
    case 0:
92
        /* XXX: should distinguish read/write cases */
93
        for(addr = start; addr < end; addr += 4096) {
94
            cpu_register_physical_memory(addr, 4096,
95
                                         d->isa_page_descs[(addr - 0xa0000) >> 12]);
96
        }
97
        break;
98
    }
99
}
100

    
101
static void i440fx_update_memory_mappings(PCII440FXState *d)
102
{
103
    int i, r;
104
    uint32_t smram, addr;
105

    
106
    update_pam(d, 0xf0000, 0x100000, (d->dev.config[I440FX_PAM] >> 4) & 3);
107
    for(i = 0; i < 12; i++) {
108
        r = (d->dev.config[(i >> 1) + (I440FX_PAM + 1)] >> ((i & 1) * 4)) & 3;
109
        update_pam(d, 0xc0000 + 0x4000 * i, 0xc0000 + 0x4000 * (i + 1), r);
110
    }
111
    smram = d->dev.config[I440FX_SMRAM];
112
    if ((d->smm_enabled && (smram & 0x08)) || (smram & 0x40)) {
113
        cpu_register_physical_memory(0xa0000, 0x20000, 0xa0000);
114
    } else {
115
        for(addr = 0xa0000; addr < 0xc0000; addr += 4096) {
116
            cpu_register_physical_memory(addr, 4096,
117
                                         d->isa_page_descs[(addr - 0xa0000) >> 12]);
118
        }
119
    }
120
}
121

    
122
static void i440fx_set_smm(int val, void *arg)
123
{
124
    PCII440FXState *d = arg;
125

    
126
    val = (val != 0);
127
    if (d->smm_enabled != val) {
128
        d->smm_enabled = val;
129
        i440fx_update_memory_mappings(d);
130
    }
131
}
132

    
133

    
134
/* XXX: suppress when better memory API. We make the assumption that
135
   no device (in particular the VGA) changes the memory mappings in
136
   the 0xa0000-0x100000 range */
137
void i440fx_init_memory_mappings(PCII440FXState *d)
138
{
139
    int i;
140
    for(i = 0; i < 96; i++) {
141
        d->isa_page_descs[i] = cpu_get_physical_page_desc(0xa0000 + i * 0x1000);
142
    }
143
}
144

    
145
static void i440fx_write_config(PCIDevice *dev,
146
                                uint32_t address, uint32_t val, int len)
147
{
148
    PCII440FXState *d = DO_UPCAST(PCII440FXState, dev, dev);
149

    
150
    /* XXX: implement SMRAM.D_LOCK */
151
    pci_default_write_config(dev, address, val, len);
152
    if (ranges_overlap(address, len, I440FX_PAM, I440FX_PAM_SIZE) ||
153
        range_covers_byte(address, len, I440FX_SMRAM)) {
154
        i440fx_update_memory_mappings(d);
155
    }
156
}
157

    
158
static int i440fx_load_old(QEMUFile* f, void *opaque, int version_id)
159
{
160
    PCII440FXState *d = opaque;
161
    int ret, i;
162

    
163
    ret = pci_device_load(&d->dev, f);
164
    if (ret < 0)
165
        return ret;
166
    i440fx_update_memory_mappings(d);
167
    qemu_get_8s(f, &d->smm_enabled);
168

    
169
    if (version_id == 2) {
170
        for (i = 0; i < PIIX_NUM_PIRQS; i++) {
171
            qemu_get_be32(f); /* dummy load for compatibility */
172
        }
173
    }
174

    
175
    return 0;
176
}
177

    
178
static int i440fx_post_load(void *opaque, int version_id)
179
{
180
    PCII440FXState *d = opaque;
181

    
182
    i440fx_update_memory_mappings(d);
183
    return 0;
184
}
185

    
186
static const VMStateDescription vmstate_i440fx = {
187
    .name = "I440FX",
188
    .version_id = 3,
189
    .minimum_version_id = 3,
190
    .minimum_version_id_old = 1,
191
    .load_state_old = i440fx_load_old,
192
    .post_load = i440fx_post_load,
193
    .fields      = (VMStateField []) {
194
        VMSTATE_PCI_DEVICE(dev, PCII440FXState),
195
        VMSTATE_UINT8(smm_enabled, PCII440FXState),
196
        VMSTATE_END_OF_LIST()
197
    }
198
};
199

    
200
static int i440fx_pcihost_initfn(SysBusDevice *dev)
201
{
202
    I440FXState *s = FROM_SYSBUS(I440FXState, dev);
203

    
204
    pci_host_conf_register_ioport(0xcf8, s);
205

    
206
    pci_host_data_register_ioport(0xcfc, s);
207
    return 0;
208
}
209

    
210
static int i440fx_initfn(PCIDevice *dev)
211
{
212
    PCII440FXState *d = DO_UPCAST(PCII440FXState, dev, dev);
213

    
214
    pci_config_set_vendor_id(d->dev.config, PCI_VENDOR_ID_INTEL);
215
    pci_config_set_device_id(d->dev.config, PCI_DEVICE_ID_INTEL_82441);
216
    d->dev.config[0x08] = 0x02; // revision
217
    pci_config_set_class(d->dev.config, PCI_CLASS_BRIDGE_HOST);
218

    
219
    d->dev.config[I440FX_SMRAM] = 0x02;
220

    
221
    cpu_smm_register(&i440fx_set_smm, d);
222
    return 0;
223
}
224

    
225
PCIBus *i440fx_init(PCII440FXState **pi440fx_state, int *piix3_devfn, qemu_irq *pic, ram_addr_t ram_size)
226
{
227
    DeviceState *dev;
228
    PCIBus *b;
229
    PCIDevice *d;
230
    I440FXState *s;
231
    PIIX3State *piix3;
232

    
233
    dev = qdev_create(NULL, "i440FX-pcihost");
234
    s = FROM_SYSBUS(I440FXState, sysbus_from_qdev(dev));
235
    b = pci_bus_new(&s->busdev.qdev, NULL, 0);
236
    s->bus = b;
237
    qdev_init_nofail(dev);
238

    
239
    d = pci_create_simple(b, 0, "i440FX");
240
    *pi440fx_state = DO_UPCAST(PCII440FXState, dev, d);
241

    
242
    piix3 = DO_UPCAST(PIIX3State, dev,
243
                      pci_create_simple_multifunction(b, -1, true, "PIIX3"));
244
    piix3->pic = pic;
245
    pci_bus_irqs(b, piix3_set_irq, pci_slot_get_pirq, piix3, PIIX_NUM_PIRQS);
246
    (*pi440fx_state)->piix3 = piix3;
247

    
248
    *piix3_devfn = piix3->dev.devfn;
249

    
250
    ram_size = ram_size / 8 / 1024 / 1024;
251
    if (ram_size > 255)
252
        ram_size = 255;
253
    (*pi440fx_state)->dev.config[0x57]=ram_size;
254

    
255
    return b;
256
}
257

    
258
/* PIIX3 PCI to ISA bridge */
259

    
260
static void piix3_set_irq(void *opaque, int irq_num, int level)
261
{
262
    int i, pic_irq, pic_level;
263
    PIIX3State *piix3 = opaque;
264

    
265
    /* now we change the pic irq level according to the piix irq mappings */
266
    /* XXX: optimize */
267
    pic_irq = piix3->dev.config[0x60 + irq_num];
268
    if (pic_irq < 16) {
269
        /* The pic level is the logical OR of all the PCI irqs mapped
270
           to it */
271
        pic_level = 0;
272
        for (i = 0; i < 4; i++) {
273
            if (pic_irq == piix3->dev.config[0x60 + i]) {
274
                pic_level |= pci_bus_get_irq_level(piix3->dev.bus, i);
275
            }
276
        }
277
        qemu_set_irq(piix3->pic[pic_irq], pic_level);
278
    }
279
}
280

    
281
static void piix3_reset(void *opaque)
282
{
283
    PIIX3State *d = opaque;
284
    uint8_t *pci_conf = d->dev.config;
285

    
286
    pci_conf[0x04] = 0x07; // master, memory and I/O
287
    pci_conf[0x05] = 0x00;
288
    pci_conf[0x06] = 0x00;
289
    pci_conf[0x07] = 0x02; // PCI_status_devsel_medium
290
    pci_conf[0x4c] = 0x4d;
291
    pci_conf[0x4e] = 0x03;
292
    pci_conf[0x4f] = 0x00;
293
    pci_conf[0x60] = 0x80;
294
    pci_conf[0x61] = 0x80;
295
    pci_conf[0x62] = 0x80;
296
    pci_conf[0x63] = 0x80;
297
    pci_conf[0x69] = 0x02;
298
    pci_conf[0x70] = 0x80;
299
    pci_conf[0x76] = 0x0c;
300
    pci_conf[0x77] = 0x0c;
301
    pci_conf[0x78] = 0x02;
302
    pci_conf[0x79] = 0x00;
303
    pci_conf[0x80] = 0x00;
304
    pci_conf[0x82] = 0x00;
305
    pci_conf[0xa0] = 0x08;
306
    pci_conf[0xa2] = 0x00;
307
    pci_conf[0xa3] = 0x00;
308
    pci_conf[0xa4] = 0x00;
309
    pci_conf[0xa5] = 0x00;
310
    pci_conf[0xa6] = 0x00;
311
    pci_conf[0xa7] = 0x00;
312
    pci_conf[0xa8] = 0x0f;
313
    pci_conf[0xaa] = 0x00;
314
    pci_conf[0xab] = 0x00;
315
    pci_conf[0xac] = 0x00;
316
    pci_conf[0xae] = 0x00;
317
}
318

    
319
static void piix3_pre_save(void *opaque)
320
{
321
    int i;
322
    PIIX3State *piix3 = opaque;
323

    
324
    for (i = 0; i < ARRAY_SIZE(piix3->pci_irq_levels_vmstate); i++) {
325
        piix3->pci_irq_levels_vmstate[i] =
326
            pci_bus_get_irq_level(piix3->dev.bus, i);
327
    }
328
}
329

    
330
static const VMStateDescription vmstate_piix3 = {
331
    .name = "PIIX3",
332
    .version_id = 3,
333
    .minimum_version_id = 2,
334
    .minimum_version_id_old = 2,
335
    .pre_save = piix3_pre_save,
336
    .fields      = (VMStateField []) {
337
        VMSTATE_PCI_DEVICE(dev, PIIX3State),
338
        VMSTATE_INT32_ARRAY_V(pci_irq_levels_vmstate, PIIX3State,
339
                              PIIX_NUM_PIRQS, 3),
340
        VMSTATE_END_OF_LIST()
341
    }
342
};
343

    
344
static int piix3_initfn(PCIDevice *dev)
345
{
346
    PIIX3State *d = DO_UPCAST(PIIX3State, dev, dev);
347
    uint8_t *pci_conf;
348

    
349
    isa_bus_new(&d->dev.qdev);
350

    
351
    pci_conf = d->dev.config;
352
    pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL);
353
    pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82371SB_0); // 82371SB PIIX3 PCI-to-ISA bridge (Step A1)
354
    pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_ISA);
355

    
356
    qemu_register_reset(piix3_reset, d);
357
    return 0;
358
}
359

    
360
static PCIDeviceInfo i440fx_info[] = {
361
    {
362
        .qdev.name    = "i440FX",
363
        .qdev.desc    = "Host bridge",
364
        .qdev.size    = sizeof(PCII440FXState),
365
        .qdev.vmsd    = &vmstate_i440fx,
366
        .qdev.no_user = 1,
367
        .no_hotplug   = 1,
368
        .init         = i440fx_initfn,
369
        .config_write = i440fx_write_config,
370
    },{
371
        .qdev.name    = "PIIX3",
372
        .qdev.desc    = "ISA bridge",
373
        .qdev.size    = sizeof(PIIX3State),
374
        .qdev.vmsd    = &vmstate_piix3,
375
        .qdev.no_user = 1,
376
        .no_hotplug   = 1,
377
        .init         = piix3_initfn,
378
    },{
379
        /* end of list */
380
    }
381
};
382

    
383
static SysBusDeviceInfo i440fx_pcihost_info = {
384
    .init         = i440fx_pcihost_initfn,
385
    .qdev.name    = "i440FX-pcihost",
386
    .qdev.fw_name = "pci",
387
    .qdev.size    = sizeof(I440FXState),
388
    .qdev.no_user = 1,
389
};
390

    
391
static void i440fx_register(void)
392
{
393
    sysbus_register_withprop(&i440fx_pcihost_info);
394
    pci_qdev_register_many(i440fx_info);
395
}
396
device_init(i440fx_register);