2 * QEMU PowerPC XIVE interrupt controller model
4 * Copyright (c) 2017-2018, IBM Corporation.
6 * This code is licensed under the GPL version 2 or later. See the
7 * COPYING file in the top-level directory.
10 #include "qemu/osdep.h"
12 #include "qapi/error.h"
13 #include "target/ppc/cpu.h"
14 #include "sysemu/cpus.h"
15 #include "sysemu/dma.h"
16 #include "hw/qdev-properties.h"
17 #include "monitor/monitor.h"
18 #include "hw/ppc/xive.h"
19 #include "hw/ppc/xive_regs.h"
22 * XIVE Thread Interrupt Management context
26 * Convert a priority number to an Interrupt Pending Buffer (IPB)
27 * register, which indicates a pending interrupt at the priority
28 * corresponding to the bit number
30 static uint8_t priority_to_ipb(uint8_t priority
)
32 return priority
> XIVE_PRIORITY_MAX
?
33 0 : 1 << (XIVE_PRIORITY_MAX
- priority
);
37 * Convert an Interrupt Pending Buffer (IPB) register to a Pending
38 * Interrupt Priority Register (PIPR), which contains the priority of
39 * the most favored pending notification.
41 static uint8_t ipb_to_pipr(uint8_t ibp
)
43 return ibp
? clz32((uint32_t)ibp
<< 24) : 0xff;
46 static void ipb_update(uint8_t *regs
, uint8_t priority
)
48 regs
[TM_IPB
] |= priority_to_ipb(priority
);
49 regs
[TM_PIPR
] = ipb_to_pipr(regs
[TM_IPB
]);
52 static uint8_t exception_mask(uint8_t ring
)
58 g_assert_not_reached();
62 static uint64_t xive_tctx_accept(XiveTCTX
*tctx
, uint8_t ring
)
64 uint8_t *regs
= &tctx
->regs
[ring
];
65 uint8_t nsr
= regs
[TM_NSR
];
66 uint8_t mask
= exception_mask(ring
);
68 qemu_irq_lower(tctx
->output
);
70 if (regs
[TM_NSR
] & mask
) {
71 uint8_t cppr
= regs
[TM_PIPR
];
75 /* Reset the pending buffer bit */
76 regs
[TM_IPB
] &= ~priority_to_ipb(cppr
);
77 regs
[TM_PIPR
] = ipb_to_pipr(regs
[TM_IPB
]);
79 /* Drop Exception bit */
80 regs
[TM_NSR
] &= ~mask
;
83 return (nsr
<< 8) | regs
[TM_CPPR
];
86 static void xive_tctx_notify(XiveTCTX
*tctx
, uint8_t ring
)
88 uint8_t *regs
= &tctx
->regs
[ring
];
90 if (regs
[TM_PIPR
] < regs
[TM_CPPR
]) {
91 regs
[TM_NSR
] |= exception_mask(ring
);
92 qemu_irq_raise(tctx
->output
);
96 static void xive_tctx_set_cppr(XiveTCTX
*tctx
, uint8_t ring
, uint8_t cppr
)
98 if (cppr
> XIVE_PRIORITY_MAX
) {
102 tctx
->regs
[ring
+ TM_CPPR
] = cppr
;
104 /* CPPR has changed, check if we need to raise a pending exception */
105 xive_tctx_notify(tctx
, ring
);
109 * XIVE Thread Interrupt Management Area (TIMA)
113 * Define an access map for each page of the TIMA that we will use in
114 * the memory region ops to filter values when doing loads and stores
115 * of raw registers values
117 * Registers accessibility bits :
125 static const uint8_t xive_tm_hw_view
[] = {
126 /* QW-0 User */ 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0,
127 /* QW-1 OS */ 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0,
128 /* QW-2 POOL */ 0, 0, 3, 3, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0,
129 /* QW-3 PHYS */ 3, 3, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3, 3, 3, 3, 0,
132 static const uint8_t xive_tm_hv_view
[] = {
133 /* QW-0 User */ 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0,
134 /* QW-1 OS */ 3, 3, 3, 3, 3, 3, 0, 3, 3, 3, 3, 3, 0, 0, 0, 0,
135 /* QW-2 POOL */ 0, 0, 3, 3, 0, 0, 0, 0, 0, 3, 3, 3, 0, 0, 0, 0,
136 /* QW-3 PHYS */ 3, 3, 3, 3, 0, 3, 0, 3, 3, 0, 0, 3, 0, 0, 0, 0,
139 static const uint8_t xive_tm_os_view
[] = {
140 /* QW-0 User */ 3, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 0, 0, 0, 0,
141 /* QW-1 OS */ 2, 3, 2, 2, 2, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0,
142 /* QW-2 POOL */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
143 /* QW-3 PHYS */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
146 static const uint8_t xive_tm_user_view
[] = {
147 /* QW-0 User */ 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
148 /* QW-1 OS */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
149 /* QW-2 POOL */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
150 /* QW-3 PHYS */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
154 * Overall TIMA access map for the thread interrupt management context
157 static const uint8_t *xive_tm_views
[] = {
158 [XIVE_TM_HW_PAGE
] = xive_tm_hw_view
,
159 [XIVE_TM_HV_PAGE
] = xive_tm_hv_view
,
160 [XIVE_TM_OS_PAGE
] = xive_tm_os_view
,
161 [XIVE_TM_USER_PAGE
] = xive_tm_user_view
,
165 * Computes a register access mask for a given offset in the TIMA
167 static uint64_t xive_tm_mask(hwaddr offset
, unsigned size
, bool write
)
169 uint8_t page_offset
= (offset
>> TM_SHIFT
) & 0x3;
170 uint8_t reg_offset
= offset
& 0x3F;
171 uint8_t reg_mask
= write
? 0x1 : 0x2;
175 for (i
= 0; i
< size
; i
++) {
176 if (xive_tm_views
[page_offset
][reg_offset
+ i
] & reg_mask
) {
177 mask
|= (uint64_t) 0xff << (8 * (size
- i
- 1));
184 static void xive_tm_raw_write(XiveTCTX
*tctx
, hwaddr offset
, uint64_t value
,
187 uint8_t ring_offset
= offset
& 0x30;
188 uint8_t reg_offset
= offset
& 0x3F;
189 uint64_t mask
= xive_tm_mask(offset
, size
, true);
193 * Only 4 or 8 bytes stores are allowed and the User ring is
196 if (size
< 4 || !mask
|| ring_offset
== TM_QW0_USER
) {
197 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid write access at TIMA @%"
198 HWADDR_PRIx
"\n", offset
);
203 * Use the register offset for the raw values and filter out
206 for (i
= 0; i
< size
; i
++) {
207 uint8_t byte_mask
= (mask
>> (8 * (size
- i
- 1)));
209 tctx
->regs
[reg_offset
+ i
] = (value
>> (8 * (size
- i
- 1))) &
215 static uint64_t xive_tm_raw_read(XiveTCTX
*tctx
, hwaddr offset
, unsigned size
)
217 uint8_t ring_offset
= offset
& 0x30;
218 uint8_t reg_offset
= offset
& 0x3F;
219 uint64_t mask
= xive_tm_mask(offset
, size
, false);
224 * Only 4 or 8 bytes loads are allowed and the User ring is
227 if (size
< 4 || !mask
|| ring_offset
== TM_QW0_USER
) {
228 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid read access at TIMA @%"
229 HWADDR_PRIx
"\n", offset
);
233 /* Use the register offset for the raw values */
235 for (i
= 0; i
< size
; i
++) {
236 ret
|= (uint64_t) tctx
->regs
[reg_offset
+ i
] << (8 * (size
- i
- 1));
239 /* filter out reserved values */
244 * The TM context is mapped twice within each page. Stores and loads
245 * to the first mapping below 2K write and read the specified values
246 * without modification. The second mapping above 2K performs specific
247 * state changes (side effects) in addition to setting/returning the
248 * interrupt management area context of the processor thread.
250 static uint64_t xive_tm_ack_os_reg(XiveTCTX
*tctx
, hwaddr offset
, unsigned size
)
252 return xive_tctx_accept(tctx
, TM_QW1_OS
);
255 static void xive_tm_set_os_cppr(XiveTCTX
*tctx
, hwaddr offset
,
256 uint64_t value
, unsigned size
)
258 xive_tctx_set_cppr(tctx
, TM_QW1_OS
, value
& 0xff);
262 * Adjust the IPB to allow a CPU to process event queues of other
263 * priorities during one physical interrupt cycle.
265 static void xive_tm_set_os_pending(XiveTCTX
*tctx
, hwaddr offset
,
266 uint64_t value
, unsigned size
)
268 ipb_update(&tctx
->regs
[TM_QW1_OS
], value
& 0xff);
269 xive_tctx_notify(tctx
, TM_QW1_OS
);
273 * Define a mapping of "special" operations depending on the TIMA page
274 * offset and the size of the operation.
276 typedef struct XiveTmOp
{
280 void (*write_handler
)(XiveTCTX
*tctx
, hwaddr offset
, uint64_t value
,
282 uint64_t (*read_handler
)(XiveTCTX
*tctx
, hwaddr offset
, unsigned size
);
285 static const XiveTmOp xive_tm_operations
[] = {
287 * MMIOs below 2K : raw values and special operations without side
290 { XIVE_TM_OS_PAGE
, TM_QW1_OS
+ TM_CPPR
, 1, xive_tm_set_os_cppr
, NULL
},
292 /* MMIOs above 2K : special operations with side effects */
293 { XIVE_TM_OS_PAGE
, TM_SPC_ACK_OS_REG
, 2, NULL
, xive_tm_ack_os_reg
},
294 { XIVE_TM_OS_PAGE
, TM_SPC_SET_OS_PENDING
, 1, xive_tm_set_os_pending
, NULL
},
297 static const XiveTmOp
*xive_tm_find_op(hwaddr offset
, unsigned size
, bool write
)
299 uint8_t page_offset
= (offset
>> TM_SHIFT
) & 0x3;
300 uint32_t op_offset
= offset
& 0xFFF;
303 for (i
= 0; i
< ARRAY_SIZE(xive_tm_operations
); i
++) {
304 const XiveTmOp
*xto
= &xive_tm_operations
[i
];
306 /* Accesses done from a more privileged TIMA page is allowed */
307 if (xto
->page_offset
>= page_offset
&&
308 xto
->op_offset
== op_offset
&&
310 ((write
&& xto
->write_handler
) || (!write
&& xto
->read_handler
))) {
320 static void xive_tm_write(void *opaque
, hwaddr offset
,
321 uint64_t value
, unsigned size
)
323 PowerPCCPU
*cpu
= POWERPC_CPU(current_cpu
);
324 XiveTCTX
*tctx
= cpu
->tctx
;
328 * TODO: check V bit in Q[0-3]W2, check PTER bit associated with CPU
332 * First, check for special operations in the 2K region
334 if (offset
& 0x800) {
335 xto
= xive_tm_find_op(offset
, size
, true);
337 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid write access at TIMA"
338 "@%"HWADDR_PRIx
"\n", offset
);
340 xto
->write_handler(tctx
, offset
, value
, size
);
346 * Then, for special operations in the region below 2K.
348 xto
= xive_tm_find_op(offset
, size
, true);
350 xto
->write_handler(tctx
, offset
, value
, size
);
355 * Finish with raw access to the register values
357 xive_tm_raw_write(tctx
, offset
, value
, size
);
360 static uint64_t xive_tm_read(void *opaque
, hwaddr offset
, unsigned size
)
362 PowerPCCPU
*cpu
= POWERPC_CPU(current_cpu
);
363 XiveTCTX
*tctx
= cpu
->tctx
;
367 * TODO: check V bit in Q[0-3]W2, check PTER bit associated with CPU
371 * First, check for special operations in the 2K region
373 if (offset
& 0x800) {
374 xto
= xive_tm_find_op(offset
, size
, false);
376 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid read access to TIMA"
377 "@%"HWADDR_PRIx
"\n", offset
);
380 return xto
->read_handler(tctx
, offset
, size
);
384 * Then, for special operations in the region below 2K.
386 xto
= xive_tm_find_op(offset
, size
, false);
388 return xto
->read_handler(tctx
, offset
, size
);
392 * Finish with raw access to the register values
394 return xive_tm_raw_read(tctx
, offset
, size
);
397 const MemoryRegionOps xive_tm_ops
= {
398 .read
= xive_tm_read
,
399 .write
= xive_tm_write
,
400 .endianness
= DEVICE_BIG_ENDIAN
,
402 .min_access_size
= 1,
403 .max_access_size
= 8,
406 .min_access_size
= 1,
407 .max_access_size
= 8,
411 static inline uint32_t xive_tctx_word2(uint8_t *ring
)
413 return *((uint32_t *) &ring
[TM_WORD2
]);
416 static char *xive_tctx_ring_print(uint8_t *ring
)
418 uint32_t w2
= xive_tctx_word2(ring
);
420 return g_strdup_printf("%02x %02x %02x %02x %02x "
421 "%02x %02x %02x %08x",
422 ring
[TM_NSR
], ring
[TM_CPPR
], ring
[TM_IPB
], ring
[TM_LSMFB
],
423 ring
[TM_ACK_CNT
], ring
[TM_INC
], ring
[TM_AGE
], ring
[TM_PIPR
],
427 static const char * const xive_tctx_ring_names
[] = {
428 "USER", "OS", "POOL", "PHYS",
431 void xive_tctx_pic_print_info(XiveTCTX
*tctx
, Monitor
*mon
)
433 int cpu_index
= tctx
->cs
? tctx
->cs
->cpu_index
: -1;
436 monitor_printf(mon
, "CPU[%04x]: QW NSR CPPR IPB LSMFB ACK# INC AGE PIPR"
439 for (i
= 0; i
< XIVE_TM_RING_COUNT
; i
++) {
440 char *s
= xive_tctx_ring_print(&tctx
->regs
[i
* XIVE_TM_RING_SIZE
]);
441 monitor_printf(mon
, "CPU[%04x]: %4s %s\n", cpu_index
,
442 xive_tctx_ring_names
[i
], s
);
447 static void xive_tctx_reset(void *dev
)
449 XiveTCTX
*tctx
= XIVE_TCTX(dev
);
451 memset(tctx
->regs
, 0, sizeof(tctx
->regs
));
453 /* Set some defaults */
454 tctx
->regs
[TM_QW1_OS
+ TM_LSMFB
] = 0xFF;
455 tctx
->regs
[TM_QW1_OS
+ TM_ACK_CNT
] = 0xFF;
456 tctx
->regs
[TM_QW1_OS
+ TM_AGE
] = 0xFF;
459 * Initialize PIPR to 0xFF to avoid phantom interrupts when the
462 tctx
->regs
[TM_QW1_OS
+ TM_PIPR
] =
463 ipb_to_pipr(tctx
->regs
[TM_QW1_OS
+ TM_IPB
]);
466 static void xive_tctx_realize(DeviceState
*dev
, Error
**errp
)
468 XiveTCTX
*tctx
= XIVE_TCTX(dev
);
472 Error
*local_err
= NULL
;
474 obj
= object_property_get_link(OBJECT(dev
), "cpu", &local_err
);
476 error_propagate(errp
, local_err
);
477 error_prepend(errp
, "required link 'cpu' not found: ");
481 cpu
= POWERPC_CPU(obj
);
485 switch (PPC_INPUT(env
)) {
486 case PPC_FLAGS_INPUT_POWER7
:
487 tctx
->output
= env
->irq_inputs
[POWER7_INPUT_INT
];
491 error_setg(errp
, "XIVE interrupt controller does not support "
492 "this CPU bus model");
496 qemu_register_reset(xive_tctx_reset
, dev
);
499 static void xive_tctx_unrealize(DeviceState
*dev
, Error
**errp
)
501 qemu_unregister_reset(xive_tctx_reset
, dev
);
504 static const VMStateDescription vmstate_xive_tctx
= {
505 .name
= TYPE_XIVE_TCTX
,
507 .minimum_version_id
= 1,
508 .fields
= (VMStateField
[]) {
509 VMSTATE_BUFFER(regs
, XiveTCTX
),
510 VMSTATE_END_OF_LIST()
514 static void xive_tctx_class_init(ObjectClass
*klass
, void *data
)
516 DeviceClass
*dc
= DEVICE_CLASS(klass
);
518 dc
->desc
= "XIVE Interrupt Thread Context";
519 dc
->realize
= xive_tctx_realize
;
520 dc
->unrealize
= xive_tctx_unrealize
;
521 dc
->vmsd
= &vmstate_xive_tctx
;
524 static const TypeInfo xive_tctx_info
= {
525 .name
= TYPE_XIVE_TCTX
,
526 .parent
= TYPE_DEVICE
,
527 .instance_size
= sizeof(XiveTCTX
),
528 .class_init
= xive_tctx_class_init
,
531 Object
*xive_tctx_create(Object
*cpu
, XiveRouter
*xrtr
, Error
**errp
)
533 Error
*local_err
= NULL
;
536 obj
= object_new(TYPE_XIVE_TCTX
);
537 object_property_add_child(cpu
, TYPE_XIVE_TCTX
, obj
, &error_abort
);
539 object_property_add_const_link(obj
, "cpu", cpu
, &error_abort
);
540 object_property_set_bool(obj
, true, "realized", &local_err
);
548 object_unparent(obj
);
549 error_propagate(errp
, local_err
);
557 static uint8_t xive_esb_set(uint8_t *pq
, uint8_t value
)
559 uint8_t old_pq
= *pq
& 0x3;
567 static bool xive_esb_trigger(uint8_t *pq
)
569 uint8_t old_pq
= *pq
& 0x3;
573 xive_esb_set(pq
, XIVE_ESB_PENDING
);
575 case XIVE_ESB_PENDING
:
576 case XIVE_ESB_QUEUED
:
577 xive_esb_set(pq
, XIVE_ESB_QUEUED
);
580 xive_esb_set(pq
, XIVE_ESB_OFF
);
583 g_assert_not_reached();
587 static bool xive_esb_eoi(uint8_t *pq
)
589 uint8_t old_pq
= *pq
& 0x3;
593 case XIVE_ESB_PENDING
:
594 xive_esb_set(pq
, XIVE_ESB_RESET
);
596 case XIVE_ESB_QUEUED
:
597 xive_esb_set(pq
, XIVE_ESB_PENDING
);
600 xive_esb_set(pq
, XIVE_ESB_OFF
);
603 g_assert_not_reached();
608 * XIVE Interrupt Source (or IVSE)
611 uint8_t xive_source_esb_get(XiveSource
*xsrc
, uint32_t srcno
)
613 assert(srcno
< xsrc
->nr_irqs
);
615 return xsrc
->status
[srcno
] & 0x3;
618 uint8_t xive_source_esb_set(XiveSource
*xsrc
, uint32_t srcno
, uint8_t pq
)
620 assert(srcno
< xsrc
->nr_irqs
);
622 return xive_esb_set(&xsrc
->status
[srcno
], pq
);
626 * Returns whether the event notification should be forwarded.
628 static bool xive_source_lsi_trigger(XiveSource
*xsrc
, uint32_t srcno
)
630 uint8_t old_pq
= xive_source_esb_get(xsrc
, srcno
);
632 xsrc
->status
[srcno
] |= XIVE_STATUS_ASSERTED
;
636 xive_source_esb_set(xsrc
, srcno
, XIVE_ESB_PENDING
);
644 * Returns whether the event notification should be forwarded.
646 static bool xive_source_esb_trigger(XiveSource
*xsrc
, uint32_t srcno
)
650 assert(srcno
< xsrc
->nr_irqs
);
652 ret
= xive_esb_trigger(&xsrc
->status
[srcno
]);
654 if (xive_source_irq_is_lsi(xsrc
, srcno
) &&
655 xive_source_esb_get(xsrc
, srcno
) == XIVE_ESB_QUEUED
) {
656 qemu_log_mask(LOG_GUEST_ERROR
,
657 "XIVE: queued an event on LSI IRQ %d\n", srcno
);
664 * Returns whether the event notification should be forwarded.
666 static bool xive_source_esb_eoi(XiveSource
*xsrc
, uint32_t srcno
)
670 assert(srcno
< xsrc
->nr_irqs
);
672 ret
= xive_esb_eoi(&xsrc
->status
[srcno
]);
675 * LSI sources do not set the Q bit but they can still be
676 * asserted, in which case we should forward a new event
679 if (xive_source_irq_is_lsi(xsrc
, srcno
) &&
680 xsrc
->status
[srcno
] & XIVE_STATUS_ASSERTED
) {
681 ret
= xive_source_lsi_trigger(xsrc
, srcno
);
688 * Forward the source event notification to the Router
690 static void xive_source_notify(XiveSource
*xsrc
, int srcno
)
692 XiveNotifierClass
*xnc
= XIVE_NOTIFIER_GET_CLASS(xsrc
->xive
);
695 xnc
->notify(xsrc
->xive
, srcno
);
700 * In a two pages ESB MMIO setting, even page is the trigger page, odd
701 * page is for management
703 static inline bool addr_is_even(hwaddr addr
, uint32_t shift
)
705 return !((addr
>> shift
) & 1);
708 static inline bool xive_source_is_trigger_page(XiveSource
*xsrc
, hwaddr addr
)
710 return xive_source_esb_has_2page(xsrc
) &&
711 addr_is_even(addr
, xsrc
->esb_shift
- 1);
716 * Trigger page Management/EOI page
718 * ESB MMIO setting 2 pages 1 or 2 pages
720 * 0x000 .. 0x3FF -1 EOI and return 0|1
721 * 0x400 .. 0x7FF -1 EOI and return 0|1
722 * 0x800 .. 0xBFF -1 return PQ
723 * 0xC00 .. 0xCFF -1 return PQ and atomically PQ=00
724 * 0xD00 .. 0xDFF -1 return PQ and atomically PQ=01
725 * 0xE00 .. 0xDFF -1 return PQ and atomically PQ=10
726 * 0xF00 .. 0xDFF -1 return PQ and atomically PQ=11
728 static uint64_t xive_source_esb_read(void *opaque
, hwaddr addr
, unsigned size
)
730 XiveSource
*xsrc
= XIVE_SOURCE(opaque
);
731 uint32_t offset
= addr
& 0xFFF;
732 uint32_t srcno
= addr
>> xsrc
->esb_shift
;
735 /* In a two pages ESB MMIO setting, trigger page should not be read */
736 if (xive_source_is_trigger_page(xsrc
, addr
)) {
737 qemu_log_mask(LOG_GUEST_ERROR
,
738 "XIVE: invalid load on IRQ %d trigger page at "
739 "0x%"HWADDR_PRIx
"\n", srcno
, addr
);
744 case XIVE_ESB_LOAD_EOI
... XIVE_ESB_LOAD_EOI
+ 0x7FF:
745 ret
= xive_source_esb_eoi(xsrc
, srcno
);
747 /* Forward the source event notification for routing */
749 xive_source_notify(xsrc
, srcno
);
753 case XIVE_ESB_GET
... XIVE_ESB_GET
+ 0x3FF:
754 ret
= xive_source_esb_get(xsrc
, srcno
);
757 case XIVE_ESB_SET_PQ_00
... XIVE_ESB_SET_PQ_00
+ 0x0FF:
758 case XIVE_ESB_SET_PQ_01
... XIVE_ESB_SET_PQ_01
+ 0x0FF:
759 case XIVE_ESB_SET_PQ_10
... XIVE_ESB_SET_PQ_10
+ 0x0FF:
760 case XIVE_ESB_SET_PQ_11
... XIVE_ESB_SET_PQ_11
+ 0x0FF:
761 ret
= xive_source_esb_set(xsrc
, srcno
, (offset
>> 8) & 0x3);
764 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid ESB load addr %x\n",
773 * Trigger page Management/EOI page
775 * ESB MMIO setting 2 pages 1 or 2 pages
777 * 0x000 .. 0x3FF Trigger Trigger
778 * 0x400 .. 0x7FF Trigger EOI
779 * 0x800 .. 0xBFF Trigger undefined
780 * 0xC00 .. 0xCFF Trigger PQ=00
781 * 0xD00 .. 0xDFF Trigger PQ=01
782 * 0xE00 .. 0xDFF Trigger PQ=10
783 * 0xF00 .. 0xDFF Trigger PQ=11
785 static void xive_source_esb_write(void *opaque
, hwaddr addr
,
786 uint64_t value
, unsigned size
)
788 XiveSource
*xsrc
= XIVE_SOURCE(opaque
);
789 uint32_t offset
= addr
& 0xFFF;
790 uint32_t srcno
= addr
>> xsrc
->esb_shift
;
793 /* In a two pages ESB MMIO setting, trigger page only triggers */
794 if (xive_source_is_trigger_page(xsrc
, addr
)) {
795 notify
= xive_source_esb_trigger(xsrc
, srcno
);
801 notify
= xive_source_esb_trigger(xsrc
, srcno
);
804 case XIVE_ESB_STORE_EOI
... XIVE_ESB_STORE_EOI
+ 0x3FF:
805 if (!(xsrc
->esb_flags
& XIVE_SRC_STORE_EOI
)) {
806 qemu_log_mask(LOG_GUEST_ERROR
,
807 "XIVE: invalid Store EOI for IRQ %d\n", srcno
);
811 notify
= xive_source_esb_eoi(xsrc
, srcno
);
814 case XIVE_ESB_SET_PQ_00
... XIVE_ESB_SET_PQ_00
+ 0x0FF:
815 case XIVE_ESB_SET_PQ_01
... XIVE_ESB_SET_PQ_01
+ 0x0FF:
816 case XIVE_ESB_SET_PQ_10
... XIVE_ESB_SET_PQ_10
+ 0x0FF:
817 case XIVE_ESB_SET_PQ_11
... XIVE_ESB_SET_PQ_11
+ 0x0FF:
818 xive_source_esb_set(xsrc
, srcno
, (offset
>> 8) & 0x3);
822 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid ESB write addr %x\n",
828 /* Forward the source event notification for routing */
830 xive_source_notify(xsrc
, srcno
);
834 static const MemoryRegionOps xive_source_esb_ops
= {
835 .read
= xive_source_esb_read
,
836 .write
= xive_source_esb_write
,
837 .endianness
= DEVICE_BIG_ENDIAN
,
839 .min_access_size
= 8,
840 .max_access_size
= 8,
843 .min_access_size
= 8,
844 .max_access_size
= 8,
848 void xive_source_set_irq(void *opaque
, int srcno
, int val
)
850 XiveSource
*xsrc
= XIVE_SOURCE(opaque
);
853 if (xive_source_irq_is_lsi(xsrc
, srcno
)) {
855 notify
= xive_source_lsi_trigger(xsrc
, srcno
);
857 xsrc
->status
[srcno
] &= ~XIVE_STATUS_ASSERTED
;
861 notify
= xive_source_esb_trigger(xsrc
, srcno
);
865 /* Forward the source event notification for routing */
867 xive_source_notify(xsrc
, srcno
);
871 void xive_source_pic_print_info(XiveSource
*xsrc
, uint32_t offset
, Monitor
*mon
)
875 for (i
= 0; i
< xsrc
->nr_irqs
; i
++) {
876 uint8_t pq
= xive_source_esb_get(xsrc
, i
);
878 if (pq
== XIVE_ESB_OFF
) {
882 monitor_printf(mon
, " %08x %s %c%c%c\n", i
+ offset
,
883 xive_source_irq_is_lsi(xsrc
, i
) ? "LSI" : "MSI",
884 pq
& XIVE_ESB_VAL_P
? 'P' : '-',
885 pq
& XIVE_ESB_VAL_Q
? 'Q' : '-',
886 xsrc
->status
[i
] & XIVE_STATUS_ASSERTED
? 'A' : ' ');
890 static void xive_source_reset(void *dev
)
892 XiveSource
*xsrc
= XIVE_SOURCE(dev
);
894 /* Do not clear the LSI bitmap */
896 /* PQs are initialized to 0b01 (Q=1) which corresponds to "ints off" */
897 memset(xsrc
->status
, XIVE_ESB_OFF
, xsrc
->nr_irqs
);
900 static void xive_source_realize(DeviceState
*dev
, Error
**errp
)
902 XiveSource
*xsrc
= XIVE_SOURCE(dev
);
904 Error
*local_err
= NULL
;
906 obj
= object_property_get_link(OBJECT(dev
), "xive", &local_err
);
908 error_propagate(errp
, local_err
);
909 error_prepend(errp
, "required link 'xive' not found: ");
913 xsrc
->xive
= XIVE_NOTIFIER(obj
);
915 if (!xsrc
->nr_irqs
) {
916 error_setg(errp
, "Number of interrupt needs to be greater than 0");
920 if (xsrc
->esb_shift
!= XIVE_ESB_4K
&&
921 xsrc
->esb_shift
!= XIVE_ESB_4K_2PAGE
&&
922 xsrc
->esb_shift
!= XIVE_ESB_64K
&&
923 xsrc
->esb_shift
!= XIVE_ESB_64K_2PAGE
) {
924 error_setg(errp
, "Invalid ESB shift setting");
928 xsrc
->status
= g_malloc0(xsrc
->nr_irqs
);
929 xsrc
->lsi_map
= bitmap_new(xsrc
->nr_irqs
);
931 memory_region_init_io(&xsrc
->esb_mmio
, OBJECT(xsrc
),
932 &xive_source_esb_ops
, xsrc
, "xive.esb",
933 (1ull << xsrc
->esb_shift
) * xsrc
->nr_irqs
);
935 qemu_register_reset(xive_source_reset
, dev
);
938 static const VMStateDescription vmstate_xive_source
= {
939 .name
= TYPE_XIVE_SOURCE
,
941 .minimum_version_id
= 1,
942 .fields
= (VMStateField
[]) {
943 VMSTATE_UINT32_EQUAL(nr_irqs
, XiveSource
, NULL
),
944 VMSTATE_VBUFFER_UINT32(status
, XiveSource
, 1, NULL
, nr_irqs
),
945 VMSTATE_END_OF_LIST()
950 * The default XIVE interrupt source setting for the ESB MMIOs is two
951 * 64k pages without Store EOI, to be in sync with KVM.
953 static Property xive_source_properties
[] = {
954 DEFINE_PROP_UINT64("flags", XiveSource
, esb_flags
, 0),
955 DEFINE_PROP_UINT32("nr-irqs", XiveSource
, nr_irqs
, 0),
956 DEFINE_PROP_UINT32("shift", XiveSource
, esb_shift
, XIVE_ESB_64K_2PAGE
),
957 DEFINE_PROP_END_OF_LIST(),
960 static void xive_source_class_init(ObjectClass
*klass
, void *data
)
962 DeviceClass
*dc
= DEVICE_CLASS(klass
);
964 dc
->desc
= "XIVE Interrupt Source";
965 dc
->props
= xive_source_properties
;
966 dc
->realize
= xive_source_realize
;
967 dc
->vmsd
= &vmstate_xive_source
;
970 static const TypeInfo xive_source_info
= {
971 .name
= TYPE_XIVE_SOURCE
,
972 .parent
= TYPE_DEVICE
,
973 .instance_size
= sizeof(XiveSource
),
974 .class_init
= xive_source_class_init
,
981 void xive_end_queue_pic_print_info(XiveEND
*end
, uint32_t width
, Monitor
*mon
)
983 uint64_t qaddr_base
= (uint64_t) be32_to_cpu(end
->w2
& 0x0fffffff) << 32
984 | be32_to_cpu(end
->w3
);
985 uint32_t qsize
= xive_get_field32(END_W0_QSIZE
, end
->w0
);
986 uint32_t qindex
= xive_get_field32(END_W1_PAGE_OFF
, end
->w1
);
987 uint32_t qentries
= 1 << (qsize
+ 10);
991 * print out the [ (qindex - (width - 1)) .. (qindex + 1)] window
993 monitor_printf(mon
, " [ ");
994 qindex
= (qindex
- (width
- 1)) & (qentries
- 1);
995 for (i
= 0; i
< width
; i
++) {
996 uint64_t qaddr
= qaddr_base
+ (qindex
<< 2);
999 if (dma_memory_read(&address_space_memory
, qaddr
, &qdata
,
1001 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: failed to read EQ @0x%"
1002 HWADDR_PRIx
"\n", qaddr
);
1005 monitor_printf(mon
, "%s%08x ", i
== width
- 1 ? "^" : "",
1006 be32_to_cpu(qdata
));
1007 qindex
= (qindex
+ 1) & (qentries
- 1);
1011 void xive_end_pic_print_info(XiveEND
*end
, uint32_t end_idx
, Monitor
*mon
)
1013 uint64_t qaddr_base
= (uint64_t) be32_to_cpu(end
->w2
& 0x0fffffff) << 32
1014 | be32_to_cpu(end
->w3
);
1015 uint32_t qindex
= xive_get_field32(END_W1_PAGE_OFF
, end
->w1
);
1016 uint32_t qgen
= xive_get_field32(END_W1_GENERATION
, end
->w1
);
1017 uint32_t qsize
= xive_get_field32(END_W0_QSIZE
, end
->w0
);
1018 uint32_t qentries
= 1 << (qsize
+ 10);
1020 uint32_t nvt
= xive_get_field32(END_W6_NVT_INDEX
, end
->w6
);
1021 uint8_t priority
= xive_get_field32(END_W7_F0_PRIORITY
, end
->w7
);
1023 if (!xive_end_is_valid(end
)) {
1027 monitor_printf(mon
, " %08x %c%c%c%c%c prio:%d nvt:%04x eq:@%08"PRIx64
1028 "% 6d/%5d ^%d", end_idx
,
1029 xive_end_is_valid(end
) ? 'v' : '-',
1030 xive_end_is_enqueue(end
) ? 'q' : '-',
1031 xive_end_is_notify(end
) ? 'n' : '-',
1032 xive_end_is_backlog(end
) ? 'b' : '-',
1033 xive_end_is_escalate(end
) ? 'e' : '-',
1034 priority
, nvt
, qaddr_base
, qindex
, qentries
, qgen
);
1036 xive_end_queue_pic_print_info(end
, 6, mon
);
1037 monitor_printf(mon
, "]\n");
1040 static void xive_end_enqueue(XiveEND
*end
, uint32_t data
)
1042 uint64_t qaddr_base
= (uint64_t) be32_to_cpu(end
->w2
& 0x0fffffff) << 32
1043 | be32_to_cpu(end
->w3
);
1044 uint32_t qsize
= xive_get_field32(END_W0_QSIZE
, end
->w0
);
1045 uint32_t qindex
= xive_get_field32(END_W1_PAGE_OFF
, end
->w1
);
1046 uint32_t qgen
= xive_get_field32(END_W1_GENERATION
, end
->w1
);
1048 uint64_t qaddr
= qaddr_base
+ (qindex
<< 2);
1049 uint32_t qdata
= cpu_to_be32((qgen
<< 31) | (data
& 0x7fffffff));
1050 uint32_t qentries
= 1 << (qsize
+ 10);
1052 if (dma_memory_write(&address_space_memory
, qaddr
, &qdata
, sizeof(qdata
))) {
1053 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: failed to write END data @0x%"
1054 HWADDR_PRIx
"\n", qaddr
);
1058 qindex
= (qindex
+ 1) & (qentries
- 1);
1061 end
->w1
= xive_set_field32(END_W1_GENERATION
, end
->w1
, qgen
);
1063 end
->w1
= xive_set_field32(END_W1_PAGE_OFF
, end
->w1
, qindex
);
1067 * XIVE Router (aka. Virtualization Controller or IVRE)
1070 int xive_router_get_eas(XiveRouter
*xrtr
, uint8_t eas_blk
, uint32_t eas_idx
,
1073 XiveRouterClass
*xrc
= XIVE_ROUTER_GET_CLASS(xrtr
);
1075 return xrc
->get_eas(xrtr
, eas_blk
, eas_idx
, eas
);
1078 int xive_router_get_end(XiveRouter
*xrtr
, uint8_t end_blk
, uint32_t end_idx
,
1081 XiveRouterClass
*xrc
= XIVE_ROUTER_GET_CLASS(xrtr
);
1083 return xrc
->get_end(xrtr
, end_blk
, end_idx
, end
);
1086 int xive_router_write_end(XiveRouter
*xrtr
, uint8_t end_blk
, uint32_t end_idx
,
1087 XiveEND
*end
, uint8_t word_number
)
1089 XiveRouterClass
*xrc
= XIVE_ROUTER_GET_CLASS(xrtr
);
1091 return xrc
->write_end(xrtr
, end_blk
, end_idx
, end
, word_number
);
1094 int xive_router_get_nvt(XiveRouter
*xrtr
, uint8_t nvt_blk
, uint32_t nvt_idx
,
1097 XiveRouterClass
*xrc
= XIVE_ROUTER_GET_CLASS(xrtr
);
1099 return xrc
->get_nvt(xrtr
, nvt_blk
, nvt_idx
, nvt
);
1102 int xive_router_write_nvt(XiveRouter
*xrtr
, uint8_t nvt_blk
, uint32_t nvt_idx
,
1103 XiveNVT
*nvt
, uint8_t word_number
)
1105 XiveRouterClass
*xrc
= XIVE_ROUTER_GET_CLASS(xrtr
);
1107 return xrc
->write_nvt(xrtr
, nvt_blk
, nvt_idx
, nvt
, word_number
);
1111 * The thread context register words are in big-endian format.
1113 static int xive_presenter_tctx_match(XiveTCTX
*tctx
, uint8_t format
,
1114 uint8_t nvt_blk
, uint32_t nvt_idx
,
1115 bool cam_ignore
, uint32_t logic_serv
)
1117 uint32_t cam
= xive_nvt_cam_line(nvt_blk
, nvt_idx
);
1118 uint32_t qw2w2
= xive_tctx_word2(&tctx
->regs
[TM_QW2_HV_POOL
]);
1119 uint32_t qw1w2
= xive_tctx_word2(&tctx
->regs
[TM_QW1_OS
]);
1120 uint32_t qw0w2
= xive_tctx_word2(&tctx
->regs
[TM_QW0_USER
]);
1123 * TODO (PowerNV): ignore mode. The low order bits of the NVT
1124 * identifier are ignored in the "CAM" match.
1128 if (cam_ignore
== true) {
1130 * F=0 & i=1: Logical server notification (bits ignored at
1131 * the end of the NVT identifier)
1133 qemu_log_mask(LOG_UNIMP
, "XIVE: no support for LS NVT %x/%x\n",
1138 /* F=0 & i=0: Specific NVT notification */
1140 /* TODO (PowerNV) : PHYS ring */
1143 if ((be32_to_cpu(qw2w2
) & TM_QW2W2_VP
) &&
1144 cam
== xive_get_field32(TM_QW2W2_POOL_CAM
, qw2w2
)) {
1145 return TM_QW2_HV_POOL
;
1149 if ((be32_to_cpu(qw1w2
) & TM_QW1W2_VO
) &&
1150 cam
== xive_get_field32(TM_QW1W2_OS_CAM
, qw1w2
)) {
1154 /* F=1 : User level Event-Based Branch (EBB) notification */
1157 if ((be32_to_cpu(qw1w2
) & TM_QW1W2_VO
) &&
1158 (cam
== xive_get_field32(TM_QW1W2_OS_CAM
, qw1w2
)) &&
1159 (be32_to_cpu(qw0w2
) & TM_QW0W2_VU
) &&
1160 (logic_serv
== xive_get_field32(TM_QW0W2_LOGIC_SERV
, qw0w2
))) {
1167 typedef struct XiveTCTXMatch
{
1172 static bool xive_presenter_match(XiveRouter
*xrtr
, uint8_t format
,
1173 uint8_t nvt_blk
, uint32_t nvt_idx
,
1174 bool cam_ignore
, uint8_t priority
,
1175 uint32_t logic_serv
, XiveTCTXMatch
*match
)
1180 * TODO (PowerNV): handle chip_id overwrite of block field for
1181 * hardwired CAM compares
1185 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1186 XiveTCTX
*tctx
= cpu
->tctx
;
1190 * HW checks that the CPU is enabled in the Physical Thread
1191 * Enable Register (PTER).
1195 * Check the thread context CAM lines and record matches. We
1196 * will handle CPU exception delivery later
1198 ring
= xive_presenter_tctx_match(tctx
, format
, nvt_blk
, nvt_idx
,
1199 cam_ignore
, logic_serv
);
1201 * Save the context and follow on to catch duplicates, that we
1202 * don't support yet.
1206 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: already found a thread "
1207 "context NVT %x/%x\n", nvt_blk
, nvt_idx
);
1217 qemu_log_mask(LOG_UNIMP
, "XIVE: NVT %x/%x is not dispatched\n",
1226 * This is our simple Xive Presenter Engine model. It is merged in the
1227 * Router as it does not require an extra object.
1229 * It receives notification requests sent by the IVRE to find one
1230 * matching NVT (or more) dispatched on the processor threads. In case
1231 * of a single NVT notification, the process is abreviated and the
1232 * thread is signaled if a match is found. In case of a logical server
1233 * notification (bits ignored at the end of the NVT identifier), the
1234 * IVPE and IVRE select a winning thread using different filters. This
1235 * involves 2 or 3 exchanges on the PowerBus that the model does not
1238 * The parameters represent what is sent on the PowerBus
1240 static void xive_presenter_notify(XiveRouter
*xrtr
, uint8_t format
,
1241 uint8_t nvt_blk
, uint32_t nvt_idx
,
1242 bool cam_ignore
, uint8_t priority
,
1243 uint32_t logic_serv
)
1246 XiveTCTXMatch match
= { .tctx
= NULL
, .ring
= 0 };
1249 /* NVT cache lookup */
1250 if (xive_router_get_nvt(xrtr
, nvt_blk
, nvt_idx
, &nvt
)) {
1251 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: no NVT %x/%x\n",
1256 if (!xive_nvt_is_valid(&nvt
)) {
1257 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: NVT %x/%x is invalid\n",
1262 found
= xive_presenter_match(xrtr
, format
, nvt_blk
, nvt_idx
, cam_ignore
,
1263 priority
, logic_serv
, &match
);
1265 ipb_update(&match
.tctx
->regs
[match
.ring
], priority
);
1266 xive_tctx_notify(match
.tctx
, match
.ring
);
1270 /* Record the IPB in the associated NVT structure */
1271 ipb_update((uint8_t *) &nvt
.w4
, priority
);
1272 xive_router_write_nvt(xrtr
, nvt_blk
, nvt_idx
, &nvt
, 4);
1275 * If no matching NVT is dispatched on a HW thread :
1276 * - update the NVT structure if backlog is activated
1277 * - escalate (ESe PQ bits and EAS in w4-5) if escalation is
1283 * An END trigger can come from an event trigger (IPI or HW) or from
1284 * another chip. We don't model the PowerBus but the END trigger
1285 * message has the same parameters than in the function below.
1287 static void xive_router_end_notify(XiveRouter
*xrtr
, uint8_t end_blk
,
1288 uint32_t end_idx
, uint32_t end_data
)
1294 /* END cache lookup */
1295 if (xive_router_get_end(xrtr
, end_blk
, end_idx
, &end
)) {
1296 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: No END %x/%x\n", end_blk
,
1301 if (!xive_end_is_valid(&end
)) {
1302 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: END %x/%x is invalid\n",
1307 if (xive_end_is_enqueue(&end
)) {
1308 xive_end_enqueue(&end
, end_data
);
1309 /* Enqueuing event data modifies the EQ toggle and index */
1310 xive_router_write_end(xrtr
, end_blk
, end_idx
, &end
, 1);
1314 * The W7 format depends on the F bit in W6. It defines the type
1315 * of the notification :
1317 * F=0 : single or multiple NVT notification
1318 * F=1 : User level Event-Based Branch (EBB) notification, no
1321 format
= xive_get_field32(END_W6_FORMAT_BIT
, end
.w6
);
1322 priority
= xive_get_field32(END_W7_F0_PRIORITY
, end
.w7
);
1324 /* The END is masked */
1325 if (format
== 0 && priority
== 0xff) {
1330 * Check the END ESn (Event State Buffer for notification) for
1331 * even futher coalescing in the Router
1333 if (!xive_end_is_notify(&end
)) {
1334 uint8_t pq
= xive_get_field32(END_W1_ESn
, end
.w1
);
1335 bool notify
= xive_esb_trigger(&pq
);
1337 if (pq
!= xive_get_field32(END_W1_ESn
, end
.w1
)) {
1338 end
.w1
= xive_set_field32(END_W1_ESn
, end
.w1
, pq
);
1339 xive_router_write_end(xrtr
, end_blk
, end_idx
, &end
, 1);
1342 /* ESn[Q]=1 : end of notification */
1349 * Follows IVPE notification
1351 xive_presenter_notify(xrtr
, format
,
1352 xive_get_field32(END_W6_NVT_BLOCK
, end
.w6
),
1353 xive_get_field32(END_W6_NVT_INDEX
, end
.w6
),
1354 xive_get_field32(END_W7_F0_IGNORE
, end
.w7
),
1356 xive_get_field32(END_W7_F1_LOG_SERVER_ID
, end
.w7
));
1358 /* TODO: Auto EOI. */
1361 static void xive_router_notify(XiveNotifier
*xn
, uint32_t lisn
)
1363 XiveRouter
*xrtr
= XIVE_ROUTER(xn
);
1364 uint8_t eas_blk
= XIVE_SRCNO_BLOCK(lisn
);
1365 uint32_t eas_idx
= XIVE_SRCNO_INDEX(lisn
);
1368 /* EAS cache lookup */
1369 if (xive_router_get_eas(xrtr
, eas_blk
, eas_idx
, &eas
)) {
1370 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: Unknown LISN %x\n", lisn
);
1375 * The IVRE checks the State Bit Cache at this point. We skip the
1376 * SBC lookup because the state bits of the sources are modeled
1377 * internally in QEMU.
1380 if (!xive_eas_is_valid(&eas
)) {
1381 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid LISN %x\n", lisn
);
1385 if (xive_eas_is_masked(&eas
)) {
1386 /* Notification completed */
1391 * The event trigger becomes an END trigger
1393 xive_router_end_notify(xrtr
,
1394 xive_get_field64(EAS_END_BLOCK
, eas
.w
),
1395 xive_get_field64(EAS_END_INDEX
, eas
.w
),
1396 xive_get_field64(EAS_END_DATA
, eas
.w
));
1399 static void xive_router_class_init(ObjectClass
*klass
, void *data
)
1401 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1402 XiveNotifierClass
*xnc
= XIVE_NOTIFIER_CLASS(klass
);
1404 dc
->desc
= "XIVE Router Engine";
1405 xnc
->notify
= xive_router_notify
;
1408 static const TypeInfo xive_router_info
= {
1409 .name
= TYPE_XIVE_ROUTER
,
1410 .parent
= TYPE_SYS_BUS_DEVICE
,
1412 .class_size
= sizeof(XiveRouterClass
),
1413 .class_init
= xive_router_class_init
,
1414 .interfaces
= (InterfaceInfo
[]) {
1415 { TYPE_XIVE_NOTIFIER
},
1420 void xive_eas_pic_print_info(XiveEAS
*eas
, uint32_t lisn
, Monitor
*mon
)
1422 if (!xive_eas_is_valid(eas
)) {
1426 monitor_printf(mon
, " %08x %s end:%02x/%04x data:%08x\n",
1427 lisn
, xive_eas_is_masked(eas
) ? "M" : " ",
1428 (uint8_t) xive_get_field64(EAS_END_BLOCK
, eas
->w
),
1429 (uint32_t) xive_get_field64(EAS_END_INDEX
, eas
->w
),
1430 (uint32_t) xive_get_field64(EAS_END_DATA
, eas
->w
));
1434 * END ESB MMIO loads
1436 static uint64_t xive_end_source_read(void *opaque
, hwaddr addr
, unsigned size
)
1438 XiveENDSource
*xsrc
= XIVE_END_SOURCE(opaque
);
1439 uint32_t offset
= addr
& 0xFFF;
1443 uint32_t end_esmask
;
1447 end_blk
= xsrc
->block_id
;
1448 end_idx
= addr
>> (xsrc
->esb_shift
+ 1);
1450 if (xive_router_get_end(xsrc
->xrtr
, end_blk
, end_idx
, &end
)) {
1451 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: No END %x/%x\n", end_blk
,
1456 if (!xive_end_is_valid(&end
)) {
1457 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: END %x/%x is invalid\n",
1462 end_esmask
= addr_is_even(addr
, xsrc
->esb_shift
) ? END_W1_ESn
: END_W1_ESe
;
1463 pq
= xive_get_field32(end_esmask
, end
.w1
);
1466 case XIVE_ESB_LOAD_EOI
... XIVE_ESB_LOAD_EOI
+ 0x7FF:
1467 ret
= xive_esb_eoi(&pq
);
1469 /* Forward the source event notification for routing ?? */
1472 case XIVE_ESB_GET
... XIVE_ESB_GET
+ 0x3FF:
1476 case XIVE_ESB_SET_PQ_00
... XIVE_ESB_SET_PQ_00
+ 0x0FF:
1477 case XIVE_ESB_SET_PQ_01
... XIVE_ESB_SET_PQ_01
+ 0x0FF:
1478 case XIVE_ESB_SET_PQ_10
... XIVE_ESB_SET_PQ_10
+ 0x0FF:
1479 case XIVE_ESB_SET_PQ_11
... XIVE_ESB_SET_PQ_11
+ 0x0FF:
1480 ret
= xive_esb_set(&pq
, (offset
>> 8) & 0x3);
1483 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid END ESB load addr %d\n",
1488 if (pq
!= xive_get_field32(end_esmask
, end
.w1
)) {
1489 end
.w1
= xive_set_field32(end_esmask
, end
.w1
, pq
);
1490 xive_router_write_end(xsrc
->xrtr
, end_blk
, end_idx
, &end
, 1);
1497 * END ESB MMIO stores are invalid
1499 static void xive_end_source_write(void *opaque
, hwaddr addr
,
1500 uint64_t value
, unsigned size
)
1502 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: invalid ESB write addr 0x%"
1503 HWADDR_PRIx
"\n", addr
);
1506 static const MemoryRegionOps xive_end_source_ops
= {
1507 .read
= xive_end_source_read
,
1508 .write
= xive_end_source_write
,
1509 .endianness
= DEVICE_BIG_ENDIAN
,
1511 .min_access_size
= 8,
1512 .max_access_size
= 8,
1515 .min_access_size
= 8,
1516 .max_access_size
= 8,
1520 static void xive_end_source_realize(DeviceState
*dev
, Error
**errp
)
1522 XiveENDSource
*xsrc
= XIVE_END_SOURCE(dev
);
1524 Error
*local_err
= NULL
;
1526 obj
= object_property_get_link(OBJECT(dev
), "xive", &local_err
);
1528 error_propagate(errp
, local_err
);
1529 error_prepend(errp
, "required link 'xive' not found: ");
1533 xsrc
->xrtr
= XIVE_ROUTER(obj
);
1535 if (!xsrc
->nr_ends
) {
1536 error_setg(errp
, "Number of interrupt needs to be greater than 0");
1540 if (xsrc
->esb_shift
!= XIVE_ESB_4K
&&
1541 xsrc
->esb_shift
!= XIVE_ESB_64K
) {
1542 error_setg(errp
, "Invalid ESB shift setting");
1547 * Each END is assigned an even/odd pair of MMIO pages, the even page
1548 * manages the ESn field while the odd page manages the ESe field.
1550 memory_region_init_io(&xsrc
->esb_mmio
, OBJECT(xsrc
),
1551 &xive_end_source_ops
, xsrc
, "xive.end",
1552 (1ull << (xsrc
->esb_shift
+ 1)) * xsrc
->nr_ends
);
1555 static Property xive_end_source_properties
[] = {
1556 DEFINE_PROP_UINT8("block-id", XiveENDSource
, block_id
, 0),
1557 DEFINE_PROP_UINT32("nr-ends", XiveENDSource
, nr_ends
, 0),
1558 DEFINE_PROP_UINT32("shift", XiveENDSource
, esb_shift
, XIVE_ESB_64K
),
1559 DEFINE_PROP_END_OF_LIST(),
1562 static void xive_end_source_class_init(ObjectClass
*klass
, void *data
)
1564 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1566 dc
->desc
= "XIVE END Source";
1567 dc
->props
= xive_end_source_properties
;
1568 dc
->realize
= xive_end_source_realize
;
1571 static const TypeInfo xive_end_source_info
= {
1572 .name
= TYPE_XIVE_END_SOURCE
,
1573 .parent
= TYPE_DEVICE
,
1574 .instance_size
= sizeof(XiveENDSource
),
1575 .class_init
= xive_end_source_class_init
,
1581 static const TypeInfo xive_fabric_info
= {
1582 .name
= TYPE_XIVE_NOTIFIER
,
1583 .parent
= TYPE_INTERFACE
,
1584 .class_size
= sizeof(XiveNotifierClass
),
1587 static void xive_register_types(void)
1589 type_register_static(&xive_source_info
);
1590 type_register_static(&xive_fabric_info
);
1591 type_register_static(&xive_router_info
);
1592 type_register_static(&xive_end_source_info
);
1593 type_register_static(&xive_tctx_info
);
1596 type_init(xive_register_types
)