ppc/pnv: Link "chip" property to PnvCore::chip pointer
[qemu/ar7.git] / hw / riscv / sifive_test.c
blob339195c6ffcef267e2e4acf8a87f2bf0b56e2bdd
1 /*
2 * QEMU SiFive Test Finisher
4 * Copyright (c) 2018 SiFive, Inc.
6 * Test finisher memory mapped device used to exit simulation
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms and conditions of the GNU General Public License,
10 * version 2 or later, as published by the Free Software Foundation.
12 * This program is distributed in the hope 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 for
15 * more details.
17 * You should have received a copy of the GNU General Public License along with
18 * this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "qemu/osdep.h"
22 #include "hw/sysbus.h"
23 #include "qemu/log.h"
24 #include "qemu/module.h"
25 #include "sysemu/runstate.h"
26 #include "hw/hw.h"
27 #include "hw/riscv/sifive_test.h"
29 static uint64_t sifive_test_read(void *opaque, hwaddr addr, unsigned int size)
31 return 0;
34 static void sifive_test_write(void *opaque, hwaddr addr,
35 uint64_t val64, unsigned int size)
37 if (addr == 0) {
38 int status = val64 & 0xffff;
39 int code = (val64 >> 16) & 0xffff;
40 switch (status) {
41 case FINISHER_FAIL:
42 exit(code);
43 case FINISHER_PASS:
44 exit(0);
45 case FINISHER_RESET:
46 qemu_system_reset_request(SHUTDOWN_CAUSE_GUEST_RESET);
47 return;
48 default:
49 break;
52 qemu_log_mask(LOG_GUEST_ERROR, "%s: write: addr=0x%x val=0x%016" PRIx64 "\n",
53 __func__, (int)addr, val64);
56 static const MemoryRegionOps sifive_test_ops = {
57 .read = sifive_test_read,
58 .write = sifive_test_write,
59 .endianness = DEVICE_NATIVE_ENDIAN,
60 .valid = {
61 .min_access_size = 4,
62 .max_access_size = 4
66 static void sifive_test_init(Object *obj)
68 SiFiveTestState *s = SIFIVE_TEST(obj);
70 memory_region_init_io(&s->mmio, obj, &sifive_test_ops, s,
71 TYPE_SIFIVE_TEST, 0x1000);
72 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
75 static const TypeInfo sifive_test_info = {
76 .name = TYPE_SIFIVE_TEST,
77 .parent = TYPE_SYS_BUS_DEVICE,
78 .instance_size = sizeof(SiFiveTestState),
79 .instance_init = sifive_test_init,
82 static void sifive_test_register_types(void)
84 type_register_static(&sifive_test_info);
87 type_init(sifive_test_register_types)
91 * Create Test device.
93 DeviceState *sifive_test_create(hwaddr addr)
95 DeviceState *dev = qdev_create(NULL, TYPE_SIFIVE_TEST);
96 qdev_init_nofail(dev);
97 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
98 return dev;