xref: /qemu/hw/arm/exynos4_boards.c (revision 06b40d250ecfa1633209c2e431a7a38acfd03a98)
10caa7113SEvgeny Voevodin /*
20caa7113SEvgeny Voevodin  *  Samsung exynos4 SoC based boards emulation
30caa7113SEvgeny Voevodin  *
40caa7113SEvgeny Voevodin  *  Copyright (c) 2011 Samsung Electronics Co., Ltd. All rights reserved.
50caa7113SEvgeny Voevodin  *    Maksim Kozlov <m.kozlov@samsung.com>
60caa7113SEvgeny Voevodin  *    Evgeny Voevodin <e.voevodin@samsung.com>
70caa7113SEvgeny Voevodin  *    Igor Mitsyanko  <i.mitsyanko@samsung.com>
80caa7113SEvgeny Voevodin  *
90caa7113SEvgeny Voevodin  *  This program is free software; you can redistribute it and/or modify it
100caa7113SEvgeny Voevodin  *  under the terms of the GNU General Public License as published by the
110caa7113SEvgeny Voevodin  *  Free Software Foundation; either version 2 of the License, or
120caa7113SEvgeny Voevodin  *  (at your option) any later version.
130caa7113SEvgeny Voevodin  *
140caa7113SEvgeny Voevodin  *  This program is distributed in the hope that it will be useful, but WITHOUT
150caa7113SEvgeny Voevodin  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
160caa7113SEvgeny Voevodin  *  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
170caa7113SEvgeny Voevodin  *  for more details.
180caa7113SEvgeny Voevodin  *
190caa7113SEvgeny Voevodin  *  You should have received a copy of the GNU General Public License along
200caa7113SEvgeny Voevodin  *  with this program; if not, see <http://www.gnu.org/licenses/>.
210caa7113SEvgeny Voevodin  *
220caa7113SEvgeny Voevodin  */
230caa7113SEvgeny Voevodin 
2412b16722SPeter Maydell #include "qemu/osdep.h"
25e12a0dd2SPhilippe Mathieu-Daudé #include "qemu/units.h"
26a2f2f624SKrzysztof Kozlowski #include "qapi/error.h"
27f2ad5140SKrzysztof Kozlowski #include "qemu/error-report.h"
2883c9f4caSPaolo Bonzini #include "hw/sysbus.h"
291422e32dSPaolo Bonzini #include "net/net.h"
3012ec8bd5SPeter Maydell #include "hw/arm/boot.h"
31dfc56946SRichard Henderson #include "system/address-spaces.h"
320d09e41aSPaolo Bonzini #include "hw/arm/exynos4210.h"
3394630665SPhilippe Mathieu-Daudé #include "hw/net/lan9118.h"
34a27bd6c7SMarkus Armbruster #include "hw/qdev-properties.h"
3583c9f4caSPaolo Bonzini #include "hw/boards.h"
3664552b6bSMarkus Armbruster #include "hw/irq.h"
3756d69aafSPhilippe Mathieu-Daudé #include "target/arm/cpu-qom.h"
380caa7113SEvgeny Voevodin 
392c2c6496SEvgeny Voevodin #define SMDK_LAN9118_BASE_ADDR      0x05000000
402c2c6496SEvgeny Voevodin 
410caa7113SEvgeny Voevodin typedef enum Exynos4BoardType {
420caa7113SEvgeny Voevodin     EXYNOS4_BOARD_NURI,
430caa7113SEvgeny Voevodin     EXYNOS4_BOARD_SMDKC210,
440caa7113SEvgeny Voevodin     EXYNOS4_NUM_OF_BOARDS
450caa7113SEvgeny Voevodin } Exynos4BoardType;
460caa7113SEvgeny Voevodin 
47a2f2f624SKrzysztof Kozlowski typedef struct Exynos4BoardState {
4898e4f4fdSPhilippe Mathieu-Daudé     Exynos4210State soc;
49a2f2f624SKrzysztof Kozlowski     MemoryRegion dram0_mem;
50a2f2f624SKrzysztof Kozlowski     MemoryRegion dram1_mem;
51a2f2f624SKrzysztof Kozlowski } Exynos4BoardState;
52a2f2f624SKrzysztof Kozlowski 
530caa7113SEvgeny Voevodin static int exynos4_board_id[EXYNOS4_NUM_OF_BOARDS] = {
540caa7113SEvgeny Voevodin     [EXYNOS4_BOARD_NURI]     = 0xD33,
550caa7113SEvgeny Voevodin     [EXYNOS4_BOARD_SMDKC210] = 0xB16,
560caa7113SEvgeny Voevodin };
570caa7113SEvgeny Voevodin 
580caa7113SEvgeny Voevodin static int exynos4_board_smp_bootreg_addr[EXYNOS4_NUM_OF_BOARDS] = {
590caa7113SEvgeny Voevodin     [EXYNOS4_BOARD_NURI]     = EXYNOS4210_SECOND_CPU_BOOTREG,
600caa7113SEvgeny Voevodin     [EXYNOS4_BOARD_SMDKC210] = EXYNOS4210_SECOND_CPU_BOOTREG,
610caa7113SEvgeny Voevodin };
620caa7113SEvgeny Voevodin 
630caa7113SEvgeny Voevodin static unsigned long exynos4_board_ram_size[EXYNOS4_NUM_OF_BOARDS] = {
64e12a0dd2SPhilippe Mathieu-Daudé     [EXYNOS4_BOARD_NURI]     = 1 * GiB,
65e12a0dd2SPhilippe Mathieu-Daudé     [EXYNOS4_BOARD_SMDKC210] = 1 * GiB,
660caa7113SEvgeny Voevodin };
670caa7113SEvgeny Voevodin 
680caa7113SEvgeny Voevodin static struct arm_boot_info exynos4_board_binfo = {
690caa7113SEvgeny Voevodin     .loader_start     = EXYNOS4210_BASE_BOOT_ADDR,
700caa7113SEvgeny Voevodin     .smp_loader_start = EXYNOS4210_SMP_BOOT_ADDR,
713f088e36SEvgeny Voevodin     .write_secondary_boot = exynos4210_write_secondary,
720caa7113SEvgeny Voevodin };
730caa7113SEvgeny Voevodin 
lan9215_init(uint32_t base,qemu_irq irq)742c2c6496SEvgeny Voevodin static void lan9215_init(uint32_t base, qemu_irq irq)
752c2c6496SEvgeny Voevodin {
762c2c6496SEvgeny Voevodin     DeviceState *dev;
772c2c6496SEvgeny Voevodin     SysBusDevice *s;
782c2c6496SEvgeny Voevodin 
792c2c6496SEvgeny Voevodin     /* This should be a 9215 but the 9118 is close enough */
80809601b3SDavid Woodhouse     dev = qemu_create_nic_device(TYPE_LAN9118, true, NULL);
81809601b3SDavid Woodhouse     if (dev) {
822c2c6496SEvgeny Voevodin         qdev_prop_set_uint32(dev, "mode_16bit", 1);
831356b98dSAndreas Färber         s = SYS_BUS_DEVICE(dev);
843c6ef471SMarkus Armbruster         sysbus_realize_and_unref(s, &error_fatal);
852c2c6496SEvgeny Voevodin         sysbus_mmio_map(s, 0, base);
862c2c6496SEvgeny Voevodin         sysbus_connect_irq(s, 0, irq);
872c2c6496SEvgeny Voevodin     }
882c2c6496SEvgeny Voevodin }
892c2c6496SEvgeny Voevodin 
exynos4_boards_init_ram(Exynos4BoardState * s,MemoryRegion * system_mem,unsigned long ram_size)90a2f2f624SKrzysztof Kozlowski static void exynos4_boards_init_ram(Exynos4BoardState *s,
91a2f2f624SKrzysztof Kozlowski                                     MemoryRegion *system_mem,
92a2f2f624SKrzysztof Kozlowski                                     unsigned long ram_size)
93a2f2f624SKrzysztof Kozlowski {
94a2f2f624SKrzysztof Kozlowski     unsigned long mem_size = ram_size;
95a2f2f624SKrzysztof Kozlowski 
96a2f2f624SKrzysztof Kozlowski     if (mem_size > EXYNOS4210_DRAM_MAX_SIZE) {
9798a99ce0SPeter Maydell         memory_region_init_ram(&s->dram1_mem, NULL, "exynos4210.dram1",
98a2f2f624SKrzysztof Kozlowski                                mem_size - EXYNOS4210_DRAM_MAX_SIZE,
99a2f2f624SKrzysztof Kozlowski                                &error_fatal);
100a2f2f624SKrzysztof Kozlowski         memory_region_add_subregion(system_mem, EXYNOS4210_DRAM1_BASE_ADDR,
101a2f2f624SKrzysztof Kozlowski                                     &s->dram1_mem);
102a2f2f624SKrzysztof Kozlowski         mem_size = EXYNOS4210_DRAM_MAX_SIZE;
103a2f2f624SKrzysztof Kozlowski     }
104a2f2f624SKrzysztof Kozlowski 
10598a99ce0SPeter Maydell     memory_region_init_ram(&s->dram0_mem, NULL, "exynos4210.dram0", mem_size,
106a2f2f624SKrzysztof Kozlowski                            &error_fatal);
107a2f2f624SKrzysztof Kozlowski     memory_region_add_subregion(system_mem, EXYNOS4210_DRAM0_BASE_ADDR,
108a2f2f624SKrzysztof Kozlowski                                 &s->dram0_mem);
109a2f2f624SKrzysztof Kozlowski }
110a2f2f624SKrzysztof Kozlowski 
111a2f2f624SKrzysztof Kozlowski static Exynos4BoardState *
exynos4_boards_init_common(MachineState * machine,Exynos4BoardType board_type)112a2f2f624SKrzysztof Kozlowski exynos4_boards_init_common(MachineState *machine,
1130caa7113SEvgeny Voevodin                            Exynos4BoardType board_type)
1140caa7113SEvgeny Voevodin {
115a2f2f624SKrzysztof Kozlowski     Exynos4BoardState *s = g_new(Exynos4BoardState, 1);
1160caa7113SEvgeny Voevodin 
1170caa7113SEvgeny Voevodin     exynos4_board_binfo.ram_size = exynos4_board_ram_size[board_type];
1180caa7113SEvgeny Voevodin     exynos4_board_binfo.board_id = exynos4_board_id[board_type];
1190caa7113SEvgeny Voevodin     exynos4_board_binfo.smp_bootreg_addr =
1200caa7113SEvgeny Voevodin             exynos4_board_smp_bootreg_addr[board_type];
12196eacf64SPeter Maydell     exynos4_board_binfo.gic_cpu_if_addr =
12296eacf64SPeter Maydell             EXYNOS4210_SMP_PRIVATE_BASE_ADDR + 0x100;
1230caa7113SEvgeny Voevodin 
124a2f2f624SKrzysztof Kozlowski     exynos4_boards_init_ram(s, get_system_memory(),
1250caa7113SEvgeny Voevodin                             exynos4_board_ram_size[board_type]);
126a2f2f624SKrzysztof Kozlowski 
1270074fce6SMarkus Armbruster     object_initialize_child(OBJECT(machine), "soc", &s->soc,
1280074fce6SMarkus Armbruster                             TYPE_EXYNOS4210_SOC);
1290074fce6SMarkus Armbruster     sysbus_realize(SYS_BUS_DEVICE(&s->soc), &error_fatal);
130a2f2f624SKrzysztof Kozlowski 
131a2f2f624SKrzysztof Kozlowski     return s;
1320caa7113SEvgeny Voevodin }
1330caa7113SEvgeny Voevodin 
nuri_init(MachineState * machine)1343ef96221SMarcel Apfelbaum static void nuri_init(MachineState *machine)
1350caa7113SEvgeny Voevodin {
136f0109f72SPhilippe Mathieu-Daudé     Exynos4BoardState *s = exynos4_boards_init_common(machine,
137f0109f72SPhilippe Mathieu-Daudé                                                       EXYNOS4_BOARD_NURI);
1380caa7113SEvgeny Voevodin 
139f0109f72SPhilippe Mathieu-Daudé     arm_load_kernel(s->soc.cpu[0], machine, &exynos4_board_binfo);
1400caa7113SEvgeny Voevodin }
1410caa7113SEvgeny Voevodin 
smdkc210_init(MachineState * machine)1423ef96221SMarcel Apfelbaum static void smdkc210_init(MachineState *machine)
1430caa7113SEvgeny Voevodin {
144a2f2f624SKrzysztof Kozlowski     Exynos4BoardState *s = exynos4_boards_init_common(machine,
1457f0f7740SPeter Maydell                                                       EXYNOS4_BOARD_SMDKC210);
1460caa7113SEvgeny Voevodin 
1472c2c6496SEvgeny Voevodin     lan9215_init(SMDK_LAN9118_BASE_ADDR,
14898e4f4fdSPhilippe Mathieu-Daudé             qemu_irq_invert(s->soc.irq_table[exynos4210_get_irq(37, 1)]));
149f0109f72SPhilippe Mathieu-Daudé     arm_load_kernel(s->soc.cpu[0], machine, &exynos4_board_binfo);
1500caa7113SEvgeny Voevodin }
1510caa7113SEvgeny Voevodin 
15256d69aafSPhilippe Mathieu-Daudé static const char * const valid_cpu_types[] = {
15356d69aafSPhilippe Mathieu-Daudé     ARM_CPU_TYPE_NAME("cortex-a9"),
15456d69aafSPhilippe Mathieu-Daudé     NULL
15556d69aafSPhilippe Mathieu-Daudé };
15656d69aafSPhilippe Mathieu-Daudé 
nuri_class_init(ObjectClass * oc,const void * data)157*12d1a768SPhilippe Mathieu-Daudé static void nuri_class_init(ObjectClass *oc, const void *data)
1580caa7113SEvgeny Voevodin {
1598a661aeaSAndreas Färber     MachineClass *mc = MACHINE_CLASS(oc);
1608a661aeaSAndreas Färber 
161e264d29dSEduardo Habkost     mc->desc = "Samsung NURI board (Exynos4210)";
162e264d29dSEduardo Habkost     mc->init = nuri_init;
16356d69aafSPhilippe Mathieu-Daudé     mc->valid_cpu_types = valid_cpu_types;
164e264d29dSEduardo Habkost     mc->max_cpus = EXYNOS4210_NCPUS;
16572649619SEmilio G. Cota     mc->min_cpus = EXYNOS4210_NCPUS;
16672649619SEmilio G. Cota     mc->default_cpus = EXYNOS4210_NCPUS;
1674672cbd7SPeter Maydell     mc->ignore_memory_transaction_failures = true;
168cdc8d7caSPhilippe Mathieu-Daudé     mc->auto_create_sdcard = true;
1690caa7113SEvgeny Voevodin }
1700caa7113SEvgeny Voevodin 
1718a661aeaSAndreas Färber static const TypeInfo nuri_type = {
1728a661aeaSAndreas Färber     .name = MACHINE_TYPE_NAME("nuri"),
1738a661aeaSAndreas Färber     .parent = TYPE_MACHINE,
1748a661aeaSAndreas Färber     .class_init = nuri_class_init,
1758a661aeaSAndreas Färber };
176e264d29dSEduardo Habkost 
smdkc210_class_init(ObjectClass * oc,const void * data)177*12d1a768SPhilippe Mathieu-Daudé static void smdkc210_class_init(ObjectClass *oc, const void *data)
178e264d29dSEduardo Habkost {
1798a661aeaSAndreas Färber     MachineClass *mc = MACHINE_CLASS(oc);
1808a661aeaSAndreas Färber 
181e264d29dSEduardo Habkost     mc->desc = "Samsung SMDKC210 board (Exynos4210)";
182e264d29dSEduardo Habkost     mc->init = smdkc210_init;
18356d69aafSPhilippe Mathieu-Daudé     mc->valid_cpu_types = valid_cpu_types;
184e264d29dSEduardo Habkost     mc->max_cpus = EXYNOS4210_NCPUS;
18572649619SEmilio G. Cota     mc->min_cpus = EXYNOS4210_NCPUS;
18672649619SEmilio G. Cota     mc->default_cpus = EXYNOS4210_NCPUS;
1874672cbd7SPeter Maydell     mc->ignore_memory_transaction_failures = true;
188cdc8d7caSPhilippe Mathieu-Daudé     mc->auto_create_sdcard = true;
189e264d29dSEduardo Habkost }
190e264d29dSEduardo Habkost 
1918a661aeaSAndreas Färber static const TypeInfo smdkc210_type = {
1928a661aeaSAndreas Färber     .name = MACHINE_TYPE_NAME("smdkc210"),
1938a661aeaSAndreas Färber     .parent = TYPE_MACHINE,
1948a661aeaSAndreas Färber     .class_init = smdkc210_class_init,
1958a661aeaSAndreas Färber };
1968a661aeaSAndreas Färber 
exynos4_machines_init(void)1978a661aeaSAndreas Färber static void exynos4_machines_init(void)
1988a661aeaSAndreas Färber {
1998a661aeaSAndreas Färber     type_register_static(&nuri_type);
2008a661aeaSAndreas Färber     type_register_static(&smdkc210_type);
2018a661aeaSAndreas Färber }
2028a661aeaSAndreas Färber 
2030e6aac87SEduardo Habkost type_init(exynos4_machines_init)
204