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#include "qemu/osdep.h"
27#include "qapi/error.h"
28#include "cpu.h"
29#include "hw/arm/fsl-imx25.h"
30#include "hw/boards.h"
31#include "qemu/error-report.h"
32#include "exec/address-spaces.h"
33#include "sysemu/qtest.h"
34#include "hw/i2c/i2c.h"
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59typedef struct IMX25PDK {
60 FslIMX25State soc;
61 MemoryRegion ram;
62 MemoryRegion ram_alias;
63} IMX25PDK;
64
65static struct arm_boot_info imx25_pdk_binfo;
66
67static void imx25_pdk_init(MachineState *machine)
68{
69 IMX25PDK *s = g_new0(IMX25PDK, 1);
70 unsigned int ram_size;
71 unsigned int alias_offset;
72 int i;
73
74 object_initialize_child(OBJECT(machine), "soc", &s->soc, sizeof(s->soc),
75 TYPE_FSL_IMX25, &error_abort, NULL);
76
77 object_property_set_bool(OBJECT(&s->soc), true, "realized", &error_fatal);
78
79
80 if (machine->ram_size > (FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE)) {
81 warn_report("RAM size " RAM_ADDR_FMT " above max supported, "
82 "reduced to %x", machine->ram_size,
83 FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE);
84 machine->ram_size = FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE;
85 }
86
87 memory_region_allocate_system_memory(&s->ram, NULL, "imx25.ram",
88 machine->ram_size);
89 memory_region_add_subregion(get_system_memory(), FSL_IMX25_SDRAM0_ADDR,
90 &s->ram);
91
92
93 for (i = 0, ram_size = machine->ram_size, alias_offset = 0;
94 (i < 2) && ram_size; i++) {
95 unsigned int size;
96 static const struct {
97 hwaddr addr;
98 unsigned int size;
99 } ram[2] = {
100 { FSL_IMX25_SDRAM0_ADDR, FSL_IMX25_SDRAM0_SIZE },
101 { FSL_IMX25_SDRAM1_ADDR, FSL_IMX25_SDRAM1_SIZE },
102 };
103
104 size = MIN(ram_size, ram[i].size);
105
106 ram_size -= size;
107
108 if (size < ram[i].size) {
109 memory_region_init_alias(&s->ram_alias, NULL, "ram.alias",
110 &s->ram, alias_offset, ram[i].size - size);
111 memory_region_add_subregion(get_system_memory(),
112 ram[i].addr + size, &s->ram_alias);
113 }
114
115 alias_offset += ram[i].size;
116 }
117
118 imx25_pdk_binfo.ram_size = machine->ram_size;
119 imx25_pdk_binfo.loader_start = FSL_IMX25_SDRAM0_ADDR;
120 imx25_pdk_binfo.board_id = 1771,
121 imx25_pdk_binfo.nb_cpus = 1;
122
123
124
125
126
127
128 if (!qtest_enabled()) {
129 arm_load_kernel(&s->soc.cpu, machine, &imx25_pdk_binfo);
130 }
131}
132
133static void imx25_pdk_machine_init(MachineClass *mc)
134{
135 mc->desc = "ARM i.MX25 PDK board (ARM926)";
136 mc->init = imx25_pdk_init;
137 mc->ignore_memory_transaction_failures = true;
138}
139
140DEFINE_MACHINE("imx25-pdk", imx25_pdk_machine_init)
141