2 * QEMU PowerPC 405 evaluation boards emulation
4 * Copyright (c) 2007 Jocelyn Mayer
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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
25 #include "qemu/osdep.h"
26 #include "qemu/units.h"
27 #include "qapi/error.h"
28 #include "qemu-common.h"
29 #include "qemu/datadir.h"
31 #include "hw/ppc/ppc.h"
32 #include "hw/qdev-properties.h"
33 #include "hw/sysbus.h"
35 #include "hw/rtc/m48t59.h"
36 #include "hw/block/flash.h"
37 #include "sysemu/qtest.h"
38 #include "sysemu/reset.h"
39 #include "sysemu/block-backend.h"
40 #include "hw/boards.h"
41 #include "qemu/error-report.h"
42 #include "hw/loader.h"
43 #include "qemu/cutils.h"
45 #define BIOS_FILENAME "ppc405_rom.bin"
46 #define BIOS_SIZE (2 * MiB)
48 #define KERNEL_LOAD_ADDR 0x00000000
49 #define INITRD_LOAD_ADDR 0x01800000
51 #define USE_FLASH_BIOS
53 /*****************************************************************************/
54 /* PPC405EP reference board (IBM) */
55 /* Standalone board with:
57 * - SDRAM (0x00000000)
58 * - Flash (0xFFF80000)
60 * - NVRAM (0xF0000000)
63 typedef struct ref405ep_fpga_t ref405ep_fpga_t
;
64 struct ref405ep_fpga_t
{
69 static uint64_t ref405ep_fpga_readb(void *opaque
, hwaddr addr
, unsigned size
)
71 ref405ep_fpga_t
*fpga
;
90 static void ref405ep_fpga_writeb(void *opaque
, hwaddr addr
, uint64_t value
,
93 ref405ep_fpga_t
*fpga
;
108 static const MemoryRegionOps ref405ep_fpga_ops
= {
109 .read
= ref405ep_fpga_readb
,
110 .write
= ref405ep_fpga_writeb
,
111 .impl
.min_access_size
= 1,
112 .impl
.max_access_size
= 1,
113 .valid
.min_access_size
= 1,
114 .valid
.max_access_size
= 4,
115 .endianness
= DEVICE_BIG_ENDIAN
,
118 static void ref405ep_fpga_reset (void *opaque
)
120 ref405ep_fpga_t
*fpga
;
127 static void ref405ep_fpga_init(MemoryRegion
*sysmem
, uint32_t base
)
129 ref405ep_fpga_t
*fpga
;
130 MemoryRegion
*fpga_memory
= g_new(MemoryRegion
, 1);
132 fpga
= g_malloc0(sizeof(ref405ep_fpga_t
));
133 memory_region_init_io(fpga_memory
, NULL
, &ref405ep_fpga_ops
, fpga
,
135 memory_region_add_subregion(sysmem
, base
, fpga_memory
);
136 qemu_register_reset(&ref405ep_fpga_reset
, fpga
);
139 static void ref405ep_init(MachineState
*machine
)
141 MachineClass
*mc
= MACHINE_GET_CLASS(machine
);
142 const char *bios_name
= machine
->firmware
?: BIOS_FILENAME
;
143 const char *kernel_filename
= machine
->kernel_filename
;
144 const char *kernel_cmdline
= machine
->kernel_cmdline
;
145 const char *initrd_filename
= machine
->initrd_filename
;
152 MemoryRegion
*sram
= g_new(MemoryRegion
, 1);
154 MemoryRegion
*ram_memories
= g_new(MemoryRegion
, 2);
155 hwaddr ram_bases
[2], ram_sizes
[2];
156 target_ulong sram_size
;
159 //static int phy_addr = 1;
160 target_ulong kernel_base
, initrd_base
;
161 long kernel_size
, initrd_size
;
165 MemoryRegion
*sysmem
= get_system_memory();
168 if (machine
->ram_size
!= mc
->default_ram_size
) {
169 char *sz
= size_to_str(mc
->default_ram_size
);
170 error_report("Invalid RAM size, should be %s", sz
);
176 memory_region_init_alias(&ram_memories
[0], NULL
, "ef405ep.ram.alias",
177 machine
->ram
, 0, machine
->ram_size
);
179 ram_sizes
[0] = machine
->ram_size
;
180 memory_region_init(&ram_memories
[1], NULL
, "ef405ep.ram1", 0);
181 ram_bases
[1] = 0x00000000;
182 ram_sizes
[1] = 0x00000000;
183 env
= ppc405ep_init(sysmem
, ram_memories
, ram_bases
, ram_sizes
,
184 33333333, &uicdev
, kernel_filename
== NULL
? 0 : 1);
186 sram_size
= 512 * KiB
;
187 memory_region_init_ram(sram
, NULL
, "ef405ep.sram", sram_size
,
189 memory_region_add_subregion(sysmem
, 0xFFF00000, sram
);
190 /* allocate and load BIOS */
191 #ifdef USE_FLASH_BIOS
192 dinfo
= drive_get(IF_PFLASH
, 0, 0);
195 pflash_cfi02_register((uint32_t)(-bios_size
),
196 "ef405ep.bios", bios_size
,
197 blk_by_legacy_dinfo(dinfo
),
199 2, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
204 bios
= g_new(MemoryRegion
, 1);
205 memory_region_init_rom(bios
, NULL
, "ef405ep.bios", BIOS_SIZE
,
208 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
210 bios_size
= load_image_size(filename
,
211 memory_region_get_ram_ptr(bios
),
215 error_report("Could not load PowerPC BIOS '%s'", bios_name
);
218 bios_size
= (bios_size
+ 0xfff) & ~0xfff;
219 memory_region_add_subregion(sysmem
, (uint32_t)(-bios_size
), bios
);
220 } else if (!qtest_enabled() || kernel_filename
!= NULL
) {
221 error_report("Could not load PowerPC BIOS '%s'", bios_name
);
224 /* Avoid an uninitialized variable warning */
229 ref405ep_fpga_init(sysmem
, 0xF0300000);
231 dev
= qdev_new("sysbus-m48t08");
232 qdev_prop_set_int32(dev
, "base-year", 1968);
233 s
= SYS_BUS_DEVICE(dev
);
234 sysbus_realize_and_unref(s
, &error_fatal
);
235 sysbus_mmio_map(s
, 0, 0xF0000000);
237 linux_boot
= (kernel_filename
!= NULL
);
239 memset(&bd
, 0, sizeof(bd
));
240 bd
.bi_memstart
= 0x00000000;
241 bd
.bi_memsize
= machine
->ram_size
;
242 bd
.bi_flashstart
= -bios_size
;
243 bd
.bi_flashsize
= -bios_size
;
244 bd
.bi_flashoffset
= 0;
245 bd
.bi_sramstart
= 0xFFF00000;
246 bd
.bi_sramsize
= sram_size
;
248 bd
.bi_intfreq
= 133333333;
249 bd
.bi_busfreq
= 33333333;
250 bd
.bi_baudrate
= 115200;
251 bd
.bi_s_version
[0] = 'Q';
252 bd
.bi_s_version
[1] = 'M';
253 bd
.bi_s_version
[2] = 'U';
254 bd
.bi_s_version
[3] = '\0';
255 bd
.bi_r_version
[0] = 'Q';
256 bd
.bi_r_version
[1] = 'E';
257 bd
.bi_r_version
[2] = 'M';
258 bd
.bi_r_version
[3] = 'U';
259 bd
.bi_r_version
[4] = '\0';
260 bd
.bi_procfreq
= 133333333;
261 bd
.bi_plb_busfreq
= 33333333;
262 bd
.bi_pci_busfreq
= 33333333;
263 bd
.bi_opbfreq
= 33333333;
264 bdloc
= ppc405_set_bootinfo(env
, &bd
, 0x00000001);
266 kernel_base
= KERNEL_LOAD_ADDR
;
267 /* now we can load the kernel */
268 kernel_size
= load_image_targphys(kernel_filename
, kernel_base
,
269 machine
->ram_size
- kernel_base
);
270 if (kernel_size
< 0) {
271 error_report("could not load kernel '%s'", kernel_filename
);
274 printf("Load kernel size %ld at " TARGET_FMT_lx
,
275 kernel_size
, kernel_base
);
277 if (initrd_filename
) {
278 initrd_base
= INITRD_LOAD_ADDR
;
279 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
280 machine
->ram_size
- initrd_base
);
281 if (initrd_size
< 0) {
282 error_report("could not load initial ram disk '%s'",
290 env
->gpr
[4] = initrd_base
;
291 env
->gpr
[5] = initrd_size
;
292 if (kernel_cmdline
!= NULL
) {
293 len
= strlen(kernel_cmdline
);
294 bdloc
-= ((len
+ 255) & ~255);
295 cpu_physical_memory_write(bdloc
, kernel_cmdline
, len
+ 1);
297 env
->gpr
[7] = bdloc
+ len
;
302 env
->nip
= KERNEL_LOAD_ADDR
;
312 static void ref405ep_class_init(ObjectClass
*oc
, void *data
)
314 MachineClass
*mc
= MACHINE_CLASS(oc
);
316 mc
->desc
= "ref405ep";
317 mc
->init
= ref405ep_init
;
318 mc
->default_ram_size
= 0x08000000;
319 mc
->default_ram_id
= "ef405ep.ram";
322 static const TypeInfo ref405ep_type
= {
323 .name
= MACHINE_TYPE_NAME("ref405ep"),
324 .parent
= TYPE_MACHINE
,
325 .class_init
= ref405ep_class_init
,
328 /*****************************************************************************/
329 /* AMCC Taihu evaluation board */
330 /* - PowerPC 405EP processor
331 * - SDRAM 128 MB at 0x00000000
332 * - Boot flash 2 MB at 0xFFE00000
333 * - Application flash 32 MB at 0xFC000000
336 * - 1 USB 1.1 device 0x50000000
337 * - 1 LCD display 0x50100000
338 * - 1 CPLD 0x50100000
340 * - 1 I2C thermal sensor
342 * - bit-bang SPI port using GPIOs
343 * - 1 EBC interface connector 0 0x50200000
344 * - 1 cardbus controller + expansion slot.
345 * - 1 PCI expansion slot.
347 typedef struct taihu_cpld_t taihu_cpld_t
;
348 struct taihu_cpld_t
{
353 static uint64_t taihu_cpld_read(void *opaque
, hwaddr addr
, unsigned size
)
374 static void taihu_cpld_write(void *opaque
, hwaddr addr
,
375 uint64_t value
, unsigned size
)
392 static const MemoryRegionOps taihu_cpld_ops
= {
393 .read
= taihu_cpld_read
,
394 .write
= taihu_cpld_write
,
396 .min_access_size
= 1,
397 .max_access_size
= 1,
399 .endianness
= DEVICE_NATIVE_ENDIAN
,
402 static void taihu_cpld_reset (void *opaque
)
411 static void taihu_cpld_init(MemoryRegion
*sysmem
, uint32_t base
)
414 MemoryRegion
*cpld_memory
= g_new(MemoryRegion
, 1);
416 cpld
= g_malloc0(sizeof(taihu_cpld_t
));
417 memory_region_init_io(cpld_memory
, NULL
, &taihu_cpld_ops
, cpld
, "cpld", 0x100);
418 memory_region_add_subregion(sysmem
, base
, cpld_memory
);
419 qemu_register_reset(&taihu_cpld_reset
, cpld
);
422 static void taihu_405ep_init(MachineState
*machine
)
424 MachineClass
*mc
= MACHINE_GET_CLASS(machine
);
425 const char *bios_name
= machine
->firmware
?: BIOS_FILENAME
;
426 const char *kernel_filename
= machine
->kernel_filename
;
427 const char *initrd_filename
= machine
->initrd_filename
;
429 MemoryRegion
*sysmem
= get_system_memory();
431 MemoryRegion
*ram_memories
= g_new(MemoryRegion
, 2);
432 hwaddr ram_bases
[2], ram_sizes
[2];
434 target_ulong kernel_base
, initrd_base
;
435 long kernel_size
, initrd_size
;
441 if (machine
->ram_size
!= mc
->default_ram_size
) {
442 char *sz
= size_to_str(mc
->default_ram_size
);
443 error_report("Invalid RAM size, should be %s", sz
);
449 ram_sizes
[0] = 0x04000000;
450 memory_region_init_alias(&ram_memories
[0], NULL
,
451 "taihu_405ep.ram-0", machine
->ram
, ram_bases
[0],
453 ram_bases
[1] = 0x04000000;
454 ram_sizes
[1] = 0x04000000;
455 memory_region_init_alias(&ram_memories
[1], NULL
,
456 "taihu_405ep.ram-1", machine
->ram
, ram_bases
[1],
458 ppc405ep_init(sysmem
, ram_memories
, ram_bases
, ram_sizes
,
459 33333333, &uicdev
, kernel_filename
== NULL
? 0 : 1);
460 /* allocate and load BIOS */
462 #if defined(USE_FLASH_BIOS)
463 dinfo
= drive_get(IF_PFLASH
, 0, fl_idx
);
466 pflash_cfi02_register(0xFFE00000,
467 "taihu_405ep.bios", bios_size
,
468 blk_by_legacy_dinfo(dinfo
),
470 4, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
476 bios
= g_new(MemoryRegion
, 1);
477 memory_region_init_rom(bios
, NULL
, "taihu_405ep.bios", BIOS_SIZE
,
479 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
481 bios_size
= load_image_size(filename
,
482 memory_region_get_ram_ptr(bios
),
486 error_report("Could not load PowerPC BIOS '%s'", bios_name
);
489 bios_size
= (bios_size
+ 0xfff) & ~0xfff;
490 memory_region_add_subregion(sysmem
, (uint32_t)(-bios_size
), bios
);
491 } else if (!qtest_enabled()) {
492 error_report("Could not load PowerPC BIOS '%s'", bios_name
);
496 /* Register Linux flash */
497 dinfo
= drive_get(IF_PFLASH
, 0, fl_idx
);
499 bios_size
= 32 * MiB
;
500 pflash_cfi02_register(0xfc000000, "taihu_405ep.flash", bios_size
,
501 blk_by_legacy_dinfo(dinfo
),
503 4, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
507 /* Register CLPD & LCD display */
508 taihu_cpld_init(sysmem
, 0x50100000);
510 linux_boot
= (kernel_filename
!= NULL
);
512 kernel_base
= KERNEL_LOAD_ADDR
;
513 /* now we can load the kernel */
514 kernel_size
= load_image_targphys(kernel_filename
, kernel_base
,
515 machine
->ram_size
- kernel_base
);
516 if (kernel_size
< 0) {
517 error_report("could not load kernel '%s'", kernel_filename
);
521 if (initrd_filename
) {
522 initrd_base
= INITRD_LOAD_ADDR
;
523 initrd_size
= load_image_targphys(initrd_filename
, initrd_base
,
524 machine
->ram_size
- initrd_base
);
525 if (initrd_size
< 0) {
526 error_report("could not load initial ram disk '%s'",
542 static void taihu_class_init(ObjectClass
*oc
, void *data
)
544 MachineClass
*mc
= MACHINE_CLASS(oc
);
547 mc
->init
= taihu_405ep_init
;
548 mc
->default_ram_size
= 0x08000000;
549 mc
->default_ram_id
= "taihu_405ep.ram";
552 static const TypeInfo taihu_type
= {
553 .name
= MACHINE_TYPE_NAME("taihu"),
554 .parent
= TYPE_MACHINE
,
555 .class_init
= taihu_class_init
,
558 static void ppc405_machine_init(void)
560 type_register_static(&ref405ep_type
);
561 type_register_static(&taihu_type
);
564 type_init(ppc405_machine_init
)