Statistics
| Branch: | Revision:

root / hw / pc_piix.c @ 738012be

History | View | Annotate | Download (9.8 kB)

1
/*
2
 * QEMU PC System Emulator
3
 *
4
 * Copyright (c) 2003-2004 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 "apic.h"
28
#include "pci.h"
29
#include "usb-uhci.h"
30
#include "usb-ohci.h"
31
#include "net.h"
32
#include "boards.h"
33
#include "ide.h"
34
#include "kvm.h"
35
#include "sysemu.h"
36
#include "sysbus.h"
37

    
38
#define MAX_IDE_BUS 2
39

    
40
static const int ide_iobase[MAX_IDE_BUS] = { 0x1f0, 0x170 };
41
static const int ide_iobase2[MAX_IDE_BUS] = { 0x3f6, 0x376 };
42
static const int ide_irq[MAX_IDE_BUS] = { 14, 15 };
43

    
44
static void ioapic_init(IsaIrqState *isa_irq_state)
45
{
46
    DeviceState *dev;
47
    SysBusDevice *d;
48
    unsigned int i;
49

    
50
    dev = qdev_create(NULL, "ioapic");
51
    qdev_init_nofail(dev);
52
    d = sysbus_from_qdev(dev);
53
    sysbus_mmio_map(d, 0, 0xfec00000);
54

    
55
    for (i = 0; i < IOAPIC_NUM_PINS; i++) {
56
        isa_irq_state->ioapic[i] = qdev_get_gpio_in(dev, i);
57
    }
58
}
59

    
60
/* PC hardware initialisation */
61
static void pc_init1(ram_addr_t ram_size,
62
                     const char *boot_device,
63
                     const char *kernel_filename,
64
                     const char *kernel_cmdline,
65
                     const char *initrd_filename,
66
                     const char *cpu_model,
67
                     int pci_enabled)
68
{
69
    int i;
70
    ram_addr_t below_4g_mem_size, above_4g_mem_size;
71
    PCIBus *pci_bus;
72
    PCII440FXState *i440fx_state;
73
    int piix3_devfn = -1;
74
    qemu_irq *cpu_irq;
75
    qemu_irq *isa_irq;
76
    qemu_irq *i8259;
77
    qemu_irq *cmos_s3;
78
    qemu_irq *smi_irq;
79
    IsaIrqState *isa_irq_state;
80
    DriveInfo *hd[MAX_IDE_BUS * MAX_IDE_DEVS];
81
    FDCtrl *floppy_controller;
82
    ISADevice *rtc_state;
83

    
84
    pc_cpus_init(cpu_model);
85

    
86
    vmport_init();
87

    
88
    /* allocate ram and load rom/bios */
89
    pc_memory_init(ram_size, kernel_filename, kernel_cmdline, initrd_filename,
90
                   &below_4g_mem_size, &above_4g_mem_size);
91

    
92
    cpu_irq = pc_allocate_cpu_irq();
93
    i8259 = i8259_init(cpu_irq[0]);
94
    isa_irq_state = qemu_mallocz(sizeof(*isa_irq_state));
95
    isa_irq_state->i8259 = i8259;
96
    if (pci_enabled) {
97
        ioapic_init(isa_irq_state);
98
    }
99
    isa_irq = qemu_allocate_irqs(isa_irq_handler, isa_irq_state, 24);
100

    
101
    if (pci_enabled) {
102
        pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, isa_irq, ram_size);
103
    } else {
104
        pci_bus = NULL;
105
        isa_bus_new(NULL);
106
    }
107
    isa_bus_irqs(isa_irq);
108

    
109
    pc_register_ferr_irq(isa_reserve_irq(13));
110

    
111
    pc_vga_init(pci_enabled? pci_bus: NULL);
112

    
113
    /* init basic PC hardware */
114
    pc_basic_device_init(isa_irq, &floppy_controller, &rtc_state);
115

    
116
    for(i = 0; i < nb_nics; i++) {
117
        NICInfo *nd = &nd_table[i];
118

    
119
        if (!pci_enabled || (nd->model && strcmp(nd->model, "ne2k_isa") == 0))
120
            pc_init_ne2k_isa(nd);
121
        else
122
            pci_nic_init_nofail(nd, "e1000", NULL);
123
    }
124

    
125
    if (drive_get_max_bus(IF_IDE) >= MAX_IDE_BUS) {
126
        fprintf(stderr, "qemu: too many IDE bus\n");
127
        exit(1);
128
    }
129

    
130
    for(i = 0; i < MAX_IDE_BUS * MAX_IDE_DEVS; i++) {
131
        hd[i] = drive_get(IF_IDE, i / MAX_IDE_DEVS, i % MAX_IDE_DEVS);
132
    }
133

    
134
    if (pci_enabled) {
135
        pci_piix3_ide_init(pci_bus, hd, piix3_devfn + 1);
136
    } else {
137
        for(i = 0; i < MAX_IDE_BUS; i++) {
138
            isa_ide_init(ide_iobase[i], ide_iobase2[i], ide_irq[i],
139
                         hd[MAX_IDE_DEVS * i], hd[MAX_IDE_DEVS * i + 1]);
140
        }
141
    }
142

    
143
    pc_audio_init(pci_enabled ? pci_bus : NULL, isa_irq);
144

    
145
    pc_cmos_init(below_4g_mem_size, above_4g_mem_size, boot_device, hd,
146
                 floppy_controller, rtc_state);
147

    
148
    if (pci_enabled && usb_enabled) {
149
        usb_uhci_piix3_init(pci_bus, piix3_devfn + 2);
150
    }
151

    
152
    if (pci_enabled && acpi_enabled) {
153
        uint8_t *eeprom_buf = qemu_mallocz(8 * 256); /* XXX: make this persistent */
154
        i2c_bus *smbus;
155

    
156
        cmos_s3 = qemu_allocate_irqs(pc_cmos_set_s3_resume, rtc_state, 1);
157
        smi_irq = qemu_allocate_irqs(pc_acpi_smi_interrupt, first_cpu, 1);
158
        /* TODO: Populate SPD eeprom data.  */
159
        smbus = piix4_pm_init(pci_bus, piix3_devfn + 3, 0xb100,
160
                              isa_reserve_irq(9), *cmos_s3, *smi_irq,
161
                              kvm_enabled());
162
        for (i = 0; i < 8; i++) {
163
            DeviceState *eeprom;
164
            eeprom = qdev_create((BusState *)smbus, "smbus-eeprom");
165
            qdev_prop_set_uint8(eeprom, "address", 0x50 + i);
166
            qdev_prop_set_ptr(eeprom, "data", eeprom_buf + (i * 256));
167
            qdev_init_nofail(eeprom);
168
        }
169
    }
170

    
171
    if (i440fx_state) {
172
        i440fx_init_memory_mappings(i440fx_state);
173
    }
174

    
175
    if (pci_enabled) {
176
        pc_pci_device_init(pci_bus);
177
    }
178
}
179

    
180
static void pc_init_pci(ram_addr_t ram_size,
181
                        const char *boot_device,
182
                        const char *kernel_filename,
183
                        const char *kernel_cmdline,
184
                        const char *initrd_filename,
185
                        const char *cpu_model)
186
{
187
    pc_init1(ram_size, boot_device,
188
             kernel_filename, kernel_cmdline,
189
             initrd_filename, cpu_model, 1);
190
}
191

    
192
static void pc_init_isa(ram_addr_t ram_size,
193
                        const char *boot_device,
194
                        const char *kernel_filename,
195
                        const char *kernel_cmdline,
196
                        const char *initrd_filename,
197
                        const char *cpu_model)
198
{
199
    if (cpu_model == NULL)
200
        cpu_model = "486";
201
    pc_init1(ram_size, boot_device,
202
             kernel_filename, kernel_cmdline,
203
             initrd_filename, cpu_model, 0);
204
}
205

    
206
static QEMUMachine pc_machine = {
207
    .name = "pc-0.13",
208
    .alias = "pc",
209
    .desc = "Standard PC",
210
    .init = pc_init_pci,
211
    .max_cpus = 255,
212
    .is_default = 1,
213
};
214

    
215
static QEMUMachine pc_machine_v0_12 = {
216
    .name = "pc-0.12",
217
    .desc = "Standard PC",
218
    .init = pc_init_pci,
219
    .max_cpus = 255,
220
    .compat_props = (GlobalProperty[]) {
221
        {
222
            .driver   = "virtio-serial-pci",
223
            .property = "max_nr_ports",
224
            .value    = stringify(1),
225
        },{
226
            .driver   = "virtio-serial-pci",
227
            .property = "vectors",
228
            .value    = stringify(0),
229
        },
230
        { /* end of list */ }
231
    }
232
};
233

    
234
static QEMUMachine pc_machine_v0_11 = {
235
    .name = "pc-0.11",
236
    .desc = "Standard PC, qemu 0.11",
237
    .init = pc_init_pci,
238
    .max_cpus = 255,
239
    .compat_props = (GlobalProperty[]) {
240
        {
241
            .driver   = "virtio-blk-pci",
242
            .property = "vectors",
243
            .value    = stringify(0),
244
        },{
245
            .driver   = "virtio-serial-pci",
246
            .property = "max_nr_ports",
247
            .value    = stringify(1),
248
        },{
249
            .driver   = "virtio-serial-pci",
250
            .property = "vectors",
251
            .value    = stringify(0),
252
        },{
253
            .driver   = "ide-drive",
254
            .property = "ver",
255
            .value    = "0.11",
256
        },{
257
            .driver   = "scsi-disk",
258
            .property = "ver",
259
            .value    = "0.11",
260
        },{
261
            .driver   = "PCI",
262
            .property = "rombar",
263
            .value    = stringify(0),
264
        },
265
        { /* end of list */ }
266
    }
267
};
268

    
269
static QEMUMachine pc_machine_v0_10 = {
270
    .name = "pc-0.10",
271
    .desc = "Standard PC, qemu 0.10",
272
    .init = pc_init_pci,
273
    .max_cpus = 255,
274
    .compat_props = (GlobalProperty[]) {
275
        {
276
            .driver   = "virtio-blk-pci",
277
            .property = "class",
278
            .value    = stringify(PCI_CLASS_STORAGE_OTHER),
279
        },{
280
            .driver   = "virtio-serial-pci",
281
            .property = "class",
282
            .value    = stringify(PCI_CLASS_DISPLAY_OTHER),
283
        },{
284
            .driver   = "virtio-serial-pci",
285
            .property = "max_nr_ports",
286
            .value    = stringify(1),
287
        },{
288
            .driver   = "virtio-serial-pci",
289
            .property = "vectors",
290
            .value    = stringify(0),
291
        },{
292
            .driver   = "virtio-net-pci",
293
            .property = "vectors",
294
            .value    = stringify(0),
295
        },{
296
            .driver   = "virtio-blk-pci",
297
            .property = "vectors",
298
            .value    = stringify(0),
299
        },{
300
            .driver   = "ide-drive",
301
            .property = "ver",
302
            .value    = "0.10",
303
        },{
304
            .driver   = "scsi-disk",
305
            .property = "ver",
306
            .value    = "0.10",
307
        },{
308
            .driver   = "PCI",
309
            .property = "rombar",
310
            .value    = stringify(0),
311
        },
312
        { /* end of list */ }
313
    },
314
};
315

    
316
static QEMUMachine isapc_machine = {
317
    .name = "isapc",
318
    .desc = "ISA-only PC",
319
    .init = pc_init_isa,
320
    .max_cpus = 1,
321
};
322

    
323
static void pc_machine_init(void)
324
{
325
    qemu_register_machine(&pc_machine);
326
    qemu_register_machine(&pc_machine_v0_12);
327
    qemu_register_machine(&pc_machine_v0_11);
328
    qemu_register_machine(&pc_machine_v0_10);
329
    qemu_register_machine(&isapc_machine);
330
}
331

    
332
machine_init(pc_machine_init);