1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Loongson 3A5000 ext interrupt controller emulation
5 * Copyright (C) 2021 Loongson Technology Corporation Limited
8 #include "qemu/osdep.h"
9 #include "qemu/module.h"
11 #include "qapi/error.h"
13 #include "hw/sysbus.h"
14 #include "hw/loongarch/virt.h"
15 #include "hw/qdev-properties.h"
16 #include "exec/address-spaces.h"
17 #include "hw/intc/loongarch_extioi.h"
18 #include "migration/vmstate.h"
22 static void extioi_update_irq(LoongArchExtIOI
*s
, int irq
, int level
)
24 int ipnum
, cpu
, found
, irq_index
, irq_mask
;
26 ipnum
= s
->sw_ipmap
[irq
/ 32];
27 cpu
= s
->sw_coremap
[irq
];
29 irq_mask
= 1 << (irq
& 0x1f);
32 /* if not enable return false */
33 if (((s
->enable
[irq_index
]) & irq_mask
) == 0) {
36 s
->cpu
[cpu
].coreisr
[irq_index
] |= irq_mask
;
37 found
= find_first_bit(s
->cpu
[cpu
].sw_isr
[ipnum
], EXTIOI_IRQS
);
38 set_bit(irq
, s
->cpu
[cpu
].sw_isr
[ipnum
]);
39 if (found
< EXTIOI_IRQS
) {
40 /* other irq is handling, need not update parent irq level */
44 s
->cpu
[cpu
].coreisr
[irq_index
] &= ~irq_mask
;
45 clear_bit(irq
, s
->cpu
[cpu
].sw_isr
[ipnum
]);
46 found
= find_first_bit(s
->cpu
[cpu
].sw_isr
[ipnum
], EXTIOI_IRQS
);
47 if (found
< EXTIOI_IRQS
) {
48 /* other irq is handling, need not update parent irq level */
52 qemu_set_irq(s
->cpu
[cpu
].parent_irq
[ipnum
], level
);
55 static void extioi_setirq(void *opaque
, int irq
, int level
)
57 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(opaque
);
58 trace_loongarch_extioi_setirq(irq
, level
);
61 * s->isr should be used in vmstate structure,
62 * but it not support 'unsigned long',
63 * so we have to switch it.
65 set_bit(irq
, (unsigned long *)s
->isr
);
67 clear_bit(irq
, (unsigned long *)s
->isr
);
69 extioi_update_irq(s
, irq
, level
);
72 static MemTxResult
extioi_readw(void *opaque
, hwaddr addr
, uint64_t *data
,
73 unsigned size
, MemTxAttrs attrs
)
75 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(opaque
);
76 unsigned long offset
= addr
& 0xffff;
80 case EXTIOI_NODETYPE_START
... EXTIOI_NODETYPE_END
- 1:
81 index
= (offset
- EXTIOI_NODETYPE_START
) >> 2;
82 *data
= s
->nodetype
[index
];
84 case EXTIOI_IPMAP_START
... EXTIOI_IPMAP_END
- 1:
85 index
= (offset
- EXTIOI_IPMAP_START
) >> 2;
86 *data
= s
->ipmap
[index
];
88 case EXTIOI_ENABLE_START
... EXTIOI_ENABLE_END
- 1:
89 index
= (offset
- EXTIOI_ENABLE_START
) >> 2;
90 *data
= s
->enable
[index
];
92 case EXTIOI_BOUNCE_START
... EXTIOI_BOUNCE_END
- 1:
93 index
= (offset
- EXTIOI_BOUNCE_START
) >> 2;
94 *data
= s
->bounce
[index
];
96 case EXTIOI_COREISR_START
... EXTIOI_COREISR_END
- 1:
97 index
= (offset
- EXTIOI_COREISR_START
) >> 2;
98 /* using attrs to get current cpu index */
99 cpu
= attrs
.requester_id
;
100 *data
= s
->cpu
[cpu
].coreisr
[index
];
102 case EXTIOI_COREMAP_START
... EXTIOI_COREMAP_END
- 1:
103 index
= (offset
- EXTIOI_COREMAP_START
) >> 2;
104 *data
= s
->coremap
[index
];
110 trace_loongarch_extioi_readw(addr
, *data
);
114 static inline void extioi_enable_irq(LoongArchExtIOI
*s
, int index
,\
115 uint32_t mask
, int level
)
120 val
= mask
& s
->isr
[index
];
124 * enable bit change from 0 to 1,
125 * need to update irq by pending bits
127 extioi_update_irq(s
, irq
+ index
* 32, level
);
133 static inline void extioi_update_sw_coremap(LoongArchExtIOI
*s
, int irq
,
134 uint64_t val
, bool notify
)
139 * loongarch only support little endian,
140 * so we paresd the value with little endian.
142 val
= cpu_to_le64(val
);
144 for (i
= 0; i
< 4; i
++) {
147 cpu
= (cpu
>= 4) ? 0 : cpu
;
150 if (s
->sw_coremap
[irq
+ i
] == cpu
) {
154 if (notify
&& test_bit(irq
, (unsigned long *)s
->isr
)) {
156 * lower irq at old cpu and raise irq at new cpu
158 extioi_update_irq(s
, irq
+ i
, 0);
159 s
->sw_coremap
[irq
+ i
] = cpu
;
160 extioi_update_irq(s
, irq
+ i
, 1);
162 s
->sw_coremap
[irq
+ i
] = cpu
;
167 static inline void extioi_update_sw_ipmap(LoongArchExtIOI
*s
, int index
,
174 * loongarch only support little endian,
175 * so we paresd the value with little endian.
177 val
= cpu_to_le64(val
);
178 for (i
= 0; i
< 4; i
++) {
180 ipnum
= ctz32(ipnum
);
181 ipnum
= (ipnum
>= 4) ? 0 : ipnum
;
182 s
->sw_ipmap
[index
* 4 + i
] = ipnum
;
187 static MemTxResult
extioi_writew(void *opaque
, hwaddr addr
,
188 uint64_t val
, unsigned size
,
191 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(opaque
);
192 int cpu
, index
, old_data
, irq
;
195 trace_loongarch_extioi_writew(addr
, val
);
196 offset
= addr
& 0xffff;
199 case EXTIOI_NODETYPE_START
... EXTIOI_NODETYPE_END
- 1:
200 index
= (offset
- EXTIOI_NODETYPE_START
) >> 2;
201 s
->nodetype
[index
] = val
;
203 case EXTIOI_IPMAP_START
... EXTIOI_IPMAP_END
- 1:
205 * ipmap cannot be set at runtime, can be set only at the beginning
206 * of intr driver, need not update upper irq level
208 index
= (offset
- EXTIOI_IPMAP_START
) >> 2;
209 s
->ipmap
[index
] = val
;
210 extioi_update_sw_ipmap(s
, index
, val
);
212 case EXTIOI_ENABLE_START
... EXTIOI_ENABLE_END
- 1:
213 index
= (offset
- EXTIOI_ENABLE_START
) >> 2;
214 old_data
= s
->enable
[index
];
215 s
->enable
[index
] = val
;
218 val
= s
->enable
[index
] & ~old_data
;
219 extioi_enable_irq(s
, index
, val
, 1);
222 val
= ~s
->enable
[index
] & old_data
;
223 extioi_enable_irq(s
, index
, val
, 0);
225 case EXTIOI_BOUNCE_START
... EXTIOI_BOUNCE_END
- 1:
226 /* do not emulate hw bounced irq routing */
227 index
= (offset
- EXTIOI_BOUNCE_START
) >> 2;
228 s
->bounce
[index
] = val
;
230 case EXTIOI_COREISR_START
... EXTIOI_COREISR_END
- 1:
231 index
= (offset
- EXTIOI_COREISR_START
) >> 2;
232 /* using attrs to get current cpu index */
233 cpu
= attrs
.requester_id
;
234 old_data
= s
->cpu
[cpu
].coreisr
[index
];
235 s
->cpu
[cpu
].coreisr
[index
] = old_data
& ~val
;
236 /* write 1 to clear interrupt */
238 irq
= ctz32(old_data
);
240 extioi_update_irq(s
, irq
+ index
* 32, 0);
241 old_data
&= ~(1 << irq
);
242 irq
= ctz32(old_data
);
245 case EXTIOI_COREMAP_START
... EXTIOI_COREMAP_END
- 1:
246 irq
= offset
- EXTIOI_COREMAP_START
;
248 s
->coremap
[index
] = val
;
250 extioi_update_sw_coremap(s
, irq
, val
, true);
258 static const MemoryRegionOps extioi_ops
= {
259 .read_with_attrs
= extioi_readw
,
260 .write_with_attrs
= extioi_writew
,
261 .impl
.min_access_size
= 4,
262 .impl
.max_access_size
= 4,
263 .valid
.min_access_size
= 4,
264 .valid
.max_access_size
= 8,
265 .endianness
= DEVICE_LITTLE_ENDIAN
,
268 static void loongarch_extioi_realize(DeviceState
*dev
, Error
**errp
)
270 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(dev
);
271 SysBusDevice
*sbd
= SYS_BUS_DEVICE(dev
);
274 if (s
->num_cpu
== 0) {
275 error_setg(errp
, "num-cpu must be at least 1");
279 for (i
= 0; i
< EXTIOI_IRQS
; i
++) {
280 sysbus_init_irq(sbd
, &s
->irq
[i
]);
283 qdev_init_gpio_in(dev
, extioi_setirq
, EXTIOI_IRQS
);
284 memory_region_init_io(&s
->extioi_system_mem
, OBJECT(s
), &extioi_ops
,
285 s
, "extioi_system_mem", 0x900);
286 sysbus_init_mmio(sbd
, &s
->extioi_system_mem
);
287 s
->cpu
= g_new0(ExtIOICore
, s
->num_cpu
);
288 if (s
->cpu
== NULL
) {
289 error_setg(errp
, "Memory allocation for ExtIOICore faile");
293 for (i
= 0; i
< s
->num_cpu
; i
++) {
294 for (pin
= 0; pin
< LS3A_INTC_IP
; pin
++) {
295 qdev_init_gpio_out(dev
, &s
->cpu
[i
].parent_irq
[pin
], 1);
300 static void loongarch_extioi_finalize(Object
*obj
)
302 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(obj
);
307 static int vmstate_extioi_post_load(void *opaque
, int version_id
)
309 LoongArchExtIOI
*s
= LOONGARCH_EXTIOI(opaque
);
312 for (i
= 0; i
< (EXTIOI_IRQS
/ 4); i
++) {
314 extioi_update_sw_coremap(s
, start_irq
, s
->coremap
[i
], false);
317 for (i
= 0; i
< (EXTIOI_IRQS_IPMAP_SIZE
/ 4); i
++) {
318 extioi_update_sw_ipmap(s
, i
, s
->ipmap
[i
]);
324 static const VMStateDescription vmstate_extioi_core
= {
325 .name
= "extioi-core",
327 .minimum_version_id
= 1,
328 .fields
= (const VMStateField
[]) {
329 VMSTATE_UINT32_ARRAY(coreisr
, ExtIOICore
, EXTIOI_IRQS_GROUP_COUNT
),
330 VMSTATE_END_OF_LIST()
334 static const VMStateDescription vmstate_loongarch_extioi
= {
335 .name
= TYPE_LOONGARCH_EXTIOI
,
337 .minimum_version_id
= 2,
338 .post_load
= vmstate_extioi_post_load
,
339 .fields
= (const VMStateField
[]) {
340 VMSTATE_UINT32_ARRAY(bounce
, LoongArchExtIOI
, EXTIOI_IRQS_GROUP_COUNT
),
341 VMSTATE_UINT32_ARRAY(nodetype
, LoongArchExtIOI
,
342 EXTIOI_IRQS_NODETYPE_COUNT
/ 2),
343 VMSTATE_UINT32_ARRAY(enable
, LoongArchExtIOI
, EXTIOI_IRQS
/ 32),
344 VMSTATE_UINT32_ARRAY(isr
, LoongArchExtIOI
, EXTIOI_IRQS
/ 32),
345 VMSTATE_UINT32_ARRAY(ipmap
, LoongArchExtIOI
, EXTIOI_IRQS_IPMAP_SIZE
/ 4),
346 VMSTATE_UINT32_ARRAY(coremap
, LoongArchExtIOI
, EXTIOI_IRQS
/ 4),
348 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(cpu
, LoongArchExtIOI
, num_cpu
,
349 vmstate_extioi_core
, ExtIOICore
),
350 VMSTATE_END_OF_LIST()
354 static Property extioi_properties
[] = {
355 DEFINE_PROP_UINT32("num-cpu", LoongArchExtIOI
, num_cpu
, 1),
356 DEFINE_PROP_END_OF_LIST(),
359 static void loongarch_extioi_class_init(ObjectClass
*klass
, void *data
)
361 DeviceClass
*dc
= DEVICE_CLASS(klass
);
363 dc
->realize
= loongarch_extioi_realize
;
364 device_class_set_props(dc
, extioi_properties
);
365 dc
->vmsd
= &vmstate_loongarch_extioi
;
368 static const TypeInfo loongarch_extioi_info
= {
369 .name
= TYPE_LOONGARCH_EXTIOI
,
370 .parent
= TYPE_SYS_BUS_DEVICE
,
371 .instance_size
= sizeof(struct LoongArchExtIOI
),
372 .class_init
= loongarch_extioi_class_init
,
373 .instance_finalize
= loongarch_extioi_finalize
,
376 static void loongarch_extioi_register_types(void)
378 type_register_static(&loongarch_extioi_info
);
381 type_init(loongarch_extioi_register_types
)