2 * QEMU PPC PREP hardware System Emulator
4 * Copyright (c) 2003-2007 Jocelyn Mayer
5 * Copyright (c) 2017 Hervé Poussineau
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26 #include "qemu/osdep.h"
27 #include "hw/rtc/m48t59.h"
28 #include "hw/char/serial.h"
29 #include "hw/block/fdc.h"
31 #include "hw/isa/isa.h"
32 #include "hw/pci/pci.h"
33 #include "hw/pci/pci_host.h"
34 #include "hw/ppc/ppc.h"
35 #include "hw/boards.h"
36 #include "qapi/error.h"
37 #include "qemu/error-report.h"
39 #include "hw/loader.h"
40 #include "hw/rtc/mc146818rtc.h"
41 #include "hw/isa/pc87312.h"
42 #include "hw/qdev-properties.h"
43 #include "sysemu/kvm.h"
44 #include "sysemu/reset.h"
47 #include "qemu/units.h"
48 #include "audio/audio.h"
50 /* SMP is not enabled, for now */
53 #define CFG_ADDR 0xf0000510
55 #define KERNEL_LOAD_ADDR 0x01000000
56 #define INITRD_LOAD_ADDR 0x01800000
58 #define NVRAM_SIZE 0x2000
60 static void fw_cfg_boot_set(void *opaque
, const char *boot_device
,
63 fw_cfg_modify_i16(opaque
, FW_CFG_BOOT_DEVICE
, boot_device
[0]);
66 static void ppc_prep_reset(void *opaque
)
68 PowerPCCPU
*cpu
= opaque
;
71 cpu_ppc_tb_reset(&cpu
->env
);
75 /*****************************************************************************/
77 static inline uint32_t nvram_read(Nvram
*nvram
, uint32_t addr
)
79 NvramClass
*k
= NVRAM_GET_CLASS(nvram
);
80 return (k
->read
)(nvram
, addr
);
83 static inline void nvram_write(Nvram
*nvram
, uint32_t addr
, uint32_t val
)
85 NvramClass
*k
= NVRAM_GET_CLASS(nvram
);
86 (k
->write
)(nvram
, addr
, val
);
89 static void NVRAM_set_byte(Nvram
*nvram
, uint32_t addr
, uint8_t value
)
91 nvram_write(nvram
, addr
, value
);
94 static uint8_t NVRAM_get_byte(Nvram
*nvram
, uint32_t addr
)
96 return nvram_read(nvram
, addr
);
99 static void NVRAM_set_word(Nvram
*nvram
, uint32_t addr
, uint16_t value
)
101 nvram_write(nvram
, addr
, value
>> 8);
102 nvram_write(nvram
, addr
+ 1, value
& 0xFF);
105 static uint16_t NVRAM_get_word(Nvram
*nvram
, uint32_t addr
)
109 tmp
= nvram_read(nvram
, addr
) << 8;
110 tmp
|= nvram_read(nvram
, addr
+ 1);
115 static void NVRAM_set_lword(Nvram
*nvram
, uint32_t addr
, uint32_t value
)
117 nvram_write(nvram
, addr
, value
>> 24);
118 nvram_write(nvram
, addr
+ 1, (value
>> 16) & 0xFF);
119 nvram_write(nvram
, addr
+ 2, (value
>> 8) & 0xFF);
120 nvram_write(nvram
, addr
+ 3, value
& 0xFF);
123 static void NVRAM_set_string(Nvram
*nvram
, uint32_t addr
, const char *str
,
128 for (i
= 0; i
< max
&& str
[i
] != '\0'; i
++) {
129 nvram_write(nvram
, addr
+ i
, str
[i
]);
131 nvram_write(nvram
, addr
+ i
, str
[i
]);
132 nvram_write(nvram
, addr
+ max
- 1, '\0');
135 static uint16_t NVRAM_crc_update (uint16_t prev
, uint16_t value
)
138 uint16_t pd
, pd1
, pd2
;
143 pd2
= ((pd
>> 4) & 0x000F) ^ pd1
;
144 tmp
^= (pd1
<< 3) | (pd1
<< 8);
145 tmp
^= pd2
| (pd2
<< 7) | (pd2
<< 12);
150 static uint16_t NVRAM_compute_crc (Nvram
*nvram
, uint32_t start
, uint32_t count
)
153 uint16_t crc
= 0xFFFF;
158 for (i
= 0; i
!= count
; i
++) {
159 crc
= NVRAM_crc_update(crc
, NVRAM_get_word(nvram
, start
+ i
));
162 crc
= NVRAM_crc_update(crc
, NVRAM_get_byte(nvram
, start
+ i
) << 8);
168 #define CMDLINE_ADDR 0x017ff000
170 static int PPC_NVRAM_set_params (Nvram
*nvram
, uint16_t NVRAM_size
,
172 uint32_t RAM_size
, int boot_device
,
173 uint32_t kernel_image
, uint32_t kernel_size
,
175 uint32_t initrd_image
, uint32_t initrd_size
,
176 uint32_t NVRAM_image
,
177 int width
, int height
, int depth
)
181 /* Set parameters for Open Hack'Ware BIOS */
182 NVRAM_set_string(nvram
, 0x00, "QEMU_BIOS", 16);
183 NVRAM_set_lword(nvram
, 0x10, 0x00000002); /* structure v2 */
184 NVRAM_set_word(nvram
, 0x14, NVRAM_size
);
185 NVRAM_set_string(nvram
, 0x20, arch
, 16);
186 NVRAM_set_lword(nvram
, 0x30, RAM_size
);
187 NVRAM_set_byte(nvram
, 0x34, boot_device
);
188 NVRAM_set_lword(nvram
, 0x38, kernel_image
);
189 NVRAM_set_lword(nvram
, 0x3C, kernel_size
);
191 /* XXX: put the cmdline in NVRAM too ? */
192 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, RAM_size
- CMDLINE_ADDR
,
194 NVRAM_set_lword(nvram
, 0x40, CMDLINE_ADDR
);
195 NVRAM_set_lword(nvram
, 0x44, strlen(cmdline
));
197 NVRAM_set_lword(nvram
, 0x40, 0);
198 NVRAM_set_lword(nvram
, 0x44, 0);
200 NVRAM_set_lword(nvram
, 0x48, initrd_image
);
201 NVRAM_set_lword(nvram
, 0x4C, initrd_size
);
202 NVRAM_set_lword(nvram
, 0x50, NVRAM_image
);
204 NVRAM_set_word(nvram
, 0x54, width
);
205 NVRAM_set_word(nvram
, 0x56, height
);
206 NVRAM_set_word(nvram
, 0x58, depth
);
207 crc
= NVRAM_compute_crc(nvram
, 0x00, 0xF8);
208 NVRAM_set_word(nvram
, 0xFC, crc
);
213 static int prep_set_cmos_checksum(DeviceState
*dev
, void *opaque
)
215 uint16_t checksum
= *(uint16_t *)opaque
;
217 if (object_dynamic_cast(OBJECT(dev
), TYPE_MC146818_RTC
)) {
218 MC146818RtcState
*rtc
= MC146818_RTC(dev
);
219 mc146818rtc_set_cmos_data(rtc
, 0x2e, checksum
& 0xff);
220 mc146818rtc_set_cmos_data(rtc
, 0x3e, checksum
& 0xff);
221 mc146818rtc_set_cmos_data(rtc
, 0x2f, checksum
>> 8);
222 mc146818rtc_set_cmos_data(rtc
, 0x3f, checksum
>> 8);
224 object_property_add_alias(qdev_get_machine(), "rtc-time", OBJECT(rtc
),
230 static void ibm_40p_init(MachineState
*machine
)
232 const char *bios_name
= machine
->firmware
?: "openbios-ppc";
233 MachineClass
*mc
= MACHINE_GET_CLASS(machine
);
234 CPUPPCState
*env
= NULL
;
235 uint16_t cmos_checksum
;
237 DeviceState
*dev
, *i82378_dev
;
238 SysBusDevice
*pcihost
, *s
;
239 Nvram
*m48t59
= NULL
;
245 uint32_t kernel_base
= 0, initrd_base
= 0;
246 long kernel_size
= 0, initrd_size
= 0;
250 error_report("machine %s does not support the KVM accelerator",
251 MACHINE_GET_CLASS(machine
)->name
);
256 cpu
= POWERPC_CPU(cpu_create(machine
->cpu_type
));
258 if (PPC_INPUT(env
) != PPC_FLAGS_INPUT_6xx
) {
259 error_report("only 6xx bus is supported on this machine");
263 /* Set time-base frequency to 100 Mhz */
264 cpu_ppc_tb_init(env
, 100UL * 1000UL * 1000UL);
265 qemu_register_reset(ppc_prep_reset
, cpu
);
268 dev
= qdev_new("raven-pcihost");
269 qdev_prop_set_string(dev
, "bios-name", bios_name
);
270 qdev_prop_set_uint32(dev
, "elf-machine", PPC_ELF_MACHINE
);
271 pcihost
= SYS_BUS_DEVICE(dev
);
272 object_property_add_child(qdev_get_machine(), "raven", OBJECT(dev
));
273 sysbus_realize_and_unref(pcihost
, &error_fatal
);
274 pci_bus
= PCI_BUS(qdev_get_child_bus(dev
, "pci.0"));
276 error_report("could not create PCI host controller");
280 /* PCI -> ISA bridge */
281 i82378_dev
= DEVICE(pci_new(PCI_DEVFN(11, 0), "i82378"));
282 qdev_connect_gpio_out(i82378_dev
, 0,
283 qdev_get_gpio_in(DEVICE(cpu
), PPC6xx_INPUT_INT
));
284 qdev_realize_and_unref(i82378_dev
, BUS(pci_bus
), &error_fatal
);
286 sysbus_connect_irq(pcihost
, 0, qdev_get_gpio_in(i82378_dev
, 15));
287 isa_bus
= ISA_BUS(qdev_get_child_bus(i82378_dev
, "isa.0"));
289 /* Memory controller */
290 isa_dev
= isa_new("rs6000-mc");
291 dev
= DEVICE(isa_dev
);
292 qdev_prop_set_uint32(dev
, "ram-size", machine
->ram_size
);
293 isa_realize_and_unref(isa_dev
, isa_bus
, &error_fatal
);
296 isa_dev
= isa_new(TYPE_MC146818_RTC
);
297 dev
= DEVICE(isa_dev
);
298 qdev_prop_set_int32(dev
, "base_year", 1900);
299 isa_realize_and_unref(isa_dev
, isa_bus
, &error_fatal
);
301 /* initialize CMOS checksums */
302 cmos_checksum
= 0x6aa9;
303 qbus_walk_children(BUS(isa_bus
), prep_set_cmos_checksum
, NULL
, NULL
, NULL
,
306 /* add some more devices */
307 if (defaults_enabled()) {
308 m48t59
= NVRAM(isa_create_simple(isa_bus
, "isa-m48t59"));
310 isa_dev
= isa_new("cs4231a");
311 dev
= DEVICE(isa_dev
);
312 qdev_prop_set_uint32(dev
, "iobase", 0x830);
313 qdev_prop_set_uint32(dev
, "irq", 10);
315 if (machine
->audiodev
) {
316 qdev_prop_set_string(dev
, "audiodev", machine
->audiodev
);
318 isa_realize_and_unref(isa_dev
, isa_bus
, &error_fatal
);
320 isa_dev
= isa_new("pc87312");
321 dev
= DEVICE(isa_dev
);
322 qdev_prop_set_uint32(dev
, "config", 12);
323 isa_realize_and_unref(isa_dev
, isa_bus
, &error_fatal
);
325 isa_dev
= isa_new("prep-systemio");
326 dev
= DEVICE(isa_dev
);
327 qdev_prop_set_uint32(dev
, "ibm-planar-id", 0xfc);
328 qdev_prop_set_uint32(dev
, "equipment", 0xc0);
329 isa_realize_and_unref(isa_dev
, isa_bus
, &error_fatal
);
331 dev
= DEVICE(pci_create_simple(pci_bus
, PCI_DEVFN(1, 0),
333 lsi53c8xx_handle_legacy_cmdline(dev
);
334 qdev_connect_gpio_out(dev
, 0, qdev_get_gpio_in(i82378_dev
, 13));
336 /* XXX: s3-trio at PCI_DEVFN(2, 0) */
337 pci_vga_init(pci_bus
);
339 for (i
= 0; i
< nb_nics
; i
++) {
340 pci_nic_init_nofail(&nd_table
[i
], pci_bus
, mc
->default_nic
,
341 i
== 0 ? "3" : NULL
);
345 /* Prepare firmware configuration for OpenBIOS */
346 dev
= qdev_new(TYPE_FW_CFG_MEM
);
347 fw_cfg
= FW_CFG(dev
);
348 qdev_prop_set_uint32(dev
, "data_width", 1);
349 qdev_prop_set_bit(dev
, "dma_enabled", false);
350 object_property_add_child(OBJECT(qdev_get_machine()), TYPE_FW_CFG
,
352 s
= SYS_BUS_DEVICE(dev
);
353 sysbus_realize_and_unref(s
, &error_fatal
);
354 sysbus_mmio_map(s
, 0, CFG_ADDR
);
355 sysbus_mmio_map(s
, 1, CFG_ADDR
+ 2);
357 if (machine
->kernel_filename
) {
359 kernel_base
= KERNEL_LOAD_ADDR
;
360 kernel_size
= load_image_targphys(machine
->kernel_filename
,
362 machine
->ram_size
- kernel_base
);
363 if (kernel_size
< 0) {
364 error_report("could not load kernel '%s'",
365 machine
->kernel_filename
);
368 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_ADDR
, kernel_base
);
369 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_SIZE
, kernel_size
);
371 if (machine
->initrd_filename
) {
372 initrd_base
= INITRD_LOAD_ADDR
;
373 initrd_size
= load_image_targphys(machine
->initrd_filename
,
375 machine
->ram_size
- initrd_base
);
376 if (initrd_size
< 0) {
377 error_report("could not load initial ram disk '%s'",
378 machine
->initrd_filename
);
381 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_ADDR
, initrd_base
);
382 fw_cfg_add_i32(fw_cfg
, FW_CFG_INITRD_SIZE
, initrd_size
);
384 if (machine
->kernel_cmdline
&& *machine
->kernel_cmdline
) {
385 fw_cfg_add_i32(fw_cfg
, FW_CFG_KERNEL_CMDLINE
, CMDLINE_ADDR
);
386 pstrcpy_targphys("cmdline", CMDLINE_ADDR
, TARGET_PAGE_SIZE
,
387 machine
->kernel_cmdline
);
388 fw_cfg_add_string(fw_cfg
, FW_CFG_CMDLINE_DATA
,
389 machine
->kernel_cmdline
);
390 fw_cfg_add_i32(fw_cfg
, FW_CFG_CMDLINE_SIZE
,
391 strlen(machine
->kernel_cmdline
) + 1);
395 boot_device
= machine
->boot_config
.order
[0];
398 fw_cfg_add_i16(fw_cfg
, FW_CFG_MAX_CPUS
, (uint16_t)machine
->smp
.max_cpus
);
399 fw_cfg_add_i64(fw_cfg
, FW_CFG_RAM_SIZE
, (uint64_t)machine
->ram_size
);
400 fw_cfg_add_i16(fw_cfg
, FW_CFG_MACHINE_ID
, ARCH_PREP
);
402 fw_cfg_add_i16(fw_cfg
, FW_CFG_PPC_WIDTH
, graphic_width
);
403 fw_cfg_add_i16(fw_cfg
, FW_CFG_PPC_HEIGHT
, graphic_height
);
404 fw_cfg_add_i16(fw_cfg
, FW_CFG_PPC_DEPTH
, graphic_depth
);
406 fw_cfg_add_i32(fw_cfg
, FW_CFG_PPC_TBFREQ
, NANOSECONDS_PER_SECOND
);
407 fw_cfg_add_i16(fw_cfg
, FW_CFG_BOOT_DEVICE
, boot_device
);
408 qemu_register_boot_set(fw_cfg_boot_set
, fw_cfg
);
410 /* Prepare firmware configuration for Open Hack'Ware */
412 PPC_NVRAM_set_params(m48t59
, NVRAM_SIZE
, "PREP", machine
->ram_size
,
414 kernel_base
, kernel_size
,
415 machine
->kernel_cmdline
,
416 initrd_base
, initrd_size
,
417 /* XXX: need an option to load a NVRAM image */
419 graphic_width
, graphic_height
, graphic_depth
);
423 static void ibm_40p_machine_init(MachineClass
*mc
)
425 mc
->desc
= "IBM RS/6000 7020 (40p)",
426 mc
->init
= ibm_40p_init
;
428 mc
->default_ram_size
= 128 * MiB
;
429 mc
->block_default_type
= IF_SCSI
;
430 mc
->default_boot_order
= "c";
431 mc
->default_cpu_type
= POWERPC_CPU_TYPE_NAME("604");
432 mc
->default_display
= "std";
433 mc
->default_nic
= "pcnet";
435 machine_add_audiodev_property(mc
);
438 DEFINE_MACHINE("40p", ibm_40p_machine_init
)