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
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"
23 #include "hw/sysbus.h"
24 #include "qemu/module.h"
25 #include "target/riscv/cpu.h"
27 #include "hw/riscv/sifive_prci.h"
29 static uint64_t sifive_prci_read(void *opaque, hwaddr addr, unsigned int size)
31 SiFivePRCIState *s = opaque;
33 case SIFIVE_PRCI_HFROSCCFG:
35 case SIFIVE_PRCI_HFXOSCCFG:
37 case SIFIVE_PRCI_PLLCFG:
39 case SIFIVE_PRCI_PLLOUTDIV:
42 hw_error("%s: read: addr=0x%x\n", __func__, (int)addr);
46 static void sifive_prci_write(void *opaque, hwaddr addr,
47 uint64_t val64, unsigned int size)
49 SiFivePRCIState *s = opaque;
51 case SIFIVE_PRCI_HFROSCCFG:
52 s->hfrosccfg = (uint32_t) val64;
54 s->hfrosccfg |= SIFIVE_PRCI_HFROSCCFG_RDY;
56 case SIFIVE_PRCI_HFXOSCCFG:
57 s->hfxosccfg = (uint32_t) val64;
59 s->hfxosccfg |= SIFIVE_PRCI_HFXOSCCFG_RDY;
61 case SIFIVE_PRCI_PLLCFG:
62 s->pllcfg = (uint32_t) val64;
63 /* PLL stays locked */
64 s->pllcfg |= SIFIVE_PRCI_PLLCFG_LOCK;
66 case SIFIVE_PRCI_PLLOUTDIV:
67 s->plloutdiv = (uint32_t) val64;
70 hw_error("%s: bad write: addr=0x%x v=0x%x\n",
71 __func__, (int)addr, (int)val64);
75 static const MemoryRegionOps sifive_prci_ops = {
76 .read = sifive_prci_read,
77 .write = sifive_prci_write,
78 .endianness = DEVICE_NATIVE_ENDIAN,
85 static void sifive_prci_init(Object *obj)
87 SiFivePRCIState *s = SIFIVE_PRCI(obj);
89 memory_region_init_io(&s->mmio, obj, &sifive_prci_ops, s,
90 TYPE_SIFIVE_PRCI, 0x8000);
91 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
93 s->hfrosccfg = (SIFIVE_PRCI_HFROSCCFG_RDY | SIFIVE_PRCI_HFROSCCFG_EN);
94 s->hfxosccfg = (SIFIVE_PRCI_HFROSCCFG_RDY | SIFIVE_PRCI_HFROSCCFG_EN);
95 s->pllcfg = (SIFIVE_PRCI_PLLCFG_REFSEL | SIFIVE_PRCI_PLLCFG_BYPASS |
96 SIFIVE_PRCI_PLLCFG_LOCK);
97 s->plloutdiv = SIFIVE_PRCI_PLLOUTDIV_DIV1;
101 static const TypeInfo sifive_prci_info = {
102 .name = TYPE_SIFIVE_PRCI,
103 .parent = TYPE_SYS_BUS_DEVICE,
104 .instance_size = sizeof(SiFivePRCIState),
105 .instance_init = sifive_prci_init,
108 static void sifive_prci_register_types(void)
110 type_register_static(&sifive_prci_info);
113 type_init(sifive_prci_register_types)
117 * Create PRCI device.
119 DeviceState *sifive_prci_create(hwaddr addr)
121 DeviceState *dev = qdev_create(NULL, TYPE_SIFIVE_PRCI);
122 qdev_init_nofail(dev);
123 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);