2 * SABRELITE Board System emulation.
4 * Copyright (c) 2015 Jean-Christophe Dubois <jcd@tribudubois.net>
6 * This code is licensed under the GPL, version 2 or later.
7 * See the file `COPYING' in the top level directory.
9 * It (partially) emulates a sabrelite board, with a Freescale
13 #include "qemu/osdep.h"
14 #include "qapi/error.h"
15 #include "qemu-common.h"
16 #include "hw/arm/fsl-imx6.h"
17 #include "hw/boards.h"
18 #include "sysemu/sysemu.h"
19 #include "qemu/error-report.h"
20 #include "sysemu/qtest.h"
22 typedef struct IMX6Sabrelite
{
27 static struct arm_boot_info sabrelite_binfo
= {
28 /* DDR memory start */
29 .loader_start
= FSL_IMX6_MMDC_ADDR
,
30 /* No board ID, we boot from DT tree */
34 /* No need to do any particular setup for secondary boot */
35 static void sabrelite_write_secondary(ARMCPU
*cpu
,
36 const struct arm_boot_info
*info
)
40 /* Secondary cores are reset through SRC device */
41 static void sabrelite_reset_secondary(ARMCPU
*cpu
,
42 const struct arm_boot_info
*info
)
46 static void sabrelite_init(MachineState
*machine
)
48 IMX6Sabrelite
*s
= g_new0(IMX6Sabrelite
, 1);
51 /* Check the amount of memory is compatible with the SOC */
52 if (machine
->ram_size
> FSL_IMX6_MMDC_SIZE
) {
53 error_report("RAM size " RAM_ADDR_FMT
" above max supported (%08x)",
54 machine
->ram_size
, FSL_IMX6_MMDC_SIZE
);
58 object_initialize(&s
->soc
, sizeof(s
->soc
), TYPE_FSL_IMX6
);
59 object_property_add_child(OBJECT(machine
), "soc", OBJECT(&s
->soc
),
62 object_property_set_bool(OBJECT(&s
->soc
), true, "realized", &err
);
64 error_report("%s", error_get_pretty(err
));
68 memory_region_allocate_system_memory(&s
->ram
, NULL
, "sabrelite.ram",
70 memory_region_add_subregion(get_system_memory(), FSL_IMX6_MMDC_ADDR
,
75 * TODO: Ideally we would expose the chip select and spi bus on the
76 * SoC object using alias properties; then we would not need to
77 * directly access the underlying spi device object.
79 /* Add the sst25vf016b NOR FLASH memory to first SPI */
82 spi_dev
= object_resolve_path_component(OBJECT(&s
->soc
), "spi1");
86 spi_bus
= (SSIBus
*)qdev_get_child_bus(DEVICE(spi_dev
), "spi");
88 DeviceState
*flash_dev
;
90 flash_dev
= ssi_create_slave(spi_bus
, "sst25vf016b");
92 qemu_irq cs_line
= qdev_get_gpio_in_named(flash_dev
,
94 sysbus_connect_irq(SYS_BUS_DEVICE(spi_dev
), 1, cs_line
);
100 sabrelite_binfo
.ram_size
= machine
->ram_size
;
101 sabrelite_binfo
.kernel_filename
= machine
->kernel_filename
;
102 sabrelite_binfo
.kernel_cmdline
= machine
->kernel_cmdline
;
103 sabrelite_binfo
.initrd_filename
= machine
->initrd_filename
;
104 sabrelite_binfo
.nb_cpus
= smp_cpus
;
105 sabrelite_binfo
.secure_boot
= true;
106 sabrelite_binfo
.write_secondary_boot
= sabrelite_write_secondary
;
107 sabrelite_binfo
.secondary_cpu_reset_hook
= sabrelite_reset_secondary
;
109 if (!qtest_enabled()) {
110 arm_load_kernel(&s
->soc
.cpu
[0], &sabrelite_binfo
);
114 static void sabrelite_machine_init(MachineClass
*mc
)
116 mc
->desc
= "Freescale i.MX6 Quad SABRE Lite Board (Cortex A9)";
117 mc
->init
= sabrelite_init
;
118 mc
->max_cpus
= FSL_IMX6_NUM_CPUS
;
121 DEFINE_MACHINE("sabrelite", sabrelite_machine_init
)