s390x: upgrade status of KVM cores to "supported"
[qemu/ar7.git] / hw / riscv / sifive_prci.c
blob0910ea32c1a51fc8ea3e24f035408826e1e43a3e
1 /*
2 * QEMU SiFive PRCI (Power, Reset, Clock, Interrupt)
4 * Copyright (c) 2017 SiFive, Inc.
6 * Simple model of the PRCI to emulate register reads made by the SDK BSP
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 "target/riscv/cpu.h"
24 #include "hw/riscv/sifive_prci.h"
26 /* currently implements enough to mock freedom-e-sdk BSP clock programming */
28 static uint64_t sifive_prci_read(void *opaque, hwaddr addr, unsigned int size)
30 if (addr == 0 /* PRCI_HFROSCCFG */) {
31 return 1 << 31; /* ROSC_RDY */
33 if (addr == 8 /* PRCI_PLLCFG */) {
34 return 1 << 31; /* PLL_LOCK */
36 hw_error("%s: read: addr=0x%x\n", __func__, (int)addr);
37 return 0;
40 static void sifive_prci_write(void *opaque, hwaddr addr,
41 uint64_t val64, unsigned int size)
43 /* discard writes */
46 static const MemoryRegionOps sifive_prci_ops = {
47 .read = sifive_prci_read,
48 .write = sifive_prci_write,
49 .endianness = DEVICE_NATIVE_ENDIAN,
50 .valid = {
51 .min_access_size = 4,
52 .max_access_size = 4
56 static void sifive_prci_init(Object *obj)
58 SiFivePRCIState *s = SIFIVE_PRCI(obj);
60 memory_region_init_io(&s->mmio, obj, &sifive_prci_ops, s,
61 TYPE_SIFIVE_PRCI, 0x8000);
62 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
65 static const TypeInfo sifive_prci_info = {
66 .name = TYPE_SIFIVE_PRCI,
67 .parent = TYPE_SYS_BUS_DEVICE,
68 .instance_size = sizeof(SiFivePRCIState),
69 .instance_init = sifive_prci_init,
72 static void sifive_prci_register_types(void)
74 type_register_static(&sifive_prci_info);
77 type_init(sifive_prci_register_types)
81 * Create PRCI device.
83 DeviceState *sifive_prci_create(hwaddr addr)
85 DeviceState *dev = qdev_create(NULL, TYPE_SIFIVE_PRCI);
86 qdev_init_nofail(dev);
87 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
88 return dev;