hw/char/mchp_pfsoc_mmuart: Simplify MCHP_PFSOC_MMUART_REG definition
[qemu/ar7.git] / hw / char / mchp_pfsoc_mmuart.c
blob584e7fec17c4bd6b7a118ec7ee86addda20d1d5b
1 /*
2 * Microchip PolarFire SoC MMUART emulation
4 * Copyright (c) 2020 Wind River Systems, Inc.
6 * Author:
7 * Bin Meng <bin.meng@windriver.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 or
12 * (at your option) version 3 of the License.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, see <http://www.gnu.org/licenses/>.
23 #include "qemu/osdep.h"
24 #include "qemu/log.h"
25 #include "chardev/char.h"
26 #include "hw/char/mchp_pfsoc_mmuart.h"
28 static uint64_t mchp_pfsoc_mmuart_read(void *opaque, hwaddr addr, unsigned size)
30 MchpPfSoCMMUartState *s = opaque;
32 addr >>= 2;
33 if (addr >= MCHP_PFSOC_MMUART_REG_COUNT) {
34 qemu_log_mask(LOG_GUEST_ERROR, "%s: read: addr=0x%" HWADDR_PRIx "\n",
35 __func__, addr << 2);
36 return 0;
39 return s->reg[addr];
42 static void mchp_pfsoc_mmuart_write(void *opaque, hwaddr addr,
43 uint64_t value, unsigned size)
45 MchpPfSoCMMUartState *s = opaque;
46 uint32_t val32 = (uint32_t)value;
48 addr >>= 2;
49 if (addr >= MCHP_PFSOC_MMUART_REG_COUNT) {
50 qemu_log_mask(LOG_GUEST_ERROR, "%s: bad write: addr=0x%" HWADDR_PRIx
51 " v=0x%x\n", __func__, addr << 2, val32);
52 return;
55 s->reg[addr] = val32;
58 static const MemoryRegionOps mchp_pfsoc_mmuart_ops = {
59 .read = mchp_pfsoc_mmuart_read,
60 .write = mchp_pfsoc_mmuart_write,
61 .endianness = DEVICE_LITTLE_ENDIAN,
62 .impl = {
63 .min_access_size = 4,
64 .max_access_size = 4,
68 MchpPfSoCMMUartState *mchp_pfsoc_mmuart_create(MemoryRegion *sysmem,
69 hwaddr base, qemu_irq irq, Chardev *chr)
71 MchpPfSoCMMUartState *s;
73 s = g_new0(MchpPfSoCMMUartState, 1);
75 memory_region_init_io(&s->iomem, NULL, &mchp_pfsoc_mmuart_ops, s,
76 "mchp.pfsoc.mmuart", 0x1000);
78 s->base = base;
79 s->irq = irq;
81 s->serial = serial_mm_init(sysmem, base, 2, irq, 399193, chr,
82 DEVICE_LITTLE_ENDIAN);
84 memory_region_add_subregion(sysmem, base + 0x20, &s->iomem);
86 return s;