2 * Machine definitions for boards featuring an NPCM7xx SoC.
4 * Copyright 2020 Google LLC
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #include "qemu/osdep.h"
19 #include "exec/address-spaces.h"
20 #include "hw/arm/npcm7xx.h"
21 #include "hw/core/cpu.h"
22 #include "hw/loader.h"
23 #include "hw/qdev-properties.h"
24 #include "qapi/error.h"
25 #include "qemu-common.h"
26 #include "qemu/units.h"
27 #include "sysemu/sysemu.h"
29 #define NPCM750_EVB_POWER_ON_STRAPS 0x00001ff7
30 #define QUANTA_GSJ_POWER_ON_STRAPS 0x00001fff
32 static const char npcm7xx_default_bootrom
[] = "npcm7xx_bootrom.bin";
34 static void npcm7xx_load_bootrom(MachineState
*machine
, NPCM7xxState
*soc
)
36 g_autofree
char *filename
= NULL
;
40 bios_name
= npcm7xx_default_bootrom
;
43 filename
= qemu_find_file(QEMU_FILE_TYPE_BIOS
, bios_name
);
45 error_report("Could not find ROM image '%s'", bios_name
);
46 if (!machine
->kernel_filename
) {
47 /* We can't boot without a bootrom or a kernel image. */
52 ret
= load_image_mr(filename
, &soc
->irom
);
54 error_report("Failed to load ROM image '%s'", filename
);
59 static void npcm7xx_connect_flash(NPCM7xxFIUState
*fiu
, int cs_no
,
60 const char *flash_type
, DriveInfo
*dinfo
)
65 flash
= qdev_new(flash_type
);
67 qdev_prop_set_drive(flash
, "drive", blk_by_legacy_dinfo(dinfo
));
69 qdev_realize_and_unref(flash
, BUS(fiu
->spi
), &error_fatal
);
71 flash_cs
= qdev_get_gpio_in_named(flash
, SSI_GPIO_CS
, 0);
72 qdev_connect_gpio_out_named(DEVICE(fiu
), "cs", cs_no
, flash_cs
);
75 static void npcm7xx_connect_dram(NPCM7xxState
*soc
, MemoryRegion
*dram
)
77 memory_region_add_subregion(get_system_memory(), NPCM7XX_DRAM_BA
, dram
);
79 object_property_set_link(OBJECT(soc
), "dram-mr", OBJECT(dram
),
83 static NPCM7xxState
*npcm7xx_create_soc(MachineState
*machine
,
86 NPCM7xxMachineClass
*nmc
= NPCM7XX_MACHINE_GET_CLASS(machine
);
87 MachineClass
*mc
= &nmc
->parent
;
90 if (strcmp(machine
->cpu_type
, mc
->default_cpu_type
) != 0) {
91 error_report("This board can only be used with %s",
92 mc
->default_cpu_type
);
96 obj
= object_new_with_props(nmc
->soc_type
, OBJECT(machine
), "soc",
98 object_property_set_uint(obj
, "power-on-straps", hw_straps
, &error_abort
);
103 static void npcm750_evb_init(MachineState
*machine
)
107 soc
= npcm7xx_create_soc(machine
, NPCM750_EVB_POWER_ON_STRAPS
);
108 npcm7xx_connect_dram(soc
, machine
->ram
);
109 qdev_realize(DEVICE(soc
), NULL
, &error_fatal
);
111 npcm7xx_load_bootrom(machine
, soc
);
112 npcm7xx_connect_flash(&soc
->fiu
[0], 0, "w25q256", drive_get(IF_MTD
, 0, 0));
113 npcm7xx_load_kernel(machine
, soc
);
116 static void quanta_gsj_init(MachineState
*machine
)
120 soc
= npcm7xx_create_soc(machine
, QUANTA_GSJ_POWER_ON_STRAPS
);
121 npcm7xx_connect_dram(soc
, machine
->ram
);
122 qdev_realize(DEVICE(soc
), NULL
, &error_fatal
);
124 npcm7xx_load_bootrom(machine
, soc
);
125 npcm7xx_connect_flash(&soc
->fiu
[0], 0, "mx25l25635e",
126 drive_get(IF_MTD
, 0, 0));
127 npcm7xx_load_kernel(machine
, soc
);
130 static void npcm7xx_set_soc_type(NPCM7xxMachineClass
*nmc
, const char *type
)
132 NPCM7xxClass
*sc
= NPCM7XX_CLASS(object_class_by_name(type
));
133 MachineClass
*mc
= MACHINE_CLASS(nmc
);
135 nmc
->soc_type
= type
;
136 mc
->default_cpus
= mc
->min_cpus
= mc
->max_cpus
= sc
->num_cpus
;
139 static void npcm7xx_machine_class_init(ObjectClass
*oc
, void *data
)
141 MachineClass
*mc
= MACHINE_CLASS(oc
);
146 mc
->default_ram_id
= "ram";
147 mc
->default_cpu_type
= ARM_CPU_TYPE_NAME("cortex-a9");
152 * https://github.com/Nuvoton-Israel/nuvoton-info/blob/master/npcm7xx-poleg/evaluation-board/board_deliverables/NPCM750x_EB_ver.A1.1_COMPLETE.pdf
154 static void npcm750_evb_machine_class_init(ObjectClass
*oc
, void *data
)
156 NPCM7xxMachineClass
*nmc
= NPCM7XX_MACHINE_CLASS(oc
);
157 MachineClass
*mc
= MACHINE_CLASS(oc
);
159 npcm7xx_set_soc_type(nmc
, TYPE_NPCM750
);
161 mc
->desc
= "Nuvoton NPCM750 Evaluation Board (Cortex A9)";
162 mc
->init
= npcm750_evb_init
;
163 mc
->default_ram_size
= 512 * MiB
;
166 static void gsj_machine_class_init(ObjectClass
*oc
, void *data
)
168 NPCM7xxMachineClass
*nmc
= NPCM7XX_MACHINE_CLASS(oc
);
169 MachineClass
*mc
= MACHINE_CLASS(oc
);
171 npcm7xx_set_soc_type(nmc
, TYPE_NPCM730
);
173 mc
->desc
= "Quanta GSJ (Cortex A9)";
174 mc
->init
= quanta_gsj_init
;
175 mc
->default_ram_size
= 512 * MiB
;
178 static const TypeInfo npcm7xx_machine_types
[] = {
180 .name
= TYPE_NPCM7XX_MACHINE
,
181 .parent
= TYPE_MACHINE
,
182 .instance_size
= sizeof(NPCM7xxMachine
),
183 .class_size
= sizeof(NPCM7xxMachineClass
),
184 .class_init
= npcm7xx_machine_class_init
,
187 .name
= MACHINE_TYPE_NAME("npcm750-evb"),
188 .parent
= TYPE_NPCM7XX_MACHINE
,
189 .class_init
= npcm750_evb_machine_class_init
,
191 .name
= MACHINE_TYPE_NAME("quanta-gsj"),
192 .parent
= TYPE_NPCM7XX_MACHINE
,
193 .class_init
= gsj_machine_class_init
,
197 DEFINE_TYPES(npcm7xx_machine_types
)