xref: /openbmc/qemu/hw/gpio/imx_gpio.c (revision 0b8fa32f551e863bb548a11394239239270dd3dc)
1f4427280SJean-Christophe Dubois /*
2f4427280SJean-Christophe Dubois  * i.MX processors GPIO emulation.
3f4427280SJean-Christophe Dubois  *
4f4427280SJean-Christophe Dubois  * Copyright (C) 2015 Jean-Christophe Dubois <jcd@tribudubois.net>
5f4427280SJean-Christophe Dubois  *
6f4427280SJean-Christophe Dubois  * This program is free software; you can redistribute it and/or
7f4427280SJean-Christophe Dubois  * modify it under the terms of the GNU General Public License as
8f4427280SJean-Christophe Dubois  * published by the Free Software Foundation; either version 2 or
9f4427280SJean-Christophe Dubois  * (at your option) version 3 of the License.
10f4427280SJean-Christophe Dubois  *
11f4427280SJean-Christophe Dubois  * This program is distributed in the hope that it will be useful,
12f4427280SJean-Christophe Dubois  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13f4427280SJean-Christophe Dubois  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14f4427280SJean-Christophe Dubois  * GNU General Public License for more details.
15f4427280SJean-Christophe Dubois  *
16f4427280SJean-Christophe Dubois  * You should have received a copy of the GNU General Public License along
17f4427280SJean-Christophe Dubois  * with this program; if not, see <http://www.gnu.org/licenses/>.
18f4427280SJean-Christophe Dubois  */
19f4427280SJean-Christophe Dubois 
208ef94f0bSPeter Maydell #include "qemu/osdep.h"
21f4427280SJean-Christophe Dubois #include "hw/gpio/imx_gpio.h"
2203dd024fSPaolo Bonzini #include "qemu/log.h"
23*0b8fa32fSMarkus Armbruster #include "qemu/module.h"
24f4427280SJean-Christophe Dubois 
25f4427280SJean-Christophe Dubois #ifndef DEBUG_IMX_GPIO
26f4427280SJean-Christophe Dubois #define DEBUG_IMX_GPIO 0
27f4427280SJean-Christophe Dubois #endif
28f4427280SJean-Christophe Dubois 
29f4427280SJean-Christophe Dubois typedef enum IMXGPIOLevel {
30f4427280SJean-Christophe Dubois     IMX_GPIO_LEVEL_LOW = 0,
31f4427280SJean-Christophe Dubois     IMX_GPIO_LEVEL_HIGH = 1,
32f4427280SJean-Christophe Dubois } IMXGPIOLevel;
33f4427280SJean-Christophe Dubois 
34f4427280SJean-Christophe Dubois #define DPRINTF(fmt, args...) \
35f4427280SJean-Christophe Dubois     do { \
36f4427280SJean-Christophe Dubois         if (DEBUG_IMX_GPIO) { \
3756411125SJean-Christophe Dubois             fprintf(stderr, "[%s]%s: " fmt , TYPE_IMX_GPIO, \
3856411125SJean-Christophe Dubois                                              __func__, ##args); \
39f4427280SJean-Christophe Dubois         } \
40f4427280SJean-Christophe Dubois     } while (0)
41f4427280SJean-Christophe Dubois 
42f4427280SJean-Christophe Dubois static const char *imx_gpio_reg_name(uint32_t reg)
43f4427280SJean-Christophe Dubois {
44f4427280SJean-Christophe Dubois     switch (reg) {
45f4427280SJean-Christophe Dubois     case DR_ADDR:
46f4427280SJean-Christophe Dubois         return "DR";
47f4427280SJean-Christophe Dubois     case GDIR_ADDR:
48f4427280SJean-Christophe Dubois         return "GDIR";
49f4427280SJean-Christophe Dubois     case PSR_ADDR:
50f4427280SJean-Christophe Dubois         return "PSR";
51f4427280SJean-Christophe Dubois     case ICR1_ADDR:
52f4427280SJean-Christophe Dubois         return "ICR1";
53f4427280SJean-Christophe Dubois     case ICR2_ADDR:
54f4427280SJean-Christophe Dubois         return "ICR2";
55f4427280SJean-Christophe Dubois     case IMR_ADDR:
56f4427280SJean-Christophe Dubois         return "IMR";
57f4427280SJean-Christophe Dubois     case ISR_ADDR:
58f4427280SJean-Christophe Dubois         return "ISR";
59f4427280SJean-Christophe Dubois     case EDGE_SEL_ADDR:
60f4427280SJean-Christophe Dubois         return "EDGE_SEL";
61f4427280SJean-Christophe Dubois     default:
62f4427280SJean-Christophe Dubois         return "[?]";
63f4427280SJean-Christophe Dubois     }
64f4427280SJean-Christophe Dubois }
65f4427280SJean-Christophe Dubois 
66f4427280SJean-Christophe Dubois static void imx_gpio_update_int(IMXGPIOState *s)
67f4427280SJean-Christophe Dubois {
68f1f7e4bfSJean-Christophe Dubois     if (s->has_upper_pin_irq) {
69f1f7e4bfSJean-Christophe Dubois         qemu_set_irq(s->irq[0], (s->isr & s->imr & 0x0000FFFF) ? 1 : 0);
70f1f7e4bfSJean-Christophe Dubois         qemu_set_irq(s->irq[1], (s->isr & s->imr & 0xFFFF0000) ? 1 : 0);
71f1f7e4bfSJean-Christophe Dubois     } else {
72f1f7e4bfSJean-Christophe Dubois         qemu_set_irq(s->irq[0], (s->isr & s->imr) ? 1 : 0);
73f1f7e4bfSJean-Christophe Dubois     }
74f4427280SJean-Christophe Dubois }
75f4427280SJean-Christophe Dubois 
76f4427280SJean-Christophe Dubois static void imx_gpio_set_int_line(IMXGPIOState *s, int line, IMXGPIOLevel level)
77f4427280SJean-Christophe Dubois {
78f4427280SJean-Christophe Dubois     /* if this signal isn't configured as an input signal, nothing to do */
79f4427280SJean-Christophe Dubois     if (!extract32(s->gdir, line, 1)) {
80f4427280SJean-Christophe Dubois         return;
81f4427280SJean-Christophe Dubois     }
82f4427280SJean-Christophe Dubois 
83f4427280SJean-Christophe Dubois     /* When set, EDGE_SEL overrides the ICR config */
84f4427280SJean-Christophe Dubois     if (extract32(s->edge_sel, line, 1)) {
85f4427280SJean-Christophe Dubois         /* we detect interrupt on rising and falling edge */
86f4427280SJean-Christophe Dubois         if (extract32(s->psr, line, 1) != level) {
87f4427280SJean-Christophe Dubois             /* level changed */
88f4427280SJean-Christophe Dubois             s->isr = deposit32(s->isr, line, 1, 1);
89f4427280SJean-Christophe Dubois         }
90f4427280SJean-Christophe Dubois     } else if (extract64(s->icr, 2*line + 1, 1)) {
91f4427280SJean-Christophe Dubois         /* interrupt is edge sensitive */
92f4427280SJean-Christophe Dubois         if (extract32(s->psr, line, 1) != level) {
93f4427280SJean-Christophe Dubois             /* level changed */
94f4427280SJean-Christophe Dubois             if (extract64(s->icr, 2*line, 1) != level) {
95f4427280SJean-Christophe Dubois                 s->isr = deposit32(s->isr, line, 1, 1);
96f4427280SJean-Christophe Dubois             }
97f4427280SJean-Christophe Dubois         }
98f4427280SJean-Christophe Dubois     } else {
99f4427280SJean-Christophe Dubois         /* interrupt is level sensitive */
100f4427280SJean-Christophe Dubois         if (extract64(s->icr, 2*line, 1) == level) {
101f4427280SJean-Christophe Dubois             s->isr = deposit32(s->isr, line, 1, 1);
102f4427280SJean-Christophe Dubois         }
103f4427280SJean-Christophe Dubois     }
104f4427280SJean-Christophe Dubois }
105f4427280SJean-Christophe Dubois 
106f4427280SJean-Christophe Dubois static void imx_gpio_set(void *opaque, int line, int level)
107f4427280SJean-Christophe Dubois {
108f4427280SJean-Christophe Dubois     IMXGPIOState *s = IMX_GPIO(opaque);
109f4427280SJean-Christophe Dubois     IMXGPIOLevel imx_level = level ? IMX_GPIO_LEVEL_HIGH : IMX_GPIO_LEVEL_LOW;
110f4427280SJean-Christophe Dubois 
111f4427280SJean-Christophe Dubois     imx_gpio_set_int_line(s, line, imx_level);
112f4427280SJean-Christophe Dubois 
113f4427280SJean-Christophe Dubois     /* this is an input signal, so set PSR */
114f4427280SJean-Christophe Dubois     s->psr = deposit32(s->psr, line, 1, imx_level);
115f4427280SJean-Christophe Dubois 
116f4427280SJean-Christophe Dubois     imx_gpio_update_int(s);
117f4427280SJean-Christophe Dubois }
118f4427280SJean-Christophe Dubois 
119f4427280SJean-Christophe Dubois static void imx_gpio_set_all_int_lines(IMXGPIOState *s)
120f4427280SJean-Christophe Dubois {
121f4427280SJean-Christophe Dubois     int i;
122f4427280SJean-Christophe Dubois 
123f4427280SJean-Christophe Dubois     for (i = 0; i < IMX_GPIO_PIN_COUNT; i++) {
124f4427280SJean-Christophe Dubois         IMXGPIOLevel imx_level = extract32(s->psr, i, 1);
125f4427280SJean-Christophe Dubois         imx_gpio_set_int_line(s, i, imx_level);
126f4427280SJean-Christophe Dubois     }
127f4427280SJean-Christophe Dubois 
128f4427280SJean-Christophe Dubois     imx_gpio_update_int(s);
129f4427280SJean-Christophe Dubois }
130f4427280SJean-Christophe Dubois 
131f4427280SJean-Christophe Dubois static inline void imx_gpio_set_all_output_lines(IMXGPIOState *s)
132f4427280SJean-Christophe Dubois {
133f4427280SJean-Christophe Dubois     int i;
134f4427280SJean-Christophe Dubois 
135f4427280SJean-Christophe Dubois     for (i = 0; i < IMX_GPIO_PIN_COUNT; i++) {
136f4427280SJean-Christophe Dubois         /*
137f4427280SJean-Christophe Dubois          * if the line is set as output, then forward the line
138f4427280SJean-Christophe Dubois          * level to its user.
139f4427280SJean-Christophe Dubois          */
140f4427280SJean-Christophe Dubois         if (extract32(s->gdir, i, 1) && s->output[i]) {
141f4427280SJean-Christophe Dubois             qemu_set_irq(s->output[i], extract32(s->dr, i, 1));
142f4427280SJean-Christophe Dubois         }
143f4427280SJean-Christophe Dubois     }
144f4427280SJean-Christophe Dubois }
145f4427280SJean-Christophe Dubois 
146f4427280SJean-Christophe Dubois static uint64_t imx_gpio_read(void *opaque, hwaddr offset, unsigned size)
147f4427280SJean-Christophe Dubois {
148f4427280SJean-Christophe Dubois     IMXGPIOState *s = IMX_GPIO(opaque);
149f4427280SJean-Christophe Dubois     uint32_t reg_value = 0;
150f4427280SJean-Christophe Dubois 
151f4427280SJean-Christophe Dubois     switch (offset) {
152f4427280SJean-Christophe Dubois     case DR_ADDR:
153f4427280SJean-Christophe Dubois         /*
154f4427280SJean-Christophe Dubois          * depending on the "line" configuration, the bit values
155f4427280SJean-Christophe Dubois          * are coming either from DR or PSR
156f4427280SJean-Christophe Dubois          */
157f4427280SJean-Christophe Dubois         reg_value = (s->dr & s->gdir) | (s->psr & ~s->gdir);
158f4427280SJean-Christophe Dubois         break;
159f4427280SJean-Christophe Dubois 
160f4427280SJean-Christophe Dubois     case GDIR_ADDR:
161f4427280SJean-Christophe Dubois         reg_value = s->gdir;
162f4427280SJean-Christophe Dubois         break;
163f4427280SJean-Christophe Dubois 
164f4427280SJean-Christophe Dubois     case PSR_ADDR:
165f4427280SJean-Christophe Dubois         reg_value = s->psr & ~s->gdir;
166f4427280SJean-Christophe Dubois         break;
167f4427280SJean-Christophe Dubois 
168f4427280SJean-Christophe Dubois     case ICR1_ADDR:
169f4427280SJean-Christophe Dubois         reg_value = extract64(s->icr, 0, 32);
170f4427280SJean-Christophe Dubois         break;
171f4427280SJean-Christophe Dubois 
172f4427280SJean-Christophe Dubois     case ICR2_ADDR:
173f4427280SJean-Christophe Dubois         reg_value = extract64(s->icr, 32, 32);
174f4427280SJean-Christophe Dubois         break;
175f4427280SJean-Christophe Dubois 
176f4427280SJean-Christophe Dubois     case IMR_ADDR:
177f4427280SJean-Christophe Dubois         reg_value = s->imr;
178f4427280SJean-Christophe Dubois         break;
179f4427280SJean-Christophe Dubois 
180f4427280SJean-Christophe Dubois     case ISR_ADDR:
181f4427280SJean-Christophe Dubois         reg_value = s->isr;
182f4427280SJean-Christophe Dubois         break;
183f4427280SJean-Christophe Dubois 
184f4427280SJean-Christophe Dubois     case EDGE_SEL_ADDR:
185f4427280SJean-Christophe Dubois         if (s->has_edge_sel) {
186f4427280SJean-Christophe Dubois             reg_value = s->edge_sel;
187f4427280SJean-Christophe Dubois         } else {
18856411125SJean-Christophe Dubois             qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: EDGE_SEL register not "
189f4427280SJean-Christophe Dubois                           "present on this version of GPIO device\n",
190f4427280SJean-Christophe Dubois                           TYPE_IMX_GPIO, __func__);
191f4427280SJean-Christophe Dubois         }
192f4427280SJean-Christophe Dubois         break;
193f4427280SJean-Christophe Dubois 
194f4427280SJean-Christophe Dubois     default:
19556411125SJean-Christophe Dubois         qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
19656411125SJean-Christophe Dubois                       HWADDR_PRIx "\n", TYPE_IMX_GPIO, __func__, offset);
197f4427280SJean-Christophe Dubois         break;
198f4427280SJean-Christophe Dubois     }
199f4427280SJean-Christophe Dubois 
200f4427280SJean-Christophe Dubois     DPRINTF("(%s) = 0x%" PRIx32 "\n", imx_gpio_reg_name(offset), reg_value);
201f4427280SJean-Christophe Dubois 
202f4427280SJean-Christophe Dubois     return reg_value;
203f4427280SJean-Christophe Dubois }
204f4427280SJean-Christophe Dubois 
205f4427280SJean-Christophe Dubois static void imx_gpio_write(void *opaque, hwaddr offset, uint64_t value,
206f4427280SJean-Christophe Dubois                            unsigned size)
207f4427280SJean-Christophe Dubois {
208f4427280SJean-Christophe Dubois     IMXGPIOState *s = IMX_GPIO(opaque);
209f4427280SJean-Christophe Dubois 
210f4427280SJean-Christophe Dubois     DPRINTF("(%s, value = 0x%" PRIx32 ")\n", imx_gpio_reg_name(offset),
211f4427280SJean-Christophe Dubois             (uint32_t)value);
212f4427280SJean-Christophe Dubois 
213f4427280SJean-Christophe Dubois     switch (offset) {
214f4427280SJean-Christophe Dubois     case DR_ADDR:
215f4427280SJean-Christophe Dubois         s->dr = value;
216f4427280SJean-Christophe Dubois         imx_gpio_set_all_output_lines(s);
217f4427280SJean-Christophe Dubois         break;
218f4427280SJean-Christophe Dubois 
219f4427280SJean-Christophe Dubois     case GDIR_ADDR:
220f4427280SJean-Christophe Dubois         s->gdir = value;
221f4427280SJean-Christophe Dubois         imx_gpio_set_all_output_lines(s);
222f4427280SJean-Christophe Dubois         imx_gpio_set_all_int_lines(s);
223f4427280SJean-Christophe Dubois         break;
224f4427280SJean-Christophe Dubois 
225f4427280SJean-Christophe Dubois     case ICR1_ADDR:
226f4427280SJean-Christophe Dubois         s->icr = deposit64(s->icr, 0, 32, value);
227f4427280SJean-Christophe Dubois         imx_gpio_set_all_int_lines(s);
228f4427280SJean-Christophe Dubois         break;
229f4427280SJean-Christophe Dubois 
230f4427280SJean-Christophe Dubois     case ICR2_ADDR:
231f4427280SJean-Christophe Dubois         s->icr = deposit64(s->icr, 32, 32, value);
232f4427280SJean-Christophe Dubois         imx_gpio_set_all_int_lines(s);
233f4427280SJean-Christophe Dubois         break;
234f4427280SJean-Christophe Dubois 
235f4427280SJean-Christophe Dubois     case IMR_ADDR:
236f4427280SJean-Christophe Dubois         s->imr = value;
237f4427280SJean-Christophe Dubois         imx_gpio_update_int(s);
238f4427280SJean-Christophe Dubois         break;
239f4427280SJean-Christophe Dubois 
240f4427280SJean-Christophe Dubois     case ISR_ADDR:
241fb70029bSGuenter Roeck         s->isr &= ~value;
242f4427280SJean-Christophe Dubois         imx_gpio_set_all_int_lines(s);
243f4427280SJean-Christophe Dubois         break;
244f4427280SJean-Christophe Dubois 
245f4427280SJean-Christophe Dubois     case EDGE_SEL_ADDR:
246f4427280SJean-Christophe Dubois         if (s->has_edge_sel) {
247f4427280SJean-Christophe Dubois             s->edge_sel = value;
248f4427280SJean-Christophe Dubois             imx_gpio_set_all_int_lines(s);
249f4427280SJean-Christophe Dubois         } else {
25056411125SJean-Christophe Dubois             qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: EDGE_SEL register not "
251f4427280SJean-Christophe Dubois                           "present on this version of GPIO device\n",
252f4427280SJean-Christophe Dubois                           TYPE_IMX_GPIO, __func__);
253f4427280SJean-Christophe Dubois         }
254f4427280SJean-Christophe Dubois         break;
255f4427280SJean-Christophe Dubois 
256f4427280SJean-Christophe Dubois     default:
25756411125SJean-Christophe Dubois         qemu_log_mask(LOG_GUEST_ERROR, "[%s]%s: Bad register at offset 0x%"
25856411125SJean-Christophe Dubois                       HWADDR_PRIx "\n", TYPE_IMX_GPIO, __func__, offset);
259f4427280SJean-Christophe Dubois         break;
260f4427280SJean-Christophe Dubois     }
261f4427280SJean-Christophe Dubois 
262f4427280SJean-Christophe Dubois     return;
263f4427280SJean-Christophe Dubois }
264f4427280SJean-Christophe Dubois 
265f4427280SJean-Christophe Dubois static const MemoryRegionOps imx_gpio_ops = {
266f4427280SJean-Christophe Dubois     .read = imx_gpio_read,
267f4427280SJean-Christophe Dubois     .write = imx_gpio_write,
268f4427280SJean-Christophe Dubois     .valid.min_access_size = 4,
269f4427280SJean-Christophe Dubois     .valid.max_access_size = 4,
270f4427280SJean-Christophe Dubois     .endianness = DEVICE_NATIVE_ENDIAN,
271f4427280SJean-Christophe Dubois };
272f4427280SJean-Christophe Dubois 
273f4427280SJean-Christophe Dubois static const VMStateDescription vmstate_imx_gpio = {
274f4427280SJean-Christophe Dubois     .name = TYPE_IMX_GPIO,
275f4427280SJean-Christophe Dubois     .version_id = 1,
276f4427280SJean-Christophe Dubois     .minimum_version_id = 1,
277f4427280SJean-Christophe Dubois     .minimum_version_id_old = 1,
278f4427280SJean-Christophe Dubois     .fields = (VMStateField[]) {
279f4427280SJean-Christophe Dubois         VMSTATE_UINT32(dr, IMXGPIOState),
280f4427280SJean-Christophe Dubois         VMSTATE_UINT32(gdir, IMXGPIOState),
281f4427280SJean-Christophe Dubois         VMSTATE_UINT32(psr, IMXGPIOState),
282f4427280SJean-Christophe Dubois         VMSTATE_UINT64(icr, IMXGPIOState),
283f4427280SJean-Christophe Dubois         VMSTATE_UINT32(imr, IMXGPIOState),
284f4427280SJean-Christophe Dubois         VMSTATE_UINT32(isr, IMXGPIOState),
285f4427280SJean-Christophe Dubois         VMSTATE_BOOL(has_edge_sel, IMXGPIOState),
286f4427280SJean-Christophe Dubois         VMSTATE_UINT32(edge_sel, IMXGPIOState),
287f4427280SJean-Christophe Dubois         VMSTATE_END_OF_LIST()
288f4427280SJean-Christophe Dubois     }
289f4427280SJean-Christophe Dubois };
290f4427280SJean-Christophe Dubois 
291f4427280SJean-Christophe Dubois static Property imx_gpio_properties[] = {
292f4427280SJean-Christophe Dubois     DEFINE_PROP_BOOL("has-edge-sel", IMXGPIOState, has_edge_sel, true),
293f1f7e4bfSJean-Christophe Dubois     DEFINE_PROP_BOOL("has-upper-pin-irq", IMXGPIOState, has_upper_pin_irq,
294f1f7e4bfSJean-Christophe Dubois                      false),
295f4427280SJean-Christophe Dubois     DEFINE_PROP_END_OF_LIST(),
296f4427280SJean-Christophe Dubois };
297f4427280SJean-Christophe Dubois 
298f4427280SJean-Christophe Dubois static void imx_gpio_reset(DeviceState *dev)
299f4427280SJean-Christophe Dubois {
300f4427280SJean-Christophe Dubois     IMXGPIOState *s = IMX_GPIO(dev);
301f4427280SJean-Christophe Dubois 
302f4427280SJean-Christophe Dubois     s->dr       = 0;
303f4427280SJean-Christophe Dubois     s->gdir     = 0;
304f4427280SJean-Christophe Dubois     s->psr      = 0;
305f4427280SJean-Christophe Dubois     s->icr      = 0;
306f4427280SJean-Christophe Dubois     s->imr      = 0;
307f4427280SJean-Christophe Dubois     s->isr      = 0;
308f4427280SJean-Christophe Dubois     s->edge_sel = 0;
309f4427280SJean-Christophe Dubois 
310f4427280SJean-Christophe Dubois     imx_gpio_set_all_output_lines(s);
311f4427280SJean-Christophe Dubois     imx_gpio_update_int(s);
312f4427280SJean-Christophe Dubois }
313f4427280SJean-Christophe Dubois 
314f4427280SJean-Christophe Dubois static void imx_gpio_realize(DeviceState *dev, Error **errp)
315f4427280SJean-Christophe Dubois {
316f4427280SJean-Christophe Dubois     IMXGPIOState *s = IMX_GPIO(dev);
317f4427280SJean-Christophe Dubois 
318f4427280SJean-Christophe Dubois     memory_region_init_io(&s->iomem, OBJECT(s), &imx_gpio_ops, s,
319f4427280SJean-Christophe Dubois                           TYPE_IMX_GPIO, IMX_GPIO_MEM_SIZE);
320f4427280SJean-Christophe Dubois 
321f4427280SJean-Christophe Dubois     qdev_init_gpio_in(DEVICE(s), imx_gpio_set, IMX_GPIO_PIN_COUNT);
322f4427280SJean-Christophe Dubois     qdev_init_gpio_out(DEVICE(s), s->output, IMX_GPIO_PIN_COUNT);
323f4427280SJean-Christophe Dubois 
324f1f7e4bfSJean-Christophe Dubois     sysbus_init_irq(SYS_BUS_DEVICE(dev), &s->irq[0]);
325f1f7e4bfSJean-Christophe Dubois     sysbus_init_irq(SYS_BUS_DEVICE(dev), &s->irq[1]);
326f4427280SJean-Christophe Dubois     sysbus_init_mmio(SYS_BUS_DEVICE(dev), &s->iomem);
327f4427280SJean-Christophe Dubois }
328f4427280SJean-Christophe Dubois 
329f4427280SJean-Christophe Dubois static void imx_gpio_class_init(ObjectClass *klass, void *data)
330f4427280SJean-Christophe Dubois {
331f4427280SJean-Christophe Dubois     DeviceClass *dc = DEVICE_CLASS(klass);
332f4427280SJean-Christophe Dubois 
333f4427280SJean-Christophe Dubois     dc->realize = imx_gpio_realize;
334f4427280SJean-Christophe Dubois     dc->reset = imx_gpio_reset;
335f4427280SJean-Christophe Dubois     dc->props = imx_gpio_properties;
336f4427280SJean-Christophe Dubois     dc->vmsd = &vmstate_imx_gpio;
337f4427280SJean-Christophe Dubois     dc->desc = "i.MX GPIO controller";
338f4427280SJean-Christophe Dubois }
339f4427280SJean-Christophe Dubois 
340f4427280SJean-Christophe Dubois static const TypeInfo imx_gpio_info = {
341f4427280SJean-Christophe Dubois     .name = TYPE_IMX_GPIO,
342f4427280SJean-Christophe Dubois     .parent = TYPE_SYS_BUS_DEVICE,
343f4427280SJean-Christophe Dubois     .instance_size = sizeof(IMXGPIOState),
344f4427280SJean-Christophe Dubois     .class_init = imx_gpio_class_init,
345f4427280SJean-Christophe Dubois };
346f4427280SJean-Christophe Dubois 
347f4427280SJean-Christophe Dubois static void imx_gpio_register_types(void)
348f4427280SJean-Christophe Dubois {
349f4427280SJean-Christophe Dubois     type_register_static(&imx_gpio_info);
350f4427280SJean-Christophe Dubois }
351f4427280SJean-Christophe Dubois 
352f4427280SJean-Christophe Dubois type_init(imx_gpio_register_types)
353