2 * GPIO Controller for a lot of Freescale SoCs
4 * Copyright (C) 2014 Freescale Semiconductor, Inc. All rights reserved.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "qemu/osdep.h"
23 #include "hw/sysbus.h"
25 #define TYPE_MPC8XXX_GPIO "mpc8xxx_gpio"
26 #define MPC8XXX_GPIO(obj) OBJECT_CHECK(MPC8XXXGPIOState, (obj), TYPE_MPC8XXX_GPIO)
28 typedef struct MPC8XXXGPIOState {
29 SysBusDevice parent_obj;
43 static const VMStateDescription vmstate_mpc8xxx_gpio = {
44 .name = "mpc8xxx_gpio",
46 .minimum_version_id = 1,
47 .fields = (VMStateField[]) {
48 VMSTATE_UINT32(dir, MPC8XXXGPIOState),
49 VMSTATE_UINT32(odr, MPC8XXXGPIOState),
50 VMSTATE_UINT32(dat, MPC8XXXGPIOState),
51 VMSTATE_UINT32(ier, MPC8XXXGPIOState),
52 VMSTATE_UINT32(imr, MPC8XXXGPIOState),
53 VMSTATE_UINT32(icr, MPC8XXXGPIOState),
58 static void mpc8xxx_gpio_update(MPC8XXXGPIOState *s)
60 qemu_set_irq(s->irq, !!(s->ier & s->imr));
63 static uint64_t mpc8xxx_gpio_read(void *opaque, hwaddr offset,
66 MPC8XXXGPIOState *s = (MPC8XXXGPIOState *)opaque;
69 /* All registers are 32bit */
74 case 0x0: /* Direction */
76 case 0x4: /* Open Drain */
80 case 0xC: /* Interrupt Event */
82 case 0x10: /* Interrupt Mask */
84 case 0x14: /* Interrupt Control */
91 static void mpc8xxx_write_data(MPC8XXXGPIOState *s, uint32_t new_data)
93 uint32_t old_data = s->dat;
94 uint32_t diff = old_data ^ new_data;
97 for (i = 0; i < 32; i++) {
98 uint32_t mask = 0x80000000 >> i;
105 qemu_set_irq(s->out[i], (new_data & mask) != 0);
112 static void mpc8xxx_gpio_write(void *opaque, hwaddr offset,
113 uint64_t value, unsigned size)
115 MPC8XXXGPIOState *s = (MPC8XXXGPIOState *)opaque;
118 /* All registers are 32bit */
123 case 0x0: /* Direction */
126 case 0x4: /* Open Drain */
130 mpc8xxx_write_data(s, value);
132 case 0xC: /* Interrupt Event */
135 case 0x10: /* Interrupt Mask */
138 case 0x14: /* Interrupt Control */
143 mpc8xxx_gpio_update(s);
146 static void mpc8xxx_gpio_reset(DeviceState *dev)
148 MPC8XXXGPIOState *s = MPC8XXX_GPIO(dev);
158 static void mpc8xxx_gpio_set_irq(void * opaque, int irq, int level)
160 MPC8XXXGPIOState *s = (MPC8XXXGPIOState *)opaque;
163 mask = 0x80000000 >> irq;
164 if ((s->dir & mask) == 0) {
165 uint32_t old_value = s->dat & mask;
171 if (!(s->icr & irq) || (old_value && !level)) {
175 mpc8xxx_gpio_update(s);
179 static const MemoryRegionOps mpc8xxx_gpio_ops = {
180 .read = mpc8xxx_gpio_read,
181 .write = mpc8xxx_gpio_write,
182 .endianness = DEVICE_BIG_ENDIAN,
185 static void mpc8xxx_gpio_initfn(Object *obj)
187 DeviceState *dev = DEVICE(obj);
188 MPC8XXXGPIOState *s = MPC8XXX_GPIO(obj);
189 SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
191 memory_region_init_io(&s->iomem, obj, &mpc8xxx_gpio_ops,
192 s, "mpc8xxx_gpio", 0x1000);
193 sysbus_init_mmio(sbd, &s->iomem);
194 sysbus_init_irq(sbd, &s->irq);
195 qdev_init_gpio_in(dev, mpc8xxx_gpio_set_irq, 32);
196 qdev_init_gpio_out(dev, s->out, 32);
199 static void mpc8xxx_gpio_class_init(ObjectClass *klass, void *data)
201 DeviceClass *dc = DEVICE_CLASS(klass);
203 dc->vmsd = &vmstate_mpc8xxx_gpio;
204 dc->reset = mpc8xxx_gpio_reset;
207 static const TypeInfo mpc8xxx_gpio_info = {
208 .name = TYPE_MPC8XXX_GPIO,
209 .parent = TYPE_SYS_BUS_DEVICE,
210 .instance_size = sizeof(MPC8XXXGPIOState),
211 .instance_init = mpc8xxx_gpio_initfn,
212 .class_init = mpc8xxx_gpio_class_init,
215 static void mpc8xxx_gpio_register_types(void)
217 type_register_static(&mpc8xxx_gpio_info);
220 type_init(mpc8xxx_gpio_register_types)