hw/elf_ops: Fix a typo
[qemu/ar7.git] / hw / misc / sifive_e_prci.c
blob8ec4ee4b41fc0bce9ce77362ba086496a0b1c185
1 /*
2 * QEMU SiFive E 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 "qapi/error.h"
24 #include "qemu/log.h"
25 #include "qemu/module.h"
26 #include "hw/hw.h"
27 #include "hw/misc/sifive_e_prci.h"
29 static uint64_t sifive_e_prci_read(void *opaque, hwaddr addr, unsigned int size)
31 SiFiveEPRCIState *s = opaque;
32 switch (addr) {
33 case SIFIVE_E_PRCI_HFROSCCFG:
34 return s->hfrosccfg;
35 case SIFIVE_E_PRCI_HFXOSCCFG:
36 return s->hfxosccfg;
37 case SIFIVE_E_PRCI_PLLCFG:
38 return s->pllcfg;
39 case SIFIVE_E_PRCI_PLLOUTDIV:
40 return s->plloutdiv;
42 qemu_log_mask(LOG_GUEST_ERROR, "%s: read: addr=0x%x\n",
43 __func__, (int)addr);
44 return 0;
47 static void sifive_e_prci_write(void *opaque, hwaddr addr,
48 uint64_t val64, unsigned int size)
50 SiFiveEPRCIState *s = opaque;
51 switch (addr) {
52 case SIFIVE_E_PRCI_HFROSCCFG:
53 s->hfrosccfg = (uint32_t) val64;
54 /* OSC stays ready */
55 s->hfrosccfg |= SIFIVE_E_PRCI_HFROSCCFG_RDY;
56 break;
57 case SIFIVE_E_PRCI_HFXOSCCFG:
58 s->hfxosccfg = (uint32_t) val64;
59 /* OSC stays ready */
60 s->hfxosccfg |= SIFIVE_E_PRCI_HFXOSCCFG_RDY;
61 break;
62 case SIFIVE_E_PRCI_PLLCFG:
63 s->pllcfg = (uint32_t) val64;
64 /* PLL stays locked */
65 s->pllcfg |= SIFIVE_E_PRCI_PLLCFG_LOCK;
66 break;
67 case SIFIVE_E_PRCI_PLLOUTDIV:
68 s->plloutdiv = (uint32_t) val64;
69 break;
70 default:
71 qemu_log_mask(LOG_GUEST_ERROR, "%s: bad write: addr=0x%x v=0x%x\n",
72 __func__, (int)addr, (int)val64);
76 static const MemoryRegionOps sifive_e_prci_ops = {
77 .read = sifive_e_prci_read,
78 .write = sifive_e_prci_write,
79 .endianness = DEVICE_NATIVE_ENDIAN,
80 .valid = {
81 .min_access_size = 4,
82 .max_access_size = 4
86 static void sifive_e_prci_init(Object *obj)
88 SiFiveEPRCIState *s = SIFIVE_E_PRCI(obj);
90 memory_region_init_io(&s->mmio, obj, &sifive_e_prci_ops, s,
91 TYPE_SIFIVE_E_PRCI, SIFIVE_E_PRCI_REG_SIZE);
92 sysbus_init_mmio(SYS_BUS_DEVICE(obj), &s->mmio);
94 s->hfrosccfg = (SIFIVE_E_PRCI_HFROSCCFG_RDY | SIFIVE_E_PRCI_HFROSCCFG_EN);
95 s->hfxosccfg = (SIFIVE_E_PRCI_HFXOSCCFG_RDY | SIFIVE_E_PRCI_HFXOSCCFG_EN);
96 s->pllcfg = (SIFIVE_E_PRCI_PLLCFG_REFSEL | SIFIVE_E_PRCI_PLLCFG_BYPASS |
97 SIFIVE_E_PRCI_PLLCFG_LOCK);
98 s->plloutdiv = SIFIVE_E_PRCI_PLLOUTDIV_DIV1;
101 static const TypeInfo sifive_e_prci_info = {
102 .name = TYPE_SIFIVE_E_PRCI,
103 .parent = TYPE_SYS_BUS_DEVICE,
104 .instance_size = sizeof(SiFiveEPRCIState),
105 .instance_init = sifive_e_prci_init,
108 static void sifive_e_prci_register_types(void)
110 type_register_static(&sifive_e_prci_info);
113 type_init(sifive_e_prci_register_types)
117 * Create PRCI device.
119 DeviceState *sifive_e_prci_create(hwaddr addr)
121 DeviceState *dev = qdev_new(TYPE_SIFIVE_E_PRCI);
122 sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
123 sysbus_mmio_map(SYS_BUS_DEVICE(dev), 0, addr);
124 return dev;