arm: add support for an ast2500 evaluation board
[qemu/ar7.git] / hw / arm / aspeed.c
blob2af9fe93444125c8be5087d619a8a053f55650a6
1 /*
2 * OpenPOWER Palmetto BMC
4 * Andrew Jeffery <andrew@aj.id.au>
6 * Copyright 2016 IBM Corp.
8 * This code is licensed under the GPL version 2 or later. See
9 * the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include "qapi/error.h"
14 #include "qemu-common.h"
15 #include "cpu.h"
16 #include "exec/address-spaces.h"
17 #include "hw/arm/arm.h"
18 #include "hw/arm/aspeed_soc.h"
19 #include "hw/boards.h"
20 #include "qemu/log.h"
21 #include "sysemu/block-backend.h"
22 #include "sysemu/blockdev.h"
24 static struct arm_boot_info aspeed_board_binfo = {
25 .board_id = -1, /* device-tree-only board */
26 .nb_cpus = 1,
29 typedef struct AspeedBoardState {
30 AspeedSoCState soc;
31 MemoryRegion ram;
32 } AspeedBoardState;
34 typedef struct AspeedBoardConfig {
35 const char *soc_name;
36 uint32_t hw_strap1;
37 } AspeedBoardConfig;
39 enum {
40 PALMETTO_BMC,
41 AST2500_EVB,
44 #define PALMETTO_BMC_HW_STRAP1 ( \
45 SCU_AST2400_HW_STRAP_DRAM_SIZE(DRAM_SIZE_256MB) | \
46 SCU_AST2400_HW_STRAP_DRAM_CONFIG(2 /* DDR3 with CL=6, CWL=5 */) | \
47 SCU_AST2400_HW_STRAP_ACPI_DIS | \
48 SCU_AST2400_HW_STRAP_SET_CLK_SOURCE(AST2400_CLK_48M_IN) | \
49 SCU_HW_STRAP_VGA_CLASS_CODE | \
50 SCU_HW_STRAP_LPC_RESET_PIN | \
51 SCU_HW_STRAP_SPI_MODE(SCU_HW_STRAP_SPI_M_S_EN) | \
52 SCU_AST2400_HW_STRAP_SET_CPU_AHB_RATIO(AST2400_CPU_AHB_RATIO_2_1) | \
53 SCU_HW_STRAP_SPI_WIDTH | \
54 SCU_HW_STRAP_VGA_SIZE_SET(VGA_16M_DRAM) | \
55 SCU_AST2400_HW_STRAP_BOOT_MODE(AST2400_SPI_BOOT))
57 #define AST2500_EVB_HW_STRAP1 (( \
58 AST2500_HW_STRAP1_DEFAULTS | \
59 SCU_AST2500_HW_STRAP_SPI_AUTOFETCH_ENABLE | \
60 SCU_AST2500_HW_STRAP_GPIO_STRAP_ENABLE | \
61 SCU_AST2500_HW_STRAP_UART_DEBUG | \
62 SCU_AST2500_HW_STRAP_DDR4_ENABLE | \
63 SCU_HW_STRAP_MAC1_RGMII | \
64 SCU_HW_STRAP_MAC0_RGMII) & \
65 ~SCU_HW_STRAP_2ND_BOOT_WDT)
67 static const AspeedBoardConfig aspeed_boards[] = {
68 [PALMETTO_BMC] = { "ast2400-a0", PALMETTO_BMC_HW_STRAP1 },
69 [AST2500_EVB] = { "ast2500-a1", AST2500_EVB_HW_STRAP1 },
72 static void aspeed_board_init_flashes(AspeedSMCState *s, const char *flashtype,
73 Error **errp)
75 int i ;
77 for (i = 0; i < s->num_cs; ++i) {
78 AspeedSMCFlash *fl = &s->flashes[i];
79 DriveInfo *dinfo = drive_get_next(IF_MTD);
80 qemu_irq cs_line;
83 * FIXME: check that we are not using a flash module exceeding
84 * the controller segment size
86 fl->flash = ssi_create_slave_no_init(s->spi, flashtype);
87 if (dinfo) {
88 qdev_prop_set_drive(fl->flash, "drive", blk_by_legacy_dinfo(dinfo),
89 errp);
91 qdev_init_nofail(fl->flash);
93 cs_line = qdev_get_gpio_in_named(fl->flash, SSI_GPIO_CS, 0);
94 sysbus_connect_irq(SYS_BUS_DEVICE(s), i + 1, cs_line);
98 static void aspeed_board_init(MachineState *machine,
99 const AspeedBoardConfig *cfg)
101 AspeedBoardState *bmc;
102 AspeedSoCClass *sc;
104 bmc = g_new0(AspeedBoardState, 1);
105 object_initialize(&bmc->soc, (sizeof(bmc->soc)), cfg->soc_name);
106 object_property_add_child(OBJECT(machine), "soc", OBJECT(&bmc->soc),
107 &error_abort);
109 sc = ASPEED_SOC_GET_CLASS(&bmc->soc);
111 memory_region_allocate_system_memory(&bmc->ram, NULL, "ram", ram_size);
112 memory_region_add_subregion(get_system_memory(), sc->info->sdram_base,
113 &bmc->ram);
114 object_property_add_const_link(OBJECT(&bmc->soc), "ram", OBJECT(&bmc->ram),
115 &error_abort);
116 object_property_set_int(OBJECT(&bmc->soc), cfg->hw_strap1, "hw-strap1",
117 &error_abort);
118 object_property_set_bool(OBJECT(&bmc->soc), true, "realized",
119 &error_abort);
121 aspeed_board_init_flashes(&bmc->soc.smc, "n25q256a", &error_abort);
122 aspeed_board_init_flashes(&bmc->soc.spi, "mx25l25635e", &error_abort);
124 aspeed_board_binfo.kernel_filename = machine->kernel_filename;
125 aspeed_board_binfo.initrd_filename = machine->initrd_filename;
126 aspeed_board_binfo.kernel_cmdline = machine->kernel_cmdline;
127 aspeed_board_binfo.ram_size = ram_size;
128 aspeed_board_binfo.loader_start = sc->info->sdram_base;
130 arm_load_kernel(ARM_CPU(first_cpu), &aspeed_board_binfo);
133 static void palmetto_bmc_init(MachineState *machine)
135 aspeed_board_init(machine, &aspeed_boards[PALMETTO_BMC]);
138 static void palmetto_bmc_class_init(ObjectClass *oc, void *data)
140 MachineClass *mc = MACHINE_CLASS(oc);
142 mc->desc = "OpenPOWER Palmetto BMC (ARM926EJ-S)";
143 mc->init = palmetto_bmc_init;
144 mc->max_cpus = 1;
145 mc->no_sdcard = 1;
146 mc->no_floppy = 1;
147 mc->no_cdrom = 1;
148 mc->no_sdcard = 1;
149 mc->no_parallel = 1;
152 static const TypeInfo palmetto_bmc_type = {
153 .name = MACHINE_TYPE_NAME("palmetto-bmc"),
154 .parent = TYPE_MACHINE,
155 .class_init = palmetto_bmc_class_init,
158 static void ast2500_evb_init(MachineState *machine)
160 aspeed_board_init(machine, &aspeed_boards[AST2500_EVB]);
163 static void ast2500_evb_class_init(ObjectClass *oc, void *data)
165 MachineClass *mc = MACHINE_CLASS(oc);
167 mc->desc = "Aspeed AST2500 EVB (ARM1176)";
168 mc->init = ast2500_evb_init;
169 mc->max_cpus = 1;
170 mc->no_sdcard = 1;
171 mc->no_floppy = 1;
172 mc->no_cdrom = 1;
173 mc->no_parallel = 1;
176 static const TypeInfo ast2500_evb_type = {
177 .name = MACHINE_TYPE_NAME("ast2500-evb"),
178 .parent = TYPE_MACHINE,
179 .class_init = ast2500_evb_class_init,
182 static void aspeed_machine_init(void)
184 type_register_static(&palmetto_bmc_type);
185 type_register_static(&ast2500_evb_type);
188 type_init(aspeed_machine_init)