]>
Commit | Line | Data |
---|---|---|
65f57c43 JCD |
1 | /* |
2 | * Copyright (c) 2013 Jean-Christophe Dubois <[email protected]> | |
3 | * | |
4 | * PDK Board System emulation. | |
5 | * | |
6 | * Based on hw/arm/kzm.c | |
7 | * | |
8 | * Copyright (c) 2008 OKL and 2011 NICTA | |
9 | * Written by Hans at OK-Labs | |
10 | * Updated by Peter Chubb. | |
11 | * | |
12 | * This program is free software; you can redistribute it and/or modify it | |
13 | * under the terms of the GNU General Public License as published by the | |
14 | * Free Software Foundation; either version 2 of the License, or | |
15 | * (at your option) any later version. | |
16 | * | |
17 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
18 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
19 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
20 | * for more details. | |
21 | * | |
22 | * You should have received a copy of the GNU General Public License along | |
23 | * with this program; if not, see <http://www.gnu.org/licenses/>. | |
24 | */ | |
25 | ||
26 | #include "hw/arm/fsl-imx25.h" | |
27 | #include "hw/boards.h" | |
28 | #include "qemu/error-report.h" | |
29 | #include "exec/address-spaces.h" | |
30 | #include "sysemu/qtest.h" | |
31 | #include "hw/i2c/i2c.h" | |
32 | ||
33 | /* Memory map for PDK Emulation Baseboard: | |
34 | * 0x00000000-0x7fffffff See i.MX25 SOC fr support | |
35 | * 0x80000000-0x87ffffff RAM + Alias EMULATED | |
36 | * 0x90000000-0x9fffffff RAM + Alias EMULATED | |
37 | * 0xa0000000-0xa7ffffff Flash IGNORED | |
38 | * 0xa8000000-0xafffffff Flash IGNORED | |
39 | * 0xb0000000-0xb1ffffff SRAM IGNORED | |
40 | * 0xb2000000-0xb3ffffff SRAM IGNORED | |
41 | * 0xb4000000-0xb5ffffff CS4 IGNORED | |
42 | * 0xb6000000-0xb8000fff Reserved IGNORED | |
43 | * 0xb8001000-0xb8001fff SDRAM CTRL reg IGNORED | |
44 | * 0xb8002000-0xb8002fff WEIM CTRL reg IGNORED | |
45 | * 0xb8003000-0xb8003fff M3IF CTRL reg IGNORED | |
46 | * 0xb8004000-0xb8004fff EMI CTRL reg IGNORED | |
47 | * 0xb8005000-0xbaffffff Reserved IGNORED | |
48 | * 0xbb000000-0xbb000fff NAND flash area buf IGNORED | |
49 | * 0xbb001000-0xbb0011ff NAND flash reserved IGNORED | |
50 | * 0xbb001200-0xbb001dff Reserved IGNORED | |
51 | * 0xbb001e00-0xbb001fff NAN flash CTRL reg IGNORED | |
52 | * 0xbb012000-0xbfffffff Reserved IGNORED | |
53 | * 0xc0000000-0xffffffff Reserved IGNORED | |
54 | */ | |
55 | ||
56 | typedef struct IMX25PDK { | |
57 | FslIMX25State soc; | |
58 | MemoryRegion ram; | |
59 | MemoryRegion ram_alias; | |
60 | } IMX25PDK; | |
61 | ||
62 | static struct arm_boot_info imx25_pdk_binfo; | |
63 | ||
64 | static void imx25_pdk_init(MachineState *machine) | |
65 | { | |
66 | IMX25PDK *s = g_new0(IMX25PDK, 1); | |
67 | Error *err = NULL; | |
68 | unsigned int ram_size; | |
69 | unsigned int alias_offset; | |
70 | int i; | |
71 | ||
72 | object_initialize(&s->soc, sizeof(s->soc), TYPE_FSL_IMX25); | |
73 | object_property_add_child(OBJECT(machine), "soc", OBJECT(&s->soc), | |
74 | &error_abort); | |
75 | ||
76 | object_property_set_bool(OBJECT(&s->soc), true, "realized", &err); | |
77 | if (err != NULL) { | |
78 | error_report("%s", error_get_pretty(err)); | |
79 | exit(1); | |
80 | } | |
81 | ||
82 | /* We need to initialize our memory */ | |
83 | if (machine->ram_size > (FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE)) { | |
84 | error_report("WARNING: RAM size " RAM_ADDR_FMT " above max supported, " | |
85 | "reduced to %x", machine->ram_size, | |
86 | FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE); | |
87 | machine->ram_size = FSL_IMX25_SDRAM0_SIZE + FSL_IMX25_SDRAM1_SIZE; | |
88 | } | |
89 | ||
90 | memory_region_allocate_system_memory(&s->ram, NULL, "imx25.ram", | |
91 | machine->ram_size); | |
92 | memory_region_add_subregion(get_system_memory(), FSL_IMX25_SDRAM0_ADDR, | |
93 | &s->ram); | |
94 | ||
95 | /* initialize the alias memory if any */ | |
96 | for (i = 0, ram_size = machine->ram_size, alias_offset = 0; | |
97 | (i < 2) && ram_size; i++) { | |
98 | unsigned int size; | |
99 | static const struct { | |
100 | hwaddr addr; | |
101 | unsigned int size; | |
102 | } ram[2] = { | |
103 | { FSL_IMX25_SDRAM0_ADDR, FSL_IMX25_SDRAM0_SIZE }, | |
104 | { FSL_IMX25_SDRAM1_ADDR, FSL_IMX25_SDRAM1_SIZE }, | |
105 | }; | |
106 | ||
107 | size = MIN(ram_size, ram[i].size); | |
108 | ||
109 | ram_size -= size; | |
110 | ||
111 | if (size < ram[i].size) { | |
112 | memory_region_init_alias(&s->ram_alias, NULL, "ram.alias", | |
113 | &s->ram, alias_offset, ram[i].size - size); | |
114 | memory_region_add_subregion(get_system_memory(), | |
115 | ram[i].addr + size, &s->ram_alias); | |
116 | } | |
117 | ||
118 | alias_offset += ram[i].size; | |
119 | } | |
120 | ||
121 | imx25_pdk_binfo.ram_size = machine->ram_size; | |
122 | imx25_pdk_binfo.kernel_filename = machine->kernel_filename; | |
123 | imx25_pdk_binfo.kernel_cmdline = machine->kernel_cmdline; | |
124 | imx25_pdk_binfo.initrd_filename = machine->initrd_filename; | |
125 | imx25_pdk_binfo.loader_start = FSL_IMX25_SDRAM0_ADDR; | |
126 | imx25_pdk_binfo.board_id = 1771, | |
127 | imx25_pdk_binfo.nb_cpus = 1; | |
128 | ||
129 | /* | |
130 | * We test explicitly for qtest here as it is not done (yet?) in | |
131 | * arm_load_kernel(). Without this the "make check" command would | |
132 | * fail. | |
133 | */ | |
134 | if (!qtest_enabled()) { | |
135 | arm_load_kernel(&s->soc.cpu, &imx25_pdk_binfo); | |
136 | } else { | |
137 | /* | |
138 | * This I2C device doesn't exist on the real board. | |
139 | * We add it here (only on qtest usage) to be able to do a bit | |
140 | * of simple qtest. See "make check" for details. | |
141 | */ | |
142 | i2c_create_slave((I2CBus *)qdev_get_child_bus(DEVICE(&s->soc.i2c[0]), | |
143 | "i2c"), | |
144 | "ds1338", 0x68); | |
145 | } | |
146 | } | |
147 | ||
148 | static QEMUMachine imx25_pdk_machine = { | |
149 | .name = "imx25_pdk", | |
150 | .desc = "ARM i.MX25 PDK board (ARM926)", | |
151 | .init = imx25_pdk_init, | |
152 | }; | |
153 | ||
154 | static void imx25_pdk_machine_init(void) | |
155 | { | |
156 | qemu_register_machine(&imx25_pdk_machine); | |
157 | } | |
158 | ||
159 | machine_init(imx25_pdk_machine_init) |