]> git.proxmox.com Git - mirror_qemu.git/blame - hw/arm/xlnx-ep108.c
xlnx-ep108: Connect the SPI Flash
[mirror_qemu.git] / hw / arm / xlnx-ep108.c
CommitLineData
859a0c5b
PC
1/*
2 * Xilinx ZynqMP EP108 board
3 *
4 * Copyright (C) 2015 Xilinx Inc
5 * Written by Peter Crosthwaite <peter.crosthwaite@xilinx.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 * for more details.
16 */
17
12b16722 18#include "qemu/osdep.h"
859a0c5b
PC
19#include "hw/arm/xlnx-zynqmp.h"
20#include "hw/boards.h"
21#include "qemu/error-report.h"
b79b9d28 22#include "exec/address-spaces.h"
859a0c5b
PC
23
24typedef struct XlnxEP108 {
25 XlnxZynqMPState soc;
b79b9d28 26 MemoryRegion ddr_ram;
859a0c5b
PC
27} XlnxEP108;
28
082587b7
PC
29static struct arm_boot_info xlnx_ep108_binfo;
30
859a0c5b
PC
31static void xlnx_ep108_init(MachineState *machine)
32{
33 XlnxEP108 *s = g_new0(XlnxEP108, 1);
a4b26335 34 int i;
859a0c5b 35 Error *err = NULL;
dc3b89ef
AF
36 uint64_t ram_size = machine->ram_size;
37
38 /* Create the memory region to pass to the SoC */
39 if (ram_size > XLNX_ZYNQMP_MAX_RAM_SIZE) {
40 error_report("ERROR: RAM size 0x%" PRIx64 " above max supported of "
41 "0x%llx", ram_size,
42 XLNX_ZYNQMP_MAX_RAM_SIZE);
43 exit(1);
44 }
45
46 if (ram_size < 0x08000000) {
47 qemu_log("WARNING: RAM size 0x%" PRIx64 " is small for EP108",
48 ram_size);
49 }
50
51 memory_region_allocate_system_memory(&s->ddr_ram, NULL, "ddr-ram",
52 ram_size);
859a0c5b
PC
53
54 object_initialize(&s->soc, sizeof(s->soc), TYPE_XLNX_ZYNQMP);
55 object_property_add_child(OBJECT(machine), "soc", OBJECT(&s->soc),
56 &error_abort);
57
dc3b89ef
AF
58 object_property_set_link(OBJECT(&s->soc), OBJECT(&s->ddr_ram),
59 "ddr-ram", &error_abort);
60
859a0c5b
PC
61 object_property_set_bool(OBJECT(&s->soc), true, "realized", &err);
62 if (err) {
4fffeb5e 63 error_report_err(err);
859a0c5b
PC
64 exit(1);
65 }
b79b9d28 66
a4b26335
AF
67 for (i = 0; i < XLNX_ZYNQMP_NUM_SPIS; i++) {
68 SSIBus *spi_bus;
69 DeviceState *flash_dev;
70 qemu_irq cs_line;
71 gchar *bus_name = g_strdup_printf("spi%d", i);
72
73 spi_bus = (SSIBus *)qdev_get_child_bus(DEVICE(&s->soc), bus_name);
74 g_free(bus_name);
75
76 flash_dev = ssi_create_slave(spi_bus, "sst25wf080");
77 cs_line = qdev_get_gpio_in_named(flash_dev, SSI_GPIO_CS, 0);
78
79 sysbus_connect_irq(SYS_BUS_DEVICE(&s->soc.spi[i]), 1, cs_line);
80 }
81
dc3b89ef 82 xlnx_ep108_binfo.ram_size = ram_size;
082587b7
PC
83 xlnx_ep108_binfo.kernel_filename = machine->kernel_filename;
84 xlnx_ep108_binfo.kernel_cmdline = machine->kernel_cmdline;
85 xlnx_ep108_binfo.initrd_filename = machine->initrd_filename;
86 xlnx_ep108_binfo.loader_start = 0;
6396a193 87 arm_load_kernel(s->soc.boot_cpu_ptr, &xlnx_ep108_binfo);
859a0c5b
PC
88}
89
e264d29d 90static void xlnx_ep108_machine_init(MachineClass *mc)
859a0c5b 91{
e264d29d
EH
92 mc->desc = "Xilinx ZynqMP EP108 board";
93 mc->init = xlnx_ep108_init;
859a0c5b
PC
94}
95
e264d29d 96DEFINE_MACHINE("xlnx-ep108", xlnx_ep108_machine_init)