1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30#include "qemu/osdep.h"
31#include "qapi/error.h"
32#include "qemu-common.h"
33#include "cpu.h"
34#include "hw/hw.h"
35#include "hw/sh4/sh.h"
36#include "sysemu/sysemu.h"
37#include "sysemu/qtest.h"
38#include "hw/boards.h"
39#include "hw/loader.h"
40#include "exec/address-spaces.h"
41#include "qemu/error-report.h"
42
43#define BIOS_FILENAME "shix_bios.bin"
44#define BIOS_ADDRESS 0xA0000000
45
46static void shix_init(MachineState *machine)
47{
48 int ret;
49 SuperHCPU *cpu;
50 struct SH7750State *s;
51 MemoryRegion *sysmem = get_system_memory();
52 MemoryRegion *rom = g_new(MemoryRegion, 1);
53 MemoryRegion *sdram = g_new(MemoryRegion, 2);
54
55 cpu = SUPERH_CPU(cpu_create(machine->cpu_type));
56
57
58 memory_region_init_ram(rom, NULL, "shix.rom", 0x4000, &error_fatal);
59 memory_region_set_readonly(rom, true);
60 memory_region_add_subregion(sysmem, 0x00000000, rom);
61 memory_region_init_ram(&sdram[0], NULL, "shix.sdram1", 0x01000000,
62 &error_fatal);
63 memory_region_add_subregion(sysmem, 0x08000000, &sdram[0]);
64 memory_region_init_ram(&sdram[1], NULL, "shix.sdram2", 0x01000000,
65 &error_fatal);
66 memory_region_add_subregion(sysmem, 0x0c000000, &sdram[1]);
67
68
69 if (bios_name == NULL)
70 bios_name = BIOS_FILENAME;
71 ret = load_image_targphys(bios_name, 0, 0x4000);
72 if (ret < 0 && !qtest_enabled()) {
73 error_report("Could not load SHIX bios '%s'", bios_name);
74 exit(1);
75 }
76
77
78 s = sh7750_init(cpu, sysmem);
79
80 tc58128_init(s, "shix_linux_nand.bin", NULL);
81}
82
83static void shix_machine_init(MachineClass *mc)
84{
85 mc->desc = "shix card";
86 mc->init = shix_init;
87 mc->is_default = 1;
88 mc->default_cpu_type = TYPE_SH7750R_CPU;
89}
90
91DEFINE_MACHINE("shix", shix_machine_init)
92