xref: /openbmc/qemu/hw/riscv/sifive_u.c (revision 97841438)
1 /*
2  * QEMU RISC-V Board Compatible with SiFive Freedom U SDK
3  *
4  * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5  * Copyright (c) 2017 SiFive, Inc.
6  * Copyright (c) 2019 Bin Meng <bmeng.cn@gmail.com>
7  *
8  * Provides a board compatible with the SiFive Freedom U SDK:
9  *
10  * 0) UART
11  * 1) CLINT (Core Level Interruptor)
12  * 2) PLIC (Platform Level Interrupt Controller)
13  * 3) PRCI (Power, Reset, Clock, Interrupt)
14  * 4) GPIO (General Purpose Input/Output Controller)
15  * 5) OTP (One-Time Programmable) memory with stored serial number
16  * 6) GEM (Gigabit Ethernet Controller) and management block
17  * 7) DMA (Direct Memory Access Controller)
18  *
19  * This board currently generates devicetree dynamically that indicates at least
20  * two harts and up to five harts.
21  *
22  * This program is free software; you can redistribute it and/or modify it
23  * under the terms and conditions of the GNU General Public License,
24  * version 2 or later, as published by the Free Software Foundation.
25  *
26  * This program is distributed in the hope it will be useful, but WITHOUT
27  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
28  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
29  * more details.
30  *
31  * You should have received a copy of the GNU General Public License along with
32  * this program.  If not, see <http://www.gnu.org/licenses/>.
33  */
34 
35 #include "qemu/osdep.h"
36 #include "qemu/log.h"
37 #include "qemu/error-report.h"
38 #include "qapi/error.h"
39 #include "qapi/visitor.h"
40 #include "hw/boards.h"
41 #include "hw/irq.h"
42 #include "hw/loader.h"
43 #include "hw/sysbus.h"
44 #include "hw/char/serial.h"
45 #include "hw/cpu/cluster.h"
46 #include "hw/misc/unimp.h"
47 #include "target/riscv/cpu.h"
48 #include "hw/riscv/riscv_hart.h"
49 #include "hw/riscv/sifive_u.h"
50 #include "hw/riscv/boot.h"
51 #include "hw/char/sifive_uart.h"
52 #include "hw/intc/sifive_clint.h"
53 #include "hw/intc/sifive_plic.h"
54 #include "chardev/char.h"
55 #include "net/eth.h"
56 #include "sysemu/arch_init.h"
57 #include "sysemu/device_tree.h"
58 #include "sysemu/runstate.h"
59 #include "sysemu/sysemu.h"
60 
61 #include <libfdt.h>
62 
63 #if defined(TARGET_RISCV32)
64 # define BIOS_FILENAME "opensbi-riscv32-generic-fw_dynamic.bin"
65 #else
66 # define BIOS_FILENAME "opensbi-riscv64-generic-fw_dynamic.bin"
67 #endif
68 
69 static const struct MemmapEntry {
70     hwaddr base;
71     hwaddr size;
72 } sifive_u_memmap[] = {
73     [SIFIVE_U_DEV_DEBUG] =    {        0x0,      0x100 },
74     [SIFIVE_U_DEV_MROM] =     {     0x1000,     0xf000 },
75     [SIFIVE_U_DEV_CLINT] =    {  0x2000000,    0x10000 },
76     [SIFIVE_U_DEV_L2CC] =     {  0x2010000,     0x1000 },
77     [SIFIVE_U_DEV_PDMA] =     {  0x3000000,   0x100000 },
78     [SIFIVE_U_DEV_L2LIM] =    {  0x8000000,  0x2000000 },
79     [SIFIVE_U_DEV_PLIC] =     {  0xc000000,  0x4000000 },
80     [SIFIVE_U_DEV_PRCI] =     { 0x10000000,     0x1000 },
81     [SIFIVE_U_DEV_UART0] =    { 0x10010000,     0x1000 },
82     [SIFIVE_U_DEV_UART1] =    { 0x10011000,     0x1000 },
83     [SIFIVE_U_DEV_GPIO] =     { 0x10060000,     0x1000 },
84     [SIFIVE_U_DEV_OTP] =      { 0x10070000,     0x1000 },
85     [SIFIVE_U_DEV_GEM] =      { 0x10090000,     0x2000 },
86     [SIFIVE_U_DEV_GEM_MGMT] = { 0x100a0000,     0x1000 },
87     [SIFIVE_U_DEV_DMC] =      { 0x100b0000,    0x10000 },
88     [SIFIVE_U_DEV_FLASH0] =   { 0x20000000, 0x10000000 },
89     [SIFIVE_U_DEV_DRAM] =     { 0x80000000,        0x0 },
90 };
91 
92 #define OTP_SERIAL          1
93 #define GEM_REVISION        0x10070109
94 
95 static void create_fdt(SiFiveUState *s, const struct MemmapEntry *memmap,
96     uint64_t mem_size, const char *cmdline)
97 {
98     MachineState *ms = MACHINE(qdev_get_machine());
99     void *fdt;
100     int cpu;
101     uint32_t *cells;
102     char *nodename;
103     char ethclk_names[] = "pclk\0hclk";
104     uint32_t plic_phandle, prci_phandle, gpio_phandle, phandle = 1;
105     uint32_t hfclk_phandle, rtcclk_phandle, phy_phandle;
106 
107     fdt = s->fdt = create_device_tree(&s->fdt_size);
108     if (!fdt) {
109         error_report("create_device_tree() failed");
110         exit(1);
111     }
112 
113     qemu_fdt_setprop_string(fdt, "/", "model", "SiFive HiFive Unleashed A00");
114     qemu_fdt_setprop_string(fdt, "/", "compatible",
115                             "sifive,hifive-unleashed-a00");
116     qemu_fdt_setprop_cell(fdt, "/", "#size-cells", 0x2);
117     qemu_fdt_setprop_cell(fdt, "/", "#address-cells", 0x2);
118 
119     qemu_fdt_add_subnode(fdt, "/soc");
120     qemu_fdt_setprop(fdt, "/soc", "ranges", NULL, 0);
121     qemu_fdt_setprop_string(fdt, "/soc", "compatible", "simple-bus");
122     qemu_fdt_setprop_cell(fdt, "/soc", "#size-cells", 0x2);
123     qemu_fdt_setprop_cell(fdt, "/soc", "#address-cells", 0x2);
124 
125     hfclk_phandle = phandle++;
126     nodename = g_strdup_printf("/hfclk");
127     qemu_fdt_add_subnode(fdt, nodename);
128     qemu_fdt_setprop_cell(fdt, nodename, "phandle", hfclk_phandle);
129     qemu_fdt_setprop_string(fdt, nodename, "clock-output-names", "hfclk");
130     qemu_fdt_setprop_cell(fdt, nodename, "clock-frequency",
131         SIFIVE_U_HFCLK_FREQ);
132     qemu_fdt_setprop_string(fdt, nodename, "compatible", "fixed-clock");
133     qemu_fdt_setprop_cell(fdt, nodename, "#clock-cells", 0x0);
134     g_free(nodename);
135 
136     rtcclk_phandle = phandle++;
137     nodename = g_strdup_printf("/rtcclk");
138     qemu_fdt_add_subnode(fdt, nodename);
139     qemu_fdt_setprop_cell(fdt, nodename, "phandle", rtcclk_phandle);
140     qemu_fdt_setprop_string(fdt, nodename, "clock-output-names", "rtcclk");
141     qemu_fdt_setprop_cell(fdt, nodename, "clock-frequency",
142         SIFIVE_U_RTCCLK_FREQ);
143     qemu_fdt_setprop_string(fdt, nodename, "compatible", "fixed-clock");
144     qemu_fdt_setprop_cell(fdt, nodename, "#clock-cells", 0x0);
145     g_free(nodename);
146 
147     nodename = g_strdup_printf("/memory@%lx",
148         (long)memmap[SIFIVE_U_DEV_DRAM].base);
149     qemu_fdt_add_subnode(fdt, nodename);
150     qemu_fdt_setprop_cells(fdt, nodename, "reg",
151         memmap[SIFIVE_U_DEV_DRAM].base >> 32, memmap[SIFIVE_U_DEV_DRAM].base,
152         mem_size >> 32, mem_size);
153     qemu_fdt_setprop_string(fdt, nodename, "device_type", "memory");
154     g_free(nodename);
155 
156     qemu_fdt_add_subnode(fdt, "/cpus");
157     qemu_fdt_setprop_cell(fdt, "/cpus", "timebase-frequency",
158         SIFIVE_CLINT_TIMEBASE_FREQ);
159     qemu_fdt_setprop_cell(fdt, "/cpus", "#size-cells", 0x0);
160     qemu_fdt_setprop_cell(fdt, "/cpus", "#address-cells", 0x1);
161 
162     for (cpu = ms->smp.cpus - 1; cpu >= 0; cpu--) {
163         int cpu_phandle = phandle++;
164         nodename = g_strdup_printf("/cpus/cpu@%d", cpu);
165         char *intc = g_strdup_printf("/cpus/cpu@%d/interrupt-controller", cpu);
166         char *isa;
167         qemu_fdt_add_subnode(fdt, nodename);
168         /* cpu 0 is the management hart that does not have mmu */
169         if (cpu != 0) {
170 #if defined(TARGET_RISCV32)
171             qemu_fdt_setprop_string(fdt, nodename, "mmu-type", "riscv,sv32");
172 #else
173             qemu_fdt_setprop_string(fdt, nodename, "mmu-type", "riscv,sv48");
174 #endif
175             isa = riscv_isa_string(&s->soc.u_cpus.harts[cpu - 1]);
176         } else {
177             isa = riscv_isa_string(&s->soc.e_cpus.harts[0]);
178         }
179         qemu_fdt_setprop_string(fdt, nodename, "riscv,isa", isa);
180         qemu_fdt_setprop_string(fdt, nodename, "compatible", "riscv");
181         qemu_fdt_setprop_string(fdt, nodename, "status", "okay");
182         qemu_fdt_setprop_cell(fdt, nodename, "reg", cpu);
183         qemu_fdt_setprop_string(fdt, nodename, "device_type", "cpu");
184         qemu_fdt_add_subnode(fdt, intc);
185         qemu_fdt_setprop_cell(fdt, intc, "phandle", cpu_phandle);
186         qemu_fdt_setprop_string(fdt, intc, "compatible", "riscv,cpu-intc");
187         qemu_fdt_setprop(fdt, intc, "interrupt-controller", NULL, 0);
188         qemu_fdt_setprop_cell(fdt, intc, "#interrupt-cells", 1);
189         g_free(isa);
190         g_free(intc);
191         g_free(nodename);
192     }
193 
194     cells =  g_new0(uint32_t, ms->smp.cpus * 4);
195     for (cpu = 0; cpu < ms->smp.cpus; cpu++) {
196         nodename =
197             g_strdup_printf("/cpus/cpu@%d/interrupt-controller", cpu);
198         uint32_t intc_phandle = qemu_fdt_get_phandle(fdt, nodename);
199         cells[cpu * 4 + 0] = cpu_to_be32(intc_phandle);
200         cells[cpu * 4 + 1] = cpu_to_be32(IRQ_M_SOFT);
201         cells[cpu * 4 + 2] = cpu_to_be32(intc_phandle);
202         cells[cpu * 4 + 3] = cpu_to_be32(IRQ_M_TIMER);
203         g_free(nodename);
204     }
205     nodename = g_strdup_printf("/soc/clint@%lx",
206         (long)memmap[SIFIVE_U_DEV_CLINT].base);
207     qemu_fdt_add_subnode(fdt, nodename);
208     qemu_fdt_setprop_string(fdt, nodename, "compatible", "riscv,clint0");
209     qemu_fdt_setprop_cells(fdt, nodename, "reg",
210         0x0, memmap[SIFIVE_U_DEV_CLINT].base,
211         0x0, memmap[SIFIVE_U_DEV_CLINT].size);
212     qemu_fdt_setprop(fdt, nodename, "interrupts-extended",
213         cells, ms->smp.cpus * sizeof(uint32_t) * 4);
214     g_free(cells);
215     g_free(nodename);
216 
217     nodename = g_strdup_printf("/soc/otp@%lx",
218         (long)memmap[SIFIVE_U_DEV_OTP].base);
219     qemu_fdt_add_subnode(fdt, nodename);
220     qemu_fdt_setprop_cell(fdt, nodename, "fuse-count", SIFIVE_U_OTP_REG_SIZE);
221     qemu_fdt_setprop_cells(fdt, nodename, "reg",
222         0x0, memmap[SIFIVE_U_DEV_OTP].base,
223         0x0, memmap[SIFIVE_U_DEV_OTP].size);
224     qemu_fdt_setprop_string(fdt, nodename, "compatible",
225         "sifive,fu540-c000-otp");
226     g_free(nodename);
227 
228     prci_phandle = phandle++;
229     nodename = g_strdup_printf("/soc/clock-controller@%lx",
230         (long)memmap[SIFIVE_U_DEV_PRCI].base);
231     qemu_fdt_add_subnode(fdt, nodename);
232     qemu_fdt_setprop_cell(fdt, nodename, "phandle", prci_phandle);
233     qemu_fdt_setprop_cell(fdt, nodename, "#clock-cells", 0x1);
234     qemu_fdt_setprop_cells(fdt, nodename, "clocks",
235         hfclk_phandle, rtcclk_phandle);
236     qemu_fdt_setprop_cells(fdt, nodename, "reg",
237         0x0, memmap[SIFIVE_U_DEV_PRCI].base,
238         0x0, memmap[SIFIVE_U_DEV_PRCI].size);
239     qemu_fdt_setprop_string(fdt, nodename, "compatible",
240         "sifive,fu540-c000-prci");
241     g_free(nodename);
242 
243     plic_phandle = phandle++;
244     cells =  g_new0(uint32_t, ms->smp.cpus * 4 - 2);
245     for (cpu = 0; cpu < ms->smp.cpus; cpu++) {
246         nodename =
247             g_strdup_printf("/cpus/cpu@%d/interrupt-controller", cpu);
248         uint32_t intc_phandle = qemu_fdt_get_phandle(fdt, nodename);
249         /* cpu 0 is the management hart that does not have S-mode */
250         if (cpu == 0) {
251             cells[0] = cpu_to_be32(intc_phandle);
252             cells[1] = cpu_to_be32(IRQ_M_EXT);
253         } else {
254             cells[cpu * 4 - 2] = cpu_to_be32(intc_phandle);
255             cells[cpu * 4 - 1] = cpu_to_be32(IRQ_M_EXT);
256             cells[cpu * 4 + 0] = cpu_to_be32(intc_phandle);
257             cells[cpu * 4 + 1] = cpu_to_be32(IRQ_S_EXT);
258         }
259         g_free(nodename);
260     }
261     nodename = g_strdup_printf("/soc/interrupt-controller@%lx",
262         (long)memmap[SIFIVE_U_DEV_PLIC].base);
263     qemu_fdt_add_subnode(fdt, nodename);
264     qemu_fdt_setprop_cell(fdt, nodename, "#interrupt-cells", 1);
265     qemu_fdt_setprop_string(fdt, nodename, "compatible", "riscv,plic0");
266     qemu_fdt_setprop(fdt, nodename, "interrupt-controller", NULL, 0);
267     qemu_fdt_setprop(fdt, nodename, "interrupts-extended",
268         cells, (ms->smp.cpus * 4 - 2) * sizeof(uint32_t));
269     qemu_fdt_setprop_cells(fdt, nodename, "reg",
270         0x0, memmap[SIFIVE_U_DEV_PLIC].base,
271         0x0, memmap[SIFIVE_U_DEV_PLIC].size);
272     qemu_fdt_setprop_cell(fdt, nodename, "riscv,ndev", 0x35);
273     qemu_fdt_setprop_cell(fdt, nodename, "phandle", plic_phandle);
274     plic_phandle = qemu_fdt_get_phandle(fdt, nodename);
275     g_free(cells);
276     g_free(nodename);
277 
278     gpio_phandle = phandle++;
279     nodename = g_strdup_printf("/soc/gpio@%lx",
280         (long)memmap[SIFIVE_U_DEV_GPIO].base);
281     qemu_fdt_add_subnode(fdt, nodename);
282     qemu_fdt_setprop_cell(fdt, nodename, "phandle", gpio_phandle);
283     qemu_fdt_setprop_cells(fdt, nodename, "clocks",
284         prci_phandle, PRCI_CLK_TLCLK);
285     qemu_fdt_setprop_cell(fdt, nodename, "#interrupt-cells", 2);
286     qemu_fdt_setprop(fdt, nodename, "interrupt-controller", NULL, 0);
287     qemu_fdt_setprop_cell(fdt, nodename, "#gpio-cells", 2);
288     qemu_fdt_setprop(fdt, nodename, "gpio-controller", NULL, 0);
289     qemu_fdt_setprop_cells(fdt, nodename, "reg",
290         0x0, memmap[SIFIVE_U_DEV_GPIO].base,
291         0x0, memmap[SIFIVE_U_DEV_GPIO].size);
292     qemu_fdt_setprop_cells(fdt, nodename, "interrupts", SIFIVE_U_GPIO_IRQ0,
293         SIFIVE_U_GPIO_IRQ1, SIFIVE_U_GPIO_IRQ2, SIFIVE_U_GPIO_IRQ3,
294         SIFIVE_U_GPIO_IRQ4, SIFIVE_U_GPIO_IRQ5, SIFIVE_U_GPIO_IRQ6,
295         SIFIVE_U_GPIO_IRQ7, SIFIVE_U_GPIO_IRQ8, SIFIVE_U_GPIO_IRQ9,
296         SIFIVE_U_GPIO_IRQ10, SIFIVE_U_GPIO_IRQ11, SIFIVE_U_GPIO_IRQ12,
297         SIFIVE_U_GPIO_IRQ13, SIFIVE_U_GPIO_IRQ14, SIFIVE_U_GPIO_IRQ15);
298     qemu_fdt_setprop_cell(fdt, nodename, "interrupt-parent", plic_phandle);
299     qemu_fdt_setprop_string(fdt, nodename, "compatible", "sifive,gpio0");
300     g_free(nodename);
301 
302     nodename = g_strdup_printf("/gpio-restart");
303     qemu_fdt_add_subnode(fdt, nodename);
304     qemu_fdt_setprop_cells(fdt, nodename, "gpios", gpio_phandle, 10, 1);
305     qemu_fdt_setprop_string(fdt, nodename, "compatible", "gpio-restart");
306     g_free(nodename);
307 
308     nodename = g_strdup_printf("/soc/dma@%lx",
309         (long)memmap[SIFIVE_U_DEV_PDMA].base);
310     qemu_fdt_add_subnode(fdt, nodename);
311     qemu_fdt_setprop_cell(fdt, nodename, "#dma-cells", 1);
312     qemu_fdt_setprop_cells(fdt, nodename, "interrupts",
313         SIFIVE_U_PDMA_IRQ0, SIFIVE_U_PDMA_IRQ1, SIFIVE_U_PDMA_IRQ2,
314         SIFIVE_U_PDMA_IRQ3, SIFIVE_U_PDMA_IRQ4, SIFIVE_U_PDMA_IRQ5,
315         SIFIVE_U_PDMA_IRQ6, SIFIVE_U_PDMA_IRQ7);
316     qemu_fdt_setprop_cell(fdt, nodename, "interrupt-parent", plic_phandle);
317     qemu_fdt_setprop_cells(fdt, nodename, "reg",
318         0x0, memmap[SIFIVE_U_DEV_PDMA].base,
319         0x0, memmap[SIFIVE_U_DEV_PDMA].size);
320     qemu_fdt_setprop_string(fdt, nodename, "compatible",
321                             "sifive,fu540-c000-pdma");
322     g_free(nodename);
323 
324     nodename = g_strdup_printf("/soc/cache-controller@%lx",
325         (long)memmap[SIFIVE_U_DEV_L2CC].base);
326     qemu_fdt_add_subnode(fdt, nodename);
327     qemu_fdt_setprop_cells(fdt, nodename, "reg",
328         0x0, memmap[SIFIVE_U_DEV_L2CC].base,
329         0x0, memmap[SIFIVE_U_DEV_L2CC].size);
330     qemu_fdt_setprop_cells(fdt, nodename, "interrupts",
331         SIFIVE_U_L2CC_IRQ0, SIFIVE_U_L2CC_IRQ1, SIFIVE_U_L2CC_IRQ2);
332     qemu_fdt_setprop_cell(fdt, nodename, "interrupt-parent", plic_phandle);
333     qemu_fdt_setprop(fdt, nodename, "cache-unified", NULL, 0);
334     qemu_fdt_setprop_cell(fdt, nodename, "cache-size", 2097152);
335     qemu_fdt_setprop_cell(fdt, nodename, "cache-sets", 1024);
336     qemu_fdt_setprop_cell(fdt, nodename, "cache-level", 2);
337     qemu_fdt_setprop_cell(fdt, nodename, "cache-block-size", 64);
338     qemu_fdt_setprop_string(fdt, nodename, "compatible",
339                             "sifive,fu540-c000-ccache");
340     g_free(nodename);
341 
342     phy_phandle = phandle++;
343     nodename = g_strdup_printf("/soc/ethernet@%lx",
344         (long)memmap[SIFIVE_U_DEV_GEM].base);
345     qemu_fdt_add_subnode(fdt, nodename);
346     qemu_fdt_setprop_string(fdt, nodename, "compatible",
347         "sifive,fu540-c000-gem");
348     qemu_fdt_setprop_cells(fdt, nodename, "reg",
349         0x0, memmap[SIFIVE_U_DEV_GEM].base,
350         0x0, memmap[SIFIVE_U_DEV_GEM].size,
351         0x0, memmap[SIFIVE_U_DEV_GEM_MGMT].base,
352         0x0, memmap[SIFIVE_U_DEV_GEM_MGMT].size);
353     qemu_fdt_setprop_string(fdt, nodename, "reg-names", "control");
354     qemu_fdt_setprop_string(fdt, nodename, "phy-mode", "gmii");
355     qemu_fdt_setprop_cell(fdt, nodename, "phy-handle", phy_phandle);
356     qemu_fdt_setprop_cell(fdt, nodename, "interrupt-parent", plic_phandle);
357     qemu_fdt_setprop_cell(fdt, nodename, "interrupts", SIFIVE_U_GEM_IRQ);
358     qemu_fdt_setprop_cells(fdt, nodename, "clocks",
359         prci_phandle, PRCI_CLK_GEMGXLPLL, prci_phandle, PRCI_CLK_GEMGXLPLL);
360     qemu_fdt_setprop(fdt, nodename, "clock-names", ethclk_names,
361         sizeof(ethclk_names));
362     qemu_fdt_setprop(fdt, nodename, "local-mac-address",
363         s->soc.gem.conf.macaddr.a, ETH_ALEN);
364     qemu_fdt_setprop_cell(fdt, nodename, "#address-cells", 1);
365     qemu_fdt_setprop_cell(fdt, nodename, "#size-cells", 0);
366 
367     qemu_fdt_add_subnode(fdt, "/aliases");
368     qemu_fdt_setprop_string(fdt, "/aliases", "ethernet0", nodename);
369 
370     g_free(nodename);
371 
372     nodename = g_strdup_printf("/soc/ethernet@%lx/ethernet-phy@0",
373         (long)memmap[SIFIVE_U_DEV_GEM].base);
374     qemu_fdt_add_subnode(fdt, nodename);
375     qemu_fdt_setprop_cell(fdt, nodename, "phandle", phy_phandle);
376     qemu_fdt_setprop_cell(fdt, nodename, "reg", 0x0);
377     g_free(nodename);
378 
379     nodename = g_strdup_printf("/soc/serial@%lx",
380         (long)memmap[SIFIVE_U_DEV_UART0].base);
381     qemu_fdt_add_subnode(fdt, nodename);
382     qemu_fdt_setprop_string(fdt, nodename, "compatible", "sifive,uart0");
383     qemu_fdt_setprop_cells(fdt, nodename, "reg",
384         0x0, memmap[SIFIVE_U_DEV_UART0].base,
385         0x0, memmap[SIFIVE_U_DEV_UART0].size);
386     qemu_fdt_setprop_cells(fdt, nodename, "clocks",
387         prci_phandle, PRCI_CLK_TLCLK);
388     qemu_fdt_setprop_cell(fdt, nodename, "interrupt-parent", plic_phandle);
389     qemu_fdt_setprop_cell(fdt, nodename, "interrupts", SIFIVE_U_UART0_IRQ);
390 
391     qemu_fdt_add_subnode(fdt, "/chosen");
392     qemu_fdt_setprop_string(fdt, "/chosen", "stdout-path", nodename);
393     if (cmdline) {
394         qemu_fdt_setprop_string(fdt, "/chosen", "bootargs", cmdline);
395     }
396 
397     qemu_fdt_setprop_string(fdt, "/aliases", "serial0", nodename);
398 
399     g_free(nodename);
400 }
401 
402 static void sifive_u_machine_reset(void *opaque, int n, int level)
403 {
404     /* gpio pin active low triggers reset */
405     if (!level) {
406         qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
407     }
408 }
409 
410 static void sifive_u_machine_init(MachineState *machine)
411 {
412     const struct MemmapEntry *memmap = sifive_u_memmap;
413     SiFiveUState *s = RISCV_U_MACHINE(machine);
414     MemoryRegion *system_memory = get_system_memory();
415     MemoryRegion *main_mem = g_new(MemoryRegion, 1);
416     MemoryRegion *flash0 = g_new(MemoryRegion, 1);
417     target_ulong start_addr = memmap[SIFIVE_U_DEV_DRAM].base;
418     target_ulong firmware_end_addr, kernel_start_addr;
419     uint32_t start_addr_hi32 = 0x00000000;
420     int i;
421     uint32_t fdt_load_addr;
422     uint64_t kernel_entry;
423 
424     /* Initialize SoC */
425     object_initialize_child(OBJECT(machine), "soc", &s->soc, TYPE_RISCV_U_SOC);
426     object_property_set_uint(OBJECT(&s->soc), "serial", s->serial,
427                              &error_abort);
428     object_property_set_str(OBJECT(&s->soc), "cpu-type", machine->cpu_type,
429                              &error_abort);
430     qdev_realize(DEVICE(&s->soc), NULL, &error_abort);
431 
432     /* register RAM */
433     memory_region_init_ram(main_mem, NULL, "riscv.sifive.u.ram",
434                            machine->ram_size, &error_fatal);
435     memory_region_add_subregion(system_memory, memmap[SIFIVE_U_DEV_DRAM].base,
436                                 main_mem);
437 
438     /* register QSPI0 Flash */
439     memory_region_init_ram(flash0, NULL, "riscv.sifive.u.flash0",
440                            memmap[SIFIVE_U_DEV_FLASH0].size, &error_fatal);
441     memory_region_add_subregion(system_memory, memmap[SIFIVE_U_DEV_FLASH0].base,
442                                 flash0);
443 
444     /* register gpio-restart */
445     qdev_connect_gpio_out(DEVICE(&(s->soc.gpio)), 10,
446                           qemu_allocate_irq(sifive_u_machine_reset, NULL, 0));
447 
448     /* create device tree */
449     create_fdt(s, memmap, machine->ram_size, machine->kernel_cmdline);
450 
451     if (s->start_in_flash) {
452         /*
453          * If start_in_flash property is given, assign s->msel to a value
454          * that representing booting from QSPI0 memory-mapped flash.
455          *
456          * This also means that when both start_in_flash and msel properties
457          * are given, start_in_flash takes the precedence over msel.
458          *
459          * Note this is to keep backward compatibility not to break existing
460          * users that use start_in_flash property.
461          */
462         s->msel = MSEL_MEMMAP_QSPI0_FLASH;
463     }
464 
465     switch (s->msel) {
466     case MSEL_MEMMAP_QSPI0_FLASH:
467         start_addr = memmap[SIFIVE_U_DEV_FLASH0].base;
468         break;
469     case MSEL_L2LIM_QSPI0_FLASH:
470     case MSEL_L2LIM_QSPI2_SD:
471         start_addr = memmap[SIFIVE_U_DEV_L2LIM].base;
472         break;
473     default:
474         start_addr = memmap[SIFIVE_U_DEV_DRAM].base;
475         break;
476     }
477 
478     firmware_end_addr = riscv_find_and_load_firmware(machine, BIOS_FILENAME,
479                                                      start_addr, NULL);
480 
481     if (machine->kernel_filename) {
482         kernel_start_addr = riscv_calc_kernel_start_addr(machine,
483                                                          firmware_end_addr);
484 
485         kernel_entry = riscv_load_kernel(machine->kernel_filename,
486                                          kernel_start_addr, NULL);
487 
488         if (machine->initrd_filename) {
489             hwaddr start;
490             hwaddr end = riscv_load_initrd(machine->initrd_filename,
491                                            machine->ram_size, kernel_entry,
492                                            &start);
493             qemu_fdt_setprop_cell(s->fdt, "/chosen",
494                                   "linux,initrd-start", start);
495             qemu_fdt_setprop_cell(s->fdt, "/chosen", "linux,initrd-end",
496                                   end);
497         }
498     } else {
499        /*
500         * If dynamic firmware is used, it doesn't know where is the next mode
501         * if kernel argument is not set.
502         */
503         kernel_entry = 0;
504     }
505 
506     /* Compute the fdt load address in dram */
507     fdt_load_addr = riscv_load_fdt(memmap[SIFIVE_U_DEV_DRAM].base,
508                                    machine->ram_size, s->fdt);
509     #if defined(TARGET_RISCV64)
510     start_addr_hi32 = start_addr >> 32;
511     #endif
512 
513     /* reset vector */
514     uint32_t reset_vec[11] = {
515         s->msel,                       /* MSEL pin state */
516         0x00000297,                    /* 1:  auipc  t0, %pcrel_hi(fw_dyn) */
517         0x02828613,                    /*     addi   a2, t0, %pcrel_lo(1b) */
518         0xf1402573,                    /*     csrr   a0, mhartid  */
519 #if defined(TARGET_RISCV32)
520         0x0202a583,                    /*     lw     a1, 32(t0) */
521         0x0182a283,                    /*     lw     t0, 24(t0) */
522 #elif defined(TARGET_RISCV64)
523         0x0202b583,                    /*     ld     a1, 32(t0) */
524         0x0182b283,                    /*     ld     t0, 24(t0) */
525 #endif
526         0x00028067,                    /*     jr     t0 */
527         start_addr,                    /* start: .dword */
528         start_addr_hi32,
529         fdt_load_addr,                 /* fdt_laddr: .dword */
530         0x00000000,
531                                        /* fw_dyn: */
532     };
533 
534     /* copy in the reset vector in little_endian byte order */
535     for (i = 0; i < ARRAY_SIZE(reset_vec); i++) {
536         reset_vec[i] = cpu_to_le32(reset_vec[i]);
537     }
538     rom_add_blob_fixed_as("mrom.reset", reset_vec, sizeof(reset_vec),
539                           memmap[SIFIVE_U_DEV_MROM].base, &address_space_memory);
540 
541     riscv_rom_copy_firmware_info(memmap[SIFIVE_U_DEV_MROM].base,
542                                  memmap[SIFIVE_U_DEV_MROM].size,
543                                  sizeof(reset_vec), kernel_entry);
544 }
545 
546 static bool sifive_u_machine_get_start_in_flash(Object *obj, Error **errp)
547 {
548     SiFiveUState *s = RISCV_U_MACHINE(obj);
549 
550     return s->start_in_flash;
551 }
552 
553 static void sifive_u_machine_set_start_in_flash(Object *obj, bool value, Error **errp)
554 {
555     SiFiveUState *s = RISCV_U_MACHINE(obj);
556 
557     s->start_in_flash = value;
558 }
559 
560 static void sifive_u_machine_get_uint32_prop(Object *obj, Visitor *v,
561                                              const char *name, void *opaque,
562                                              Error **errp)
563 {
564     visit_type_uint32(v, name, (uint32_t *)opaque, errp);
565 }
566 
567 static void sifive_u_machine_set_uint32_prop(Object *obj, Visitor *v,
568                                              const char *name, void *opaque,
569                                              Error **errp)
570 {
571     visit_type_uint32(v, name, (uint32_t *)opaque, errp);
572 }
573 
574 static void sifive_u_machine_instance_init(Object *obj)
575 {
576     SiFiveUState *s = RISCV_U_MACHINE(obj);
577 
578     s->start_in_flash = false;
579     s->msel = 0;
580     object_property_add(obj, "msel", "uint32",
581                         sifive_u_machine_get_uint32_prop,
582                         sifive_u_machine_set_uint32_prop, NULL, &s->msel);
583     object_property_set_description(obj, "msel",
584                                     "Mode Select (MSEL[3:0]) pin state");
585 
586     s->serial = OTP_SERIAL;
587     object_property_add(obj, "serial", "uint32",
588                         sifive_u_machine_get_uint32_prop,
589                         sifive_u_machine_set_uint32_prop, NULL, &s->serial);
590     object_property_set_description(obj, "serial", "Board serial number");
591 }
592 
593 static void sifive_u_machine_class_init(ObjectClass *oc, void *data)
594 {
595     MachineClass *mc = MACHINE_CLASS(oc);
596 
597     mc->desc = "RISC-V Board compatible with SiFive U SDK";
598     mc->init = sifive_u_machine_init;
599     mc->max_cpus = SIFIVE_U_MANAGEMENT_CPU_COUNT + SIFIVE_U_COMPUTE_CPU_COUNT;
600     mc->min_cpus = SIFIVE_U_MANAGEMENT_CPU_COUNT + 1;
601 #if defined(TARGET_RISCV32)
602     mc->default_cpu_type = TYPE_RISCV_CPU_SIFIVE_U34;
603 #elif defined(TARGET_RISCV64)
604     mc->default_cpu_type = TYPE_RISCV_CPU_SIFIVE_U54;
605 #endif
606     mc->default_cpus = mc->min_cpus;
607 
608     object_class_property_add_bool(oc, "start-in-flash",
609                                    sifive_u_machine_get_start_in_flash,
610                                    sifive_u_machine_set_start_in_flash);
611     object_class_property_set_description(oc, "start-in-flash",
612                                           "Set on to tell QEMU's ROM to jump to "
613                                           "flash. Otherwise QEMU will jump to DRAM "
614                                           "or L2LIM depending on the msel value");
615 }
616 
617 static const TypeInfo sifive_u_machine_typeinfo = {
618     .name       = MACHINE_TYPE_NAME("sifive_u"),
619     .parent     = TYPE_MACHINE,
620     .class_init = sifive_u_machine_class_init,
621     .instance_init = sifive_u_machine_instance_init,
622     .instance_size = sizeof(SiFiveUState),
623 };
624 
625 static void sifive_u_machine_init_register_types(void)
626 {
627     type_register_static(&sifive_u_machine_typeinfo);
628 }
629 
630 type_init(sifive_u_machine_init_register_types)
631 
632 static void sifive_u_soc_instance_init(Object *obj)
633 {
634     SiFiveUSoCState *s = RISCV_U_SOC(obj);
635 
636     object_initialize_child(obj, "e-cluster", &s->e_cluster, TYPE_CPU_CLUSTER);
637     qdev_prop_set_uint32(DEVICE(&s->e_cluster), "cluster-id", 0);
638 
639     object_initialize_child(OBJECT(&s->e_cluster), "e-cpus", &s->e_cpus,
640                             TYPE_RISCV_HART_ARRAY);
641     qdev_prop_set_uint32(DEVICE(&s->e_cpus), "num-harts", 1);
642     qdev_prop_set_uint32(DEVICE(&s->e_cpus), "hartid-base", 0);
643     qdev_prop_set_string(DEVICE(&s->e_cpus), "cpu-type", SIFIVE_E_CPU);
644     qdev_prop_set_uint64(DEVICE(&s->e_cpus), "resetvec", 0x1004);
645 
646     object_initialize_child(obj, "u-cluster", &s->u_cluster, TYPE_CPU_CLUSTER);
647     qdev_prop_set_uint32(DEVICE(&s->u_cluster), "cluster-id", 1);
648 
649     object_initialize_child(OBJECT(&s->u_cluster), "u-cpus", &s->u_cpus,
650                             TYPE_RISCV_HART_ARRAY);
651 
652     object_initialize_child(obj, "prci", &s->prci, TYPE_SIFIVE_U_PRCI);
653     object_initialize_child(obj, "otp", &s->otp, TYPE_SIFIVE_U_OTP);
654     object_initialize_child(obj, "gem", &s->gem, TYPE_CADENCE_GEM);
655     object_initialize_child(obj, "gpio", &s->gpio, TYPE_SIFIVE_GPIO);
656     object_initialize_child(obj, "pdma", &s->dma, TYPE_SIFIVE_PDMA);
657 }
658 
659 static void sifive_u_soc_realize(DeviceState *dev, Error **errp)
660 {
661     MachineState *ms = MACHINE(qdev_get_machine());
662     SiFiveUSoCState *s = RISCV_U_SOC(dev);
663     const struct MemmapEntry *memmap = sifive_u_memmap;
664     MemoryRegion *system_memory = get_system_memory();
665     MemoryRegion *mask_rom = g_new(MemoryRegion, 1);
666     MemoryRegion *l2lim_mem = g_new(MemoryRegion, 1);
667     char *plic_hart_config;
668     size_t plic_hart_config_len;
669     int i;
670     NICInfo *nd = &nd_table[0];
671 
672     qdev_prop_set_uint32(DEVICE(&s->u_cpus), "num-harts", ms->smp.cpus - 1);
673     qdev_prop_set_uint32(DEVICE(&s->u_cpus), "hartid-base", 1);
674     qdev_prop_set_string(DEVICE(&s->u_cpus), "cpu-type", s->cpu_type);
675     qdev_prop_set_uint64(DEVICE(&s->u_cpus), "resetvec", 0x1004);
676 
677     sysbus_realize(SYS_BUS_DEVICE(&s->e_cpus), &error_abort);
678     sysbus_realize(SYS_BUS_DEVICE(&s->u_cpus), &error_abort);
679     /*
680      * The cluster must be realized after the RISC-V hart array container,
681      * as the container's CPU object is only created on realize, and the
682      * CPU must exist and have been parented into the cluster before the
683      * cluster is realized.
684      */
685     qdev_realize(DEVICE(&s->e_cluster), NULL, &error_abort);
686     qdev_realize(DEVICE(&s->u_cluster), NULL, &error_abort);
687 
688     /* boot rom */
689     memory_region_init_rom(mask_rom, OBJECT(dev), "riscv.sifive.u.mrom",
690                            memmap[SIFIVE_U_DEV_MROM].size, &error_fatal);
691     memory_region_add_subregion(system_memory, memmap[SIFIVE_U_DEV_MROM].base,
692                                 mask_rom);
693 
694     /*
695      * Add L2-LIM at reset size.
696      * This should be reduced in size as the L2 Cache Controller WayEnable
697      * register is incremented. Unfortunately I don't see a nice (or any) way
698      * to handle reducing or blocking out the L2 LIM while still allowing it
699      * be re returned to all enabled after a reset. For the time being, just
700      * leave it enabled all the time. This won't break anything, but will be
701      * too generous to misbehaving guests.
702      */
703     memory_region_init_ram(l2lim_mem, NULL, "riscv.sifive.u.l2lim",
704                            memmap[SIFIVE_U_DEV_L2LIM].size, &error_fatal);
705     memory_region_add_subregion(system_memory, memmap[SIFIVE_U_DEV_L2LIM].base,
706                                 l2lim_mem);
707 
708     /* create PLIC hart topology configuration string */
709     plic_hart_config_len = (strlen(SIFIVE_U_PLIC_HART_CONFIG) + 1) *
710                            ms->smp.cpus;
711     plic_hart_config = g_malloc0(plic_hart_config_len);
712     for (i = 0; i < ms->smp.cpus; i++) {
713         if (i != 0) {
714             strncat(plic_hart_config, "," SIFIVE_U_PLIC_HART_CONFIG,
715                     plic_hart_config_len);
716         } else {
717             strncat(plic_hart_config, "M", plic_hart_config_len);
718         }
719         plic_hart_config_len -= (strlen(SIFIVE_U_PLIC_HART_CONFIG) + 1);
720     }
721 
722     /* MMIO */
723     s->plic = sifive_plic_create(memmap[SIFIVE_U_DEV_PLIC].base,
724         plic_hart_config, 0,
725         SIFIVE_U_PLIC_NUM_SOURCES,
726         SIFIVE_U_PLIC_NUM_PRIORITIES,
727         SIFIVE_U_PLIC_PRIORITY_BASE,
728         SIFIVE_U_PLIC_PENDING_BASE,
729         SIFIVE_U_PLIC_ENABLE_BASE,
730         SIFIVE_U_PLIC_ENABLE_STRIDE,
731         SIFIVE_U_PLIC_CONTEXT_BASE,
732         SIFIVE_U_PLIC_CONTEXT_STRIDE,
733         memmap[SIFIVE_U_DEV_PLIC].size);
734     g_free(plic_hart_config);
735     sifive_uart_create(system_memory, memmap[SIFIVE_U_DEV_UART0].base,
736         serial_hd(0), qdev_get_gpio_in(DEVICE(s->plic), SIFIVE_U_UART0_IRQ));
737     sifive_uart_create(system_memory, memmap[SIFIVE_U_DEV_UART1].base,
738         serial_hd(1), qdev_get_gpio_in(DEVICE(s->plic), SIFIVE_U_UART1_IRQ));
739     sifive_clint_create(memmap[SIFIVE_U_DEV_CLINT].base,
740         memmap[SIFIVE_U_DEV_CLINT].size, 0, ms->smp.cpus,
741         SIFIVE_SIP_BASE, SIFIVE_TIMECMP_BASE, SIFIVE_TIME_BASE,
742         SIFIVE_CLINT_TIMEBASE_FREQ, false);
743 
744     if (!sysbus_realize(SYS_BUS_DEVICE(&s->prci), errp)) {
745         return;
746     }
747     sysbus_mmio_map(SYS_BUS_DEVICE(&s->prci), 0, memmap[SIFIVE_U_DEV_PRCI].base);
748 
749     qdev_prop_set_uint32(DEVICE(&s->gpio), "ngpio", 16);
750     if (!sysbus_realize(SYS_BUS_DEVICE(&s->gpio), errp)) {
751         return;
752     }
753     sysbus_mmio_map(SYS_BUS_DEVICE(&s->gpio), 0, memmap[SIFIVE_U_DEV_GPIO].base);
754 
755     /* Pass all GPIOs to the SOC layer so they are available to the board */
756     qdev_pass_gpios(DEVICE(&s->gpio), dev, NULL);
757 
758     /* Connect GPIO interrupts to the PLIC */
759     for (i = 0; i < 16; i++) {
760         sysbus_connect_irq(SYS_BUS_DEVICE(&s->gpio), i,
761                            qdev_get_gpio_in(DEVICE(s->plic),
762                                             SIFIVE_U_GPIO_IRQ0 + i));
763     }
764 
765     /* PDMA */
766     sysbus_realize(SYS_BUS_DEVICE(&s->dma), errp);
767     sysbus_mmio_map(SYS_BUS_DEVICE(&s->dma), 0, memmap[SIFIVE_U_DEV_PDMA].base);
768 
769     /* Connect PDMA interrupts to the PLIC */
770     for (i = 0; i < SIFIVE_PDMA_IRQS; i++) {
771         sysbus_connect_irq(SYS_BUS_DEVICE(&s->dma), i,
772                            qdev_get_gpio_in(DEVICE(s->plic),
773                                             SIFIVE_U_PDMA_IRQ0 + i));
774     }
775 
776     qdev_prop_set_uint32(DEVICE(&s->otp), "serial", s->serial);
777     if (!sysbus_realize(SYS_BUS_DEVICE(&s->otp), errp)) {
778         return;
779     }
780     sysbus_mmio_map(SYS_BUS_DEVICE(&s->otp), 0, memmap[SIFIVE_U_DEV_OTP].base);
781 
782     /* FIXME use qdev NIC properties instead of nd_table[] */
783     if (nd->used) {
784         qemu_check_nic_model(nd, TYPE_CADENCE_GEM);
785         qdev_set_nic_properties(DEVICE(&s->gem), nd);
786     }
787     object_property_set_int(OBJECT(&s->gem), "revision", GEM_REVISION,
788                             &error_abort);
789     if (!sysbus_realize(SYS_BUS_DEVICE(&s->gem), errp)) {
790         return;
791     }
792     sysbus_mmio_map(SYS_BUS_DEVICE(&s->gem), 0, memmap[SIFIVE_U_DEV_GEM].base);
793     sysbus_connect_irq(SYS_BUS_DEVICE(&s->gem), 0,
794                        qdev_get_gpio_in(DEVICE(s->plic), SIFIVE_U_GEM_IRQ));
795 
796     create_unimplemented_device("riscv.sifive.u.gem-mgmt",
797         memmap[SIFIVE_U_DEV_GEM_MGMT].base, memmap[SIFIVE_U_DEV_GEM_MGMT].size);
798 
799     create_unimplemented_device("riscv.sifive.u.dmc",
800         memmap[SIFIVE_U_DEV_DMC].base, memmap[SIFIVE_U_DEV_DMC].size);
801 
802     create_unimplemented_device("riscv.sifive.u.l2cc",
803         memmap[SIFIVE_U_DEV_L2CC].base, memmap[SIFIVE_U_DEV_L2CC].size);
804 }
805 
806 static Property sifive_u_soc_props[] = {
807     DEFINE_PROP_UINT32("serial", SiFiveUSoCState, serial, OTP_SERIAL),
808     DEFINE_PROP_STRING("cpu-type", SiFiveUSoCState, cpu_type),
809     DEFINE_PROP_END_OF_LIST()
810 };
811 
812 static void sifive_u_soc_class_init(ObjectClass *oc, void *data)
813 {
814     DeviceClass *dc = DEVICE_CLASS(oc);
815 
816     device_class_set_props(dc, sifive_u_soc_props);
817     dc->realize = sifive_u_soc_realize;
818     /* Reason: Uses serial_hds in realize function, thus can't be used twice */
819     dc->user_creatable = false;
820 }
821 
822 static const TypeInfo sifive_u_soc_type_info = {
823     .name = TYPE_RISCV_U_SOC,
824     .parent = TYPE_DEVICE,
825     .instance_size = sizeof(SiFiveUSoCState),
826     .instance_init = sifive_u_soc_instance_init,
827     .class_init = sifive_u_soc_class_init,
828 };
829 
830 static void sifive_u_soc_register_types(void)
831 {
832     type_register_static(&sifive_u_soc_type_info);
833 }
834 
835 type_init(sifive_u_soc_register_types)
836