]> git.proxmox.com Git - mirror_qemu.git/blame - hw/arm/collie.c
hw/mips: Express dependencies of the r4k platform with Kconfig
[mirror_qemu.git] / hw / arm / collie.c
CommitLineData
c64b21d5
DES
1/*
2 * SA-1110-based Sharp Zaurus SL-5500 platform.
3 *
4 * Copyright (C) 2011 Dmitry Eremin-Solenikov
5 *
6 * This code is licensed under GNU GPL v2.
6b620ca3
PB
7 *
8 * Contributions after 2012-01-13 are licensed under the terms of the
9 * GNU GPL, version 2 or (at your option) any later version.
c64b21d5 10 */
12b16722 11#include "qemu/osdep.h"
ce14710f 12#include "qemu/units.h"
83c9f4ca
PB
13#include "hw/hw.h"
14#include "hw/sysbus.h"
15#include "hw/boards.h"
47b43a1f 16#include "strongarm.h"
12ec8bd5 17#include "hw/arm/boot.h"
0d09e41a 18#include "hw/block/flash.h"
022c62cb 19#include "exec/address-spaces.h"
ba1ba5cc 20#include "cpu.h"
c64b21d5
DES
21
22static struct arm_boot_info collie_binfo = {
23 .loader_start = SA_SDCS0,
24 .ram_size = 0x20000000,
25};
26
3ef96221 27static void collie_init(MachineState *machine)
c64b21d5 28{
3ef96221
MA
29 const char *kernel_filename = machine->kernel_filename;
30 const char *kernel_cmdline = machine->kernel_cmdline;
31 const char *initrd_filename = machine->initrd_filename;
c64b21d5
DES
32 StrongARMState *s;
33 DriveInfo *dinfo;
eb2fefbc 34 MemoryRegion *sysmem = get_system_memory();
c64b21d5 35
ba1ba5cc 36 s = sa1110_init(sysmem, collie_binfo.ram_size, machine->cpu_type);
c64b21d5 37
c64b21d5 38 dinfo = drive_get(IF_PFLASH, 0, 0);
940d5b13 39 pflash_cfi01_register(SA_CS0, "collie.fl1", 0x02000000,
4be74634 40 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
ce14710f 41 64 * KiB, 4, 0x00, 0x00, 0x00, 0x00, 0);
c64b21d5 42
c64b21d5 43 dinfo = drive_get(IF_PFLASH, 0, 1);
940d5b13 44 pflash_cfi01_register(SA_CS1, "collie.fl2", 0x02000000,
4be74634 45 dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
ce14710f 46 64 * KiB, 4, 0x00, 0x00, 0x00, 0x00, 0);
c64b21d5
DES
47
48 sysbus_create_simple("scoop", 0x40800000, NULL);
49
50 collie_binfo.kernel_filename = kernel_filename;
51 collie_binfo.kernel_cmdline = kernel_cmdline;
52 collie_binfo.initrd_filename = initrd_filename;
53 collie_binfo.board_id = 0x208;
3aaa8dfa 54 arm_load_kernel(s->cpu, &collie_binfo);
c64b21d5
DES
55}
56
e264d29d 57static void collie_machine_init(MachineClass *mc)
c64b21d5 58{
ad1e8db8 59 mc->desc = "Sharp SL-5500 (Collie) PDA (SA-1110)";
e264d29d 60 mc->init = collie_init;
4672cbd7 61 mc->ignore_memory_transaction_failures = true;
ba1ba5cc 62 mc->default_cpu_type = ARM_CPU_TYPE_NAME("sa1110");
c64b21d5
DES
63}
64
e264d29d 65DEFINE_MACHINE("collie", collie_machine_init)