4 * Copyright (c) 2004 Jocelyn Mayer
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27 * Based on OpenPic implementations:
28 * - Intel GW80314 I/O companion chip developer's manual
29 * - Motorola MPC8245 & MPC8540 user manuals.
30 * - Motorola MCP750 (aka Raven) programmer manual.
31 * - Motorola Harrier programmer manuel
33 * Serial interrupts, as implemented in Raven chipset are not supported yet.
37 #include "hw/ppc/mac.h"
38 #include "hw/pci/pci.h"
39 #include "hw/ppc/openpic.h"
40 #include "hw/ppc/ppc_e500.h"
41 #include "hw/sysbus.h"
42 #include "hw/pci/msi.h"
43 #include "qemu/bitops.h"
44 #include "qapi/qmp/qerror.h"
46 //#define DEBUG_OPENPIC
49 static const int debug_openpic
= 1;
51 static const int debug_openpic
= 0;
54 #define DPRINTF(fmt, ...) do { \
55 if (debug_openpic) { \
56 printf(fmt , ## __VA_ARGS__); \
62 #define VID 0x03 /* MPIC version ID */
64 /* OpenPIC capability flags */
65 #define OPENPIC_FLAG_IDR_CRIT (1 << 0)
66 #define OPENPIC_FLAG_ILR (2 << 0)
68 /* OpenPIC address map */
69 #define OPENPIC_GLB_REG_START 0x0
70 #define OPENPIC_GLB_REG_SIZE 0x10F0
71 #define OPENPIC_TMR_REG_START 0x10F0
72 #define OPENPIC_TMR_REG_SIZE 0x220
73 #define OPENPIC_MSI_REG_START 0x1600
74 #define OPENPIC_MSI_REG_SIZE 0x200
75 #define OPENPIC_SUMMARY_REG_START 0x3800
76 #define OPENPIC_SUMMARY_REG_SIZE 0x800
77 #define OPENPIC_SRC_REG_START 0x10000
78 #define OPENPIC_SRC_REG_SIZE (OPENPIC_MAX_SRC * 0x20)
79 #define OPENPIC_CPU_REG_START 0x20000
80 #define OPENPIC_CPU_REG_SIZE 0x100 + ((MAX_CPU - 1) * 0x1000)
83 #define RAVEN_MAX_CPU 2
84 #define RAVEN_MAX_EXT 48
85 #define RAVEN_MAX_IRQ 64
86 #define RAVEN_MAX_TMR OPENPIC_MAX_TMR
87 #define RAVEN_MAX_IPI OPENPIC_MAX_IPI
89 /* Interrupt definitions */
90 #define RAVEN_FE_IRQ (RAVEN_MAX_EXT) /* Internal functional IRQ */
91 #define RAVEN_ERR_IRQ (RAVEN_MAX_EXT + 1) /* Error IRQ */
92 #define RAVEN_TMR_IRQ (RAVEN_MAX_EXT + 2) /* First timer IRQ */
93 #define RAVEN_IPI_IRQ (RAVEN_TMR_IRQ + RAVEN_MAX_TMR) /* First IPI IRQ */
94 /* First doorbell IRQ */
95 #define RAVEN_DBL_IRQ (RAVEN_IPI_IRQ + (RAVEN_MAX_CPU * RAVEN_MAX_IPI))
97 typedef struct FslMpicInfo
{
101 static FslMpicInfo fsl_mpic_20
= {
105 static FslMpicInfo fsl_mpic_42
= {
109 #define FRR_NIRQ_SHIFT 16
110 #define FRR_NCPU_SHIFT 8
111 #define FRR_VID_SHIFT 0
113 #define VID_REVISION_1_2 2
114 #define VID_REVISION_1_3 3
116 #define VIR_GENERIC 0x00000000 /* Generic Vendor ID */
118 #define GCR_RESET 0x80000000
119 #define GCR_MODE_PASS 0x00000000
120 #define GCR_MODE_MIXED 0x20000000
121 #define GCR_MODE_PROXY 0x60000000
123 #define TBCR_CI 0x80000000 /* count inhibit */
124 #define TCCR_TOG 0x80000000 /* toggles when decrement to zero */
126 #define IDR_EP_SHIFT 31
127 #define IDR_EP_MASK (1U << IDR_EP_SHIFT)
128 #define IDR_CI0_SHIFT 30
129 #define IDR_CI1_SHIFT 29
130 #define IDR_P1_SHIFT 1
131 #define IDR_P0_SHIFT 0
133 #define ILR_INTTGT_MASK 0x000000ff
134 #define ILR_INTTGT_INT 0x00
135 #define ILR_INTTGT_CINT 0x01 /* critical */
136 #define ILR_INTTGT_MCP 0x02 /* machine check */
138 /* The currently supported INTTGT values happen to be the same as QEMU's
139 * openpic output codes, but don't depend on this. The output codes
140 * could change (unlikely, but...) or support could be added for
141 * more INTTGT values.
143 static const int inttgt_output
[][2] = {
144 { ILR_INTTGT_INT
, OPENPIC_OUTPUT_INT
},
145 { ILR_INTTGT_CINT
, OPENPIC_OUTPUT_CINT
},
146 { ILR_INTTGT_MCP
, OPENPIC_OUTPUT_MCK
},
149 static int inttgt_to_output(int inttgt
)
153 for (i
= 0; i
< ARRAY_SIZE(inttgt_output
); i
++) {
154 if (inttgt_output
[i
][0] == inttgt
) {
155 return inttgt_output
[i
][1];
159 fprintf(stderr
, "%s: unsupported inttgt %d\n", __func__
, inttgt
);
160 return OPENPIC_OUTPUT_INT
;
163 static int output_to_inttgt(int output
)
167 for (i
= 0; i
< ARRAY_SIZE(inttgt_output
); i
++) {
168 if (inttgt_output
[i
][1] == output
) {
169 return inttgt_output
[i
][0];
176 #define MSIIR_OFFSET 0x140
177 #define MSIIR_SRS_SHIFT 29
178 #define MSIIR_SRS_MASK (0x7 << MSIIR_SRS_SHIFT)
179 #define MSIIR_IBS_SHIFT 24
180 #define MSIIR_IBS_MASK (0x1f << MSIIR_IBS_SHIFT)
182 static int get_current_cpu(void)
188 return current_cpu
->cpu_index
;
191 static uint32_t openpic_cpu_read_internal(void *opaque
, hwaddr addr
,
193 static void openpic_cpu_write_internal(void *opaque
, hwaddr addr
,
194 uint32_t val
, int idx
);
195 static void openpic_reset(DeviceState
*d
);
197 typedef enum IRQType
{
199 IRQ_TYPE_FSLINT
, /* FSL internal interrupt -- level only */
200 IRQ_TYPE_FSLSPECIAL
, /* FSL timer/IPI interrupt, edge, no polarity */
203 /* Round up to the nearest 64 IRQs so that the queue length
204 * won't change when moving between 32 and 64 bit hosts.
206 #define IRQQUEUE_SIZE_BITS ((OPENPIC_MAX_IRQ + 63) & ~63)
208 typedef struct IRQQueue
{
209 unsigned long *queue
;
210 int32_t queue_size
; /* Only used for VMSTATE_BITMAP */
215 typedef struct IRQSource
{
216 uint32_t ivpr
; /* IRQ vector/priority register */
217 uint32_t idr
; /* IRQ destination register */
218 uint32_t destmask
; /* bitmap of CPU destinations */
220 int output
; /* IRQ level, e.g. OPENPIC_OUTPUT_INT */
221 int pending
; /* TRUE if IRQ is pending */
223 bool level
:1; /* level-triggered */
224 bool nomask
:1; /* critical interrupts ignore mask on some FSL MPICs */
227 #define IVPR_MASK_SHIFT 31
228 #define IVPR_MASK_MASK (1U << IVPR_MASK_SHIFT)
229 #define IVPR_ACTIVITY_SHIFT 30
230 #define IVPR_ACTIVITY_MASK (1U << IVPR_ACTIVITY_SHIFT)
231 #define IVPR_MODE_SHIFT 29
232 #define IVPR_MODE_MASK (1U << IVPR_MODE_SHIFT)
233 #define IVPR_POLARITY_SHIFT 23
234 #define IVPR_POLARITY_MASK (1U << IVPR_POLARITY_SHIFT)
235 #define IVPR_SENSE_SHIFT 22
236 #define IVPR_SENSE_MASK (1U << IVPR_SENSE_SHIFT)
238 #define IVPR_PRIORITY_MASK (0xFU << 16)
239 #define IVPR_PRIORITY(_ivprr_) ((int)(((_ivprr_) & IVPR_PRIORITY_MASK) >> 16))
240 #define IVPR_VECTOR(opp, _ivprr_) ((_ivprr_) & (opp)->vector_mask)
242 /* IDR[EP/CI] are only for FSL MPIC prior to v4.0 */
243 #define IDR_EP 0x80000000 /* external pin */
244 #define IDR_CI 0x40000000 /* critical interrupt */
246 typedef struct OpenPICTimer
{
247 uint32_t tccr
; /* Global timer current count register */
248 uint32_t tbcr
; /* Global timer base count register */
251 typedef struct OpenPICMSI
{
252 uint32_t msir
; /* Shared Message Signaled Interrupt Register */
255 typedef struct IRQDest
{
256 int32_t ctpr
; /* CPU current task priority */
261 /* Count of IRQ sources asserting on non-INT outputs */
262 uint32_t outputs_active
[OPENPIC_OUTPUT_NB
];
265 #define OPENPIC(obj) OBJECT_CHECK(OpenPICState, (obj), TYPE_OPENPIC)
267 typedef struct OpenPICState
{
269 SysBusDevice parent_obj
;
274 /* Behavior control */
280 uint32_t vir
; /* Vendor identification register */
281 uint32_t vector_mask
;
286 uint32_t mpic_mode_mask
;
289 MemoryRegion sub_io_mem
[6];
291 /* Global registers */
292 uint32_t frr
; /* Feature reporting register */
293 uint32_t gcr
; /* Global configuration register */
294 uint32_t pir
; /* Processor initialization register */
295 uint32_t spve
; /* Spurious vector register */
296 uint32_t tfrr
; /* Timer frequency reporting register */
297 /* Source registers */
298 IRQSource src
[OPENPIC_MAX_IRQ
];
299 /* Local registers per output pin */
300 IRQDest dst
[MAX_CPU
];
302 /* Timer registers */
303 OpenPICTimer timers
[OPENPIC_MAX_TMR
];
304 /* Shared MSI registers */
305 OpenPICMSI msi
[MAX_MSI
];
312 static inline void IRQ_setbit(IRQQueue
*q
, int n_IRQ
)
314 set_bit(n_IRQ
, q
->queue
);
317 static inline void IRQ_resetbit(IRQQueue
*q
, int n_IRQ
)
319 clear_bit(n_IRQ
, q
->queue
);
322 static void IRQ_check(OpenPICState
*opp
, IRQQueue
*q
)
329 irq
= find_next_bit(q
->queue
, opp
->max_irq
, irq
+ 1);
330 if (irq
== opp
->max_irq
) {
334 DPRINTF("IRQ_check: irq %d set ivpr_pr=%d pr=%d\n",
335 irq
, IVPR_PRIORITY(opp
->src
[irq
].ivpr
), priority
);
337 if (IVPR_PRIORITY(opp
->src
[irq
].ivpr
) > priority
) {
339 priority
= IVPR_PRIORITY(opp
->src
[irq
].ivpr
);
344 q
->priority
= priority
;
347 static int IRQ_get_next(OpenPICState
*opp
, IRQQueue
*q
)
355 static void IRQ_local_pipe(OpenPICState
*opp
, int n_CPU
, int n_IRQ
,
356 bool active
, bool was_active
)
362 dst
= &opp
->dst
[n_CPU
];
363 src
= &opp
->src
[n_IRQ
];
365 DPRINTF("%s: IRQ %d active %d was %d\n",
366 __func__
, n_IRQ
, active
, was_active
);
368 if (src
->output
!= OPENPIC_OUTPUT_INT
) {
369 DPRINTF("%s: output %d irq %d active %d was %d count %d\n",
370 __func__
, src
->output
, n_IRQ
, active
, was_active
,
371 dst
->outputs_active
[src
->output
]);
373 /* On Freescale MPIC, critical interrupts ignore priority,
374 * IACK, EOI, etc. Before MPIC v4.1 they also ignore
378 if (!was_active
&& dst
->outputs_active
[src
->output
]++ == 0) {
379 DPRINTF("%s: Raise OpenPIC output %d cpu %d irq %d\n",
380 __func__
, src
->output
, n_CPU
, n_IRQ
);
381 qemu_irq_raise(dst
->irqs
[src
->output
]);
384 if (was_active
&& --dst
->outputs_active
[src
->output
] == 0) {
385 DPRINTF("%s: Lower OpenPIC output %d cpu %d irq %d\n",
386 __func__
, src
->output
, n_CPU
, n_IRQ
);
387 qemu_irq_lower(dst
->irqs
[src
->output
]);
394 priority
= IVPR_PRIORITY(src
->ivpr
);
396 /* Even if the interrupt doesn't have enough priority,
397 * it is still raised, in case ctpr is lowered later.
400 IRQ_setbit(&dst
->raised
, n_IRQ
);
402 IRQ_resetbit(&dst
->raised
, n_IRQ
);
405 IRQ_check(opp
, &dst
->raised
);
407 if (active
&& priority
<= dst
->ctpr
) {
408 DPRINTF("%s: IRQ %d priority %d too low for ctpr %d on CPU %d\n",
409 __func__
, n_IRQ
, priority
, dst
->ctpr
, n_CPU
);
414 if (IRQ_get_next(opp
, &dst
->servicing
) >= 0 &&
415 priority
<= dst
->servicing
.priority
) {
416 DPRINTF("%s: IRQ %d is hidden by servicing IRQ %d on CPU %d\n",
417 __func__
, n_IRQ
, dst
->servicing
.next
, n_CPU
);
419 DPRINTF("%s: Raise OpenPIC INT output cpu %d irq %d/%d\n",
420 __func__
, n_CPU
, n_IRQ
, dst
->raised
.next
);
421 qemu_irq_raise(opp
->dst
[n_CPU
].irqs
[OPENPIC_OUTPUT_INT
]);
424 IRQ_get_next(opp
, &dst
->servicing
);
425 if (dst
->raised
.priority
> dst
->ctpr
&&
426 dst
->raised
.priority
> dst
->servicing
.priority
) {
427 DPRINTF("%s: IRQ %d inactive, IRQ %d prio %d above %d/%d, CPU %d\n",
428 __func__
, n_IRQ
, dst
->raised
.next
, dst
->raised
.priority
,
429 dst
->ctpr
, dst
->servicing
.priority
, n_CPU
);
430 /* IRQ line stays asserted */
432 DPRINTF("%s: IRQ %d inactive, current prio %d/%d, CPU %d\n",
433 __func__
, n_IRQ
, dst
->ctpr
, dst
->servicing
.priority
, n_CPU
);
434 qemu_irq_lower(opp
->dst
[n_CPU
].irqs
[OPENPIC_OUTPUT_INT
]);
439 /* update pic state because registers for n_IRQ have changed value */
440 static void openpic_update_irq(OpenPICState
*opp
, int n_IRQ
)
443 bool active
, was_active
;
446 src
= &opp
->src
[n_IRQ
];
447 active
= src
->pending
;
449 if ((src
->ivpr
& IVPR_MASK_MASK
) && !src
->nomask
) {
450 /* Interrupt source is disabled */
451 DPRINTF("%s: IRQ %d is disabled\n", __func__
, n_IRQ
);
455 was_active
= !!(src
->ivpr
& IVPR_ACTIVITY_MASK
);
458 * We don't have a similar check for already-active because
459 * ctpr may have changed and we need to withdraw the interrupt.
461 if (!active
&& !was_active
) {
462 DPRINTF("%s: IRQ %d is already inactive\n", __func__
, n_IRQ
);
467 src
->ivpr
|= IVPR_ACTIVITY_MASK
;
469 src
->ivpr
&= ~IVPR_ACTIVITY_MASK
;
472 if (src
->destmask
== 0) {
474 DPRINTF("%s: IRQ %d has no target\n", __func__
, n_IRQ
);
478 if (src
->destmask
== (1 << src
->last_cpu
)) {
479 /* Only one CPU is allowed to receive this IRQ */
480 IRQ_local_pipe(opp
, src
->last_cpu
, n_IRQ
, active
, was_active
);
481 } else if (!(src
->ivpr
& IVPR_MODE_MASK
)) {
482 /* Directed delivery mode */
483 for (i
= 0; i
< opp
->nb_cpus
; i
++) {
484 if (src
->destmask
& (1 << i
)) {
485 IRQ_local_pipe(opp
, i
, n_IRQ
, active
, was_active
);
489 /* Distributed delivery mode */
490 for (i
= src
->last_cpu
+ 1; i
!= src
->last_cpu
; i
++) {
491 if (i
== opp
->nb_cpus
) {
494 if (src
->destmask
& (1 << i
)) {
495 IRQ_local_pipe(opp
, i
, n_IRQ
, active
, was_active
);
503 static void openpic_set_irq(void *opaque
, int n_IRQ
, int level
)
505 OpenPICState
*opp
= opaque
;
508 if (n_IRQ
>= OPENPIC_MAX_IRQ
) {
509 fprintf(stderr
, "%s: IRQ %d out of range\n", __func__
, n_IRQ
);
513 src
= &opp
->src
[n_IRQ
];
514 DPRINTF("openpic: set irq %d = %d ivpr=0x%08x\n",
515 n_IRQ
, level
, src
->ivpr
);
517 /* level-sensitive irq */
518 src
->pending
= level
;
519 openpic_update_irq(opp
, n_IRQ
);
521 /* edge-sensitive irq */
524 openpic_update_irq(opp
, n_IRQ
);
527 if (src
->output
!= OPENPIC_OUTPUT_INT
) {
528 /* Edge-triggered interrupts shouldn't be used
529 * with non-INT delivery, but just in case,
530 * try to make it do something sane rather than
531 * cause an interrupt storm. This is close to
532 * what you'd probably see happen in real hardware.
535 openpic_update_irq(opp
, n_IRQ
);
540 static inline uint32_t read_IRQreg_idr(OpenPICState
*opp
, int n_IRQ
)
542 return opp
->src
[n_IRQ
].idr
;
545 static inline uint32_t read_IRQreg_ilr(OpenPICState
*opp
, int n_IRQ
)
547 if (opp
->flags
& OPENPIC_FLAG_ILR
) {
548 return output_to_inttgt(opp
->src
[n_IRQ
].output
);
554 static inline uint32_t read_IRQreg_ivpr(OpenPICState
*opp
, int n_IRQ
)
556 return opp
->src
[n_IRQ
].ivpr
;
559 static inline void write_IRQreg_idr(OpenPICState
*opp
, int n_IRQ
, uint32_t val
)
561 IRQSource
*src
= &opp
->src
[n_IRQ
];
562 uint32_t normal_mask
= (1UL << opp
->nb_cpus
) - 1;
563 uint32_t crit_mask
= 0;
564 uint32_t mask
= normal_mask
;
565 int crit_shift
= IDR_EP_SHIFT
- opp
->nb_cpus
;
568 if (opp
->flags
& OPENPIC_FLAG_IDR_CRIT
) {
569 crit_mask
= mask
<< crit_shift
;
570 mask
|= crit_mask
| IDR_EP
;
573 src
->idr
= val
& mask
;
574 DPRINTF("Set IDR %d to 0x%08x\n", n_IRQ
, src
->idr
);
576 if (opp
->flags
& OPENPIC_FLAG_IDR_CRIT
) {
577 if (src
->idr
& crit_mask
) {
578 if (src
->idr
& normal_mask
) {
579 DPRINTF("%s: IRQ configured for multiple output types, using "
580 "critical\n", __func__
);
583 src
->output
= OPENPIC_OUTPUT_CINT
;
587 for (i
= 0; i
< opp
->nb_cpus
; i
++) {
588 int n_ci
= IDR_CI0_SHIFT
- i
;
590 if (src
->idr
& (1UL << n_ci
)) {
591 src
->destmask
|= 1UL << i
;
595 src
->output
= OPENPIC_OUTPUT_INT
;
597 src
->destmask
= src
->idr
& normal_mask
;
600 src
->destmask
= src
->idr
;
604 static inline void write_IRQreg_ilr(OpenPICState
*opp
, int n_IRQ
, uint32_t val
)
606 if (opp
->flags
& OPENPIC_FLAG_ILR
) {
607 IRQSource
*src
= &opp
->src
[n_IRQ
];
609 src
->output
= inttgt_to_output(val
& ILR_INTTGT_MASK
);
610 DPRINTF("Set ILR %d to 0x%08x, output %d\n", n_IRQ
, src
->idr
,
613 /* TODO: on MPIC v4.0 only, set nomask for non-INT */
617 static inline void write_IRQreg_ivpr(OpenPICState
*opp
, int n_IRQ
, uint32_t val
)
621 /* NOTE when implementing newer FSL MPIC models: starting with v4.0,
622 * the polarity bit is read-only on internal interrupts.
624 mask
= IVPR_MASK_MASK
| IVPR_PRIORITY_MASK
| IVPR_SENSE_MASK
|
625 IVPR_POLARITY_MASK
| opp
->vector_mask
;
627 /* ACTIVITY bit is read-only */
628 opp
->src
[n_IRQ
].ivpr
=
629 (opp
->src
[n_IRQ
].ivpr
& IVPR_ACTIVITY_MASK
) | (val
& mask
);
631 /* For FSL internal interrupts, The sense bit is reserved and zero,
632 * and the interrupt is always level-triggered. Timers and IPIs
633 * have no sense or polarity bits, and are edge-triggered.
635 switch (opp
->src
[n_IRQ
].type
) {
636 case IRQ_TYPE_NORMAL
:
637 opp
->src
[n_IRQ
].level
= !!(opp
->src
[n_IRQ
].ivpr
& IVPR_SENSE_MASK
);
640 case IRQ_TYPE_FSLINT
:
641 opp
->src
[n_IRQ
].ivpr
&= ~IVPR_SENSE_MASK
;
644 case IRQ_TYPE_FSLSPECIAL
:
645 opp
->src
[n_IRQ
].ivpr
&= ~(IVPR_POLARITY_MASK
| IVPR_SENSE_MASK
);
649 openpic_update_irq(opp
, n_IRQ
);
650 DPRINTF("Set IVPR %d to 0x%08x -> 0x%08x\n", n_IRQ
, val
,
651 opp
->src
[n_IRQ
].ivpr
);
654 static void openpic_gcr_write(OpenPICState
*opp
, uint64_t val
)
656 bool mpic_proxy
= false;
658 if (val
& GCR_RESET
) {
659 openpic_reset(DEVICE(opp
));
663 opp
->gcr
&= ~opp
->mpic_mode_mask
;
664 opp
->gcr
|= val
& opp
->mpic_mode_mask
;
666 /* Set external proxy mode */
667 if ((val
& opp
->mpic_mode_mask
) == GCR_MODE_PROXY
) {
671 ppce500_set_mpic_proxy(mpic_proxy
);
674 static void openpic_gbl_write(void *opaque
, hwaddr addr
, uint64_t val
,
677 OpenPICState
*opp
= opaque
;
681 DPRINTF("%s: addr %#" HWADDR_PRIx
" <= %08" PRIx64
"\n",
682 __func__
, addr
, val
);
687 case 0x00: /* Block Revision Register1 (BRR1) is Readonly */
697 openpic_cpu_write_internal(opp
, addr
, val
, get_current_cpu());
699 case 0x1000: /* FRR */
701 case 0x1020: /* GCR */
702 openpic_gcr_write(opp
, val
);
704 case 0x1080: /* VIR */
706 case 0x1090: /* PIR */
707 for (idx
= 0; idx
< opp
->nb_cpus
; idx
++) {
708 if ((val
& (1 << idx
)) && !(opp
->pir
& (1 << idx
))) {
709 DPRINTF("Raise OpenPIC RESET output for CPU %d\n", idx
);
710 dst
= &opp
->dst
[idx
];
711 qemu_irq_raise(dst
->irqs
[OPENPIC_OUTPUT_RESET
]);
712 } else if (!(val
& (1 << idx
)) && (opp
->pir
& (1 << idx
))) {
713 DPRINTF("Lower OpenPIC RESET output for CPU %d\n", idx
);
714 dst
= &opp
->dst
[idx
];
715 qemu_irq_lower(dst
->irqs
[OPENPIC_OUTPUT_RESET
]);
720 case 0x10A0: /* IPI_IVPR */
726 idx
= (addr
- 0x10A0) >> 4;
727 write_IRQreg_ivpr(opp
, opp
->irq_ipi0
+ idx
, val
);
730 case 0x10E0: /* SPVE */
731 opp
->spve
= val
& opp
->vector_mask
;
738 static uint64_t openpic_gbl_read(void *opaque
, hwaddr addr
, unsigned len
)
740 OpenPICState
*opp
= opaque
;
743 DPRINTF("%s: addr %#" HWADDR_PRIx
"\n", __func__
, addr
);
749 case 0x1000: /* FRR */
752 case 0x1020: /* GCR */
755 case 0x1080: /* VIR */
758 case 0x1090: /* PIR */
761 case 0x00: /* Block Revision Register1 (BRR1) */
772 retval
= openpic_cpu_read_internal(opp
, addr
, get_current_cpu());
774 case 0x10A0: /* IPI_IVPR */
780 idx
= (addr
- 0x10A0) >> 4;
781 retval
= read_IRQreg_ivpr(opp
, opp
->irq_ipi0
+ idx
);
784 case 0x10E0: /* SPVE */
790 DPRINTF("%s: => 0x%08x\n", __func__
, retval
);
795 static void openpic_tmr_write(void *opaque
, hwaddr addr
, uint64_t val
,
798 OpenPICState
*opp
= opaque
;
803 DPRINTF("%s: addr %#" HWADDR_PRIx
" <= %08" PRIx64
"\n",
804 __func__
, addr
, val
);
809 if (addr
== 0x10f0) {
815 idx
= (addr
>> 6) & 0x3;
818 switch (addr
& 0x30) {
819 case 0x00: /* TCCR */
821 case 0x10: /* TBCR */
822 if ((opp
->timers
[idx
].tccr
& TCCR_TOG
) != 0 &&
823 (val
& TBCR_CI
) == 0 &&
824 (opp
->timers
[idx
].tbcr
& TBCR_CI
) != 0) {
825 opp
->timers
[idx
].tccr
&= ~TCCR_TOG
;
827 opp
->timers
[idx
].tbcr
= val
;
829 case 0x20: /* TVPR */
830 write_IRQreg_ivpr(opp
, opp
->irq_tim0
+ idx
, val
);
833 write_IRQreg_idr(opp
, opp
->irq_tim0
+ idx
, val
);
838 static uint64_t openpic_tmr_read(void *opaque
, hwaddr addr
, unsigned len
)
840 OpenPICState
*opp
= opaque
;
841 uint32_t retval
= -1;
844 DPRINTF("%s: addr %#" HWADDR_PRIx
"\n", __func__
, addr
);
848 idx
= (addr
>> 6) & 0x3;
854 switch (addr
& 0x30) {
855 case 0x00: /* TCCR */
856 retval
= opp
->timers
[idx
].tccr
;
858 case 0x10: /* TBCR */
859 retval
= opp
->timers
[idx
].tbcr
;
861 case 0x20: /* TIPV */
862 retval
= read_IRQreg_ivpr(opp
, opp
->irq_tim0
+ idx
);
864 case 0x30: /* TIDE (TIDR) */
865 retval
= read_IRQreg_idr(opp
, opp
->irq_tim0
+ idx
);
870 DPRINTF("%s: => 0x%08x\n", __func__
, retval
);
875 static void openpic_src_write(void *opaque
, hwaddr addr
, uint64_t val
,
878 OpenPICState
*opp
= opaque
;
881 DPRINTF("%s: addr %#" HWADDR_PRIx
" <= %08" PRIx64
"\n",
882 __func__
, addr
, val
);
884 addr
= addr
& 0xffff;
887 switch (addr
& 0x1f) {
889 write_IRQreg_ivpr(opp
, idx
, val
);
892 write_IRQreg_idr(opp
, idx
, val
);
895 write_IRQreg_ilr(opp
, idx
, val
);
900 static uint64_t openpic_src_read(void *opaque
, uint64_t addr
, unsigned len
)
902 OpenPICState
*opp
= opaque
;
906 DPRINTF("%s: addr %#" HWADDR_PRIx
"\n", __func__
, addr
);
909 addr
= addr
& 0xffff;
912 switch (addr
& 0x1f) {
914 retval
= read_IRQreg_ivpr(opp
, idx
);
917 retval
= read_IRQreg_idr(opp
, idx
);
920 retval
= read_IRQreg_ilr(opp
, idx
);
924 DPRINTF("%s: => 0x%08x\n", __func__
, retval
);
928 static void openpic_msi_write(void *opaque
, hwaddr addr
, uint64_t val
,
931 OpenPICState
*opp
= opaque
;
932 int idx
= opp
->irq_msi
;
935 DPRINTF("%s: addr %#" HWADDR_PRIx
" <= 0x%08" PRIx64
"\n",
936 __func__
, addr
, val
);
943 srs
= val
>> MSIIR_SRS_SHIFT
;
945 ibs
= (val
& MSIIR_IBS_MASK
) >> MSIIR_IBS_SHIFT
;
946 opp
->msi
[srs
].msir
|= 1 << ibs
;
947 openpic_set_irq(opp
, idx
, 1);
950 /* most registers are read-only, thus ignored */
955 static uint64_t openpic_msi_read(void *opaque
, hwaddr addr
, unsigned size
)
957 OpenPICState
*opp
= opaque
;
961 DPRINTF("%s: addr %#" HWADDR_PRIx
"\n", __func__
, addr
);
976 case 0x70: /* MSIRs */
977 r
= opp
->msi
[srs
].msir
;
979 opp
->msi
[srs
].msir
= 0;
980 openpic_set_irq(opp
, opp
->irq_msi
+ srs
, 0);
982 case 0x120: /* MSISR */
983 for (i
= 0; i
< MAX_MSI
; i
++) {
984 r
|= (opp
->msi
[i
].msir
? 1 : 0) << i
;
992 static uint64_t openpic_summary_read(void *opaque
, hwaddr addr
, unsigned size
)
996 DPRINTF("%s: addr %#" HWADDR_PRIx
"\n", __func__
, addr
);
998 /* TODO: EISR/EIMR */
1003 static void openpic_summary_write(void *opaque
, hwaddr addr
, uint64_t val
,
1006 DPRINTF("%s: addr %#" HWADDR_PRIx
" <= 0x%08" PRIx64
"\n",
1007 __func__
, addr
, val
);
1009 /* TODO: EISR/EIMR */
1012 static void openpic_cpu_write_internal(void *opaque
, hwaddr addr
,
1013 uint32_t val
, int idx
)
1015 OpenPICState
*opp
= opaque
;
1020 DPRINTF("%s: cpu %d addr %#" HWADDR_PRIx
" <= 0x%08x\n", __func__
, idx
,
1023 if (idx
< 0 || idx
>= opp
->nb_cpus
) {
1030 dst
= &opp
->dst
[idx
];
1033 case 0x40: /* IPIDR */
1037 idx
= (addr
- 0x40) >> 4;
1038 /* we use IDE as mask which CPUs to deliver the IPI to still. */
1039 opp
->src
[opp
->irq_ipi0
+ idx
].destmask
|= val
;
1040 openpic_set_irq(opp
, opp
->irq_ipi0
+ idx
, 1);
1041 openpic_set_irq(opp
, opp
->irq_ipi0
+ idx
, 0);
1043 case 0x80: /* CTPR */
1044 dst
->ctpr
= val
& 0x0000000F;
1046 DPRINTF("%s: set CPU %d ctpr to %d, raised %d servicing %d\n",
1047 __func__
, idx
, dst
->ctpr
, dst
->raised
.priority
,
1048 dst
->servicing
.priority
);
1050 if (dst
->raised
.priority
<= dst
->ctpr
) {
1051 DPRINTF("%s: Lower OpenPIC INT output cpu %d due to ctpr\n",
1053 qemu_irq_lower(dst
->irqs
[OPENPIC_OUTPUT_INT
]);
1054 } else if (dst
->raised
.priority
> dst
->servicing
.priority
) {
1055 DPRINTF("%s: Raise OpenPIC INT output cpu %d irq %d\n",
1056 __func__
, idx
, dst
->raised
.next
);
1057 qemu_irq_raise(dst
->irqs
[OPENPIC_OUTPUT_INT
]);
1061 case 0x90: /* WHOAMI */
1062 /* Read-only register */
1064 case 0xA0: /* IACK */
1065 /* Read-only register */
1067 case 0xB0: /* EOI */
1069 s_IRQ
= IRQ_get_next(opp
, &dst
->servicing
);
1072 DPRINTF("%s: EOI with no interrupt in service\n", __func__
);
1076 IRQ_resetbit(&dst
->servicing
, s_IRQ
);
1077 /* Set up next servicing IRQ */
1078 s_IRQ
= IRQ_get_next(opp
, &dst
->servicing
);
1079 /* Check queued interrupts. */
1080 n_IRQ
= IRQ_get_next(opp
, &dst
->raised
);
1081 src
= &opp
->src
[n_IRQ
];
1084 IVPR_PRIORITY(src
->ivpr
) > dst
->servicing
.priority
)) {
1085 DPRINTF("Raise OpenPIC INT output cpu %d irq %d\n",
1087 qemu_irq_raise(opp
->dst
[idx
].irqs
[OPENPIC_OUTPUT_INT
]);
1095 static void openpic_cpu_write(void *opaque
, hwaddr addr
, uint64_t val
,
1098 openpic_cpu_write_internal(opaque
, addr
, val
, (addr
& 0x1f000) >> 12);
1102 static uint32_t openpic_iack(OpenPICState
*opp
, IRQDest
*dst
, int cpu
)
1107 DPRINTF("Lower OpenPIC INT output\n");
1108 qemu_irq_lower(dst
->irqs
[OPENPIC_OUTPUT_INT
]);
1110 irq
= IRQ_get_next(opp
, &dst
->raised
);
1111 DPRINTF("IACK: irq=%d\n", irq
);
1114 /* No more interrupt pending */
1118 src
= &opp
->src
[irq
];
1119 if (!(src
->ivpr
& IVPR_ACTIVITY_MASK
) ||
1120 !(IVPR_PRIORITY(src
->ivpr
) > dst
->ctpr
)) {
1121 fprintf(stderr
, "%s: bad raised IRQ %d ctpr %d ivpr 0x%08x\n",
1122 __func__
, irq
, dst
->ctpr
, src
->ivpr
);
1123 openpic_update_irq(opp
, irq
);
1126 /* IRQ enter servicing state */
1127 IRQ_setbit(&dst
->servicing
, irq
);
1128 retval
= IVPR_VECTOR(opp
, src
->ivpr
);
1132 /* edge-sensitive IRQ */
1133 src
->ivpr
&= ~IVPR_ACTIVITY_MASK
;
1135 IRQ_resetbit(&dst
->raised
, irq
);
1138 if ((irq
>= opp
->irq_ipi0
) && (irq
< (opp
->irq_ipi0
+ OPENPIC_MAX_IPI
))) {
1139 src
->destmask
&= ~(1 << cpu
);
1140 if (src
->destmask
&& !src
->level
) {
1141 /* trigger on CPUs that didn't know about it yet */
1142 openpic_set_irq(opp
, irq
, 1);
1143 openpic_set_irq(opp
, irq
, 0);
1144 /* if all CPUs knew about it, set active bit again */
1145 src
->ivpr
|= IVPR_ACTIVITY_MASK
;
1152 static uint32_t openpic_cpu_read_internal(void *opaque
, hwaddr addr
,
1155 OpenPICState
*opp
= opaque
;
1159 DPRINTF("%s: cpu %d addr %#" HWADDR_PRIx
"\n", __func__
, idx
, addr
);
1160 retval
= 0xFFFFFFFF;
1162 if (idx
< 0 || idx
>= opp
->nb_cpus
) {
1169 dst
= &opp
->dst
[idx
];
1172 case 0x80: /* CTPR */
1175 case 0x90: /* WHOAMI */
1178 case 0xA0: /* IACK */
1179 retval
= openpic_iack(opp
, dst
, idx
);
1181 case 0xB0: /* EOI */
1187 DPRINTF("%s: => 0x%08x\n", __func__
, retval
);
1192 static uint64_t openpic_cpu_read(void *opaque
, hwaddr addr
, unsigned len
)
1194 return openpic_cpu_read_internal(opaque
, addr
, (addr
& 0x1f000) >> 12);
1197 static const MemoryRegionOps openpic_glb_ops_le
= {
1198 .write
= openpic_gbl_write
,
1199 .read
= openpic_gbl_read
,
1200 .endianness
= DEVICE_LITTLE_ENDIAN
,
1202 .min_access_size
= 4,
1203 .max_access_size
= 4,
1207 static const MemoryRegionOps openpic_glb_ops_be
= {
1208 .write
= openpic_gbl_write
,
1209 .read
= openpic_gbl_read
,
1210 .endianness
= DEVICE_BIG_ENDIAN
,
1212 .min_access_size
= 4,
1213 .max_access_size
= 4,
1217 static const MemoryRegionOps openpic_tmr_ops_le
= {
1218 .write
= openpic_tmr_write
,
1219 .read
= openpic_tmr_read
,
1220 .endianness
= DEVICE_LITTLE_ENDIAN
,
1222 .min_access_size
= 4,
1223 .max_access_size
= 4,
1227 static const MemoryRegionOps openpic_tmr_ops_be
= {
1228 .write
= openpic_tmr_write
,
1229 .read
= openpic_tmr_read
,
1230 .endianness
= DEVICE_BIG_ENDIAN
,
1232 .min_access_size
= 4,
1233 .max_access_size
= 4,
1237 static const MemoryRegionOps openpic_cpu_ops_le
= {
1238 .write
= openpic_cpu_write
,
1239 .read
= openpic_cpu_read
,
1240 .endianness
= DEVICE_LITTLE_ENDIAN
,
1242 .min_access_size
= 4,
1243 .max_access_size
= 4,
1247 static const MemoryRegionOps openpic_cpu_ops_be
= {
1248 .write
= openpic_cpu_write
,
1249 .read
= openpic_cpu_read
,
1250 .endianness
= DEVICE_BIG_ENDIAN
,
1252 .min_access_size
= 4,
1253 .max_access_size
= 4,
1257 static const MemoryRegionOps openpic_src_ops_le
= {
1258 .write
= openpic_src_write
,
1259 .read
= openpic_src_read
,
1260 .endianness
= DEVICE_LITTLE_ENDIAN
,
1262 .min_access_size
= 4,
1263 .max_access_size
= 4,
1267 static const MemoryRegionOps openpic_src_ops_be
= {
1268 .write
= openpic_src_write
,
1269 .read
= openpic_src_read
,
1270 .endianness
= DEVICE_BIG_ENDIAN
,
1272 .min_access_size
= 4,
1273 .max_access_size
= 4,
1277 static const MemoryRegionOps openpic_msi_ops_be
= {
1278 .read
= openpic_msi_read
,
1279 .write
= openpic_msi_write
,
1280 .endianness
= DEVICE_BIG_ENDIAN
,
1282 .min_access_size
= 4,
1283 .max_access_size
= 4,
1287 static const MemoryRegionOps openpic_summary_ops_be
= {
1288 .read
= openpic_summary_read
,
1289 .write
= openpic_summary_write
,
1290 .endianness
= DEVICE_BIG_ENDIAN
,
1292 .min_access_size
= 4,
1293 .max_access_size
= 4,
1297 static void openpic_reset(DeviceState
*d
)
1299 OpenPICState
*opp
= OPENPIC(d
);
1302 opp
->gcr
= GCR_RESET
;
1303 /* Initialise controller registers */
1304 opp
->frr
= ((opp
->nb_irqs
- 1) << FRR_NIRQ_SHIFT
) |
1305 ((opp
->nb_cpus
- 1) << FRR_NCPU_SHIFT
) |
1306 (opp
->vid
<< FRR_VID_SHIFT
);
1309 opp
->spve
= -1 & opp
->vector_mask
;
1310 opp
->tfrr
= opp
->tfrr_reset
;
1311 /* Initialise IRQ sources */
1312 for (i
= 0; i
< opp
->max_irq
; i
++) {
1313 opp
->src
[i
].ivpr
= opp
->ivpr_reset
;
1314 switch (opp
->src
[i
].type
) {
1315 case IRQ_TYPE_NORMAL
:
1316 opp
->src
[i
].level
= !!(opp
->ivpr_reset
& IVPR_SENSE_MASK
);
1319 case IRQ_TYPE_FSLINT
:
1320 opp
->src
[i
].ivpr
|= IVPR_POLARITY_MASK
;
1323 case IRQ_TYPE_FSLSPECIAL
:
1327 write_IRQreg_idr(opp
, i
, opp
->idr_reset
);
1329 /* Initialise IRQ destinations */
1330 for (i
= 0; i
< opp
->nb_cpus
; i
++) {
1331 opp
->dst
[i
].ctpr
= 15;
1332 opp
->dst
[i
].raised
.next
= -1;
1333 opp
->dst
[i
].raised
.priority
= 0;
1334 bitmap_clear(opp
->dst
[i
].raised
.queue
, 0, IRQQUEUE_SIZE_BITS
);
1335 opp
->dst
[i
].servicing
.next
= -1;
1336 opp
->dst
[i
].servicing
.priority
= 0;
1337 bitmap_clear(opp
->dst
[i
].servicing
.queue
, 0, IRQQUEUE_SIZE_BITS
);
1339 /* Initialise timers */
1340 for (i
= 0; i
< OPENPIC_MAX_TMR
; i
++) {
1341 opp
->timers
[i
].tccr
= 0;
1342 opp
->timers
[i
].tbcr
= TBCR_CI
;
1344 /* Go out of RESET state */
1348 typedef struct MemReg
{
1350 MemoryRegionOps
const *ops
;
1355 static void fsl_common_init(OpenPICState
*opp
)
1358 int virq
= OPENPIC_MAX_SRC
;
1360 opp
->vid
= VID_REVISION_1_2
;
1361 opp
->vir
= VIR_GENERIC
;
1362 opp
->vector_mask
= 0xFFFF;
1363 opp
->tfrr_reset
= 0;
1364 opp
->ivpr_reset
= IVPR_MASK_MASK
;
1365 opp
->idr_reset
= 1 << 0;
1366 opp
->max_irq
= OPENPIC_MAX_IRQ
;
1368 opp
->irq_ipi0
= virq
;
1369 virq
+= OPENPIC_MAX_IPI
;
1370 opp
->irq_tim0
= virq
;
1371 virq
+= OPENPIC_MAX_TMR
;
1373 assert(virq
<= OPENPIC_MAX_IRQ
);
1377 msi_supported
= true;
1378 for (i
= 0; i
< opp
->fsl
->max_ext
; i
++) {
1379 opp
->src
[i
].level
= false;
1382 /* Internal interrupts, including message and MSI */
1383 for (i
= 16; i
< OPENPIC_MAX_SRC
; i
++) {
1384 opp
->src
[i
].type
= IRQ_TYPE_FSLINT
;
1385 opp
->src
[i
].level
= true;
1388 /* timers and IPIs */
1389 for (i
= OPENPIC_MAX_SRC
; i
< virq
; i
++) {
1390 opp
->src
[i
].type
= IRQ_TYPE_FSLSPECIAL
;
1391 opp
->src
[i
].level
= false;
1395 static void map_list(OpenPICState
*opp
, const MemReg
*list
, int *count
)
1397 while (list
->name
) {
1398 assert(*count
< ARRAY_SIZE(opp
->sub_io_mem
));
1400 memory_region_init_io(&opp
->sub_io_mem
[*count
], OBJECT(opp
), list
->ops
,
1401 opp
, list
->name
, list
->size
);
1403 memory_region_add_subregion(&opp
->mem
, list
->start_addr
,
1404 &opp
->sub_io_mem
[*count
]);
1411 static const VMStateDescription vmstate_openpic_irq_queue
= {
1412 .name
= "openpic_irq_queue",
1414 .minimum_version_id
= 0,
1415 .fields
= (VMStateField
[]) {
1416 VMSTATE_BITMAP(queue
, IRQQueue
, 0, queue_size
),
1417 VMSTATE_INT32(next
, IRQQueue
),
1418 VMSTATE_INT32(priority
, IRQQueue
),
1419 VMSTATE_END_OF_LIST()
1423 static const VMStateDescription vmstate_openpic_irqdest
= {
1424 .name
= "openpic_irqdest",
1426 .minimum_version_id
= 0,
1427 .fields
= (VMStateField
[]) {
1428 VMSTATE_INT32(ctpr
, IRQDest
),
1429 VMSTATE_STRUCT(raised
, IRQDest
, 0, vmstate_openpic_irq_queue
,
1431 VMSTATE_STRUCT(servicing
, IRQDest
, 0, vmstate_openpic_irq_queue
,
1433 VMSTATE_UINT32_ARRAY(outputs_active
, IRQDest
, OPENPIC_OUTPUT_NB
),
1434 VMSTATE_END_OF_LIST()
1438 static const VMStateDescription vmstate_openpic_irqsource
= {
1439 .name
= "openpic_irqsource",
1441 .minimum_version_id
= 0,
1442 .fields
= (VMStateField
[]) {
1443 VMSTATE_UINT32(ivpr
, IRQSource
),
1444 VMSTATE_UINT32(idr
, IRQSource
),
1445 VMSTATE_UINT32(destmask
, IRQSource
),
1446 VMSTATE_INT32(last_cpu
, IRQSource
),
1447 VMSTATE_INT32(pending
, IRQSource
),
1448 VMSTATE_END_OF_LIST()
1452 static const VMStateDescription vmstate_openpic_timer
= {
1453 .name
= "openpic_timer",
1455 .minimum_version_id
= 0,
1456 .fields
= (VMStateField
[]) {
1457 VMSTATE_UINT32(tccr
, OpenPICTimer
),
1458 VMSTATE_UINT32(tbcr
, OpenPICTimer
),
1459 VMSTATE_END_OF_LIST()
1463 static const VMStateDescription vmstate_openpic_msi
= {
1464 .name
= "openpic_msi",
1466 .minimum_version_id
= 0,
1467 .fields
= (VMStateField
[]) {
1468 VMSTATE_UINT32(msir
, OpenPICMSI
),
1469 VMSTATE_END_OF_LIST()
1473 static int openpic_post_load(void *opaque
, int version_id
)
1475 OpenPICState
*opp
= (OpenPICState
*)opaque
;
1478 /* Update internal ivpr and idr variables */
1479 for (i
= 0; i
< opp
->max_irq
; i
++) {
1480 write_IRQreg_idr(opp
, i
, opp
->src
[i
].idr
);
1481 write_IRQreg_ivpr(opp
, i
, opp
->src
[i
].ivpr
);
1487 static const VMStateDescription vmstate_openpic
= {
1490 .minimum_version_id
= 3,
1491 .post_load
= openpic_post_load
,
1492 .fields
= (VMStateField
[]) {
1493 VMSTATE_UINT32(gcr
, OpenPICState
),
1494 VMSTATE_UINT32(vir
, OpenPICState
),
1495 VMSTATE_UINT32(pir
, OpenPICState
),
1496 VMSTATE_UINT32(spve
, OpenPICState
),
1497 VMSTATE_UINT32(tfrr
, OpenPICState
),
1498 VMSTATE_UINT32(max_irq
, OpenPICState
),
1499 VMSTATE_STRUCT_VARRAY_UINT32(src
, OpenPICState
, max_irq
, 0,
1500 vmstate_openpic_irqsource
, IRQSource
),
1501 VMSTATE_UINT32_EQUAL(nb_cpus
, OpenPICState
),
1502 VMSTATE_STRUCT_VARRAY_UINT32(dst
, OpenPICState
, nb_cpus
, 0,
1503 vmstate_openpic_irqdest
, IRQDest
),
1504 VMSTATE_STRUCT_ARRAY(timers
, OpenPICState
, OPENPIC_MAX_TMR
, 0,
1505 vmstate_openpic_timer
, OpenPICTimer
),
1506 VMSTATE_STRUCT_ARRAY(msi
, OpenPICState
, MAX_MSI
, 0,
1507 vmstate_openpic_msi
, OpenPICMSI
),
1508 VMSTATE_UINT32(irq_ipi0
, OpenPICState
),
1509 VMSTATE_UINT32(irq_tim0
, OpenPICState
),
1510 VMSTATE_UINT32(irq_msi
, OpenPICState
),
1511 VMSTATE_END_OF_LIST()
1515 static void openpic_init(Object
*obj
)
1517 OpenPICState
*opp
= OPENPIC(obj
);
1519 memory_region_init(&opp
->mem
, obj
, "openpic", 0x40000);
1522 static void openpic_realize(DeviceState
*dev
, Error
**errp
)
1524 SysBusDevice
*d
= SYS_BUS_DEVICE(dev
);
1525 OpenPICState
*opp
= OPENPIC(dev
);
1528 static const MemReg list_le
[] = {
1529 {"glb", &openpic_glb_ops_le
,
1530 OPENPIC_GLB_REG_START
, OPENPIC_GLB_REG_SIZE
},
1531 {"tmr", &openpic_tmr_ops_le
,
1532 OPENPIC_TMR_REG_START
, OPENPIC_TMR_REG_SIZE
},
1533 {"src", &openpic_src_ops_le
,
1534 OPENPIC_SRC_REG_START
, OPENPIC_SRC_REG_SIZE
},
1535 {"cpu", &openpic_cpu_ops_le
,
1536 OPENPIC_CPU_REG_START
, OPENPIC_CPU_REG_SIZE
},
1539 static const MemReg list_be
[] = {
1540 {"glb", &openpic_glb_ops_be
,
1541 OPENPIC_GLB_REG_START
, OPENPIC_GLB_REG_SIZE
},
1542 {"tmr", &openpic_tmr_ops_be
,
1543 OPENPIC_TMR_REG_START
, OPENPIC_TMR_REG_SIZE
},
1544 {"src", &openpic_src_ops_be
,
1545 OPENPIC_SRC_REG_START
, OPENPIC_SRC_REG_SIZE
},
1546 {"cpu", &openpic_cpu_ops_be
,
1547 OPENPIC_CPU_REG_START
, OPENPIC_CPU_REG_SIZE
},
1550 static const MemReg list_fsl
[] = {
1551 {"msi", &openpic_msi_ops_be
,
1552 OPENPIC_MSI_REG_START
, OPENPIC_MSI_REG_SIZE
},
1553 {"summary", &openpic_summary_ops_be
,
1554 OPENPIC_SUMMARY_REG_START
, OPENPIC_SUMMARY_REG_SIZE
},
1558 if (opp
->nb_cpus
> MAX_CPU
) {
1559 error_setg(errp
, QERR_PROPERTY_VALUE_OUT_OF_RANGE
,
1560 TYPE_OPENPIC
, "nb_cpus", (uint64_t)opp
->nb_cpus
,
1561 (uint64_t)0, (uint64_t)MAX_CPU
);
1565 switch (opp
->model
) {
1566 case OPENPIC_MODEL_FSL_MPIC_20
:
1568 opp
->fsl
= &fsl_mpic_20
;
1569 opp
->brr1
= 0x00400200;
1570 opp
->flags
|= OPENPIC_FLAG_IDR_CRIT
;
1572 opp
->mpic_mode_mask
= GCR_MODE_MIXED
;
1574 fsl_common_init(opp
);
1575 map_list(opp
, list_be
, &list_count
);
1576 map_list(opp
, list_fsl
, &list_count
);
1580 case OPENPIC_MODEL_FSL_MPIC_42
:
1581 opp
->fsl
= &fsl_mpic_42
;
1582 opp
->brr1
= 0x00400402;
1583 opp
->flags
|= OPENPIC_FLAG_ILR
;
1585 opp
->mpic_mode_mask
= GCR_MODE_PROXY
;
1587 fsl_common_init(opp
);
1588 map_list(opp
, list_be
, &list_count
);
1589 map_list(opp
, list_fsl
, &list_count
);
1593 case OPENPIC_MODEL_RAVEN
:
1594 opp
->nb_irqs
= RAVEN_MAX_EXT
;
1595 opp
->vid
= VID_REVISION_1_3
;
1596 opp
->vir
= VIR_GENERIC
;
1597 opp
->vector_mask
= 0xFF;
1598 opp
->tfrr_reset
= 4160000;
1599 opp
->ivpr_reset
= IVPR_MASK_MASK
| IVPR_MODE_MASK
;
1601 opp
->max_irq
= RAVEN_MAX_IRQ
;
1602 opp
->irq_ipi0
= RAVEN_IPI_IRQ
;
1603 opp
->irq_tim0
= RAVEN_TMR_IRQ
;
1605 opp
->mpic_mode_mask
= GCR_MODE_MIXED
;
1607 if (opp
->nb_cpus
!= 1) {
1608 error_setg(errp
, "Only UP supported today");
1612 map_list(opp
, list_le
, &list_count
);
1616 for (i
= 0; i
< opp
->nb_cpus
; i
++) {
1617 opp
->dst
[i
].irqs
= g_new0(qemu_irq
, OPENPIC_OUTPUT_NB
);
1618 for (j
= 0; j
< OPENPIC_OUTPUT_NB
; j
++) {
1619 sysbus_init_irq(d
, &opp
->dst
[i
].irqs
[j
]);
1622 opp
->dst
[i
].raised
.queue_size
= IRQQUEUE_SIZE_BITS
;
1623 opp
->dst
[i
].raised
.queue
= bitmap_new(IRQQUEUE_SIZE_BITS
);
1624 opp
->dst
[i
].servicing
.queue_size
= IRQQUEUE_SIZE_BITS
;
1625 opp
->dst
[i
].servicing
.queue
= bitmap_new(IRQQUEUE_SIZE_BITS
);
1628 sysbus_init_mmio(d
, &opp
->mem
);
1629 qdev_init_gpio_in(dev
, openpic_set_irq
, opp
->max_irq
);
1632 static Property openpic_properties
[] = {
1633 DEFINE_PROP_UINT32("model", OpenPICState
, model
, OPENPIC_MODEL_FSL_MPIC_20
),
1634 DEFINE_PROP_UINT32("nb_cpus", OpenPICState
, nb_cpus
, 1),
1635 DEFINE_PROP_END_OF_LIST(),
1638 static void openpic_class_init(ObjectClass
*oc
, void *data
)
1640 DeviceClass
*dc
= DEVICE_CLASS(oc
);
1642 dc
->realize
= openpic_realize
;
1643 dc
->props
= openpic_properties
;
1644 dc
->reset
= openpic_reset
;
1645 dc
->vmsd
= &vmstate_openpic
;
1648 static const TypeInfo openpic_info
= {
1649 .name
= TYPE_OPENPIC
,
1650 .parent
= TYPE_SYS_BUS_DEVICE
,
1651 .instance_size
= sizeof(OpenPICState
),
1652 .instance_init
= openpic_init
,
1653 .class_init
= openpic_class_init
,
1656 static void openpic_register_types(void)
1658 type_register_static(&openpic_info
);
1661 type_init(openpic_register_types
)