blob: be6c9b5622d6e491a1740e298a5e4c7ec4717bab [file] [log] [blame]
Jia Liuce6e1e92012-07-20 15:50:48 +08001/*
2 * OpenRISC simulator for use as an IIS.
3 *
4 * Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
5 * Feng Gao <gf91597@gmail.com>
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 */
20
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010021#include "hw/hw.h"
22#include "hw/boards.h"
Jia Liuce6e1e92012-07-20 15:50:48 +080023#include "elf.h"
Paolo Bonzini0d09e412013-02-05 17:06:20 +010024#include "hw/char/serial.h"
Paolo Bonzini1422e322012-10-24 08:43:34 +020025#include "net/net.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010026#include "hw/loader.h"
Paolo Bonzini022c62c2012-12-17 18:19:49 +010027#include "exec/address-spaces.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010028#include "sysemu/sysemu.h"
Paolo Bonzini83c9f4c2013-02-04 15:40:22 +010029#include "hw/sysbus.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010030#include "sysemu/qtest.h"
Jia Liuce6e1e92012-07-20 15:50:48 +080031
32#define KERNEL_LOAD_ADDR 0x100
33
34static void main_cpu_reset(void *opaque)
35{
36 OpenRISCCPU *cpu = opaque;
37
38 cpu_reset(CPU(cpu));
39}
40
41static void openrisc_sim_net_init(MemoryRegion *address_space,
Avi Kivitya8170e52012-10-23 12:30:10 +020042 hwaddr base,
43 hwaddr descriptors,
Jia Liuce6e1e92012-07-20 15:50:48 +080044 qemu_irq irq, NICInfo *nd)
45{
46 DeviceState *dev;
47 SysBusDevice *s;
48
49 dev = qdev_create(NULL, "open_eth");
50 qdev_set_nic_properties(dev, nd);
51 qdev_init_nofail(dev);
52
Andreas Färber1356b982013-01-20 02:47:33 +010053 s = SYS_BUS_DEVICE(dev);
Jia Liuce6e1e92012-07-20 15:50:48 +080054 sysbus_connect_irq(s, 0, irq);
55 memory_region_add_subregion(address_space, base,
56 sysbus_mmio_get_region(s, 0));
57 memory_region_add_subregion(address_space, descriptors,
58 sysbus_mmio_get_region(s, 1));
59}
60
61static void cpu_openrisc_load_kernel(ram_addr_t ram_size,
62 const char *kernel_filename,
63 OpenRISCCPU *cpu)
64{
65 long kernel_size;
66 uint64_t elf_entry;
Avi Kivitya8170e52012-10-23 12:30:10 +020067 hwaddr entry;
Jia Liuce6e1e92012-07-20 15:50:48 +080068
69 if (kernel_filename && !qtest_enabled()) {
70 kernel_size = load_elf(kernel_filename, NULL, NULL,
Peter Crosthwaiteed03ecf2015-05-10 23:29:10 -070071 &elf_entry, NULL, NULL, 1, EM_OPENRISC, 1);
Jia Liuce6e1e92012-07-20 15:50:48 +080072 entry = elf_entry;
73 if (kernel_size < 0) {
74 kernel_size = load_uimage(kernel_filename,
Max Filippov25bda502014-10-19 07:42:22 +040075 &entry, NULL, NULL, NULL, NULL);
Jia Liuce6e1e92012-07-20 15:50:48 +080076 }
77 if (kernel_size < 0) {
78 kernel_size = load_image_targphys(kernel_filename,
79 KERNEL_LOAD_ADDR,
80 ram_size - KERNEL_LOAD_ADDR);
81 entry = KERNEL_LOAD_ADDR;
82 }
83
84 if (kernel_size < 0) {
Jia Liu4284c052013-07-23 18:31:24 +080085 fprintf(stderr, "QEMU: couldn't load the kernel '%s'\n",
Jia Liuce6e1e92012-07-20 15:50:48 +080086 kernel_filename);
87 exit(1);
88 }
Jia Liub6d97662013-08-21 08:54:29 +080089 cpu->env.pc = entry;
Jia Liuce6e1e92012-07-20 15:50:48 +080090 }
Jia Liuce6e1e92012-07-20 15:50:48 +080091}
92
Marcel Apfelbaum3ef96222014-05-07 17:42:57 +030093static void openrisc_sim_init(MachineState *machine)
Jia Liuce6e1e92012-07-20 15:50:48 +080094{
Marcel Apfelbaum3ef96222014-05-07 17:42:57 +030095 ram_addr_t ram_size = machine->ram_size;
96 const char *cpu_model = machine->cpu_model;
97 const char *kernel_filename = machine->kernel_filename;
Jia Liu68f12822013-07-23 18:30:09 +080098 OpenRISCCPU *cpu = NULL;
Jia Liuce6e1e92012-07-20 15:50:48 +080099 MemoryRegion *ram;
100 int n;
101
102 if (!cpu_model) {
103 cpu_model = "or1200";
104 }
105
106 for (n = 0; n < smp_cpus; n++) {
107 cpu = cpu_openrisc_init(cpu_model);
108 if (cpu == NULL) {
Jia Liu4284c052013-07-23 18:31:24 +0800109 fprintf(stderr, "Unable to find CPU definition!\n");
Jia Liuce6e1e92012-07-20 15:50:48 +0800110 exit(1);
111 }
112 qemu_register_reset(main_cpu_reset, cpu);
113 main_cpu_reset(cpu);
114 }
115
116 ram = g_malloc(sizeof(*ram));
Markus Armbrusterf8ed85a2015-09-11 16:51:43 +0200117 memory_region_init_ram(ram, NULL, "openrisc.ram", ram_size, &error_fatal);
Jia Liuce6e1e92012-07-20 15:50:48 +0800118 vmstate_register_ram_global(ram);
119 memory_region_add_subregion(get_system_memory(), 0, ram);
120
121 cpu_openrisc_pic_init(cpu);
122 cpu_openrisc_clock_init(cpu);
123
124 serial_mm_init(get_system_memory(), 0x90000000, 0, cpu->env.irq[2],
125 115200, serial_hds[0], DEVICE_NATIVE_ENDIAN);
126
Stefan Hajnoczia005d072012-07-24 16:35:11 +0100127 if (nd_table[0].used) {
Jia Liuce6e1e92012-07-20 15:50:48 +0800128 openrisc_sim_net_init(get_system_memory(), 0x92000000,
129 0x92000400, cpu->env.irq[4], nd_table);
130 }
131
132 cpu_openrisc_load_kernel(ram_size, kernel_filename, cpu);
133}
134
Eduardo Habkoste264d292015-09-04 15:37:08 -0300135static void openrisc_sim_machine_init(MachineClass *mc)
Jia Liuce6e1e92012-07-20 15:50:48 +0800136{
Eduardo Habkoste264d292015-09-04 15:37:08 -0300137 mc->desc = "or32 simulation";
138 mc->init = openrisc_sim_init;
139 mc->max_cpus = 1;
140 mc->is_default = 1;
Jia Liuce6e1e92012-07-20 15:50:48 +0800141}
142
Eduardo Habkoste264d292015-09-04 15:37:08 -0300143DEFINE_MACHINE("or32-sim", openrisc_sim_machine_init)