]>
Commit | Line | Data |
---|---|---|
3a0f31bc JCD |
1 | /* |
2 | * SABRELITE Board System emulation. | |
3 | * | |
4 | * Copyright (c) 2015 Jean-Christophe Dubois <[email protected]> | |
5 | * | |
6 | * This code is licensed under the GPL, version 2 or later. | |
7 | * See the file `COPYING' in the top level directory. | |
8 | * | |
9 | * It (partially) emulates a sabrelite board, with a Freescale | |
10 | * i.MX6 SoC | |
11 | */ | |
12 | ||
13 | #include "qemu/osdep.h" | |
14 | #include "qapi/error.h" | |
3a0f31bc JCD |
15 | #include "hw/arm/fsl-imx6.h" |
16 | #include "hw/boards.h" | |
a27bd6c7 | 17 | #include "hw/qdev-properties.h" |
3a0f31bc JCD |
18 | #include "qemu/error-report.h" |
19 | #include "sysemu/qtest.h" | |
20 | ||
3a0f31bc JCD |
21 | static struct arm_boot_info sabrelite_binfo = { |
22 | /* DDR memory start */ | |
23 | .loader_start = FSL_IMX6_MMDC_ADDR, | |
24 | /* No board ID, we boot from DT tree */ | |
25 | .board_id = -1, | |
26 | }; | |
27 | ||
28 | /* No need to do any particular setup for secondary boot */ | |
29 | static void sabrelite_write_secondary(ARMCPU *cpu, | |
30 | const struct arm_boot_info *info) | |
31 | { | |
32 | } | |
33 | ||
34 | /* Secondary cores are reset through SRC device */ | |
35 | static void sabrelite_reset_secondary(ARMCPU *cpu, | |
36 | const struct arm_boot_info *info) | |
37 | { | |
38 | } | |
39 | ||
40 | static void sabrelite_init(MachineState *machine) | |
41 | { | |
778f4326 | 42 | FslIMX6State *s; |
3a0f31bc JCD |
43 | |
44 | /* Check the amount of memory is compatible with the SOC */ | |
45 | if (machine->ram_size > FSL_IMX6_MMDC_SIZE) { | |
46 | error_report("RAM size " RAM_ADDR_FMT " above max supported (%08x)", | |
47 | machine->ram_size, FSL_IMX6_MMDC_SIZE); | |
48 | exit(1); | |
49 | } | |
50 | ||
778f4326 | 51 | s = FSL_IMX6(object_new(TYPE_FSL_IMX6)); |
d2623129 | 52 | object_property_add_child(OBJECT(machine), "soc", OBJECT(s)); |
37e33be7 BM |
53 | |
54 | /* Ethernet PHY address is 6 */ | |
55 | object_property_set_int(OBJECT(s), "fec-phy-num", 6, &error_fatal); | |
56 | ||
ce189ab2 | 57 | qdev_realize(DEVICE(s), NULL, &error_fatal); |
3a0f31bc | 58 | |
3a0f31bc | 59 | memory_region_add_subregion(get_system_memory(), FSL_IMX6_MMDC_ADDR, |
778f4326 | 60 | machine->ram); |
3a0f31bc JCD |
61 | |
62 | { | |
63 | /* | |
64 | * TODO: Ideally we would expose the chip select and spi bus on the | |
65 | * SoC object using alias properties; then we would not need to | |
66 | * directly access the underlying spi device object. | |
67 | */ | |
68 | /* Add the sst25vf016b NOR FLASH memory to first SPI */ | |
69 | Object *spi_dev; | |
70 | ||
778f4326 | 71 | spi_dev = object_resolve_path_component(OBJECT(s), "spi1"); |
3a0f31bc JCD |
72 | if (spi_dev) { |
73 | SSIBus *spi_bus; | |
74 | ||
75 | spi_bus = (SSIBus *)qdev_get_child_bus(DEVICE(spi_dev), "spi"); | |
76 | if (spi_bus) { | |
77 | DeviceState *flash_dev; | |
73bce518 | 78 | qemu_irq cs_line; |
64eaa820 | 79 | DriveInfo *dinfo = drive_get(IF_MTD, 0, 0); |
73bce518 | 80 | |
57d479c9 | 81 | flash_dev = qdev_new("sst25vf016b"); |
73bce518 | 82 | if (dinfo) { |
934df912 MA |
83 | qdev_prop_set_drive_err(flash_dev, "drive", |
84 | blk_by_legacy_dinfo(dinfo), | |
85 | &error_fatal); | |
3a0f31bc | 86 | } |
57d479c9 | 87 | qdev_realize_and_unref(flash_dev, BUS(spi_bus), &error_fatal); |
73bce518 PB |
88 | |
89 | cs_line = qdev_get_gpio_in_named(flash_dev, SSI_GPIO_CS, 0); | |
1f4b2ec7 | 90 | qdev_connect_gpio_out(DEVICE(&s->gpio[2]), 19, cs_line); |
3a0f31bc JCD |
91 | } |
92 | } | |
93 | } | |
94 | ||
95 | sabrelite_binfo.ram_size = machine->ram_size; | |
3a0f31bc JCD |
96 | sabrelite_binfo.secure_boot = true; |
97 | sabrelite_binfo.write_secondary_boot = sabrelite_write_secondary; | |
98 | sabrelite_binfo.secondary_cpu_reset_hook = sabrelite_reset_secondary; | |
99 | ||
100 | if (!qtest_enabled()) { | |
778f4326 | 101 | arm_load_kernel(&s->cpu[0], machine, &sabrelite_binfo); |
3a0f31bc JCD |
102 | } |
103 | } | |
104 | ||
105 | static void sabrelite_machine_init(MachineClass *mc) | |
106 | { | |
f548f201 | 107 | mc->desc = "Freescale i.MX6 Quad SABRE Lite Board (Cortex-A9)"; |
3a0f31bc JCD |
108 | mc->init = sabrelite_init; |
109 | mc->max_cpus = FSL_IMX6_NUM_CPUS; | |
4672cbd7 | 110 | mc->ignore_memory_transaction_failures = true; |
778f4326 | 111 | mc->default_ram_id = "sabrelite.ram"; |
3a0f31bc JCD |
112 | } |
113 | ||
114 | DEFINE_MACHINE("sabrelite", sabrelite_machine_init) |