xen/Makefile.objs: simplify
[qemu/ar7.git] / hw / arm / exynos4_boards.c
blobda82b27bade0dbdf9638c71977d11f45d8fe8ba2
1 /*
2 * Samsung exynos4 SoC based boards emulation
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd. All rights reserved.
5 * Maksim Kozlov <m.kozlov@samsung.com>
6 * Evgeny Voevodin <e.voevodin@samsung.com>
7 * Igor Mitsyanko <i.mitsyanko@samsung.com>
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License as published by the
11 * Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <http://www.gnu.org/licenses/>.
24 #include "sysemu/sysemu.h"
25 #include "sysemu/qtest.h"
26 #include "hw/sysbus.h"
27 #include "net/net.h"
28 #include "hw/arm/arm.h"
29 #include "exec/address-spaces.h"
30 #include "hw/arm/exynos4210.h"
31 #include "hw/boards.h"
33 #undef DEBUG
35 //#define DEBUG
37 #ifdef DEBUG
38 #undef PRINT_DEBUG
39 #define PRINT_DEBUG(fmt, args...) \
40 do { \
41 fprintf(stderr, " [%s:%d] "fmt, __func__, __LINE__, ##args); \
42 } while (0)
43 #else
44 #define PRINT_DEBUG(fmt, args...) do {} while (0)
45 #endif
47 #define SMDK_LAN9118_BASE_ADDR 0x05000000
49 typedef enum Exynos4BoardType {
50 EXYNOS4_BOARD_NURI,
51 EXYNOS4_BOARD_SMDKC210,
52 EXYNOS4_NUM_OF_BOARDS
53 } Exynos4BoardType;
55 static int exynos4_board_id[EXYNOS4_NUM_OF_BOARDS] = {
56 [EXYNOS4_BOARD_NURI] = 0xD33,
57 [EXYNOS4_BOARD_SMDKC210] = 0xB16,
60 static int exynos4_board_smp_bootreg_addr[EXYNOS4_NUM_OF_BOARDS] = {
61 [EXYNOS4_BOARD_NURI] = EXYNOS4210_SECOND_CPU_BOOTREG,
62 [EXYNOS4_BOARD_SMDKC210] = EXYNOS4210_SECOND_CPU_BOOTREG,
65 static unsigned long exynos4_board_ram_size[EXYNOS4_NUM_OF_BOARDS] = {
66 [EXYNOS4_BOARD_NURI] = 0x40000000,
67 [EXYNOS4_BOARD_SMDKC210] = 0x40000000,
70 static struct arm_boot_info exynos4_board_binfo = {
71 .loader_start = EXYNOS4210_BASE_BOOT_ADDR,
72 .smp_loader_start = EXYNOS4210_SMP_BOOT_ADDR,
73 .nb_cpus = EXYNOS4210_NCPUS,
74 .write_secondary_boot = exynos4210_write_secondary,
77 static void lan9215_init(uint32_t base, qemu_irq irq)
79 DeviceState *dev;
80 SysBusDevice *s;
82 /* This should be a 9215 but the 9118 is close enough */
83 if (nd_table[0].used) {
84 qemu_check_nic_model(&nd_table[0], "lan9118");
85 dev = qdev_create(NULL, "lan9118");
86 qdev_set_nic_properties(dev, &nd_table[0]);
87 qdev_prop_set_uint32(dev, "mode_16bit", 1);
88 qdev_init_nofail(dev);
89 s = SYS_BUS_DEVICE(dev);
90 sysbus_mmio_map(s, 0, base);
91 sysbus_connect_irq(s, 0, irq);
95 static Exynos4210State *exynos4_boards_init_common(MachineState *machine,
96 Exynos4BoardType board_type)
98 MachineClass *mc = MACHINE_GET_CLASS(machine);
100 if (smp_cpus != EXYNOS4210_NCPUS && !qtest_enabled()) {
101 fprintf(stderr, "%s board supports only %d CPU cores. Ignoring smp_cpus"
102 " value.\n",
103 mc->name, EXYNOS4210_NCPUS);
106 exynos4_board_binfo.ram_size = exynos4_board_ram_size[board_type];
107 exynos4_board_binfo.board_id = exynos4_board_id[board_type];
108 exynos4_board_binfo.smp_bootreg_addr =
109 exynos4_board_smp_bootreg_addr[board_type];
110 exynos4_board_binfo.kernel_filename = machine->kernel_filename;
111 exynos4_board_binfo.initrd_filename = machine->initrd_filename;
112 exynos4_board_binfo.kernel_cmdline = machine->kernel_cmdline;
113 exynos4_board_binfo.gic_cpu_if_addr =
114 EXYNOS4210_SMP_PRIVATE_BASE_ADDR + 0x100;
116 PRINT_DEBUG("\n ram_size: %luMiB [0x%08lx]\n"
117 " kernel_filename: %s\n"
118 " kernel_cmdline: %s\n"
119 " initrd_filename: %s\n",
120 exynos4_board_ram_size[board_type] / 1048576,
121 exynos4_board_ram_size[board_type],
122 machine->kernel_filename,
123 machine->kernel_cmdline,
124 machine->initrd_filename);
126 return exynos4210_init(get_system_memory(),
127 exynos4_board_ram_size[board_type]);
130 static void nuri_init(MachineState *machine)
132 exynos4_boards_init_common(machine, EXYNOS4_BOARD_NURI);
134 arm_load_kernel(ARM_CPU(first_cpu), &exynos4_board_binfo);
137 static void smdkc210_init(MachineState *machine)
139 Exynos4210State *s = exynos4_boards_init_common(machine,
140 EXYNOS4_BOARD_SMDKC210);
142 lan9215_init(SMDK_LAN9118_BASE_ADDR,
143 qemu_irq_invert(s->irq_table[exynos4210_get_irq(37, 1)]));
144 arm_load_kernel(ARM_CPU(first_cpu), &exynos4_board_binfo);
147 static void nuri_class_init(ObjectClass *oc, void *data)
149 MachineClass *mc = MACHINE_CLASS(oc);
151 mc->desc = "Samsung NURI board (Exynos4210)";
152 mc->init = nuri_init;
153 mc->max_cpus = EXYNOS4210_NCPUS;
156 static const TypeInfo nuri_type = {
157 .name = MACHINE_TYPE_NAME("nuri"),
158 .parent = TYPE_MACHINE,
159 .class_init = nuri_class_init,
162 static void smdkc210_class_init(ObjectClass *oc, void *data)
164 MachineClass *mc = MACHINE_CLASS(oc);
166 mc->desc = "Samsung SMDKC210 board (Exynos4210)";
167 mc->init = smdkc210_init;
168 mc->max_cpus = EXYNOS4210_NCPUS;
171 static const TypeInfo smdkc210_type = {
172 .name = MACHINE_TYPE_NAME("smdkc210"),
173 .parent = TYPE_MACHINE,
174 .class_init = smdkc210_class_init,
177 static void exynos4_machines_init(void)
179 type_register_static(&nuri_type);
180 type_register_static(&smdkc210_type);
183 machine_init(exynos4_machines_init)