s390x: upgrade status of KVM cores to "supported"
[qemu/ar7.git] / hw / intc / imx_gpcv2.c
blob4eb9ce2668162683e53c483c6b05f67c4f31e171
1 /*
2 * Copyright (c) 2018, Impinj, Inc.
4 * i.MX7 GPCv2 block emulation code
6 * Author: Andrey Smirnov <andrew.smirnov@gmail.com>
8 * This work is licensed under the terms of the GNU GPL, version 2 or later.
9 * See the COPYING file in the top-level directory.
12 #include "qemu/osdep.h"
13 #include "hw/intc/imx_gpcv2.h"
14 #include "qemu/log.h"
16 #define GPC_PU_PGC_SW_PUP_REQ 0x0f8
17 #define GPC_PU_PGC_SW_PDN_REQ 0x104
19 #define USB_HSIC_PHY_SW_Pxx_REQ BIT(4)
20 #define USB_OTG2_PHY_SW_Pxx_REQ BIT(3)
21 #define USB_OTG1_PHY_SW_Pxx_REQ BIT(2)
22 #define PCIE_PHY_SW_Pxx_REQ BIT(1)
23 #define MIPI_PHY_SW_Pxx_REQ BIT(0)
26 static void imx_gpcv2_reset(DeviceState *dev)
28 IMXGPCv2State *s = IMX_GPCV2(dev);
30 memset(s->regs, 0, sizeof(s->regs));
33 static uint64_t imx_gpcv2_read(void *opaque, hwaddr offset,
34 unsigned size)
36 IMXGPCv2State *s = opaque;
38 return s->regs[offset / sizeof(uint32_t)];
41 static void imx_gpcv2_write(void *opaque, hwaddr offset,
42 uint64_t value, unsigned size)
44 IMXGPCv2State *s = opaque;
45 const size_t idx = offset / sizeof(uint32_t);
47 s->regs[idx] = value;
50 * Real HW will clear those bits once as a way to indicate that
51 * power up request is complete
53 if (offset == GPC_PU_PGC_SW_PUP_REQ ||
54 offset == GPC_PU_PGC_SW_PDN_REQ) {
55 s->regs[idx] &= ~(USB_HSIC_PHY_SW_Pxx_REQ |
56 USB_OTG2_PHY_SW_Pxx_REQ |
57 USB_OTG1_PHY_SW_Pxx_REQ |
58 PCIE_PHY_SW_Pxx_REQ |
59 MIPI_PHY_SW_Pxx_REQ);
63 static const struct MemoryRegionOps imx_gpcv2_ops = {
64 .read = imx_gpcv2_read,
65 .write = imx_gpcv2_write,
66 .endianness = DEVICE_NATIVE_ENDIAN,
67 .impl = {
69 * Our device would not work correctly if the guest was doing
70 * unaligned access. This might not be a limitation on the real
71 * device but in practice there is no reason for a guest to access
72 * this device unaligned.
74 .min_access_size = 4,
75 .max_access_size = 4,
76 .unaligned = false,
80 static void imx_gpcv2_init(Object *obj)
82 SysBusDevice *sd = SYS_BUS_DEVICE(obj);
83 IMXGPCv2State *s = IMX_GPCV2(obj);
85 memory_region_init_io(&s->iomem,
86 obj,
87 &imx_gpcv2_ops,
89 TYPE_IMX_GPCV2 ".iomem",
90 sizeof(s->regs));
91 sysbus_init_mmio(sd, &s->iomem);
94 static const VMStateDescription vmstate_imx_gpcv2 = {
95 .name = TYPE_IMX_GPCV2,
96 .version_id = 1,
97 .minimum_version_id = 1,
98 .fields = (VMStateField[]) {
99 VMSTATE_UINT32_ARRAY(regs, IMXGPCv2State, GPC_NUM),
100 VMSTATE_END_OF_LIST()
104 static void imx_gpcv2_class_init(ObjectClass *klass, void *data)
106 DeviceClass *dc = DEVICE_CLASS(klass);
108 dc->reset = imx_gpcv2_reset;
109 dc->vmsd = &vmstate_imx_gpcv2;
110 dc->desc = "i.MX GPCv2 Module";
113 static const TypeInfo imx_gpcv2_info = {
114 .name = TYPE_IMX_GPCV2,
115 .parent = TYPE_SYS_BUS_DEVICE,
116 .instance_size = sizeof(IMXGPCv2State),
117 .instance_init = imx_gpcv2_init,
118 .class_init = imx_gpcv2_class_init,
121 static void imx_gpcv2_register_type(void)
123 type_register_static(&imx_gpcv2_info);
125 type_init(imx_gpcv2_register_type)