2011-04-19 16:56:46 +02:00
|
|
|
/*
|
|
|
|
* SA-1110-based Sharp Zaurus SL-5500 platform.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Dmitry Eremin-Solenikov
|
|
|
|
*
|
|
|
|
* This code is licensed under GNU GPL v2.
|
2012-01-13 17:44:23 +01:00
|
|
|
*
|
|
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
2011-04-19 16:56:46 +02:00
|
|
|
*/
|
2015-12-07 17:23:45 +01:00
|
|
|
#include "qemu/osdep.h"
|
2019-03-08 10:46:10 +01:00
|
|
|
#include "qemu/units.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
|
|
|
#include "hw/boards.h"
|
2013-03-18 17:36:02 +01:00
|
|
|
#include "strongarm.h"
|
2019-05-23 15:47:43 +02:00
|
|
|
#include "hw/arm/boot.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/block/flash.h"
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/address-spaces.h"
|
2017-09-13 18:04:57 +02:00
|
|
|
#include "cpu.h"
|
2011-04-19 16:56:46 +02:00
|
|
|
|
|
|
|
static struct arm_boot_info collie_binfo = {
|
|
|
|
.loader_start = SA_SDCS0,
|
|
|
|
.ram_size = 0x20000000,
|
|
|
|
};
|
|
|
|
|
2014-05-07 16:42:57 +02:00
|
|
|
static void collie_init(MachineState *machine)
|
2011-04-19 16:56:46 +02:00
|
|
|
{
|
|
|
|
StrongARMState *s;
|
|
|
|
DriveInfo *dinfo;
|
2019-10-22 17:50:38 +02:00
|
|
|
MemoryRegion *sdram = g_new(MemoryRegion, 1);
|
2011-04-19 16:56:46 +02:00
|
|
|
|
2019-10-22 17:50:38 +02:00
|
|
|
s = sa1110_init(machine->cpu_type);
|
|
|
|
|
|
|
|
memory_region_allocate_system_memory(sdram, NULL, "strongarm.sdram",
|
|
|
|
collie_binfo.ram_size);
|
|
|
|
memory_region_add_subregion(get_system_memory(), SA_SDCS0, sdram);
|
2011-04-19 16:56:46 +02:00
|
|
|
|
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 0);
|
2019-03-08 10:46:09 +01:00
|
|
|
pflash_cfi01_register(SA_CS0, "collie.fl1", 0x02000000,
|
2014-10-07 13:59:18 +02:00
|
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
2019-03-08 10:46:10 +01:00
|
|
|
64 * KiB, 4, 0x00, 0x00, 0x00, 0x00, 0);
|
2011-04-19 16:56:46 +02:00
|
|
|
|
|
|
|
dinfo = drive_get(IF_PFLASH, 0, 1);
|
2019-03-08 10:46:09 +01:00
|
|
|
pflash_cfi01_register(SA_CS1, "collie.fl2", 0x02000000,
|
2014-10-07 13:59:18 +02:00
|
|
|
dinfo ? blk_by_legacy_dinfo(dinfo) : NULL,
|
2019-03-08 10:46:10 +01:00
|
|
|
64 * KiB, 4, 0x00, 0x00, 0x00, 0x00, 0);
|
2011-04-19 16:56:46 +02:00
|
|
|
|
|
|
|
sysbus_create_simple("scoop", 0x40800000, NULL);
|
|
|
|
|
|
|
|
collie_binfo.board_id = 0x208;
|
2019-08-09 08:57:21 +02:00
|
|
|
arm_load_kernel(s->cpu, machine, &collie_binfo);
|
2011-04-19 16:56:46 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
static void collie_machine_init(MachineClass *mc)
|
2011-04-19 16:56:46 +02:00
|
|
|
{
|
2015-10-16 12:14:53 +02:00
|
|
|
mc->desc = "Sharp SL-5500 (Collie) PDA (SA-1110)";
|
2015-09-04 20:37:08 +02:00
|
|
|
mc->init = collie_init;
|
2017-09-07 14:54:54 +02:00
|
|
|
mc->ignore_memory_transaction_failures = true;
|
2017-09-13 18:04:57 +02:00
|
|
|
mc->default_cpu_type = ARM_CPU_TYPE_NAME("sa1110");
|
2011-04-19 16:56:46 +02:00
|
|
|
}
|
|
|
|
|
2015-09-04 20:37:08 +02:00
|
|
|
DEFINE_MACHINE("collie", collie_machine_init)
|