]> git.proxmox.com Git - mirror_qemu.git/blame - hw/ppc/ppc405_boards.c
include/qemu/osdep.h: Don't include qapi/error.h
[mirror_qemu.git] / hw / ppc / ppc405_boards.c
CommitLineData
1a6c0886
JM
1/*
2 * QEMU PowerPC 405 evaluation boards emulation
5fafdf24 3 *
1a6c0886 4 * Copyright (c) 2007 Jocelyn Mayer
5fafdf24 5 *
1a6c0886
JM
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 */
0d75590d 24#include "qemu/osdep.h"
da34e65c 25#include "qapi/error.h"
83c9f4ca 26#include "hw/hw.h"
0d09e41a 27#include "hw/ppc/ppc.h"
47b43a1f 28#include "ppc405.h"
0d09e41a
PB
29#include "hw/timer/m48t59.h"
30#include "hw/block/flash.h"
9c17d615 31#include "sysemu/sysemu.h"
ad9990ac 32#include "sysemu/qtest.h"
4be74634 33#include "sysemu/block-backend.h"
83c9f4ca 34#include "hw/boards.h"
1de7afc9 35#include "qemu/log.h"
ad9990ac 36#include "qemu/error-report.h"
83c9f4ca 37#include "hw/loader.h"
fa1d36df 38#include "sysemu/block-backend.h"
9c17d615 39#include "sysemu/blockdev.h"
022c62cb 40#include "exec/address-spaces.h"
1a6c0886
JM
41
42#define BIOS_FILENAME "ppc405_rom.bin"
1a6c0886
JM
43#define BIOS_SIZE (2048 * 1024)
44
45#define KERNEL_LOAD_ADDR 0x00000000
46#define INITRD_LOAD_ADDR 0x01800000
47
48#define USE_FLASH_BIOS
49
bf2ed917 50//#define DEBUG_BOARD_INIT
1a6c0886
JM
51
52/*****************************************************************************/
53/* PPC405EP reference board (IBM) */
54/* Standalone board with:
55 * - PowerPC 405EP CPU
56 * - SDRAM (0x00000000)
57 * - Flash (0xFFF80000)
58 * - SRAM (0xFFF00000)
59 * - NVRAM (0xF0000000)
60 * - FPGA (0xF0300000)
61 */
c227f099
AL
62typedef struct ref405ep_fpga_t ref405ep_fpga_t;
63struct ref405ep_fpga_t {
1a6c0886
JM
64 uint8_t reg0;
65 uint8_t reg1;
66};
67
a8170e5e 68static uint32_t ref405ep_fpga_readb (void *opaque, hwaddr addr)
1a6c0886 69{
c227f099 70 ref405ep_fpga_t *fpga;
1a6c0886
JM
71 uint32_t ret;
72
73 fpga = opaque;
1a6c0886
JM
74 switch (addr) {
75 case 0x0:
76 ret = fpga->reg0;
77 break;
78 case 0x1:
79 ret = fpga->reg1;
80 break;
81 default:
82 ret = 0;
83 break;
84 }
85
86 return ret;
87}
88
89static void ref405ep_fpga_writeb (void *opaque,
a8170e5e 90 hwaddr addr, uint32_t value)
1a6c0886 91{
c227f099 92 ref405ep_fpga_t *fpga;
1a6c0886
JM
93
94 fpga = opaque;
1a6c0886
JM
95 switch (addr) {
96 case 0x0:
97 /* Read only */
98 break;
99 case 0x1:
100 fpga->reg1 = value;
101 break;
102 default:
103 break;
104 }
105}
106
a8170e5e 107static uint32_t ref405ep_fpga_readw (void *opaque, hwaddr addr)
1a6c0886
JM
108{
109 uint32_t ret;
110
111 ret = ref405ep_fpga_readb(opaque, addr) << 8;
112 ret |= ref405ep_fpga_readb(opaque, addr + 1);
113
114 return ret;
115}
116
117static void ref405ep_fpga_writew (void *opaque,
a8170e5e 118 hwaddr addr, uint32_t value)
1a6c0886
JM
119{
120 ref405ep_fpga_writeb(opaque, addr, (value >> 8) & 0xFF);
121 ref405ep_fpga_writeb(opaque, addr + 1, value & 0xFF);
122}
123
a8170e5e 124static uint32_t ref405ep_fpga_readl (void *opaque, hwaddr addr)
1a6c0886
JM
125{
126 uint32_t ret;
127
128 ret = ref405ep_fpga_readb(opaque, addr) << 24;
129 ret |= ref405ep_fpga_readb(opaque, addr + 1) << 16;
130 ret |= ref405ep_fpga_readb(opaque, addr + 2) << 8;
131 ret |= ref405ep_fpga_readb(opaque, addr + 3);
132
133 return ret;
134}
135
136static void ref405ep_fpga_writel (void *opaque,
a8170e5e 137 hwaddr addr, uint32_t value)
1a6c0886 138{
8de24106
AJ
139 ref405ep_fpga_writeb(opaque, addr, (value >> 24) & 0xFF);
140 ref405ep_fpga_writeb(opaque, addr + 1, (value >> 16) & 0xFF);
141 ref405ep_fpga_writeb(opaque, addr + 2, (value >> 8) & 0xFF);
1a6c0886
JM
142 ref405ep_fpga_writeb(opaque, addr + 3, value & 0xFF);
143}
144
a682fd5c
AK
145static const MemoryRegionOps ref405ep_fpga_ops = {
146 .old_mmio = {
147 .read = {
148 ref405ep_fpga_readb, ref405ep_fpga_readw, ref405ep_fpga_readl,
149 },
150 .write = {
151 ref405ep_fpga_writeb, ref405ep_fpga_writew, ref405ep_fpga_writel,
152 },
153 },
154 .endianness = DEVICE_NATIVE_ENDIAN,
1a6c0886
JM
155};
156
157static void ref405ep_fpga_reset (void *opaque)
158{
c227f099 159 ref405ep_fpga_t *fpga;
1a6c0886
JM
160
161 fpga = opaque;
162 fpga->reg0 = 0x00;
163 fpga->reg1 = 0x0F;
164}
165
5f072e1f 166static void ref405ep_fpga_init(MemoryRegion *sysmem, uint32_t base)
1a6c0886 167{
c227f099 168 ref405ep_fpga_t *fpga;
a682fd5c 169 MemoryRegion *fpga_memory = g_new(MemoryRegion, 1);
1a6c0886 170
7267c094 171 fpga = g_malloc0(sizeof(ref405ep_fpga_t));
2c9b15ca 172 memory_region_init_io(fpga_memory, NULL, &ref405ep_fpga_ops, fpga,
a682fd5c
AK
173 "fpga", 0x00000100);
174 memory_region_add_subregion(sysmem, base, fpga_memory);
a08d4367 175 qemu_register_reset(&ref405ep_fpga_reset, fpga);
1a6c0886
JM
176}
177
3ef96221 178static void ref405ep_init(MachineState *machine)
1a6c0886 179{
3ef96221
MA
180 ram_addr_t ram_size = machine->ram_size;
181 const char *kernel_filename = machine->kernel_filename;
182 const char *kernel_cmdline = machine->kernel_cmdline;
183 const char *initrd_filename = machine->initrd_filename;
5cea8590 184 char *filename;
c227f099 185 ppc4xx_bd_info_t bd;
1a6c0886
JM
186 CPUPPCState *env;
187 qemu_irq *pic;
cfe5f011 188 MemoryRegion *bios;
a682fd5c
AK
189 MemoryRegion *sram = g_new(MemoryRegion, 1);
190 ram_addr_t bdloc;
b6dcbe08 191 MemoryRegion *ram_memories = g_malloc(2 * sizeof(*ram_memories));
a8170e5e 192 hwaddr ram_bases[2], ram_sizes[2];
093209cd
BS
193 target_ulong sram_size;
194 long bios_size;
1a6c0886
JM
195 //int phy_addr = 0;
196 //static int phy_addr = 1;
093209cd
BS
197 target_ulong kernel_base, initrd_base;
198 long kernel_size, initrd_size;
1a6c0886
JM
199 int linux_boot;
200 int fl_idx, fl_sectors, len;
751c6a17 201 DriveInfo *dinfo;
a682fd5c 202 MemoryRegion *sysmem = get_system_memory();
1a6c0886
JM
203
204 /* XXX: fix this */
e938ba0c
SP
205 memory_region_allocate_system_memory(&ram_memories[0], NULL, "ef405ep.ram",
206 0x08000000);
b6dcbe08 207 ram_bases[0] = 0;
1a6c0886 208 ram_sizes[0] = 0x08000000;
2c9b15ca 209 memory_region_init(&ram_memories[1], NULL, "ef405ep.ram1", 0);
1a6c0886
JM
210 ram_bases[1] = 0x00000000;
211 ram_sizes[1] = 0x00000000;
212 ram_size = 128 * 1024 * 1024;
213#ifdef DEBUG_BOARD_INIT
214 printf("%s: register cpu\n", __func__);
215#endif
a682fd5c 216 env = ppc405ep_init(sysmem, ram_memories, ram_bases, ram_sizes,
52ce55a1 217 33333333, &pic, kernel_filename == NULL ? 0 : 1);
1a6c0886 218 /* allocate SRAM */
5c130f65 219 sram_size = 512 * 1024;
f8ed85ac
MA
220 memory_region_init_ram(sram, NULL, "ef405ep.sram", sram_size,
221 &error_fatal);
e206ad48 222 vmstate_register_ram_global(sram);
a682fd5c 223 memory_region_add_subregion(sysmem, 0xFFF00000, sram);
1a6c0886
JM
224 /* allocate and load BIOS */
225#ifdef DEBUG_BOARD_INIT
226 printf("%s: register BIOS\n", __func__);
227#endif
1a6c0886
JM
228 fl_idx = 0;
229#ifdef USE_FLASH_BIOS
751c6a17
GH
230 dinfo = drive_get(IF_PFLASH, 0, fl_idx);
231 if (dinfo) {
4be74634 232 BlockBackend *blk = blk_by_legacy_dinfo(dinfo);
fa1d36df 233
4be74634 234 bios_size = blk_getlength(blk);
1a6c0886
JM
235 fl_sectors = (bios_size + 65535) >> 16;
236#ifdef DEBUG_BOARD_INIT
093209cd 237 printf("Register parallel flash %d size %lx"
cfe5f011
AK
238 " at addr %lx '%s' %d\n",
239 fl_idx, bios_size, -bios_size,
4be74634 240 blk_name(blk), fl_sectors);
1a6c0886 241#endif
cfe5f011
AK
242 pflash_cfi02_register((uint32_t)(-bios_size),
243 NULL, "ef405ep.bios", bios_size,
4be74634 244 blk, 65536, fl_sectors, 1,
01e0451a
AL
245 2, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
246 1);
1a6c0886
JM
247 fl_idx++;
248 } else
249#endif
250 {
251#ifdef DEBUG_BOARD_INIT
252 printf("Load BIOS from file\n");
253#endif
cfe5f011 254 bios = g_new(MemoryRegion, 1);
49946538 255 memory_region_init_ram(bios, NULL, "ef405ep.bios", BIOS_SIZE,
f8ed85ac 256 &error_fatal);
e206ad48
HT
257 vmstate_register_ram_global(bios);
258
1192dad8
JM
259 if (bios_name == NULL)
260 bios_name = BIOS_FILENAME;
5cea8590
PB
261 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
262 if (filename) {
cfe5f011 263 bios_size = load_image(filename, memory_region_get_ram_ptr(bios));
7267c094 264 g_free(filename);
ad9990ac
AF
265 if (bios_size < 0 || bios_size > BIOS_SIZE) {
266 error_report("Could not load PowerPC BIOS '%s'", bios_name);
267 exit(1);
268 }
269 bios_size = (bios_size + 0xfff) & ~0xfff;
270 memory_region_add_subregion(sysmem, (uint32_t)(-bios_size), bios);
271 } else if (!qtest_enabled() || kernel_filename != NULL) {
272 error_report("Could not load PowerPC BIOS '%s'", bios_name);
273 exit(1);
5cea8590 274 } else {
ad9990ac 275 /* Avoid an uninitialized variable warning */
5cea8590
PB
276 bios_size = -1;
277 }
cfe5f011 278 memory_region_set_readonly(bios, true);
1a6c0886 279 }
1a6c0886
JM
280 /* Register FPGA */
281#ifdef DEBUG_BOARD_INIT
282 printf("%s: register FPGA\n", __func__);
283#endif
a682fd5c 284 ref405ep_fpga_init(sysmem, 0xF0300000);
1a6c0886
JM
285 /* Register NVRAM */
286#ifdef DEBUG_BOARD_INIT
287 printf("%s: register NVRAM\n", __func__);
288#endif
6de04973 289 m48t59_init(NULL, 0xF0000000, 0, 8192, 1968, 8);
1a6c0886
JM
290 /* Load kernel */
291 linux_boot = (kernel_filename != NULL);
292 if (linux_boot) {
293#ifdef DEBUG_BOARD_INIT
294 printf("%s: load kernel\n", __func__);
295#endif
296 memset(&bd, 0, sizeof(bd));
297 bd.bi_memstart = 0x00000000;
298 bd.bi_memsize = ram_size;
217fae2d 299 bd.bi_flashstart = -bios_size;
1a6c0886
JM
300 bd.bi_flashsize = -bios_size;
301 bd.bi_flashoffset = 0;
302 bd.bi_sramstart = 0xFFF00000;
303 bd.bi_sramsize = sram_size;
304 bd.bi_bootflags = 0;
305 bd.bi_intfreq = 133333333;
306 bd.bi_busfreq = 33333333;
307 bd.bi_baudrate = 115200;
308 bd.bi_s_version[0] = 'Q';
309 bd.bi_s_version[1] = 'M';
310 bd.bi_s_version[2] = 'U';
311 bd.bi_s_version[3] = '\0';
312 bd.bi_r_version[0] = 'Q';
313 bd.bi_r_version[1] = 'E';
314 bd.bi_r_version[2] = 'M';
315 bd.bi_r_version[3] = 'U';
316 bd.bi_r_version[4] = '\0';
317 bd.bi_procfreq = 133333333;
318 bd.bi_plb_busfreq = 33333333;
319 bd.bi_pci_busfreq = 33333333;
320 bd.bi_opbfreq = 33333333;
b8d3f5d1 321 bdloc = ppc405_set_bootinfo(env, &bd, 0x00000001);
1a6c0886
JM
322 env->gpr[3] = bdloc;
323 kernel_base = KERNEL_LOAD_ADDR;
324 /* now we can load the kernel */
5c130f65
PB
325 kernel_size = load_image_targphys(kernel_filename, kernel_base,
326 ram_size - kernel_base);
1a6c0886 327 if (kernel_size < 0) {
5fafdf24 328 fprintf(stderr, "qemu: could not load kernel '%s'\n",
1a6c0886
JM
329 kernel_filename);
330 exit(1);
331 }
093209cd 332 printf("Load kernel size %ld at " TARGET_FMT_lx,
5c130f65 333 kernel_size, kernel_base);
1a6c0886
JM
334 /* load initrd */
335 if (initrd_filename) {
336 initrd_base = INITRD_LOAD_ADDR;
5c130f65
PB
337 initrd_size = load_image_targphys(initrd_filename, initrd_base,
338 ram_size - initrd_base);
1a6c0886 339 if (initrd_size < 0) {
5fafdf24 340 fprintf(stderr, "qemu: could not load initial ram disk '%s'\n",
1a6c0886
JM
341 initrd_filename);
342 exit(1);
343 }
344 } else {
345 initrd_base = 0;
346 initrd_size = 0;
347 }
348 env->gpr[4] = initrd_base;
349 env->gpr[5] = initrd_size;
1a6c0886
JM
350 if (kernel_cmdline != NULL) {
351 len = strlen(kernel_cmdline);
352 bdloc -= ((len + 255) & ~255);
e1fe50dc 353 cpu_physical_memory_write(bdloc, kernel_cmdline, len + 1);
1a6c0886
JM
354 env->gpr[6] = bdloc;
355 env->gpr[7] = bdloc + len;
356 } else {
357 env->gpr[6] = 0;
358 env->gpr[7] = 0;
359 }
360 env->nip = KERNEL_LOAD_ADDR;
361 } else {
362 kernel_base = 0;
363 kernel_size = 0;
364 initrd_base = 0;
365 initrd_size = 0;
366 bdloc = 0;
367 }
368#ifdef DEBUG_BOARD_INIT
bf2ed917 369 printf("bdloc " RAM_ADDR_FMT "\n", bdloc);
1a6c0886
JM
370 printf("%s: Done\n", __func__);
371#endif
1a6c0886
JM
372}
373
8a661aea 374static void ref405ep_class_init(ObjectClass *oc, void *data)
e264d29d 375{
8a661aea
AF
376 MachineClass *mc = MACHINE_CLASS(oc);
377
e264d29d
EH
378 mc->desc = "ref405ep";
379 mc->init = ref405ep_init;
380}
381
8a661aea
AF
382static const TypeInfo ref405ep_type = {
383 .name = MACHINE_TYPE_NAME("ref405ep"),
384 .parent = TYPE_MACHINE,
385 .class_init = ref405ep_class_init,
386};
1a6c0886
JM
387
388/*****************************************************************************/
389/* AMCC Taihu evaluation board */
390/* - PowerPC 405EP processor
391 * - SDRAM 128 MB at 0x00000000
392 * - Boot flash 2 MB at 0xFFE00000
393 * - Application flash 32 MB at 0xFC000000
394 * - 2 serial ports
395 * - 2 ethernet PHY
396 * - 1 USB 1.1 device 0x50000000
397 * - 1 LCD display 0x50100000
398 * - 1 CPLD 0x50100000
399 * - 1 I2C EEPROM
400 * - 1 I2C thermal sensor
401 * - a set of LEDs
402 * - bit-bang SPI port using GPIOs
403 * - 1 EBC interface connector 0 0x50200000
404 * - 1 cardbus controller + expansion slot.
405 * - 1 PCI expansion slot.
406 */
407typedef struct taihu_cpld_t taihu_cpld_t;
408struct taihu_cpld_t {
1a6c0886
JM
409 uint8_t reg0;
410 uint8_t reg1;
411};
412
e2a176df 413static uint64_t taihu_cpld_read(void *opaque, hwaddr addr, unsigned size)
1a6c0886
JM
414{
415 taihu_cpld_t *cpld;
416 uint32_t ret;
417
418 cpld = opaque;
1a6c0886
JM
419 switch (addr) {
420 case 0x0:
421 ret = cpld->reg0;
422 break;
423 case 0x1:
424 ret = cpld->reg1;
425 break;
426 default:
427 ret = 0;
428 break;
429 }
430
431 return ret;
432}
433
e2a176df
PM
434static void taihu_cpld_write(void *opaque, hwaddr addr,
435 uint64_t value, unsigned size)
1a6c0886
JM
436{
437 taihu_cpld_t *cpld;
438
439 cpld = opaque;
1a6c0886
JM
440 switch (addr) {
441 case 0x0:
442 /* Read only */
443 break;
444 case 0x1:
445 cpld->reg1 = value;
446 break;
447 default:
448 break;
449 }
450}
451
a682fd5c 452static const MemoryRegionOps taihu_cpld_ops = {
e2a176df
PM
453 .read = taihu_cpld_read,
454 .write = taihu_cpld_write,
455 .impl = {
456 .min_access_size = 1,
457 .max_access_size = 1,
a682fd5c
AK
458 },
459 .endianness = DEVICE_NATIVE_ENDIAN,
1a6c0886
JM
460};
461
462static void taihu_cpld_reset (void *opaque)
463{
464 taihu_cpld_t *cpld;
465
466 cpld = opaque;
467 cpld->reg0 = 0x01;
468 cpld->reg1 = 0x80;
469}
470
5f072e1f 471static void taihu_cpld_init(MemoryRegion *sysmem, uint32_t base)
1a6c0886
JM
472{
473 taihu_cpld_t *cpld;
a682fd5c 474 MemoryRegion *cpld_memory = g_new(MemoryRegion, 1);
1a6c0886 475
7267c094 476 cpld = g_malloc0(sizeof(taihu_cpld_t));
2c9b15ca 477 memory_region_init_io(cpld_memory, NULL, &taihu_cpld_ops, cpld, "cpld", 0x100);
a682fd5c 478 memory_region_add_subregion(sysmem, base, cpld_memory);
a08d4367 479 qemu_register_reset(&taihu_cpld_reset, cpld);
1a6c0886
JM
480}
481
3ef96221 482static void taihu_405ep_init(MachineState *machine)
1a6c0886 483{
3ef96221
MA
484 ram_addr_t ram_size = machine->ram_size;
485 const char *kernel_filename = machine->kernel_filename;
486 const char *initrd_filename = machine->initrd_filename;
5cea8590 487 char *filename;
1a6c0886 488 qemu_irq *pic;
a682fd5c 489 MemoryRegion *sysmem = get_system_memory();
cfe5f011 490 MemoryRegion *bios;
b6dcbe08 491 MemoryRegion *ram_memories = g_malloc(2 * sizeof(*ram_memories));
e206ad48 492 MemoryRegion *ram = g_malloc0(sizeof(*ram));
a8170e5e 493 hwaddr ram_bases[2], ram_sizes[2];
093209cd
BS
494 long bios_size;
495 target_ulong kernel_base, initrd_base;
496 long kernel_size, initrd_size;
1a6c0886
JM
497 int linux_boot;
498 int fl_idx, fl_sectors;
751c6a17 499 DriveInfo *dinfo;
3b46e624 500
1a6c0886 501 /* RAM is soldered to the board so the size cannot be changed */
e206ad48
HT
502 ram_size = 0x08000000;
503 memory_region_allocate_system_memory(ram, NULL, "taihu_405ep.ram",
504 ram_size);
505
b6dcbe08 506 ram_bases[0] = 0;
1a6c0886 507 ram_sizes[0] = 0x04000000;
e206ad48
HT
508 memory_region_init_alias(&ram_memories[0], NULL,
509 "taihu_405ep.ram-0", ram, ram_bases[0],
510 ram_sizes[0]);
b6dcbe08 511 ram_bases[1] = 0x04000000;
1a6c0886 512 ram_sizes[1] = 0x04000000;
e206ad48
HT
513 memory_region_init_alias(&ram_memories[1], NULL,
514 "taihu_405ep.ram-1", ram, ram_bases[1],
515 ram_sizes[1]);
1a6c0886
JM
516#ifdef DEBUG_BOARD_INIT
517 printf("%s: register cpu\n", __func__);
518#endif
a682fd5c 519 ppc405ep_init(sysmem, ram_memories, ram_bases, ram_sizes,
52ce55a1 520 33333333, &pic, kernel_filename == NULL ? 0 : 1);
1a6c0886
JM
521 /* allocate and load BIOS */
522#ifdef DEBUG_BOARD_INIT
523 printf("%s: register BIOS\n", __func__);
524#endif
525 fl_idx = 0;
526#if defined(USE_FLASH_BIOS)
751c6a17
GH
527 dinfo = drive_get(IF_PFLASH, 0, fl_idx);
528 if (dinfo) {
4be74634 529 BlockBackend *blk = blk_by_legacy_dinfo(dinfo);
fa1d36df 530
4be74634 531 bios_size = blk_getlength(blk);
1a6c0886
JM
532 /* XXX: should check that size is 2MB */
533 // bios_size = 2 * 1024 * 1024;
534 fl_sectors = (bios_size + 65535) >> 16;
535#ifdef DEBUG_BOARD_INIT
093209cd 536 printf("Register parallel flash %d size %lx"
cfe5f011
AK
537 " at addr %lx '%s' %d\n",
538 fl_idx, bios_size, -bios_size,
4be74634 539 blk_name(blk), fl_sectors);
1a6c0886 540#endif
cfe5f011
AK
541 pflash_cfi02_register((uint32_t)(-bios_size),
542 NULL, "taihu_405ep.bios", bios_size,
4be74634 543 blk, 65536, fl_sectors, 1,
01e0451a
AL
544 4, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
545 1);
1a6c0886
JM
546 fl_idx++;
547 } else
548#endif
549 {
550#ifdef DEBUG_BOARD_INIT
551 printf("Load BIOS from file\n");
552#endif
1192dad8
JM
553 if (bios_name == NULL)
554 bios_name = BIOS_FILENAME;
cfe5f011 555 bios = g_new(MemoryRegion, 1);
49946538 556 memory_region_init_ram(bios, NULL, "taihu_405ep.bios", BIOS_SIZE,
f8ed85ac 557 &error_fatal);
e206ad48 558 vmstate_register_ram_global(bios);
5cea8590
PB
559 filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
560 if (filename) {
cfe5f011 561 bios_size = load_image(filename, memory_region_get_ram_ptr(bios));
7267c094 562 g_free(filename);
ad9990ac
AF
563 if (bios_size < 0 || bios_size > BIOS_SIZE) {
564 error_report("Could not load PowerPC BIOS '%s'", bios_name);
565 exit(1);
566 }
567 bios_size = (bios_size + 0xfff) & ~0xfff;
568 memory_region_add_subregion(sysmem, (uint32_t)(-bios_size), bios);
569 } else if (!qtest_enabled()) {
570 error_report("Could not load PowerPC BIOS '%s'", bios_name);
1a6c0886
JM
571 exit(1);
572 }
cfe5f011 573 memory_region_set_readonly(bios, true);
1a6c0886 574 }
1a6c0886 575 /* Register Linux flash */
751c6a17
GH
576 dinfo = drive_get(IF_PFLASH, 0, fl_idx);
577 if (dinfo) {
4be74634 578 BlockBackend *blk = blk_by_legacy_dinfo(dinfo);
fa1d36df 579
4be74634 580 bios_size = blk_getlength(blk);
1a6c0886
JM
581 /* XXX: should check that size is 32MB */
582 bios_size = 32 * 1024 * 1024;
583 fl_sectors = (bios_size + 65535) >> 16;
584#ifdef DEBUG_BOARD_INIT
093209cd 585 printf("Register parallel flash %d size %lx"
cfe5f011
AK
586 " at addr " TARGET_FMT_lx " '%s'\n",
587 fl_idx, bios_size, (target_ulong)0xfc000000,
4be74634 588 blk_name(blk));
1a6c0886 589#endif
cfe5f011 590 pflash_cfi02_register(0xfc000000, NULL, "taihu_405ep.flash", bios_size,
4be74634 591 blk, 65536, fl_sectors, 1,
01e0451a
AL
592 4, 0x0001, 0x22DA, 0x0000, 0x0000, 0x555, 0x2AA,
593 1);
1a6c0886
JM
594 fl_idx++;
595 }
596 /* Register CLPD & LCD display */
597#ifdef DEBUG_BOARD_INIT
598 printf("%s: register CPLD\n", __func__);
599#endif
a682fd5c 600 taihu_cpld_init(sysmem, 0x50100000);
1a6c0886
JM
601 /* Load kernel */
602 linux_boot = (kernel_filename != NULL);
603 if (linux_boot) {
604#ifdef DEBUG_BOARD_INIT
605 printf("%s: load kernel\n", __func__);
606#endif
607 kernel_base = KERNEL_LOAD_ADDR;
608 /* now we can load the kernel */
5c130f65
PB
609 kernel_size = load_image_targphys(kernel_filename, kernel_base,
610 ram_size - kernel_base);
1a6c0886 611 if (kernel_size < 0) {
5fafdf24 612 fprintf(stderr, "qemu: could not load kernel '%s'\n",
1a6c0886
JM
613 kernel_filename);
614 exit(1);
615 }
616 /* load initrd */
617 if (initrd_filename) {
618 initrd_base = INITRD_LOAD_ADDR;
5c130f65
PB
619 initrd_size = load_image_targphys(initrd_filename, initrd_base,
620 ram_size - initrd_base);
1a6c0886
JM
621 if (initrd_size < 0) {
622 fprintf(stderr,
5fafdf24 623 "qemu: could not load initial ram disk '%s'\n",
1a6c0886
JM
624 initrd_filename);
625 exit(1);
626 }
627 } else {
628 initrd_base = 0;
629 initrd_size = 0;
630 }
1a6c0886
JM
631 } else {
632 kernel_base = 0;
633 kernel_size = 0;
634 initrd_base = 0;
635 initrd_size = 0;
636 }
637#ifdef DEBUG_BOARD_INIT
638 printf("%s: Done\n", __func__);
639#endif
640}
641
8a661aea 642static void taihu_class_init(ObjectClass *oc, void *data)
f80f9ec9 643{
8a661aea
AF
644 MachineClass *mc = MACHINE_CLASS(oc);
645
e264d29d
EH
646 mc->desc = "taihu";
647 mc->init = taihu_405ep_init;
f80f9ec9
AL
648}
649
8a661aea
AF
650static const TypeInfo taihu_type = {
651 .name = MACHINE_TYPE_NAME("taihu"),
652 .parent = TYPE_MACHINE,
653 .class_init = taihu_class_init,
654};
655
656static void ppc405_machine_init(void)
657{
658 type_register_static(&ref405ep_type);
659 type_register_static(&taihu_type);
660}
661
0e6aac87 662type_init(ppc405_machine_init)