2012-07-20 11:50:48 +04:00
|
|
|
/*
|
|
|
|
* OpenRISC simulator for use as an IIS.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
|
|
|
|
* Feng Gao <gf91597@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-02-13 16:46:50 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-07-20 11:50:48 +04:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 21:17:22 +03:00
|
|
|
#include "qemu/osdep.h"
|
hw/openrisc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
Some lines where then manually tweaked to pass checkpatch.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: Jia Liu <proljc@gmail.com>
Cc: Stafford Horne <shorne@gmail.com>
Acked-by: Stafford Horne <shorne@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-8-armbru@redhat.com>
2018-02-03 11:43:08 +03:00
|
|
|
#include "qemu/error-report.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 11:01:28 +03:00
|
|
|
#include "qapi/error.h"
|
2016-01-19 23:51:44 +03:00
|
|
|
#include "cpu.h"
|
2019-08-12 08:23:42 +03:00
|
|
|
#include "hw/irq.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/boards.h"
|
2012-07-20 11:50:48 +04:00
|
|
|
#include "elf.h"
|
2013-02-05 20:06:20 +04:00
|
|
|
#include "hw/char/serial.h"
|
2012-10-24 10:43:34 +04:00
|
|
|
#include "net/net.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/loader.h"
|
2019-08-12 08:23:51 +03:00
|
|
|
#include "hw/qdev-properties.h"
|
2012-12-17 21:19:49 +04:00
|
|
|
#include "exec/address-spaces.h"
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/sysemu.h"
|
2013-02-04 18:40:22 +04:00
|
|
|
#include "hw/sysbus.h"
|
2012-12-17 21:20:04 +04:00
|
|
|
#include "sysemu/qtest.h"
|
2019-08-12 08:23:38 +03:00
|
|
|
#include "sysemu/reset.h"
|
2012-07-20 11:50:48 +04:00
|
|
|
|
|
|
|
#define KERNEL_LOAD_ADDR 0x100
|
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
static struct openrisc_boot_info {
|
|
|
|
uint32_t bootstrap_pc;
|
|
|
|
} boot_info;
|
|
|
|
|
2012-07-20 11:50:48 +04:00
|
|
|
static void main_cpu_reset(void *opaque)
|
|
|
|
{
|
|
|
|
OpenRISCCPU *cpu = opaque;
|
2017-10-21 00:36:58 +03:00
|
|
|
CPUState *cs = CPU(cpu);
|
2012-07-20 11:50:48 +04:00
|
|
|
|
|
|
|
cpu_reset(CPU(cpu));
|
2017-10-21 00:36:58 +03:00
|
|
|
|
|
|
|
cpu_set_pc(cs, boot_info.bootstrap_pc);
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
static void openrisc_sim_net_init(hwaddr base, hwaddr descriptors,
|
|
|
|
int num_cpus, qemu_irq **cpu_irqs,
|
|
|
|
int irq_pin, NICInfo *nd)
|
2012-07-20 11:50:48 +04:00
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
2017-10-21 00:36:58 +03:00
|
|
|
int i;
|
2012-07-20 11:50:48 +04:00
|
|
|
|
qdev: Convert uses of qdev_create() with Coccinelle
This is the transformation explained in the commit before previous.
Takes care of just one pattern that needs conversion. More to come in
this series.
Coccinelle script:
@ depends on !(file in "hw/arm/highbank.c")@
expression bus, type_name, dev, expr;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr;
identifier DOWN;
@@
- dev = DOWN(qdev_create(bus, type_name));
+ dev = DOWN(qdev_new(type_name));
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ qdev_realize_and_unref(DEVICE(dev), bus, &error_fatal);
@@
expression bus, type_name, expr;
identifier dev;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr, errp;
symbol true;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
@@
expression bus, type_name, expr, errp;
identifier dev;
symbol true;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
The first rule exempts hw/arm/highbank.c, because it matches along two
control flow paths there, with different @type_name. Covered by the
next commit's manual conversions.
Missing #include "qapi/error.h" added manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-10-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 08:31:58 +03:00
|
|
|
dev = qdev_new("open_eth");
|
2012-07-20 11:50:48 +04:00
|
|
|
qdev_set_nic_properties(dev, nd);
|
|
|
|
|
2013-01-20 05:47:33 +04:00
|
|
|
s = SYS_BUS_DEVICE(dev);
|
sysbus: Convert to sysbus_realize() etc. with Coccinelle
Convert from qdev_realize(), qdev_realize_and_unref() with null @bus
argument to sysbus_realize(), sysbus_realize_and_unref().
Coccinelle script:
@@
expression dev, errp;
@@
- qdev_realize(DEVICE(dev), NULL, errp);
+ sysbus_realize(SYS_BUS_DEVICE(dev), errp);
@@
expression sysbus_dev, dev, errp;
@@
+ sysbus_dev = SYS_BUS_DEVICE(dev);
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
- sysbus_dev = SYS_BUS_DEVICE(dev);
@@
expression sysbus_dev, dev, errp;
expression expr;
@@
sysbus_dev = SYS_BUS_DEVICE(dev);
... when != dev = expr;
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(DEVICE(dev), NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
Whitespace changes minimized manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-46-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(s, &error_fatal);
|
2017-10-21 00:36:58 +03:00
|
|
|
for (i = 0; i < num_cpus; i++) {
|
|
|
|
sysbus_connect_irq(s, 0, cpu_irqs[i][irq_pin]);
|
|
|
|
}
|
|
|
|
sysbus_mmio_map(s, 0, base);
|
|
|
|
sysbus_mmio_map(s, 1, descriptors);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void openrisc_sim_ompic_init(hwaddr base, int num_cpus,
|
|
|
|
qemu_irq **cpu_irqs, int irq_pin)
|
|
|
|
{
|
|
|
|
DeviceState *dev;
|
|
|
|
SysBusDevice *s;
|
|
|
|
int i;
|
|
|
|
|
qdev: Convert uses of qdev_create() with Coccinelle
This is the transformation explained in the commit before previous.
Takes care of just one pattern that needs conversion. More to come in
this series.
Coccinelle script:
@ depends on !(file in "hw/arm/highbank.c")@
expression bus, type_name, dev, expr;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr;
identifier DOWN;
@@
- dev = DOWN(qdev_create(bus, type_name));
+ dev = DOWN(qdev_new(type_name));
... when != dev = expr
- qdev_init_nofail(DEVICE(dev));
+ qdev_realize_and_unref(DEVICE(dev), bus, &error_fatal);
@@
expression bus, type_name, expr;
identifier dev;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- qdev_init_nofail(dev);
+ qdev_realize_and_unref(dev, bus, &error_fatal);
@@
expression bus, type_name, dev, expr, errp;
symbol true;
@@
- dev = qdev_create(bus, type_name);
+ dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
@@
expression bus, type_name, expr, errp;
identifier dev;
symbol true;
@@
- DeviceState *dev = qdev_create(bus, type_name);
+ DeviceState *dev = qdev_new(type_name);
... when != dev = expr
- object_property_set_bool(OBJECT(dev), true, "realized", errp);
+ qdev_realize_and_unref(dev, bus, errp);
The first rule exempts hw/arm/highbank.c, because it matches along two
control flow paths there, with different @type_name. Covered by the
next commit's manual conversions.
Missing #include "qapi/error.h" added manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-10-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 08:31:58 +03:00
|
|
|
dev = qdev_new("or1k-ompic");
|
2017-10-21 00:36:58 +03:00
|
|
|
qdev_prop_set_uint32(dev, "num-cpus", num_cpus);
|
|
|
|
|
|
|
|
s = SYS_BUS_DEVICE(dev);
|
sysbus: Convert to sysbus_realize() etc. with Coccinelle
Convert from qdev_realize(), qdev_realize_and_unref() with null @bus
argument to sysbus_realize(), sysbus_realize_and_unref().
Coccinelle script:
@@
expression dev, errp;
@@
- qdev_realize(DEVICE(dev), NULL, errp);
+ sysbus_realize(SYS_BUS_DEVICE(dev), errp);
@@
expression sysbus_dev, dev, errp;
@@
+ sysbus_dev = SYS_BUS_DEVICE(dev);
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
- sysbus_dev = SYS_BUS_DEVICE(dev);
@@
expression sysbus_dev, dev, errp;
expression expr;
@@
sysbus_dev = SYS_BUS_DEVICE(dev);
... when != dev = expr;
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(sysbus_dev, errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(DEVICE(dev), NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
@@
expression dev, errp;
@@
- qdev_realize_and_unref(dev, NULL, errp);
+ sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), errp);
Whitespace changes minimized manually.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Acked-by: Alistair Francis <alistair.francis@wdc.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Message-Id: <20200610053247.1583243-46-armbru@redhat.com>
[Conflicts in hw/misc/empty_slot.c and hw/sparc/leon3.c resolved]
2020-06-10 08:32:34 +03:00
|
|
|
sysbus_realize_and_unref(s, &error_fatal);
|
2017-10-21 00:36:58 +03:00
|
|
|
for (i = 0; i < num_cpus; i++) {
|
|
|
|
sysbus_connect_irq(s, i, cpu_irqs[i][irq_pin]);
|
|
|
|
}
|
|
|
|
sysbus_mmio_map(s, 0, base);
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
static void openrisc_load_kernel(ram_addr_t ram_size,
|
|
|
|
const char *kernel_filename)
|
2012-07-20 11:50:48 +04:00
|
|
|
{
|
|
|
|
long kernel_size;
|
|
|
|
uint64_t elf_entry;
|
2012-10-23 14:30:10 +04:00
|
|
|
hwaddr entry;
|
2012-07-20 11:50:48 +04:00
|
|
|
|
|
|
|
if (kernel_filename && !qtest_enabled()) {
|
2019-01-15 15:18:03 +03:00
|
|
|
kernel_size = load_elf(kernel_filename, NULL, NULL, NULL,
|
2020-01-27 01:55:04 +03:00
|
|
|
&elf_entry, NULL, NULL, NULL, 1, EM_OPENRISC,
|
2016-03-04 14:30:21 +03:00
|
|
|
1, 0);
|
2012-07-20 11:50:48 +04:00
|
|
|
entry = elf_entry;
|
|
|
|
if (kernel_size < 0) {
|
|
|
|
kernel_size = load_uimage(kernel_filename,
|
2014-10-19 07:42:22 +04:00
|
|
|
&entry, NULL, NULL, NULL, NULL);
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
if (kernel_size < 0) {
|
|
|
|
kernel_size = load_image_targphys(kernel_filename,
|
|
|
|
KERNEL_LOAD_ADDR,
|
|
|
|
ram_size - KERNEL_LOAD_ADDR);
|
2017-10-21 00:36:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entry <= 0) {
|
2012-07-20 11:50:48 +04:00
|
|
|
entry = KERNEL_LOAD_ADDR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (kernel_size < 0) {
|
hw/openrisc: Replace fprintf(stderr, "*\n" with error_report()
Replace a large number of the fprintf(stderr, "*\n" calls with
error_report(). The functions were renamed with these commands and then
compiler issues where manually fixed.
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N;N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
find ./* -type f -exec sed -i \
'N; {s|fprintf(stderr, "\(.*\)\\n"\(.*\));|error_report("\1"\2);|Ig}' \
{} +
Some lines where then manually tweaked to pass checkpatch.
Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
Cc: Jia Liu <proljc@gmail.com>
Cc: Stafford Horne <shorne@gmail.com>
Acked-by: Stafford Horne <shorne@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20180203084315.20497-8-armbru@redhat.com>
2018-02-03 11:43:08 +03:00
|
|
|
error_report("couldn't load the kernel '%s'", kernel_filename);
|
2012-07-20 11:50:48 +04:00
|
|
|
exit(1);
|
|
|
|
}
|
2017-10-21 00:36:58 +03:00
|
|
|
boot_info.bootstrap_pc = entry;
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-07 18:42:57 +04:00
|
|
|
static void openrisc_sim_init(MachineState *machine)
|
2012-07-20 11:50:48 +04:00
|
|
|
{
|
2014-05-07 18:42:57 +04:00
|
|
|
ram_addr_t ram_size = machine->ram_size;
|
|
|
|
const char *kernel_filename = machine->kernel_filename;
|
2013-07-23 14:30:09 +04:00
|
|
|
OpenRISCCPU *cpu = NULL;
|
2012-07-20 11:50:48 +04:00
|
|
|
MemoryRegion *ram;
|
2017-10-21 00:36:58 +03:00
|
|
|
qemu_irq *cpu_irqs[2];
|
|
|
|
qemu_irq serial_irq;
|
2012-07-20 11:50:48 +04:00
|
|
|
int n;
|
2019-05-18 23:54:27 +03:00
|
|
|
unsigned int smp_cpus = machine->smp.cpus;
|
2012-07-20 11:50:48 +04:00
|
|
|
|
2020-06-08 19:06:11 +03:00
|
|
|
assert(smp_cpus >= 1 && smp_cpus <= 2);
|
2012-07-20 11:50:48 +04:00
|
|
|
for (n = 0; n < smp_cpus; n++) {
|
2017-10-05 16:50:52 +03:00
|
|
|
cpu = OPENRISC_CPU(cpu_create(machine->cpu_type));
|
2017-10-21 00:36:58 +03:00
|
|
|
if (cpu == NULL) {
|
|
|
|
fprintf(stderr, "Unable to find CPU definition!\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
cpu_openrisc_pic_init(cpu);
|
|
|
|
cpu_irqs[n] = (qemu_irq *) cpu->env.irq;
|
|
|
|
|
|
|
|
cpu_openrisc_clock_init(cpu);
|
|
|
|
|
2012-07-20 11:50:48 +04:00
|
|
|
qemu_register_reset(main_cpu_reset, cpu);
|
|
|
|
}
|
|
|
|
|
|
|
|
ram = g_malloc(sizeof(*ram));
|
2017-07-07 17:42:53 +03:00
|
|
|
memory_region_init_ram(ram, NULL, "openrisc.ram", ram_size, &error_fatal);
|
2012-07-20 11:50:48 +04:00
|
|
|
memory_region_add_subregion(get_system_memory(), 0, ram);
|
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
if (nd_table[0].used) {
|
|
|
|
openrisc_sim_net_init(0x92000000, 0x92000400, smp_cpus,
|
|
|
|
cpu_irqs, 4, nd_table);
|
|
|
|
}
|
2012-07-20 11:50:48 +04:00
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
if (smp_cpus > 1) {
|
|
|
|
openrisc_sim_ompic_init(0x98000000, smp_cpus, cpu_irqs, 1);
|
2012-07-20 11:50:48 +04:00
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
serial_irq = qemu_irq_split(cpu_irqs[0][2], cpu_irqs[1][2]);
|
|
|
|
} else {
|
|
|
|
serial_irq = cpu_irqs[0][2];
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
|
2017-10-21 00:36:58 +03:00
|
|
|
serial_mm_init(get_system_memory(), 0x90000000, 0, serial_irq,
|
2018-04-20 17:52:43 +03:00
|
|
|
115200, serial_hd(0), DEVICE_NATIVE_ENDIAN);
|
2017-10-21 00:36:58 +03:00
|
|
|
|
|
|
|
openrisc_load_kernel(ram_size, kernel_filename);
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
|
2015-09-04 21:37:08 +03:00
|
|
|
static void openrisc_sim_machine_init(MachineClass *mc)
|
2012-07-20 11:50:48 +04:00
|
|
|
{
|
2017-02-09 02:06:54 +03:00
|
|
|
mc->desc = "or1k simulation";
|
2015-09-04 21:37:08 +03:00
|
|
|
mc->init = openrisc_sim_init;
|
2017-10-21 00:36:58 +03:00
|
|
|
mc->max_cpus = 2;
|
2020-02-07 19:19:47 +03:00
|
|
|
mc->is_default = true;
|
2017-10-05 16:50:52 +03:00
|
|
|
mc->default_cpu_type = OPENRISC_CPU_TYPE_NAME("or1200");
|
2012-07-20 11:50:48 +04:00
|
|
|
}
|
|
|
|
|
2017-02-09 02:06:54 +03:00
|
|
|
DEFINE_MACHINE("or1k-sim", openrisc_sim_machine_init)
|