xref: /qemu/hw/arm/fsl-imx31.c (revision b9e521dda3e6f8246d9ca3285ca372462e94c6d1)
1558df83dSJean-Christophe Dubois /*
2558df83dSJean-Christophe Dubois  * Copyright (c) 2013 Jean-Christophe Dubois <jcd@tribudubois.net>
3558df83dSJean-Christophe Dubois  *
4558df83dSJean-Christophe Dubois  * i.MX31 SOC emulation.
5558df83dSJean-Christophe Dubois  *
6558df83dSJean-Christophe Dubois  * Based on hw/arm/fsl-imx31.c
7558df83dSJean-Christophe Dubois  *
8558df83dSJean-Christophe Dubois  *  This program is free software; you can redistribute it and/or modify it
9558df83dSJean-Christophe Dubois  *  under the terms of the GNU General Public License as published by the
10558df83dSJean-Christophe Dubois  *  Free Software Foundation; either version 2 of the License, or
11558df83dSJean-Christophe Dubois  *  (at your option) any later version.
12558df83dSJean-Christophe Dubois  *
13558df83dSJean-Christophe Dubois  *  This program is distributed in the hope that it will be useful, but WITHOUT
14558df83dSJean-Christophe Dubois  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15558df83dSJean-Christophe Dubois  *  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16558df83dSJean-Christophe Dubois  *  for more details.
17558df83dSJean-Christophe Dubois  *
18558df83dSJean-Christophe Dubois  *  You should have received a copy of the GNU General Public License along
19558df83dSJean-Christophe Dubois  *  with this program; if not, see <http://www.gnu.org/licenses/>.
20558df83dSJean-Christophe Dubois  */
21558df83dSJean-Christophe Dubois 
2212b16722SPeter Maydell #include "qemu/osdep.h"
23da34e65cSMarkus Armbruster #include "qapi/error.h"
244771d756SPaolo Bonzini #include "cpu.h"
25558df83dSJean-Christophe Dubois #include "hw/arm/fsl-imx31.h"
26558df83dSJean-Christophe Dubois #include "sysemu/sysemu.h"
27558df83dSJean-Christophe Dubois #include "exec/address-spaces.h"
28a27bd6c7SMarkus Armbruster #include "hw/qdev-properties.h"
298228e353SMarc-André Lureau #include "chardev/char.h"
30558df83dSJean-Christophe Dubois 
31558df83dSJean-Christophe Dubois static void fsl_imx31_init(Object *obj)
32558df83dSJean-Christophe Dubois {
33558df83dSJean-Christophe Dubois     FslIMX31State *s = FSL_IMX31(obj);
34558df83dSJean-Christophe Dubois     int i;
35558df83dSJean-Christophe Dubois 
36eaa9a878SPhilippe Mathieu-Daudé     object_initialize_child(obj, "cpu", &s->cpu, sizeof(s->cpu),
37eaa9a878SPhilippe Mathieu-Daudé                             ARM_CPU_TYPE_NAME("arm1136"),
38eaa9a878SPhilippe Mathieu-Daudé                             &error_abort, NULL);
39558df83dSJean-Christophe Dubois 
40aac409c9SThomas Huth     sysbus_init_child_obj(obj, "avic", &s->avic, sizeof(s->avic),
41aac409c9SThomas Huth                           TYPE_IMX_AVIC);
42558df83dSJean-Christophe Dubois 
43aac409c9SThomas Huth     sysbus_init_child_obj(obj, "ccm", &s->ccm, sizeof(s->ccm), TYPE_IMX31_CCM);
44558df83dSJean-Christophe Dubois 
45558df83dSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_UARTS; i++) {
46aac409c9SThomas Huth         sysbus_init_child_obj(obj, "uart[*]", &s->uart[i], sizeof(s->uart[i]),
47aac409c9SThomas Huth                               TYPE_IMX_SERIAL);
48558df83dSJean-Christophe Dubois     }
49558df83dSJean-Christophe Dubois 
50aac409c9SThomas Huth     sysbus_init_child_obj(obj, "gpt", &s->gpt, sizeof(s->gpt), TYPE_IMX31_GPT);
51558df83dSJean-Christophe Dubois 
52558df83dSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_EPITS; i++) {
53aac409c9SThomas Huth         sysbus_init_child_obj(obj, "epit[*]", &s->epit[i], sizeof(s->epit[i]),
54aac409c9SThomas Huth                               TYPE_IMX_EPIT);
55558df83dSJean-Christophe Dubois     }
56d4e26d10SJean-Christophe Dubois 
57d4e26d10SJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_I2CS; i++) {
58aac409c9SThomas Huth         sysbus_init_child_obj(obj, "i2c[*]", &s->i2c[i], sizeof(s->i2c[i]),
59aac409c9SThomas Huth                               TYPE_IMX_I2C);
60d4e26d10SJean-Christophe Dubois     }
61dde0c4caSJean-Christophe Dubois 
62dde0c4caSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_GPIOS; i++) {
63aac409c9SThomas Huth         sysbus_init_child_obj(obj, "gpio[*]", &s->gpio[i], sizeof(s->gpio[i]),
64aac409c9SThomas Huth                               TYPE_IMX_GPIO);
65dde0c4caSJean-Christophe Dubois     }
66*b9e521ddSGuenter Roeck 
67*b9e521ddSGuenter Roeck     sysbus_init_child_obj(obj, "wdt", &s->wdt, sizeof(s->wdt), TYPE_IMX2_WDT);
68558df83dSJean-Christophe Dubois }
69558df83dSJean-Christophe Dubois 
70558df83dSJean-Christophe Dubois static void fsl_imx31_realize(DeviceState *dev, Error **errp)
71558df83dSJean-Christophe Dubois {
72558df83dSJean-Christophe Dubois     FslIMX31State *s = FSL_IMX31(dev);
73558df83dSJean-Christophe Dubois     uint16_t i;
74558df83dSJean-Christophe Dubois     Error *err = NULL;
75558df83dSJean-Christophe Dubois 
76558df83dSJean-Christophe Dubois     object_property_set_bool(OBJECT(&s->cpu), true, "realized", &err);
77558df83dSJean-Christophe Dubois     if (err) {
78558df83dSJean-Christophe Dubois         error_propagate(errp, err);
79558df83dSJean-Christophe Dubois         return;
80558df83dSJean-Christophe Dubois     }
81558df83dSJean-Christophe Dubois 
82558df83dSJean-Christophe Dubois     object_property_set_bool(OBJECT(&s->avic), true, "realized", &err);
83558df83dSJean-Christophe Dubois     if (err) {
84558df83dSJean-Christophe Dubois         error_propagate(errp, err);
85558df83dSJean-Christophe Dubois         return;
86558df83dSJean-Christophe Dubois     }
87558df83dSJean-Christophe Dubois     sysbus_mmio_map(SYS_BUS_DEVICE(&s->avic), 0, FSL_IMX31_AVIC_ADDR);
88558df83dSJean-Christophe Dubois     sysbus_connect_irq(SYS_BUS_DEVICE(&s->avic), 0,
89558df83dSJean-Christophe Dubois                        qdev_get_gpio_in(DEVICE(&s->cpu), ARM_CPU_IRQ));
90558df83dSJean-Christophe Dubois     sysbus_connect_irq(SYS_BUS_DEVICE(&s->avic), 1,
91558df83dSJean-Christophe Dubois                        qdev_get_gpio_in(DEVICE(&s->cpu), ARM_CPU_FIQ));
92558df83dSJean-Christophe Dubois 
93558df83dSJean-Christophe Dubois     object_property_set_bool(OBJECT(&s->ccm), true, "realized", &err);
94558df83dSJean-Christophe Dubois     if (err) {
95558df83dSJean-Christophe Dubois         error_propagate(errp, err);
96558df83dSJean-Christophe Dubois         return;
97558df83dSJean-Christophe Dubois     }
98558df83dSJean-Christophe Dubois     sysbus_mmio_map(SYS_BUS_DEVICE(&s->ccm), 0, FSL_IMX31_CCM_ADDR);
99558df83dSJean-Christophe Dubois 
100558df83dSJean-Christophe Dubois     /* Initialize all UARTS */
101558df83dSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_UARTS; i++) {
102558df83dSJean-Christophe Dubois         static const struct {
103558df83dSJean-Christophe Dubois             hwaddr addr;
104558df83dSJean-Christophe Dubois             unsigned int irq;
105558df83dSJean-Christophe Dubois         } serial_table[FSL_IMX31_NUM_UARTS] = {
106558df83dSJean-Christophe Dubois             { FSL_IMX31_UART1_ADDR, FSL_IMX31_UART1_IRQ },
107558df83dSJean-Christophe Dubois             { FSL_IMX31_UART2_ADDR, FSL_IMX31_UART2_IRQ },
108558df83dSJean-Christophe Dubois         };
109558df83dSJean-Christophe Dubois 
1109bca0edbSPeter Maydell         qdev_prop_set_chr(DEVICE(&s->uart[i]), "chardev", serial_hd(i));
111558df83dSJean-Christophe Dubois 
112558df83dSJean-Christophe Dubois         object_property_set_bool(OBJECT(&s->uart[i]), true, "realized", &err);
113558df83dSJean-Christophe Dubois         if (err) {
114558df83dSJean-Christophe Dubois             error_propagate(errp, err);
115558df83dSJean-Christophe Dubois             return;
116558df83dSJean-Christophe Dubois         }
117558df83dSJean-Christophe Dubois 
118558df83dSJean-Christophe Dubois         sysbus_mmio_map(SYS_BUS_DEVICE(&s->uart[i]), 0, serial_table[i].addr);
119558df83dSJean-Christophe Dubois         sysbus_connect_irq(SYS_BUS_DEVICE(&s->uart[i]), 0,
120558df83dSJean-Christophe Dubois                            qdev_get_gpio_in(DEVICE(&s->avic),
121558df83dSJean-Christophe Dubois                                             serial_table[i].irq));
122558df83dSJean-Christophe Dubois     }
123558df83dSJean-Christophe Dubois 
124cb54d868SJean-Christophe Dubois     s->gpt.ccm = IMX_CCM(&s->ccm);
125558df83dSJean-Christophe Dubois 
126558df83dSJean-Christophe Dubois     object_property_set_bool(OBJECT(&s->gpt), true, "realized", &err);
127558df83dSJean-Christophe Dubois     if (err) {
128558df83dSJean-Christophe Dubois         error_propagate(errp, err);
129558df83dSJean-Christophe Dubois         return;
130558df83dSJean-Christophe Dubois     }
131558df83dSJean-Christophe Dubois 
132558df83dSJean-Christophe Dubois     sysbus_mmio_map(SYS_BUS_DEVICE(&s->gpt), 0, FSL_IMX31_GPT_ADDR);
133558df83dSJean-Christophe Dubois     sysbus_connect_irq(SYS_BUS_DEVICE(&s->gpt), 0,
134558df83dSJean-Christophe Dubois                        qdev_get_gpio_in(DEVICE(&s->avic), FSL_IMX31_GPT_IRQ));
135558df83dSJean-Christophe Dubois 
136558df83dSJean-Christophe Dubois     /* Initialize all EPIT timers */
137558df83dSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_EPITS; i++) {
138558df83dSJean-Christophe Dubois         static const struct {
139558df83dSJean-Christophe Dubois             hwaddr addr;
140558df83dSJean-Christophe Dubois             unsigned int irq;
141558df83dSJean-Christophe Dubois         } epit_table[FSL_IMX31_NUM_EPITS] = {
142558df83dSJean-Christophe Dubois             { FSL_IMX31_EPIT1_ADDR, FSL_IMX31_EPIT1_IRQ },
143558df83dSJean-Christophe Dubois             { FSL_IMX31_EPIT2_ADDR, FSL_IMX31_EPIT2_IRQ },
144558df83dSJean-Christophe Dubois         };
145558df83dSJean-Christophe Dubois 
146cb54d868SJean-Christophe Dubois         s->epit[i].ccm = IMX_CCM(&s->ccm);
147558df83dSJean-Christophe Dubois 
148558df83dSJean-Christophe Dubois         object_property_set_bool(OBJECT(&s->epit[i]), true, "realized", &err);
149558df83dSJean-Christophe Dubois         if (err) {
150558df83dSJean-Christophe Dubois             error_propagate(errp, err);
151558df83dSJean-Christophe Dubois             return;
152558df83dSJean-Christophe Dubois         }
153558df83dSJean-Christophe Dubois 
154558df83dSJean-Christophe Dubois         sysbus_mmio_map(SYS_BUS_DEVICE(&s->epit[i]), 0, epit_table[i].addr);
155558df83dSJean-Christophe Dubois         sysbus_connect_irq(SYS_BUS_DEVICE(&s->epit[i]), 0,
156558df83dSJean-Christophe Dubois                            qdev_get_gpio_in(DEVICE(&s->avic),
157558df83dSJean-Christophe Dubois                                             epit_table[i].irq));
158558df83dSJean-Christophe Dubois     }
159558df83dSJean-Christophe Dubois 
160d4e26d10SJean-Christophe Dubois     /* Initialize all I2C */
161d4e26d10SJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_I2CS; i++) {
162d4e26d10SJean-Christophe Dubois         static const struct {
163d4e26d10SJean-Christophe Dubois             hwaddr addr;
164d4e26d10SJean-Christophe Dubois             unsigned int irq;
165d4e26d10SJean-Christophe Dubois         } i2c_table[FSL_IMX31_NUM_I2CS] = {
166d4e26d10SJean-Christophe Dubois             { FSL_IMX31_I2C1_ADDR, FSL_IMX31_I2C1_IRQ },
167d4e26d10SJean-Christophe Dubois             { FSL_IMX31_I2C2_ADDR, FSL_IMX31_I2C2_IRQ },
168d4e26d10SJean-Christophe Dubois             { FSL_IMX31_I2C3_ADDR, FSL_IMX31_I2C3_IRQ }
169d4e26d10SJean-Christophe Dubois         };
170d4e26d10SJean-Christophe Dubois 
171d4e26d10SJean-Christophe Dubois         /* Initialize the I2C */
172d4e26d10SJean-Christophe Dubois         object_property_set_bool(OBJECT(&s->i2c[i]), true, "realized", &err);
173d4e26d10SJean-Christophe Dubois         if (err) {
174d4e26d10SJean-Christophe Dubois             error_propagate(errp, err);
175d4e26d10SJean-Christophe Dubois             return;
176d4e26d10SJean-Christophe Dubois         }
177d4e26d10SJean-Christophe Dubois         /* Map I2C memory */
178d4e26d10SJean-Christophe Dubois         sysbus_mmio_map(SYS_BUS_DEVICE(&s->i2c[i]), 0, i2c_table[i].addr);
179d4e26d10SJean-Christophe Dubois         /* Connect I2C IRQ to PIC */
180d4e26d10SJean-Christophe Dubois         sysbus_connect_irq(SYS_BUS_DEVICE(&s->i2c[i]), 0,
181d4e26d10SJean-Christophe Dubois                            qdev_get_gpio_in(DEVICE(&s->avic),
182d4e26d10SJean-Christophe Dubois                                             i2c_table[i].irq));
183d4e26d10SJean-Christophe Dubois     }
184d4e26d10SJean-Christophe Dubois 
185dde0c4caSJean-Christophe Dubois     /* Initialize all GPIOs */
186dde0c4caSJean-Christophe Dubois     for (i = 0; i < FSL_IMX31_NUM_GPIOS; i++) {
187dde0c4caSJean-Christophe Dubois         static const struct {
188dde0c4caSJean-Christophe Dubois             hwaddr addr;
189dde0c4caSJean-Christophe Dubois             unsigned int irq;
190dde0c4caSJean-Christophe Dubois         } gpio_table[FSL_IMX31_NUM_GPIOS] = {
191dde0c4caSJean-Christophe Dubois             { FSL_IMX31_GPIO1_ADDR, FSL_IMX31_GPIO1_IRQ },
192dde0c4caSJean-Christophe Dubois             { FSL_IMX31_GPIO2_ADDR, FSL_IMX31_GPIO2_IRQ },
193dde0c4caSJean-Christophe Dubois             { FSL_IMX31_GPIO3_ADDR, FSL_IMX31_GPIO3_IRQ }
194dde0c4caSJean-Christophe Dubois         };
195dde0c4caSJean-Christophe Dubois 
196dde0c4caSJean-Christophe Dubois         object_property_set_bool(OBJECT(&s->gpio[i]), false, "has-edge-sel",
197dde0c4caSJean-Christophe Dubois                                  &error_abort);
198dde0c4caSJean-Christophe Dubois         object_property_set_bool(OBJECT(&s->gpio[i]), true, "realized", &err);
199dde0c4caSJean-Christophe Dubois         if (err) {
200dde0c4caSJean-Christophe Dubois             error_propagate(errp, err);
201dde0c4caSJean-Christophe Dubois             return;
202dde0c4caSJean-Christophe Dubois         }
203dde0c4caSJean-Christophe Dubois         sysbus_mmio_map(SYS_BUS_DEVICE(&s->gpio[i]), 0, gpio_table[i].addr);
204dde0c4caSJean-Christophe Dubois         /* Connect GPIO IRQ to PIC */
205dde0c4caSJean-Christophe Dubois         sysbus_connect_irq(SYS_BUS_DEVICE(&s->gpio[i]), 0,
206dde0c4caSJean-Christophe Dubois                            qdev_get_gpio_in(DEVICE(&s->avic),
207dde0c4caSJean-Christophe Dubois                                             gpio_table[i].irq));
208dde0c4caSJean-Christophe Dubois     }
209dde0c4caSJean-Christophe Dubois 
210*b9e521ddSGuenter Roeck     /* Watchdog */
211*b9e521ddSGuenter Roeck     object_property_set_bool(OBJECT(&s->wdt), true, "realized", &error_abort);
212*b9e521ddSGuenter Roeck     sysbus_mmio_map(SYS_BUS_DEVICE(&s->wdt), 0, FSL_IMX31_WDT_ADDR);
213*b9e521ddSGuenter Roeck 
214558df83dSJean-Christophe Dubois     /* On a real system, the first 16k is a `secure boot rom' */
21532b9523aSPhilippe Mathieu-Daudé     memory_region_init_rom(&s->secure_rom, OBJECT(dev), "imx31.secure_rom",
216558df83dSJean-Christophe Dubois                            FSL_IMX31_SECURE_ROM_SIZE, &err);
217558df83dSJean-Christophe Dubois     if (err) {
218558df83dSJean-Christophe Dubois         error_propagate(errp, err);
219558df83dSJean-Christophe Dubois         return;
220558df83dSJean-Christophe Dubois     }
221558df83dSJean-Christophe Dubois     memory_region_add_subregion(get_system_memory(), FSL_IMX31_SECURE_ROM_ADDR,
222558df83dSJean-Christophe Dubois                                 &s->secure_rom);
223558df83dSJean-Christophe Dubois 
224558df83dSJean-Christophe Dubois     /* There is also a 16k ROM */
22532b9523aSPhilippe Mathieu-Daudé     memory_region_init_rom(&s->rom, OBJECT(dev), "imx31.rom",
226558df83dSJean-Christophe Dubois                            FSL_IMX31_ROM_SIZE, &err);
227558df83dSJean-Christophe Dubois     if (err) {
228558df83dSJean-Christophe Dubois         error_propagate(errp, err);
229558df83dSJean-Christophe Dubois         return;
230558df83dSJean-Christophe Dubois     }
231558df83dSJean-Christophe Dubois     memory_region_add_subregion(get_system_memory(), FSL_IMX31_ROM_ADDR,
232558df83dSJean-Christophe Dubois                                 &s->rom);
233558df83dSJean-Christophe Dubois 
234558df83dSJean-Christophe Dubois     /* initialize internal RAM (16 KB) */
23598a99ce0SPeter Maydell     memory_region_init_ram(&s->iram, NULL, "imx31.iram", FSL_IMX31_IRAM_SIZE,
236558df83dSJean-Christophe Dubois                            &err);
237558df83dSJean-Christophe Dubois     if (err) {
238558df83dSJean-Christophe Dubois         error_propagate(errp, err);
239558df83dSJean-Christophe Dubois         return;
240558df83dSJean-Christophe Dubois     }
241558df83dSJean-Christophe Dubois     memory_region_add_subregion(get_system_memory(), FSL_IMX31_IRAM_ADDR,
242558df83dSJean-Christophe Dubois                                 &s->iram);
243558df83dSJean-Christophe Dubois 
244558df83dSJean-Christophe Dubois     /* internal RAM (16 KB) is aliased over 256 MB - 16 KB */
24532b9523aSPhilippe Mathieu-Daudé     memory_region_init_alias(&s->iram_alias, OBJECT(dev), "imx31.iram_alias",
246558df83dSJean-Christophe Dubois                              &s->iram, 0, FSL_IMX31_IRAM_ALIAS_SIZE);
247558df83dSJean-Christophe Dubois     memory_region_add_subregion(get_system_memory(), FSL_IMX31_IRAM_ALIAS_ADDR,
248558df83dSJean-Christophe Dubois                                 &s->iram_alias);
249558df83dSJean-Christophe Dubois }
250558df83dSJean-Christophe Dubois 
251558df83dSJean-Christophe Dubois static void fsl_imx31_class_init(ObjectClass *oc, void *data)
252558df83dSJean-Christophe Dubois {
253558df83dSJean-Christophe Dubois     DeviceClass *dc = DEVICE_CLASS(oc);
254558df83dSJean-Christophe Dubois 
255558df83dSJean-Christophe Dubois     dc->realize = fsl_imx31_realize;
256eccfa35eSJean-Christophe Dubois     dc->desc = "i.MX31 SOC";
257e4e05b7bSThomas Huth     /*
258e4e05b7bSThomas Huth      * Reason: uses serial_hds in realize and the kzm board does not
259e4e05b7bSThomas Huth      * support multiple CPUs
260e4e05b7bSThomas Huth      */
261e4e05b7bSThomas Huth     dc->user_creatable = false;
262558df83dSJean-Christophe Dubois }
263558df83dSJean-Christophe Dubois 
264558df83dSJean-Christophe Dubois static const TypeInfo fsl_imx31_type_info = {
265558df83dSJean-Christophe Dubois     .name = TYPE_FSL_IMX31,
266558df83dSJean-Christophe Dubois     .parent = TYPE_DEVICE,
267558df83dSJean-Christophe Dubois     .instance_size = sizeof(FslIMX31State),
268558df83dSJean-Christophe Dubois     .instance_init = fsl_imx31_init,
269558df83dSJean-Christophe Dubois     .class_init = fsl_imx31_class_init,
270558df83dSJean-Christophe Dubois };
271558df83dSJean-Christophe Dubois 
272558df83dSJean-Christophe Dubois static void fsl_imx31_register_types(void)
273558df83dSJean-Christophe Dubois {
274558df83dSJean-Christophe Dubois     type_register_static(&fsl_imx31_type_info);
275558df83dSJean-Christophe Dubois }
276558df83dSJean-Christophe Dubois 
277558df83dSJean-Christophe Dubois type_init(fsl_imx31_register_types)
278