xref: /qemu/hw/arm/exynos4210.c (revision 73b49878)
1 /*
2  *  Samsung exynos4210 SoC emulation
3  *
4  *  Copyright (c) 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *    Maksim Kozlov <m.kozlov@samsung.com>
6  *    Evgeny Voevodin <e.voevodin@samsung.com>
7  *    Igor Mitsyanko  <i.mitsyanko@samsung.com>
8  *
9  *  This program is free software; you can redistribute it and/or modify it
10  *  under the terms of the GNU General Public License as published by the
11  *  Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful, but WITHOUT
15  *  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  *  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17  *  for more details.
18  *
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/>.
21  *
22  */
23 
24 #include "qemu/osdep.h"
25 #include "qapi/error.h"
26 #include "exec/tswap.h"
27 #include "cpu.h"
28 #include "hw/cpu/a9mpcore.h"
29 #include "hw/irq.h"
30 #include "sysemu/blockdev.h"
31 #include "sysemu/sysemu.h"
32 #include "hw/sysbus.h"
33 #include "hw/arm/boot.h"
34 #include "hw/loader.h"
35 #include "hw/qdev-properties.h"
36 #include "hw/arm/exynos4210.h"
37 #include "hw/sd/sdhci.h"
38 #include "hw/usb/hcd-ehci.h"
39 #include "target/arm/cpu-qom.h"
40 
41 #define EXYNOS4210_CHIPID_ADDR         0x10000000
42 
43 /* PWM */
44 #define EXYNOS4210_PWM_BASE_ADDR       0x139D0000
45 
46 /* RTC */
47 #define EXYNOS4210_RTC_BASE_ADDR       0x10070000
48 
49 /* MCT */
50 #define EXYNOS4210_MCT_BASE_ADDR       0x10050000
51 
52 /* I2C */
53 #define EXYNOS4210_I2C_SHIFT           0x00010000
54 #define EXYNOS4210_I2C_BASE_ADDR       0x13860000
55 /* Interrupt Group of External Interrupt Combiner for I2C */
56 #define EXYNOS4210_I2C_INTG            27
57 #define EXYNOS4210_HDMI_INTG           16
58 
59 /* UART's definitions */
60 #define EXYNOS4210_UART0_BASE_ADDR     0x13800000
61 #define EXYNOS4210_UART1_BASE_ADDR     0x13810000
62 #define EXYNOS4210_UART2_BASE_ADDR     0x13820000
63 #define EXYNOS4210_UART3_BASE_ADDR     0x13830000
64 #define EXYNOS4210_UART0_FIFO_SIZE     256
65 #define EXYNOS4210_UART1_FIFO_SIZE     64
66 #define EXYNOS4210_UART2_FIFO_SIZE     16
67 #define EXYNOS4210_UART3_FIFO_SIZE     16
68 /* Interrupt Group of External Interrupt Combiner for UART */
69 #define EXYNOS4210_UART_INT_GRP        26
70 
71 /* External GIC */
72 #define EXYNOS4210_EXT_GIC_CPU_BASE_ADDR    0x10480000
73 #define EXYNOS4210_EXT_GIC_DIST_BASE_ADDR   0x10490000
74 
75 /* Combiner */
76 #define EXYNOS4210_EXT_COMBINER_BASE_ADDR   0x10440000
77 #define EXYNOS4210_INT_COMBINER_BASE_ADDR   0x10448000
78 
79 /* SD/MMC host controllers */
80 #define EXYNOS4210_SDHCI_CAPABILITIES       0x05E80080
81 #define EXYNOS4210_SDHCI_BASE_ADDR          0x12510000
82 #define EXYNOS4210_SDHCI_ADDR(n)            (EXYNOS4210_SDHCI_BASE_ADDR + \
83                                                 0x00010000 * (n))
84 #define EXYNOS4210_SDHCI_NUMBER             4
85 
86 /* PMU SFR base address */
87 #define EXYNOS4210_PMU_BASE_ADDR            0x10020000
88 
89 /* Clock controller SFR base address */
90 #define EXYNOS4210_CLK_BASE_ADDR            0x10030000
91 
92 /* PRNG/HASH SFR base address */
93 #define EXYNOS4210_RNG_BASE_ADDR            0x10830400
94 
95 /* Display controllers (FIMD) */
96 #define EXYNOS4210_FIMD0_BASE_ADDR          0x11C00000
97 
98 /* EHCI */
99 #define EXYNOS4210_EHCI_BASE_ADDR           0x12580000
100 
101 /* DMA */
102 #define EXYNOS4210_PL330_BASE0_ADDR         0x12680000
103 #define EXYNOS4210_PL330_BASE1_ADDR         0x12690000
104 #define EXYNOS4210_PL330_BASE2_ADDR         0x12850000
105 
106 enum ExtGicId {
107     EXT_GIC_ID_MDMA_LCD0 = 66,
108     EXT_GIC_ID_PDMA0,
109     EXT_GIC_ID_PDMA1,
110     EXT_GIC_ID_TIMER0,
111     EXT_GIC_ID_TIMER1,
112     EXT_GIC_ID_TIMER2,
113     EXT_GIC_ID_TIMER3,
114     EXT_GIC_ID_TIMER4,
115     EXT_GIC_ID_MCT_L0,
116     EXT_GIC_ID_WDT,
117     EXT_GIC_ID_RTC_ALARM,
118     EXT_GIC_ID_RTC_TIC,
119     EXT_GIC_ID_GPIO_XB,
120     EXT_GIC_ID_GPIO_XA,
121     EXT_GIC_ID_MCT_L1,
122     EXT_GIC_ID_IEM_APC,
123     EXT_GIC_ID_IEM_IEC,
124     EXT_GIC_ID_NFC,
125     EXT_GIC_ID_UART0,
126     EXT_GIC_ID_UART1,
127     EXT_GIC_ID_UART2,
128     EXT_GIC_ID_UART3,
129     EXT_GIC_ID_UART4,
130     EXT_GIC_ID_MCT_G0,
131     EXT_GIC_ID_I2C0,
132     EXT_GIC_ID_I2C1,
133     EXT_GIC_ID_I2C2,
134     EXT_GIC_ID_I2C3,
135     EXT_GIC_ID_I2C4,
136     EXT_GIC_ID_I2C5,
137     EXT_GIC_ID_I2C6,
138     EXT_GIC_ID_I2C7,
139     EXT_GIC_ID_SPI0,
140     EXT_GIC_ID_SPI1,
141     EXT_GIC_ID_SPI2,
142     EXT_GIC_ID_MCT_G1,
143     EXT_GIC_ID_USB_HOST,
144     EXT_GIC_ID_USB_DEVICE,
145     EXT_GIC_ID_MODEMIF,
146     EXT_GIC_ID_HSMMC0,
147     EXT_GIC_ID_HSMMC1,
148     EXT_GIC_ID_HSMMC2,
149     EXT_GIC_ID_HSMMC3,
150     EXT_GIC_ID_SDMMC,
151     EXT_GIC_ID_MIPI_CSI_4LANE,
152     EXT_GIC_ID_MIPI_DSI_4LANE,
153     EXT_GIC_ID_MIPI_CSI_2LANE,
154     EXT_GIC_ID_MIPI_DSI_2LANE,
155     EXT_GIC_ID_ONENAND_AUDI,
156     EXT_GIC_ID_ROTATOR,
157     EXT_GIC_ID_FIMC0,
158     EXT_GIC_ID_FIMC1,
159     EXT_GIC_ID_FIMC2,
160     EXT_GIC_ID_FIMC3,
161     EXT_GIC_ID_JPEG,
162     EXT_GIC_ID_2D,
163     EXT_GIC_ID_PCIe,
164     EXT_GIC_ID_MIXER,
165     EXT_GIC_ID_HDMI,
166     EXT_GIC_ID_HDMI_I2C,
167     EXT_GIC_ID_MFC,
168     EXT_GIC_ID_TVENC,
169 };
170 
171 enum ExtInt {
172     EXT_GIC_ID_EXTINT0 = 48,
173     EXT_GIC_ID_EXTINT1,
174     EXT_GIC_ID_EXTINT2,
175     EXT_GIC_ID_EXTINT3,
176     EXT_GIC_ID_EXTINT4,
177     EXT_GIC_ID_EXTINT5,
178     EXT_GIC_ID_EXTINT6,
179     EXT_GIC_ID_EXTINT7,
180     EXT_GIC_ID_EXTINT8,
181     EXT_GIC_ID_EXTINT9,
182     EXT_GIC_ID_EXTINT10,
183     EXT_GIC_ID_EXTINT11,
184     EXT_GIC_ID_EXTINT12,
185     EXT_GIC_ID_EXTINT13,
186     EXT_GIC_ID_EXTINT14,
187     EXT_GIC_ID_EXTINT15
188 };
189 
190 /*
191  * External GIC sources which are not from External Interrupt Combiner or
192  * External Interrupts are starting from EXYNOS4210_MAX_EXT_COMBINER_OUT_IRQ,
193  * which is INTG16 in Internal Interrupt Combiner.
194  */
195 
196 static const uint32_t
197 combiner_grp_to_gic_id[64 - EXYNOS4210_MAX_EXT_COMBINER_OUT_IRQ][8] = {
198     /* int combiner groups 16-19 */
199     { }, { }, { }, { },
200     /* int combiner group 20 */
201     { 0, EXT_GIC_ID_MDMA_LCD0 },
202     /* int combiner group 21 */
203     { EXT_GIC_ID_PDMA0, EXT_GIC_ID_PDMA1 },
204     /* int combiner group 22 */
205     { EXT_GIC_ID_TIMER0, EXT_GIC_ID_TIMER1, EXT_GIC_ID_TIMER2,
206             EXT_GIC_ID_TIMER3, EXT_GIC_ID_TIMER4 },
207     /* int combiner group 23 */
208     { EXT_GIC_ID_RTC_ALARM, EXT_GIC_ID_RTC_TIC },
209     /* int combiner group 24 */
210     { EXT_GIC_ID_GPIO_XB, EXT_GIC_ID_GPIO_XA },
211     /* int combiner group 25 */
212     { EXT_GIC_ID_IEM_APC, EXT_GIC_ID_IEM_IEC },
213     /* int combiner group 26 */
214     { EXT_GIC_ID_UART0, EXT_GIC_ID_UART1, EXT_GIC_ID_UART2, EXT_GIC_ID_UART3,
215             EXT_GIC_ID_UART4 },
216     /* int combiner group 27 */
217     { EXT_GIC_ID_I2C0, EXT_GIC_ID_I2C1, EXT_GIC_ID_I2C2, EXT_GIC_ID_I2C3,
218             EXT_GIC_ID_I2C4, EXT_GIC_ID_I2C5, EXT_GIC_ID_I2C6,
219             EXT_GIC_ID_I2C7 },
220     /* int combiner group 28 */
221     { EXT_GIC_ID_SPI0, EXT_GIC_ID_SPI1, EXT_GIC_ID_SPI2 , EXT_GIC_ID_USB_HOST},
222     /* int combiner group 29 */
223     { EXT_GIC_ID_HSMMC0, EXT_GIC_ID_HSMMC1, EXT_GIC_ID_HSMMC2,
224      EXT_GIC_ID_HSMMC3, EXT_GIC_ID_SDMMC },
225     /* int combiner group 30 */
226     { EXT_GIC_ID_MIPI_CSI_4LANE, EXT_GIC_ID_MIPI_CSI_2LANE },
227     /* int combiner group 31 */
228     { EXT_GIC_ID_MIPI_DSI_4LANE, EXT_GIC_ID_MIPI_DSI_2LANE },
229     /* int combiner group 32 */
230     { EXT_GIC_ID_FIMC0, EXT_GIC_ID_FIMC1 },
231     /* int combiner group 33 */
232     { EXT_GIC_ID_FIMC2, EXT_GIC_ID_FIMC3 },
233     /* int combiner group 34 */
234     { EXT_GIC_ID_ONENAND_AUDI, EXT_GIC_ID_NFC },
235     /* int combiner group 35 */
236     { 0, 0, 0, EXT_GIC_ID_MCT_L1 },
237     /* int combiner group 36 */
238     { EXT_GIC_ID_MIXER },
239     /* int combiner group 37 */
240     { EXT_GIC_ID_EXTINT4, EXT_GIC_ID_EXTINT5, EXT_GIC_ID_EXTINT6,
241      EXT_GIC_ID_EXTINT7 },
242     /* groups 38-50 */
243     { }, { }, { }, { }, { }, { }, { }, { }, { }, { }, { }, { }, { },
244     /* int combiner group 51 */
245     { EXT_GIC_ID_MCT_L0 },
246     /* group 52 */
247     { },
248     /* int combiner group 53 */
249     { EXT_GIC_ID_WDT },
250     /* groups 54-63 */
251     { }, { }, { }, { }, { }, { }, { }, { }, { }, { }
252 };
253 
254 #define EXYNOS4210_COMBINER_GET_IRQ_NUM(grp, bit)  ((grp) * 8 + (bit))
255 #define EXYNOS4210_COMBINER_GET_GRP_NUM(irq)       ((irq) / 8)
256 #define EXYNOS4210_COMBINER_GET_BIT_NUM(irq) \
257     ((irq) - 8 * EXYNOS4210_COMBINER_GET_GRP_NUM(irq))
258 
259 /*
260  * Some interrupt lines go to multiple combiner inputs.
261  * This data structure defines those: each array element is
262  * a list of combiner inputs which are connected together;
263  * the one with the smallest interrupt ID value must be first.
264  * As with combiner_grp_to_gic_id[], we rely on (0, 0) not being
265  * wired to anything so we can use 0 as a terminator.
266  */
267 #define IRQNO(G, B) EXYNOS4210_COMBINER_GET_IRQ_NUM(G, B)
268 #define IRQNONE 0
269 
270 #define COMBINERMAP_SIZE 16
271 
272 static const int combinermap[COMBINERMAP_SIZE][6] = {
273     /* MDNIE_LCD1 */
274     { IRQNO(0, 4), IRQNO(1, 0), IRQNONE },
275     { IRQNO(0, 5), IRQNO(1, 1), IRQNONE },
276     { IRQNO(0, 6), IRQNO(1, 2), IRQNONE },
277     { IRQNO(0, 7), IRQNO(1, 3), IRQNONE },
278     /* TMU */
279     { IRQNO(2, 4), IRQNO(3, 4), IRQNONE },
280     { IRQNO(2, 5), IRQNO(3, 5), IRQNONE },
281     { IRQNO(2, 6), IRQNO(3, 6), IRQNONE },
282     { IRQNO(2, 7), IRQNO(3, 7), IRQNONE },
283     /* LCD1 */
284     { IRQNO(11, 4), IRQNO(12, 0), IRQNONE },
285     { IRQNO(11, 5), IRQNO(12, 1), IRQNONE },
286     { IRQNO(11, 6), IRQNO(12, 2), IRQNONE },
287     { IRQNO(11, 7), IRQNO(12, 3), IRQNONE },
288     /* Multi-core timer */
289     { IRQNO(1, 4), IRQNO(12, 4), IRQNO(35, 4), IRQNO(51, 4), IRQNO(53, 4), IRQNONE },
290     { IRQNO(1, 5), IRQNO(12, 5), IRQNO(35, 5), IRQNO(51, 5), IRQNO(53, 5), IRQNONE },
291     { IRQNO(1, 6), IRQNO(12, 6), IRQNO(35, 6), IRQNO(51, 6), IRQNO(53, 6), IRQNONE },
292     { IRQNO(1, 7), IRQNO(12, 7), IRQNO(35, 7), IRQNO(51, 7), IRQNO(53, 7), IRQNONE },
293 };
294 
295 #undef IRQNO
296 
297 static const int *combinermap_entry(int irq)
298 {
299     /*
300      * If the interrupt number passed in is the first entry in some
301      * line of the combinermap, return a pointer to that line;
302      * otherwise return NULL.
303      */
304     int i;
305     for (i = 0; i < COMBINERMAP_SIZE; i++) {
306         if (combinermap[i][0] == irq) {
307             return combinermap[i];
308         }
309     }
310     return NULL;
311 }
312 
313 static int mapline_size(const int *mapline)
314 {
315     /* Return number of entries in this mapline in total */
316     int i = 0;
317 
318     if (!mapline) {
319         /* Not in the map? IRQ goes to exactly one combiner input */
320         return 1;
321     }
322     while (*mapline != IRQNONE) {
323         mapline++;
324         i++;
325     }
326     return i;
327 }
328 
329 /*
330  * Initialize board IRQs.
331  * These IRQs contain split Int/External Combiner and External Gic IRQs.
332  */
333 static void exynos4210_init_board_irqs(Exynos4210State *s)
334 {
335     uint32_t grp, bit, irq_id, n;
336     DeviceState *extgicdev = DEVICE(&s->ext_gic);
337     DeviceState *intcdev = DEVICE(&s->int_combiner);
338     DeviceState *extcdev = DEVICE(&s->ext_combiner);
339     int splitcount = 0;
340     DeviceState *splitter;
341     const int *mapline;
342     int numlines, splitin, in;
343 
344     for (n = 0; n < EXYNOS4210_MAX_EXT_COMBINER_IN_IRQ; n++) {
345         irq_id = 0;
346         if (n == EXYNOS4210_COMBINER_GET_IRQ_NUM(1, 4)) {
347             /* MCT_G0 is passed to External GIC */
348             irq_id = EXT_GIC_ID_MCT_G0;
349         }
350         if (n == EXYNOS4210_COMBINER_GET_IRQ_NUM(1, 5)) {
351             /* MCT_G1 is passed to External and GIC */
352             irq_id = EXT_GIC_ID_MCT_G1;
353         }
354 
355         if (s->irq_table[n]) {
356             /*
357              * This must be some non-first entry in a combinermap line,
358              * and we've already filled it in.
359              */
360             continue;
361         }
362         mapline = combinermap_entry(n);
363         /*
364          * We need to connect the IRQ to multiple inputs on both combiners
365          * and possibly also to the external GIC.
366          */
367         numlines = 2 * mapline_size(mapline);
368         if (irq_id) {
369             numlines++;
370         }
371         assert(splitcount < EXYNOS4210_NUM_SPLITTERS);
372         splitter = DEVICE(&s->splitter[splitcount]);
373         qdev_prop_set_uint16(splitter, "num-lines", numlines);
374         qdev_realize(splitter, NULL, &error_abort);
375         splitcount++;
376 
377         in = n;
378         splitin = 0;
379         for (;;) {
380             s->irq_table[in] = qdev_get_gpio_in(splitter, 0);
381             qdev_connect_gpio_out(splitter, splitin,
382                                   qdev_get_gpio_in(intcdev, in));
383             qdev_connect_gpio_out(splitter, splitin + 1,
384                                   qdev_get_gpio_in(extcdev, in));
385             splitin += 2;
386             if (!mapline) {
387                 break;
388             }
389             mapline++;
390             in = *mapline;
391             if (in == IRQNONE) {
392                 break;
393             }
394         }
395         if (irq_id) {
396             qdev_connect_gpio_out(splitter, splitin,
397                                   qdev_get_gpio_in(extgicdev, irq_id - 32));
398         }
399     }
400     for (; n < EXYNOS4210_MAX_INT_COMBINER_IN_IRQ; n++) {
401         /* these IDs are passed to Internal Combiner and External GIC */
402         grp = EXYNOS4210_COMBINER_GET_GRP_NUM(n);
403         bit = EXYNOS4210_COMBINER_GET_BIT_NUM(n);
404         irq_id = combiner_grp_to_gic_id[grp -
405                      EXYNOS4210_MAX_EXT_COMBINER_OUT_IRQ][bit];
406 
407         if (s->irq_table[n]) {
408             /*
409              * This must be some non-first entry in a combinermap line,
410              * and we've already filled it in.
411              */
412             continue;
413         }
414 
415         if (irq_id) {
416             assert(splitcount < EXYNOS4210_NUM_SPLITTERS);
417             splitter = DEVICE(&s->splitter[splitcount]);
418             qdev_prop_set_uint16(splitter, "num-lines", 2);
419             qdev_realize(splitter, NULL, &error_abort);
420             splitcount++;
421             s->irq_table[n] = qdev_get_gpio_in(splitter, 0);
422             qdev_connect_gpio_out(splitter, 0, qdev_get_gpio_in(intcdev, n));
423             qdev_connect_gpio_out(splitter, 1,
424                                   qdev_get_gpio_in(extgicdev, irq_id - 32));
425         } else {
426             s->irq_table[n] = qdev_get_gpio_in(intcdev, n);
427         }
428     }
429     /*
430      * We check this here to avoid a more obscure assert later when
431      * qdev_assert_realized_properly() checks that we realized every
432      * child object we initialized.
433      */
434     assert(splitcount == EXYNOS4210_NUM_SPLITTERS);
435 }
436 
437 /*
438  * Get IRQ number from exynos4210 IRQ subsystem stub.
439  * To identify IRQ source use internal combiner group and bit number
440  *  grp - group number
441  *  bit - bit number inside group
442  */
443 uint32_t exynos4210_get_irq(uint32_t grp, uint32_t bit)
444 {
445     return EXYNOS4210_COMBINER_GET_IRQ_NUM(grp, bit);
446 }
447 
448 static uint8_t chipid_and_omr[] = { 0x11, 0x02, 0x21, 0x43,
449                                     0x09, 0x00, 0x00, 0x00 };
450 
451 static uint64_t exynos4210_chipid_and_omr_read(void *opaque, hwaddr offset,
452                                                unsigned size)
453 {
454     assert(offset < sizeof(chipid_and_omr));
455     return chipid_and_omr[offset];
456 }
457 
458 static void exynos4210_chipid_and_omr_write(void *opaque, hwaddr offset,
459                                             uint64_t value, unsigned size)
460 {
461     return;
462 }
463 
464 static const MemoryRegionOps exynos4210_chipid_and_omr_ops = {
465     .read = exynos4210_chipid_and_omr_read,
466     .write = exynos4210_chipid_and_omr_write,
467     .endianness = DEVICE_NATIVE_ENDIAN,
468     .impl = {
469         .max_access_size = 1,
470     }
471 };
472 
473 void exynos4210_write_secondary(ARMCPU *cpu,
474         const struct arm_boot_info *info)
475 {
476     int n;
477     uint32_t smpboot[] = {
478         0xe59f3034, /* ldr r3, External gic_cpu_if */
479         0xe59f2034, /* ldr r2, Internal gic_cpu_if */
480         0xe59f0034, /* ldr r0, startaddr */
481         0xe3a01001, /* mov r1, #1 */
482         0xe5821000, /* str r1, [r2] */
483         0xe5831000, /* str r1, [r3] */
484         0xe3a010ff, /* mov r1, #0xff */
485         0xe5821004, /* str r1, [r2, #4] */
486         0xe5831004, /* str r1, [r3, #4] */
487         0xf57ff04f, /* dsb */
488         0xe320f003, /* wfi */
489         0xe5901000, /* ldr     r1, [r0] */
490         0xe1110001, /* tst     r1, r1 */
491         0x0afffffb, /* beq     <wfi> */
492         0xe12fff11, /* bx      r1 */
493         EXYNOS4210_EXT_GIC_CPU_BASE_ADDR,
494         0,          /* gic_cpu_if: base address of Internal GIC CPU interface */
495         0           /* bootreg: Boot register address is held here */
496     };
497     smpboot[ARRAY_SIZE(smpboot) - 1] = info->smp_bootreg_addr;
498     smpboot[ARRAY_SIZE(smpboot) - 2] = info->gic_cpu_if_addr;
499     for (n = 0; n < ARRAY_SIZE(smpboot); n++) {
500         smpboot[n] = tswap32(smpboot[n]);
501     }
502     rom_add_blob_fixed("smpboot", smpboot, sizeof(smpboot),
503                        info->smp_loader_start);
504 }
505 
506 static uint64_t exynos4210_calc_affinity(int cpu)
507 {
508     /* Exynos4210 has 0x9 as cluster ID */
509     return (0x9 << ARM_AFF1_SHIFT) | cpu;
510 }
511 
512 static DeviceState *pl330_create(uint32_t base, OrIRQState *orgate,
513                                  qemu_irq irq, int nreq, int nevents, int width)
514 {
515     SysBusDevice *busdev;
516     DeviceState *dev;
517     int i;
518 
519     dev = qdev_new("pl330");
520     object_property_set_link(OBJECT(dev), "memory",
521                              OBJECT(get_system_memory()),
522                              &error_fatal);
523     qdev_prop_set_uint8(dev, "num_events", nevents);
524     qdev_prop_set_uint8(dev, "num_chnls",  8);
525     qdev_prop_set_uint8(dev, "num_periph_req",  nreq);
526 
527     qdev_prop_set_uint8(dev, "wr_cap", 4);
528     qdev_prop_set_uint8(dev, "wr_q_dep", 8);
529     qdev_prop_set_uint8(dev, "rd_cap", 4);
530     qdev_prop_set_uint8(dev, "rd_q_dep", 8);
531     qdev_prop_set_uint8(dev, "data_width", width);
532     qdev_prop_set_uint16(dev, "data_buffer_dep", width);
533     busdev = SYS_BUS_DEVICE(dev);
534     sysbus_realize_and_unref(busdev, &error_fatal);
535     sysbus_mmio_map(busdev, 0, base);
536 
537     object_property_set_int(OBJECT(orgate), "num-lines", nevents + 1,
538                             &error_abort);
539     qdev_realize(DEVICE(orgate), NULL, &error_abort);
540 
541     for (i = 0; i < nevents + 1; i++) {
542         sysbus_connect_irq(busdev, i, qdev_get_gpio_in(DEVICE(orgate), i));
543     }
544     qdev_connect_gpio_out(DEVICE(orgate), 0, irq);
545     return dev;
546 }
547 
548 static void exynos4210_realize(DeviceState *socdev, Error **errp)
549 {
550     Exynos4210State *s = EXYNOS4210_SOC(socdev);
551     MemoryRegion *system_mem = get_system_memory();
552     SysBusDevice *busdev;
553     DeviceState *dev, *uart[4], *pl330[3];
554     int i, n;
555 
556     for (n = 0; n < EXYNOS4210_NCPUS; n++) {
557         Object *cpuobj = object_new(ARM_CPU_TYPE_NAME("cortex-a9"));
558 
559         /* By default A9 CPUs have EL3 enabled.  This board does not currently
560          * support EL3 so the CPU EL3 property is disabled before realization.
561          */
562         if (object_property_find(cpuobj, "has_el3")) {
563             object_property_set_bool(cpuobj, "has_el3", false, &error_fatal);
564         }
565 
566         s->cpu[n] = ARM_CPU(cpuobj);
567         object_property_set_int(cpuobj, "mp-affinity",
568                                 exynos4210_calc_affinity(n), &error_abort);
569         object_property_set_int(cpuobj, "reset-cbar",
570                                 EXYNOS4210_SMP_PRIVATE_BASE_ADDR,
571                                 &error_abort);
572         qdev_realize(DEVICE(cpuobj), NULL, &error_fatal);
573     }
574 
575     /* IRQ Gate */
576     for (i = 0; i < EXYNOS4210_NCPUS; i++) {
577         DeviceState *orgate = DEVICE(&s->cpu_irq_orgate[i]);
578         object_property_set_int(OBJECT(orgate), "num-lines",
579                                 EXYNOS4210_IRQ_GATE_NINPUTS,
580                                 &error_abort);
581         qdev_realize(orgate, NULL, &error_abort);
582         qdev_connect_gpio_out(orgate, 0,
583                               qdev_get_gpio_in(DEVICE(s->cpu[i]), ARM_CPU_IRQ));
584     }
585 
586     /* Private memory region and Internal GIC */
587     qdev_prop_set_uint32(DEVICE(&s->a9mpcore), "num-cpu", EXYNOS4210_NCPUS);
588     busdev = SYS_BUS_DEVICE(&s->a9mpcore);
589     sysbus_realize(busdev, &error_fatal);
590     sysbus_mmio_map(busdev, 0, EXYNOS4210_SMP_PRIVATE_BASE_ADDR);
591     for (n = 0; n < EXYNOS4210_NCPUS; n++) {
592         sysbus_connect_irq(busdev, n,
593                            qdev_get_gpio_in(DEVICE(&s->cpu_irq_orgate[n]), 0));
594     }
595 
596     /* Cache controller */
597     sysbus_create_simple("l2x0", EXYNOS4210_L2X0_BASE_ADDR, NULL);
598 
599     /* External GIC */
600     qdev_prop_set_uint32(DEVICE(&s->ext_gic), "num-cpu", EXYNOS4210_NCPUS);
601     busdev = SYS_BUS_DEVICE(&s->ext_gic);
602     sysbus_realize(busdev, &error_fatal);
603     /* Map CPU interface */
604     sysbus_mmio_map(busdev, 0, EXYNOS4210_EXT_GIC_CPU_BASE_ADDR);
605     /* Map Distributer interface */
606     sysbus_mmio_map(busdev, 1, EXYNOS4210_EXT_GIC_DIST_BASE_ADDR);
607     for (n = 0; n < EXYNOS4210_NCPUS; n++) {
608         sysbus_connect_irq(busdev, n,
609                            qdev_get_gpio_in(DEVICE(&s->cpu_irq_orgate[n]), 1));
610     }
611 
612     /* Internal Interrupt Combiner */
613     busdev = SYS_BUS_DEVICE(&s->int_combiner);
614     sysbus_realize(busdev, &error_fatal);
615     for (n = 0; n < EXYNOS4210_MAX_INT_COMBINER_OUT_IRQ; n++) {
616         sysbus_connect_irq(busdev, n,
617                            qdev_get_gpio_in(DEVICE(&s->a9mpcore), n));
618     }
619     sysbus_mmio_map(busdev, 0, EXYNOS4210_INT_COMBINER_BASE_ADDR);
620 
621     /* External Interrupt Combiner */
622     qdev_prop_set_uint32(DEVICE(&s->ext_combiner), "external", 1);
623     busdev = SYS_BUS_DEVICE(&s->ext_combiner);
624     sysbus_realize(busdev, &error_fatal);
625     for (n = 0; n < EXYNOS4210_MAX_INT_COMBINER_OUT_IRQ; n++) {
626         sysbus_connect_irq(busdev, n, qdev_get_gpio_in(DEVICE(&s->ext_gic), n));
627     }
628     sysbus_mmio_map(busdev, 0, EXYNOS4210_EXT_COMBINER_BASE_ADDR);
629 
630     /* Initialize board IRQs. */
631     exynos4210_init_board_irqs(s);
632 
633     /*** Memory ***/
634 
635     /* Chip-ID and OMR */
636     memory_region_init_io(&s->chipid_mem, OBJECT(socdev),
637                           &exynos4210_chipid_and_omr_ops, NULL,
638                           "exynos4210.chipid", sizeof(chipid_and_omr));
639     memory_region_add_subregion(system_mem, EXYNOS4210_CHIPID_ADDR,
640                                 &s->chipid_mem);
641 
642     /* Internal ROM */
643     memory_region_init_rom(&s->irom_mem, OBJECT(socdev), "exynos4210.irom",
644                            EXYNOS4210_IROM_SIZE, &error_fatal);
645     memory_region_add_subregion(system_mem, EXYNOS4210_IROM_BASE_ADDR,
646                                 &s->irom_mem);
647     /* mirror of iROM */
648     memory_region_init_alias(&s->irom_alias_mem, OBJECT(socdev),
649                              "exynos4210.irom_alias", &s->irom_mem, 0,
650                              EXYNOS4210_IROM_SIZE);
651     memory_region_add_subregion(system_mem, EXYNOS4210_IROM_MIRROR_BASE_ADDR,
652                                 &s->irom_alias_mem);
653 
654     /* Internal RAM */
655     memory_region_init_ram(&s->iram_mem, NULL, "exynos4210.iram",
656                            EXYNOS4210_IRAM_SIZE, &error_fatal);
657     memory_region_add_subregion(system_mem, EXYNOS4210_IRAM_BASE_ADDR,
658                                 &s->iram_mem);
659 
660    /* PMU.
661     * The only reason of existence at the moment is that secondary CPU boot
662     * loader uses PMU INFORM5 register as a holding pen.
663     */
664     sysbus_create_simple("exynos4210.pmu", EXYNOS4210_PMU_BASE_ADDR, NULL);
665 
666     sysbus_create_simple("exynos4210.clk", EXYNOS4210_CLK_BASE_ADDR, NULL);
667     sysbus_create_simple("exynos4210.rng", EXYNOS4210_RNG_BASE_ADDR, NULL);
668 
669     /* PWM */
670     sysbus_create_varargs("exynos4210.pwm", EXYNOS4210_PWM_BASE_ADDR,
671                           s->irq_table[exynos4210_get_irq(22, 0)],
672                           s->irq_table[exynos4210_get_irq(22, 1)],
673                           s->irq_table[exynos4210_get_irq(22, 2)],
674                           s->irq_table[exynos4210_get_irq(22, 3)],
675                           s->irq_table[exynos4210_get_irq(22, 4)],
676                           NULL);
677     /* RTC */
678     sysbus_create_varargs("exynos4210.rtc", EXYNOS4210_RTC_BASE_ADDR,
679                           s->irq_table[exynos4210_get_irq(23, 0)],
680                           s->irq_table[exynos4210_get_irq(23, 1)],
681                           NULL);
682 
683     /* Multi Core Timer */
684     dev = qdev_new("exynos4210.mct");
685     busdev = SYS_BUS_DEVICE(dev);
686     sysbus_realize_and_unref(busdev, &error_fatal);
687     for (n = 0; n < 4; n++) {
688         /* Connect global timer interrupts to Combiner gpio_in */
689         sysbus_connect_irq(busdev, n,
690                 s->irq_table[exynos4210_get_irq(1, 4 + n)]);
691     }
692     /* Connect local timer interrupts to Combiner gpio_in */
693     sysbus_connect_irq(busdev, 4,
694             s->irq_table[exynos4210_get_irq(51, 0)]);
695     sysbus_connect_irq(busdev, 5,
696             s->irq_table[exynos4210_get_irq(35, 3)]);
697     sysbus_mmio_map(busdev, 0, EXYNOS4210_MCT_BASE_ADDR);
698 
699     /*** I2C ***/
700     for (n = 0; n < EXYNOS4210_I2C_NUMBER; n++) {
701         uint32_t addr = EXYNOS4210_I2C_BASE_ADDR + EXYNOS4210_I2C_SHIFT * n;
702         qemu_irq i2c_irq;
703 
704         if (n < 8) {
705             i2c_irq = s->irq_table[exynos4210_get_irq(EXYNOS4210_I2C_INTG, n)];
706         } else {
707             i2c_irq = s->irq_table[exynos4210_get_irq(EXYNOS4210_HDMI_INTG, 1)];
708         }
709 
710         dev = qdev_new("exynos4210.i2c");
711         busdev = SYS_BUS_DEVICE(dev);
712         sysbus_realize_and_unref(busdev, &error_fatal);
713         sysbus_connect_irq(busdev, 0, i2c_irq);
714         sysbus_mmio_map(busdev, 0, addr);
715         s->i2c_if[n] = (I2CBus *)qdev_get_child_bus(dev, "i2c");
716     }
717 
718 
719     /*** UARTs ***/
720     uart[0] = exynos4210_uart_create(EXYNOS4210_UART0_BASE_ADDR,
721                            EXYNOS4210_UART0_FIFO_SIZE, 0, serial_hd(0),
722                   s->irq_table[exynos4210_get_irq(EXYNOS4210_UART_INT_GRP, 0)]);
723 
724     uart[1] = exynos4210_uart_create(EXYNOS4210_UART1_BASE_ADDR,
725                            EXYNOS4210_UART1_FIFO_SIZE, 1, serial_hd(1),
726                   s->irq_table[exynos4210_get_irq(EXYNOS4210_UART_INT_GRP, 1)]);
727 
728     uart[2] = exynos4210_uart_create(EXYNOS4210_UART2_BASE_ADDR,
729                            EXYNOS4210_UART2_FIFO_SIZE, 2, serial_hd(2),
730                   s->irq_table[exynos4210_get_irq(EXYNOS4210_UART_INT_GRP, 2)]);
731 
732     uart[3] = exynos4210_uart_create(EXYNOS4210_UART3_BASE_ADDR,
733                            EXYNOS4210_UART3_FIFO_SIZE, 3, serial_hd(3),
734                   s->irq_table[exynos4210_get_irq(EXYNOS4210_UART_INT_GRP, 3)]);
735 
736     /*** SD/MMC host controllers ***/
737     for (n = 0; n < EXYNOS4210_SDHCI_NUMBER; n++) {
738         DeviceState *carddev;
739         BlockBackend *blk;
740         DriveInfo *di;
741 
742         /* Compatible with:
743          * - SD Host Controller Specification Version 2.0
744          * - SDIO Specification Version 2.0
745          * - MMC Specification Version 4.3
746          * - SDMA
747          * - ADMA2
748          *
749          * As this part of the Exynos4210 is not publicly available,
750          * we used the "HS-MMC Controller S3C2416X RISC Microprocessor"
751          * public datasheet which is very similar (implementing
752          * MMC Specification Version 4.0 being the only difference noted)
753          */
754         dev = qdev_new(TYPE_S3C_SDHCI);
755         qdev_prop_set_uint64(dev, "capareg", EXYNOS4210_SDHCI_CAPABILITIES);
756 
757         busdev = SYS_BUS_DEVICE(dev);
758         sysbus_realize_and_unref(busdev, &error_fatal);
759         sysbus_mmio_map(busdev, 0, EXYNOS4210_SDHCI_ADDR(n));
760         sysbus_connect_irq(busdev, 0, s->irq_table[exynos4210_get_irq(29, n)]);
761 
762         di = drive_get(IF_SD, 0, n);
763         blk = di ? blk_by_legacy_dinfo(di) : NULL;
764         carddev = qdev_new(TYPE_SD_CARD);
765         qdev_prop_set_drive(carddev, "drive", blk);
766         qdev_realize_and_unref(carddev, qdev_get_child_bus(dev, "sd-bus"),
767                                &error_fatal);
768     }
769 
770     /*** Display controller (FIMD) ***/
771     sysbus_create_varargs("exynos4210.fimd", EXYNOS4210_FIMD0_BASE_ADDR,
772             s->irq_table[exynos4210_get_irq(11, 0)],
773             s->irq_table[exynos4210_get_irq(11, 1)],
774             s->irq_table[exynos4210_get_irq(11, 2)],
775             NULL);
776 
777     sysbus_create_simple(TYPE_EXYNOS4210_EHCI, EXYNOS4210_EHCI_BASE_ADDR,
778             s->irq_table[exynos4210_get_irq(28, 3)]);
779 
780     /*** DMA controllers ***/
781     pl330[0] = pl330_create(EXYNOS4210_PL330_BASE0_ADDR,
782                             &s->pl330_irq_orgate[0],
783                             s->irq_table[exynos4210_get_irq(21, 0)],
784                             32, 32, 32);
785     pl330[1] = pl330_create(EXYNOS4210_PL330_BASE1_ADDR,
786                             &s->pl330_irq_orgate[1],
787                             s->irq_table[exynos4210_get_irq(21, 1)],
788                             32, 32, 32);
789     pl330[2] = pl330_create(EXYNOS4210_PL330_BASE2_ADDR,
790                             &s->pl330_irq_orgate[2],
791                             s->irq_table[exynos4210_get_irq(20, 1)],
792                             1, 31, 64);
793 
794     sysbus_connect_irq(SYS_BUS_DEVICE(uart[0]), 1,
795                        qdev_get_gpio_in(pl330[0], 15));
796     sysbus_connect_irq(SYS_BUS_DEVICE(uart[1]), 1,
797                        qdev_get_gpio_in(pl330[1], 15));
798     sysbus_connect_irq(SYS_BUS_DEVICE(uart[2]), 1,
799                        qdev_get_gpio_in(pl330[0], 17));
800     sysbus_connect_irq(SYS_BUS_DEVICE(uart[3]), 1,
801                        qdev_get_gpio_in(pl330[1], 17));
802 }
803 
804 static void exynos4210_init(Object *obj)
805 {
806     Exynos4210State *s = EXYNOS4210_SOC(obj);
807     int i;
808 
809     for (i = 0; i < ARRAY_SIZE(s->pl330_irq_orgate); i++) {
810         char *name = g_strdup_printf("pl330-irq-orgate%d", i);
811         OrIRQState *orgate = &s->pl330_irq_orgate[i];
812 
813         object_initialize_child(obj, name, orgate, TYPE_OR_IRQ);
814         g_free(name);
815     }
816 
817     for (i = 0; i < ARRAY_SIZE(s->cpu_irq_orgate); i++) {
818         g_autofree char *name = g_strdup_printf("cpu-irq-orgate%d", i);
819         object_initialize_child(obj, name, &s->cpu_irq_orgate[i], TYPE_OR_IRQ);
820     }
821 
822     for (i = 0; i < ARRAY_SIZE(s->splitter); i++) {
823         g_autofree char *name = g_strdup_printf("irq-splitter%d", i);
824         object_initialize_child(obj, name, &s->splitter[i], TYPE_SPLIT_IRQ);
825     }
826 
827     object_initialize_child(obj, "a9mpcore", &s->a9mpcore, TYPE_A9MPCORE_PRIV);
828     object_initialize_child(obj, "ext-gic", &s->ext_gic, TYPE_EXYNOS4210_GIC);
829     object_initialize_child(obj, "int-combiner", &s->int_combiner,
830                             TYPE_EXYNOS4210_COMBINER);
831     object_initialize_child(obj, "ext-combiner", &s->ext_combiner,
832                             TYPE_EXYNOS4210_COMBINER);
833 }
834 
835 static void exynos4210_class_init(ObjectClass *klass, void *data)
836 {
837     DeviceClass *dc = DEVICE_CLASS(klass);
838 
839     dc->realize = exynos4210_realize;
840 }
841 
842 static const TypeInfo exynos4210_info = {
843     .name = TYPE_EXYNOS4210_SOC,
844     .parent = TYPE_SYS_BUS_DEVICE,
845     .instance_size = sizeof(Exynos4210State),
846     .instance_init = exynos4210_init,
847     .class_init = exynos4210_class_init,
848 };
849 
850 static void exynos4210_register_types(void)
851 {
852     type_register_static(&exynos4210_info);
853 }
854 
855 type_init(exynos4210_register_types)
856