2 * QEMU PowerPC XIVE interrupt controller model
4 * Copyright (c) 2017-2019, 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 "qemu/module.h"
13 #include "qapi/error.h"
14 #include "target/ppc/cpu.h"
15 #include "sysemu/cpus.h"
16 #include "sysemu/dma.h"
17 #include "sysemu/reset.h"
18 #include "monitor/monitor.h"
19 #include "hw/ppc/fdt.h"
20 #include "hw/ppc/pnv.h"
21 #include "hw/ppc/pnv_core.h"
22 #include "hw/ppc/pnv_xscom.h"
23 #include "hw/ppc/pnv_xive.h"
24 #include "hw/ppc/xive_regs.h"
25 #include "hw/qdev-properties.h"
26 #include "hw/ppc/ppc.h"
30 #include "pnv_xive_regs.h"
35 * Virtual structures table (VST)
37 #define SBE_PER_BYTE 4
39 typedef struct XiveVstInfo
{
45 static const XiveVstInfo vst_infos
[] = {
46 [VST_TSEL_IVT
] = { "EAT", sizeof(XiveEAS
), 16 },
47 [VST_TSEL_SBE
] = { "SBE", 1, 16 },
48 [VST_TSEL_EQDT
] = { "ENDT", sizeof(XiveEND
), 16 },
49 [VST_TSEL_VPDT
] = { "VPDT", sizeof(XiveNVT
), 32 },
52 * Interrupt fifo backing store table (not modeled) :
57 * 3 - Second escalate,
59 * 5 - IPI cascaded queue ?
61 [VST_TSEL_IRQ
] = { "IRQ", 1, 6 },
64 #define xive_error(xive, fmt, ...) \
65 qemu_log_mask(LOG_GUEST_ERROR, "XIVE[%x] - " fmt "\n", \
66 (xive)->chip->chip_id, ## __VA_ARGS__);
69 * QEMU version of the GETFIELD/SETFIELD macros
71 * TODO: It might be better to use the existing extract64() and
72 * deposit64() but this means that all the register definitions will
73 * change and become incompatible with the ones found in skiboot.
75 * Keep it as it is for now until we find a common ground.
77 static inline uint64_t GETFIELD(uint64_t mask
, uint64_t word
)
79 return (word
& mask
) >> ctz64(mask
);
82 static inline uint64_t SETFIELD(uint64_t mask
, uint64_t word
,
85 return (word
& ~mask
) | ((value
<< ctz64(mask
)) & mask
);
89 * When PC_TCTXT_CHIPID_OVERRIDE is configured, the PC_TCTXT_CHIPID
90 * field overrides the hardwired chip ID in the Powerbus operations
91 * and for CAM compares
93 static uint8_t pnv_xive_block_id(PnvXive
*xive
)
95 uint8_t blk
= xive
->chip
->chip_id
;
96 uint64_t cfg_val
= xive
->regs
[PC_TCTXT_CFG
>> 3];
98 if (cfg_val
& PC_TCTXT_CHIPID_OVERRIDE
) {
99 blk
= GETFIELD(PC_TCTXT_CHIPID
, cfg_val
);
106 * Remote access to controllers. HW uses MMIOs. For now, a simple scan
107 * of the chips is good enough.
109 * TODO: Block scope support
111 static PnvXive
*pnv_xive_get_remote(uint8_t blk
)
113 PnvMachineState
*pnv
= PNV_MACHINE(qdev_get_machine());
116 for (i
= 0; i
< pnv
->num_chips
; i
++) {
117 Pnv9Chip
*chip9
= PNV9_CHIP(pnv
->chips
[i
]);
118 PnvXive
*xive
= &chip9
->xive
;
120 if (pnv_xive_block_id(xive
) == blk
) {
128 * VST accessors for SBE, EAT, ENDT, NVT
130 * Indirect VST tables are arrays of VSDs pointing to a page (of same
131 * size). Each page is a direct VST table.
134 #define XIVE_VSD_SIZE 8
136 /* Indirect page size can be 4K, 64K, 2M, 16M. */
137 static uint64_t pnv_xive_vst_page_size_allowed(uint32_t page_shift
)
139 return page_shift
== 12 || page_shift
== 16 ||
140 page_shift
== 21 || page_shift
== 24;
143 static uint64_t pnv_xive_vst_addr_direct(PnvXive
*xive
, uint32_t type
,
144 uint64_t vsd
, uint32_t idx
)
146 const XiveVstInfo
*info
= &vst_infos
[type
];
147 uint64_t vst_addr
= vsd
& VSD_ADDRESS_MASK
;
148 uint64_t vst_tsize
= 1ull << (GETFIELD(VSD_TSIZE
, vsd
) + 12);
151 idx_max
= vst_tsize
/ info
->size
- 1;
154 xive_error(xive
, "VST: %s entry %x out of range [ 0 .. %x ] !?",
155 info
->name
, idx
, idx_max
);
160 return vst_addr
+ idx
* info
->size
;
163 static uint64_t pnv_xive_vst_addr_indirect(PnvXive
*xive
, uint32_t type
,
164 uint64_t vsd
, uint32_t idx
)
166 const XiveVstInfo
*info
= &vst_infos
[type
];
170 uint32_t vst_per_page
;
172 /* Get the page size of the indirect table. */
173 vsd_addr
= vsd
& VSD_ADDRESS_MASK
;
174 vsd
= ldq_be_dma(&address_space_memory
, vsd_addr
);
176 if (!(vsd
& VSD_ADDRESS_MASK
)) {
178 xive_error(xive
, "VST: invalid %s entry %x !?", info
->name
, idx
);
183 page_shift
= GETFIELD(VSD_TSIZE
, vsd
) + 12;
185 if (!pnv_xive_vst_page_size_allowed(page_shift
)) {
186 xive_error(xive
, "VST: invalid %s page shift %d", info
->name
,
191 vst_per_page
= (1ull << page_shift
) / info
->size
;
192 vsd_idx
= idx
/ vst_per_page
;
194 /* Load the VSD we are looking for, if not already done */
196 vsd_addr
= vsd_addr
+ vsd_idx
* XIVE_VSD_SIZE
;
197 vsd
= ldq_be_dma(&address_space_memory
, vsd_addr
);
199 if (!(vsd
& VSD_ADDRESS_MASK
)) {
201 xive_error(xive
, "VST: invalid %s entry %x !?", info
->name
, idx
);
207 * Check that the pages have a consistent size across the
210 if (page_shift
!= GETFIELD(VSD_TSIZE
, vsd
) + 12) {
211 xive_error(xive
, "VST: %s entry %x indirect page size differ !?",
217 return pnv_xive_vst_addr_direct(xive
, type
, vsd
, (idx
% vst_per_page
));
220 static uint64_t pnv_xive_vst_addr(PnvXive
*xive
, uint32_t type
, uint8_t blk
,
223 const XiveVstInfo
*info
= &vst_infos
[type
];
226 if (blk
>= info
->max_blocks
) {
227 xive_error(xive
, "VST: invalid block id %d for VST %s %d !?",
228 blk
, info
->name
, idx
);
232 vsd
= xive
->vsds
[type
][blk
];
234 /* Remote VST access */
235 if (GETFIELD(VSD_MODE
, vsd
) == VSD_MODE_FORWARD
) {
236 xive
= pnv_xive_get_remote(blk
);
238 return xive
? pnv_xive_vst_addr(xive
, type
, blk
, idx
) : 0;
241 if (VSD_INDIRECT
& vsd
) {
242 return pnv_xive_vst_addr_indirect(xive
, type
, vsd
, idx
);
245 return pnv_xive_vst_addr_direct(xive
, type
, vsd
, idx
);
248 static int pnv_xive_vst_read(PnvXive
*xive
, uint32_t type
, uint8_t blk
,
249 uint32_t idx
, void *data
)
251 const XiveVstInfo
*info
= &vst_infos
[type
];
252 uint64_t addr
= pnv_xive_vst_addr(xive
, type
, blk
, idx
);
258 cpu_physical_memory_read(addr
, data
, info
->size
);
262 #define XIVE_VST_WORD_ALL -1
264 static int pnv_xive_vst_write(PnvXive
*xive
, uint32_t type
, uint8_t blk
,
265 uint32_t idx
, void *data
, uint32_t word_number
)
267 const XiveVstInfo
*info
= &vst_infos
[type
];
268 uint64_t addr
= pnv_xive_vst_addr(xive
, type
, blk
, idx
);
274 if (word_number
== XIVE_VST_WORD_ALL
) {
275 cpu_physical_memory_write(addr
, data
, info
->size
);
277 cpu_physical_memory_write(addr
+ word_number
* 4,
278 data
+ word_number
* 4, 4);
283 static int pnv_xive_get_end(XiveRouter
*xrtr
, uint8_t blk
, uint32_t idx
,
286 return pnv_xive_vst_read(PNV_XIVE(xrtr
), VST_TSEL_EQDT
, blk
, idx
, end
);
289 static int pnv_xive_write_end(XiveRouter
*xrtr
, uint8_t blk
, uint32_t idx
,
290 XiveEND
*end
, uint8_t word_number
)
292 return pnv_xive_vst_write(PNV_XIVE(xrtr
), VST_TSEL_EQDT
, blk
, idx
, end
,
296 static int pnv_xive_end_update(PnvXive
*xive
)
298 uint8_t blk
= GETFIELD(VC_EQC_CWATCH_BLOCKID
,
299 xive
->regs
[(VC_EQC_CWATCH_SPEC
>> 3)]);
300 uint32_t idx
= GETFIELD(VC_EQC_CWATCH_OFFSET
,
301 xive
->regs
[(VC_EQC_CWATCH_SPEC
>> 3)]);
303 uint64_t eqc_watch
[4];
305 for (i
= 0; i
< ARRAY_SIZE(eqc_watch
); i
++) {
306 eqc_watch
[i
] = cpu_to_be64(xive
->regs
[(VC_EQC_CWATCH_DAT0
>> 3) + i
]);
309 return pnv_xive_vst_write(xive
, VST_TSEL_EQDT
, blk
, idx
, eqc_watch
,
313 static void pnv_xive_end_cache_load(PnvXive
*xive
)
315 uint8_t blk
= GETFIELD(VC_EQC_CWATCH_BLOCKID
,
316 xive
->regs
[(VC_EQC_CWATCH_SPEC
>> 3)]);
317 uint32_t idx
= GETFIELD(VC_EQC_CWATCH_OFFSET
,
318 xive
->regs
[(VC_EQC_CWATCH_SPEC
>> 3)]);
319 uint64_t eqc_watch
[4] = { 0 };
322 if (pnv_xive_vst_read(xive
, VST_TSEL_EQDT
, blk
, idx
, eqc_watch
)) {
323 xive_error(xive
, "VST: no END entry %x/%x !?", blk
, idx
);
326 for (i
= 0; i
< ARRAY_SIZE(eqc_watch
); i
++) {
327 xive
->regs
[(VC_EQC_CWATCH_DAT0
>> 3) + i
] = be64_to_cpu(eqc_watch
[i
]);
331 static int pnv_xive_get_nvt(XiveRouter
*xrtr
, uint8_t blk
, uint32_t idx
,
334 return pnv_xive_vst_read(PNV_XIVE(xrtr
), VST_TSEL_VPDT
, blk
, idx
, nvt
);
337 static int pnv_xive_write_nvt(XiveRouter
*xrtr
, uint8_t blk
, uint32_t idx
,
338 XiveNVT
*nvt
, uint8_t word_number
)
340 return pnv_xive_vst_write(PNV_XIVE(xrtr
), VST_TSEL_VPDT
, blk
, idx
, nvt
,
344 static int pnv_xive_nvt_update(PnvXive
*xive
)
346 uint8_t blk
= GETFIELD(PC_VPC_CWATCH_BLOCKID
,
347 xive
->regs
[(PC_VPC_CWATCH_SPEC
>> 3)]);
348 uint32_t idx
= GETFIELD(PC_VPC_CWATCH_OFFSET
,
349 xive
->regs
[(PC_VPC_CWATCH_SPEC
>> 3)]);
351 uint64_t vpc_watch
[8];
353 for (i
= 0; i
< ARRAY_SIZE(vpc_watch
); i
++) {
354 vpc_watch
[i
] = cpu_to_be64(xive
->regs
[(PC_VPC_CWATCH_DAT0
>> 3) + i
]);
357 return pnv_xive_vst_write(xive
, VST_TSEL_VPDT
, blk
, idx
, vpc_watch
,
361 static void pnv_xive_nvt_cache_load(PnvXive
*xive
)
363 uint8_t blk
= GETFIELD(PC_VPC_CWATCH_BLOCKID
,
364 xive
->regs
[(PC_VPC_CWATCH_SPEC
>> 3)]);
365 uint32_t idx
= GETFIELD(PC_VPC_CWATCH_OFFSET
,
366 xive
->regs
[(PC_VPC_CWATCH_SPEC
>> 3)]);
367 uint64_t vpc_watch
[8] = { 0 };
370 if (pnv_xive_vst_read(xive
, VST_TSEL_VPDT
, blk
, idx
, vpc_watch
)) {
371 xive_error(xive
, "VST: no NVT entry %x/%x !?", blk
, idx
);
374 for (i
= 0; i
< ARRAY_SIZE(vpc_watch
); i
++) {
375 xive
->regs
[(PC_VPC_CWATCH_DAT0
>> 3) + i
] = be64_to_cpu(vpc_watch
[i
]);
379 static int pnv_xive_get_eas(XiveRouter
*xrtr
, uint8_t blk
, uint32_t idx
,
382 PnvXive
*xive
= PNV_XIVE(xrtr
);
385 * EAT lookups should be local to the IC
387 if (pnv_xive_block_id(xive
) != blk
) {
388 xive_error(xive
, "VST: EAS %x is remote !?", XIVE_EAS(blk
, idx
));
392 return pnv_xive_vst_read(xive
, VST_TSEL_IVT
, blk
, idx
, eas
);
396 * One bit per thread id. The first register PC_THREAD_EN_REG0 covers
397 * the first cores 0-15 (normal) of the chip or 0-7 (fused). The
398 * second register covers cores 16-23 (normal) or 8-11 (fused).
400 static bool pnv_xive_is_cpu_enabled(PnvXive
*xive
, PowerPCCPU
*cpu
)
402 int pir
= ppc_cpu_pir(cpu
);
403 uint32_t fc
= PNV9_PIR2FUSEDCORE(pir
);
404 uint64_t reg
= fc
< 8 ? PC_THREAD_EN_REG0
: PC_THREAD_EN_REG1
;
405 uint32_t bit
= pir
& 0x3f;
407 return xive
->regs
[reg
>> 3] & PPC_BIT(bit
);
410 static int pnv_xive_match_nvt(XivePresenter
*xptr
, uint8_t format
,
411 uint8_t nvt_blk
, uint32_t nvt_idx
,
412 bool cam_ignore
, uint8_t priority
,
413 uint32_t logic_serv
, XiveTCTXMatch
*match
)
415 PnvXive
*xive
= PNV_XIVE(xptr
);
416 PnvChip
*chip
= xive
->chip
;
420 for (i
= 0; i
< chip
->nr_cores
; i
++) {
421 PnvCore
*pc
= chip
->cores
[i
];
422 CPUCore
*cc
= CPU_CORE(pc
);
424 for (j
= 0; j
< cc
->nr_threads
; j
++) {
425 PowerPCCPU
*cpu
= pc
->threads
[j
];
429 if (!pnv_xive_is_cpu_enabled(xive
, cpu
)) {
433 tctx
= XIVE_TCTX(pnv_cpu_state(cpu
)->intc
);
436 * Check the thread context CAM lines and record matches.
438 ring
= xive_presenter_tctx_match(xptr
, tctx
, format
, nvt_blk
,
439 nvt_idx
, cam_ignore
, logic_serv
);
441 * Save the context and follow on to catch duplicates, that we
446 qemu_log_mask(LOG_GUEST_ERROR
, "XIVE: already found a "
447 "thread context NVT %x/%x\n",
462 static uint8_t pnv_xive_get_block_id(XiveRouter
*xrtr
)
464 return pnv_xive_block_id(PNV_XIVE(xrtr
));
468 * The TIMA MMIO space is shared among the chips and to identify the
469 * chip from which the access is being done, we extract the chip id
472 static PnvXive
*pnv_xive_tm_get_xive(PowerPCCPU
*cpu
)
474 int pir
= ppc_cpu_pir(cpu
);
475 XivePresenter
*xptr
= XIVE_TCTX(pnv_cpu_state(cpu
)->intc
)->xptr
;
476 PnvXive
*xive
= PNV_XIVE(xptr
);
478 if (!pnv_xive_is_cpu_enabled(xive
, cpu
)) {
479 xive_error(xive
, "IC: CPU %x is not enabled", pir
);
485 * The internal sources (IPIs) of the interrupt controller have no
486 * knowledge of the XIVE chip on which they reside. Encode the block
487 * id in the source interrupt number before forwarding the source
488 * event notification to the Router. This is required on a multichip
491 static void pnv_xive_notify(XiveNotifier
*xn
, uint32_t srcno
)
493 PnvXive
*xive
= PNV_XIVE(xn
);
494 uint8_t blk
= pnv_xive_block_id(xive
);
496 xive_router_notify(xn
, XIVE_EAS(blk
, srcno
));
503 static uint64_t pnv_xive_vc_size(PnvXive
*xive
)
505 return (~xive
->regs
[CQ_VC_BARM
>> 3] + 1) & CQ_VC_BARM_MASK
;
508 static uint64_t pnv_xive_edt_shift(PnvXive
*xive
)
510 return ctz64(pnv_xive_vc_size(xive
) / XIVE_TABLE_EDT_MAX
);
513 static uint64_t pnv_xive_pc_size(PnvXive
*xive
)
515 return (~xive
->regs
[CQ_PC_BARM
>> 3] + 1) & CQ_PC_BARM_MASK
;
518 static uint32_t pnv_xive_nr_ipis(PnvXive
*xive
, uint8_t blk
)
520 uint64_t vsd
= xive
->vsds
[VST_TSEL_SBE
][blk
];
521 uint64_t vst_tsize
= 1ull << (GETFIELD(VSD_TSIZE
, vsd
) + 12);
523 return VSD_INDIRECT
& vsd
? 0 : vst_tsize
* SBE_PER_BYTE
;
527 * Compute the number of entries per indirect subpage.
529 static uint64_t pnv_xive_vst_per_subpage(PnvXive
*xive
, uint32_t type
)
531 uint8_t blk
= pnv_xive_block_id(xive
);
532 uint64_t vsd
= xive
->vsds
[type
][blk
];
533 const XiveVstInfo
*info
= &vst_infos
[type
];
537 /* For direct tables, fake a valid value */
538 if (!(VSD_INDIRECT
& vsd
)) {
542 /* Get the page size of the indirect table. */
543 vsd_addr
= vsd
& VSD_ADDRESS_MASK
;
544 vsd
= ldq_be_dma(&address_space_memory
, vsd_addr
);
546 if (!(vsd
& VSD_ADDRESS_MASK
)) {
548 xive_error(xive
, "VST: invalid %s entry %x !?", info
->name
, idx
);
553 page_shift
= GETFIELD(VSD_TSIZE
, vsd
) + 12;
555 if (!pnv_xive_vst_page_size_allowed(page_shift
)) {
556 xive_error(xive
, "VST: invalid %s page shift %d", info
->name
,
561 return (1ull << page_shift
) / info
->size
;
567 * The Virtualization Controller MMIO region containing the IPI ESB
568 * pages and END ESB pages is sub-divided into "sets" which map
569 * portions of the VC region to the different ESB pages. It is
570 * configured at runtime through the EDT "Domain Table" to let the
571 * firmware decide how to split the VC address space between IPI ESB
572 * pages and END ESB pages.
576 * Computes the overall size of the IPI or the END ESB pages
578 static uint64_t pnv_xive_edt_size(PnvXive
*xive
, uint64_t type
)
580 uint64_t edt_size
= 1ull << pnv_xive_edt_shift(xive
);
584 for (i
= 0; i
< XIVE_TABLE_EDT_MAX
; i
++) {
585 uint64_t edt_type
= GETFIELD(CQ_TDR_EDT_TYPE
, xive
->edt
[i
]);
587 if (edt_type
== type
) {
596 * Maps an offset of the VC region in the IPI or END region using the
597 * layout defined by the EDT "Domaine Table"
599 static uint64_t pnv_xive_edt_offset(PnvXive
*xive
, uint64_t vc_offset
,
603 uint64_t edt_size
= 1ull << pnv_xive_edt_shift(xive
);
604 uint64_t edt_offset
= vc_offset
;
606 for (i
= 0; i
< XIVE_TABLE_EDT_MAX
&& (i
* edt_size
) < vc_offset
; i
++) {
607 uint64_t edt_type
= GETFIELD(CQ_TDR_EDT_TYPE
, xive
->edt
[i
]);
609 if (edt_type
!= type
) {
610 edt_offset
-= edt_size
;
617 static void pnv_xive_edt_resize(PnvXive
*xive
)
619 uint64_t ipi_edt_size
= pnv_xive_edt_size(xive
, CQ_TDR_EDT_IPI
);
620 uint64_t end_edt_size
= pnv_xive_edt_size(xive
, CQ_TDR_EDT_EQ
);
622 memory_region_set_size(&xive
->ipi_edt_mmio
, ipi_edt_size
);
623 memory_region_add_subregion(&xive
->ipi_mmio
, 0, &xive
->ipi_edt_mmio
);
625 memory_region_set_size(&xive
->end_edt_mmio
, end_edt_size
);
626 memory_region_add_subregion(&xive
->end_mmio
, 0, &xive
->end_edt_mmio
);
630 * XIVE Table configuration. Only EDT is supported.
632 static int pnv_xive_table_set_data(PnvXive
*xive
, uint64_t val
)
634 uint64_t tsel
= xive
->regs
[CQ_TAR
>> 3] & CQ_TAR_TSEL
;
635 uint8_t tsel_index
= GETFIELD(CQ_TAR_TSEL_INDEX
, xive
->regs
[CQ_TAR
>> 3]);
636 uint64_t *xive_table
;
640 case CQ_TAR_TSEL_BLK
:
641 max_index
= ARRAY_SIZE(xive
->blk
);
642 xive_table
= xive
->blk
;
644 case CQ_TAR_TSEL_MIG
:
645 max_index
= ARRAY_SIZE(xive
->mig
);
646 xive_table
= xive
->mig
;
648 case CQ_TAR_TSEL_EDT
:
649 max_index
= ARRAY_SIZE(xive
->edt
);
650 xive_table
= xive
->edt
;
652 case CQ_TAR_TSEL_VDT
:
653 max_index
= ARRAY_SIZE(xive
->vdt
);
654 xive_table
= xive
->vdt
;
657 xive_error(xive
, "IC: invalid table %d", (int) tsel
);
661 if (tsel_index
>= max_index
) {
662 xive_error(xive
, "IC: invalid index %d", (int) tsel_index
);
666 xive_table
[tsel_index
] = val
;
668 if (xive
->regs
[CQ_TAR
>> 3] & CQ_TAR_TBL_AUTOINC
) {
669 xive
->regs
[CQ_TAR
>> 3] =
670 SETFIELD(CQ_TAR_TSEL_INDEX
, xive
->regs
[CQ_TAR
>> 3], ++tsel_index
);
674 * EDT configuration is complete. Resize the MMIO windows exposing
675 * the IPI and the END ESBs in the VC region.
677 if (tsel
== CQ_TAR_TSEL_EDT
&& tsel_index
== ARRAY_SIZE(xive
->edt
)) {
678 pnv_xive_edt_resize(xive
);
685 * Virtual Structure Tables (VST) configuration
687 static void pnv_xive_vst_set_exclusive(PnvXive
*xive
, uint8_t type
,
688 uint8_t blk
, uint64_t vsd
)
690 XiveENDSource
*end_xsrc
= &xive
->end_source
;
691 XiveSource
*xsrc
= &xive
->ipi_source
;
692 const XiveVstInfo
*info
= &vst_infos
[type
];
693 uint32_t page_shift
= GETFIELD(VSD_TSIZE
, vsd
) + 12;
694 uint64_t vst_tsize
= 1ull << page_shift
;
695 uint64_t vst_addr
= vsd
& VSD_ADDRESS_MASK
;
699 if (VSD_INDIRECT
& vsd
) {
700 if (!(xive
->regs
[VC_GLOBAL_CONFIG
>> 3] & VC_GCONF_INDIRECT
)) {
701 xive_error(xive
, "VST: %s indirect tables are not enabled",
706 if (!pnv_xive_vst_page_size_allowed(page_shift
)) {
707 xive_error(xive
, "VST: invalid %s page shift %d", info
->name
,
713 if (!QEMU_IS_ALIGNED(vst_addr
, 1ull << page_shift
)) {
714 xive_error(xive
, "VST: %s table address 0x%"PRIx64
" is not aligned with"
715 " page shift %d", info
->name
, vst_addr
, page_shift
);
719 /* Record the table configuration (in SRAM on HW) */
720 xive
->vsds
[type
][blk
] = vsd
;
722 /* Now tune the models with the configuration provided by the FW */
725 case VST_TSEL_IVT
: /* Nothing to be done */
730 * Backing store pages for the END.
732 * If the table is direct, we can compute the number of PQ
733 * entries provisioned by FW (such as skiboot) and resize the
734 * END ESB window accordingly.
736 if (!(VSD_INDIRECT
& vsd
)) {
737 memory_region_set_size(&end_xsrc
->esb_mmio
, (vst_tsize
/ info
->size
)
738 * (1ull << xsrc
->esb_shift
));
740 memory_region_add_subregion(&xive
->end_edt_mmio
, 0,
741 &end_xsrc
->esb_mmio
);
746 * Backing store pages for the source PQ bits. The model does
747 * not use these PQ bits backed in RAM because the XiveSource
750 * If the table is direct, we can compute the number of PQ
751 * entries provisioned by FW (such as skiboot) and resize the
752 * ESB window accordingly.
754 if (!(VSD_INDIRECT
& vsd
)) {
755 memory_region_set_size(&xsrc
->esb_mmio
, vst_tsize
* SBE_PER_BYTE
756 * (1ull << xsrc
->esb_shift
));
758 memory_region_add_subregion(&xive
->ipi_edt_mmio
, 0, &xsrc
->esb_mmio
);
761 case VST_TSEL_VPDT
: /* Not modeled */
762 case VST_TSEL_IRQ
: /* Not modeled */
764 * These tables contains the backing store pages for the
765 * interrupt fifos of the VC sub-engine in case of overflow.
770 g_assert_not_reached();
775 * Both PC and VC sub-engines are configured as each use the Virtual
776 * Structure Tables : SBE, EAS, END and NVT.
778 static void pnv_xive_vst_set_data(PnvXive
*xive
, uint64_t vsd
, bool pc_engine
)
780 uint8_t mode
= GETFIELD(VSD_MODE
, vsd
);
781 uint8_t type
= GETFIELD(VST_TABLE_SELECT
,
782 xive
->regs
[VC_VSD_TABLE_ADDR
>> 3]);
783 uint8_t blk
= GETFIELD(VST_TABLE_BLOCK
,
784 xive
->regs
[VC_VSD_TABLE_ADDR
>> 3]);
785 uint64_t vst_addr
= vsd
& VSD_ADDRESS_MASK
;
787 if (type
> VST_TSEL_IRQ
) {
788 xive_error(xive
, "VST: invalid table type %d", type
);
792 if (blk
>= vst_infos
[type
].max_blocks
) {
793 xive_error(xive
, "VST: invalid block id %d for"
794 " %s table", blk
, vst_infos
[type
].name
);
799 * Only take the VC sub-engine configuration into account because
800 * the XiveRouter model combines both VC and PC sub-engines
807 xive_error(xive
, "VST: invalid %s table address", vst_infos
[type
].name
);
812 case VSD_MODE_FORWARD
:
813 xive
->vsds
[type
][blk
] = vsd
;
816 case VSD_MODE_EXCLUSIVE
:
817 pnv_xive_vst_set_exclusive(xive
, type
, blk
, vsd
);
821 xive_error(xive
, "VST: unsupported table mode %d", mode
);
827 * Interrupt controller MMIO region. The layout is compatible between
830 * Page 0 sub-engine BARs
831 * 0x000 - 0x3FF IC registers
832 * 0x400 - 0x7FF PC registers
833 * 0x800 - 0xFFF VC registers
835 * Page 1 Notify page (writes only)
836 * 0x000 - 0x7FF HW interrupt triggers (PSI, PHB)
837 * 0x800 - 0xFFF forwards and syncs
839 * Page 2 LSI Trigger page (writes only) (not modeled)
840 * Page 3 LSI SB EOI page (reads only) (not modeled)
842 * Page 4-7 indirect TIMA
846 * IC - registers MMIO
848 static void pnv_xive_ic_reg_write(void *opaque
, hwaddr offset
,
849 uint64_t val
, unsigned size
)
851 PnvXive
*xive
= PNV_XIVE(opaque
);
852 MemoryRegion
*sysmem
= get_system_memory();
853 uint32_t reg
= offset
>> 3;
854 bool is_chip0
= xive
->chip
->chip_id
== 0;
859 * XIVE CQ (PowerBus bridge) settings
861 case CQ_MSGSND
: /* msgsnd for doorbells */
862 case CQ_FIRMASK_OR
: /* FIR error reporting */
865 if (val
& CQ_PBI_PC_64K
) {
868 if (val
& CQ_PBI_VC_64K
) {
872 case CQ_CFG_PB_GEN
: /* PowerBus General Configuration */
874 * TODO: CQ_INT_ADDR_OPT for 1-block-per-chip mode
879 * XIVE Virtualization Controller settings
881 case VC_GLOBAL_CONFIG
:
885 * XIVE Presenter Controller settings
887 case PC_GLOBAL_CONFIG
:
889 * PC_GCONF_CHIPID_OVR
890 * Overrides Int command Chip ID with the Chip ID field (DEBUG)
895 * TODO: block group support
901 * enable block tracking and exchange of block ownership
902 * information between Interrupt controllers
909 case VC_SBC_CONFIG
: /* Store EOI configuration */
911 * Configure store EOI if required by firwmare (skiboot has removed
912 * support recently though)
914 if (val
& (VC_SBC_CONF_CPLX_CIST
| VC_SBC_CONF_CIST_BOTH
)) {
915 xive
->ipi_source
.esb_flags
|= XIVE_SRC_STORE_EOI
;
919 case VC_EQC_CONFIG
: /* TODO: silent escalation */
920 case VC_AIB_TX_ORDER_TAG2
: /* relax ordering */
924 * XIVE BAR settings (XSCOM only)
927 /* bit4: resets all BAR registers */
930 case CQ_IC_BAR
: /* IC BAR. 8 pages */
931 xive
->ic_shift
= val
& CQ_IC_BAR_64K
? 16 : 12;
932 if (!(val
& CQ_IC_BAR_VALID
)) {
934 if (xive
->regs
[reg
] & CQ_IC_BAR_VALID
) {
935 memory_region_del_subregion(&xive
->ic_mmio
,
937 memory_region_del_subregion(&xive
->ic_mmio
,
938 &xive
->ic_notify_mmio
);
939 memory_region_del_subregion(&xive
->ic_mmio
,
941 memory_region_del_subregion(&xive
->ic_mmio
,
942 &xive
->tm_indirect_mmio
);
944 memory_region_del_subregion(sysmem
, &xive
->ic_mmio
);
947 xive
->ic_base
= val
& ~(CQ_IC_BAR_VALID
| CQ_IC_BAR_64K
);
948 if (!(xive
->regs
[reg
] & CQ_IC_BAR_VALID
)) {
949 memory_region_add_subregion(sysmem
, xive
->ic_base
,
952 memory_region_add_subregion(&xive
->ic_mmio
, 0,
954 memory_region_add_subregion(&xive
->ic_mmio
,
955 1ul << xive
->ic_shift
,
956 &xive
->ic_notify_mmio
);
957 memory_region_add_subregion(&xive
->ic_mmio
,
958 2ul << xive
->ic_shift
,
960 memory_region_add_subregion(&xive
->ic_mmio
,
961 4ull << xive
->ic_shift
,
962 &xive
->tm_indirect_mmio
);
967 case CQ_TM1_BAR
: /* TM BAR. 4 pages. Map only once */
968 case CQ_TM2_BAR
: /* second TM BAR. for hotplug. Not modeled */
969 xive
->tm_shift
= val
& CQ_TM_BAR_64K
? 16 : 12;
970 if (!(val
& CQ_TM_BAR_VALID
)) {
972 if (xive
->regs
[reg
] & CQ_TM_BAR_VALID
&& is_chip0
) {
973 memory_region_del_subregion(sysmem
, &xive
->tm_mmio
);
976 xive
->tm_base
= val
& ~(CQ_TM_BAR_VALID
| CQ_TM_BAR_64K
);
977 if (!(xive
->regs
[reg
] & CQ_TM_BAR_VALID
) && is_chip0
) {
978 memory_region_add_subregion(sysmem
, xive
->tm_base
,
985 xive
->regs
[reg
] = val
;
986 memory_region_set_size(&xive
->pc_mmio
, pnv_xive_pc_size(xive
));
988 case CQ_PC_BAR
: /* From 32M to 512G */
989 if (!(val
& CQ_PC_BAR_VALID
)) {
991 if (xive
->regs
[reg
] & CQ_PC_BAR_VALID
) {
992 memory_region_del_subregion(sysmem
, &xive
->pc_mmio
);
995 xive
->pc_base
= val
& ~(CQ_PC_BAR_VALID
);
996 if (!(xive
->regs
[reg
] & CQ_PC_BAR_VALID
)) {
997 memory_region_add_subregion(sysmem
, xive
->pc_base
,
1004 xive
->regs
[reg
] = val
;
1005 memory_region_set_size(&xive
->vc_mmio
, pnv_xive_vc_size(xive
));
1007 case CQ_VC_BAR
: /* From 64M to 4TB */
1008 if (!(val
& CQ_VC_BAR_VALID
)) {
1010 if (xive
->regs
[reg
] & CQ_VC_BAR_VALID
) {
1011 memory_region_del_subregion(sysmem
, &xive
->vc_mmio
);
1014 xive
->vc_base
= val
& ~(CQ_VC_BAR_VALID
);
1015 if (!(xive
->regs
[reg
] & CQ_VC_BAR_VALID
)) {
1016 memory_region_add_subregion(sysmem
, xive
->vc_base
,
1023 * XIVE Table settings.
1025 case CQ_TAR
: /* Table Address */
1027 case CQ_TDR
: /* Table Data */
1028 pnv_xive_table_set_data(xive
, val
);
1032 * XIVE VC & PC Virtual Structure Table settings
1034 case VC_VSD_TABLE_ADDR
:
1035 case PC_VSD_TABLE_ADDR
: /* Virtual table selector */
1037 case VC_VSD_TABLE_DATA
: /* Virtual table setting */
1038 case PC_VSD_TABLE_DATA
:
1039 pnv_xive_vst_set_data(xive
, val
, offset
== PC_VSD_TABLE_DATA
);
1043 * Interrupt fifo overflow in memory backing store (Not modeled)
1045 case VC_IRQ_CONFIG_IPI
:
1046 case VC_IRQ_CONFIG_HW
:
1047 case VC_IRQ_CONFIG_CASCADE1
:
1048 case VC_IRQ_CONFIG_CASCADE2
:
1049 case VC_IRQ_CONFIG_REDIST
:
1050 case VC_IRQ_CONFIG_IPI_CASC
:
1054 * XIVE hardware thread enablement
1056 case PC_THREAD_EN_REG0
: /* Physical Thread Enable */
1057 case PC_THREAD_EN_REG1
: /* Physical Thread Enable (fused core) */
1060 case PC_THREAD_EN_REG0_SET
:
1061 xive
->regs
[PC_THREAD_EN_REG0
>> 3] |= val
;
1063 case PC_THREAD_EN_REG1_SET
:
1064 xive
->regs
[PC_THREAD_EN_REG1
>> 3] |= val
;
1066 case PC_THREAD_EN_REG0_CLR
:
1067 xive
->regs
[PC_THREAD_EN_REG0
>> 3] &= ~val
;
1069 case PC_THREAD_EN_REG1_CLR
:
1070 xive
->regs
[PC_THREAD_EN_REG1
>> 3] &= ~val
;
1074 * Indirect TIMA access set up. Defines the PIR of the HW thread
1077 case PC_TCTXT_INDIR0
... PC_TCTXT_INDIR3
:
1081 * XIVE PC & VC cache updates for EAS, NVT and END
1083 case VC_IVC_SCRUB_MASK
:
1084 case VC_IVC_SCRUB_TRIG
:
1087 case VC_EQC_CWATCH_SPEC
:
1088 val
&= ~VC_EQC_CWATCH_CONFLICT
; /* HW resets this bit */
1090 case VC_EQC_CWATCH_DAT1
... VC_EQC_CWATCH_DAT3
:
1092 case VC_EQC_CWATCH_DAT0
:
1093 /* writing to DATA0 triggers the cache write */
1094 xive
->regs
[reg
] = val
;
1095 pnv_xive_end_update(xive
);
1097 case VC_EQC_SCRUB_MASK
:
1098 case VC_EQC_SCRUB_TRIG
:
1100 * The scrubbing registers flush the cache in RAM and can also
1105 case PC_VPC_CWATCH_SPEC
:
1106 val
&= ~PC_VPC_CWATCH_CONFLICT
; /* HW resets this bit */
1108 case PC_VPC_CWATCH_DAT1
... PC_VPC_CWATCH_DAT7
:
1110 case PC_VPC_CWATCH_DAT0
:
1111 /* writing to DATA0 triggers the cache write */
1112 xive
->regs
[reg
] = val
;
1113 pnv_xive_nvt_update(xive
);
1115 case PC_VPC_SCRUB_MASK
:
1116 case PC_VPC_SCRUB_TRIG
:
1118 * The scrubbing registers flush the cache in RAM and can also
1125 * XIVE PC & VC cache invalidation
1129 case VC_AT_MACRO_KILL
:
1131 case PC_AT_KILL_MASK
:
1132 case VC_AT_MACRO_KILL_MASK
:
1136 xive_error(xive
, "IC: invalid write to reg=0x%"HWADDR_PRIx
, offset
);
1140 xive
->regs
[reg
] = val
;
1143 static uint64_t pnv_xive_ic_reg_read(void *opaque
, hwaddr offset
, unsigned size
)
1145 PnvXive
*xive
= PNV_XIVE(opaque
);
1147 uint32_t reg
= offset
>> 3;
1163 case PC_TCTXT_TRACK
:
1164 case PC_TCTXT_INDIR0
:
1165 case PC_TCTXT_INDIR1
:
1166 case PC_TCTXT_INDIR2
:
1167 case PC_TCTXT_INDIR3
:
1168 case PC_GLOBAL_CONFIG
:
1170 case PC_VPC_SCRUB_MASK
:
1172 case VC_GLOBAL_CONFIG
:
1173 case VC_AIB_TX_ORDER_TAG2
:
1175 case VC_IRQ_CONFIG_IPI
:
1176 case VC_IRQ_CONFIG_HW
:
1177 case VC_IRQ_CONFIG_CASCADE1
:
1178 case VC_IRQ_CONFIG_CASCADE2
:
1179 case VC_IRQ_CONFIG_REDIST
:
1180 case VC_IRQ_CONFIG_IPI_CASC
:
1182 case VC_EQC_SCRUB_MASK
:
1183 case VC_IVC_SCRUB_MASK
:
1185 case VC_AT_MACRO_KILL_MASK
:
1186 case VC_VSD_TABLE_ADDR
:
1187 case PC_VSD_TABLE_ADDR
:
1188 case VC_VSD_TABLE_DATA
:
1189 case PC_VSD_TABLE_DATA
:
1190 case PC_THREAD_EN_REG0
:
1191 case PC_THREAD_EN_REG1
:
1192 val
= xive
->regs
[reg
];
1196 * XIVE hardware thread enablement
1198 case PC_THREAD_EN_REG0_SET
:
1199 case PC_THREAD_EN_REG0_CLR
:
1200 val
= xive
->regs
[PC_THREAD_EN_REG0
>> 3];
1202 case PC_THREAD_EN_REG1_SET
:
1203 case PC_THREAD_EN_REG1_CLR
:
1204 val
= xive
->regs
[PC_THREAD_EN_REG1
>> 3];
1207 case CQ_MSGSND
: /* Identifies which cores have msgsnd enabled. */
1208 val
= 0xffffff0000000000;
1212 * XIVE PC & VC cache updates for EAS, NVT and END
1214 case VC_EQC_CWATCH_SPEC
:
1215 xive
->regs
[reg
] = ~(VC_EQC_CWATCH_FULL
| VC_EQC_CWATCH_CONFLICT
);
1216 val
= xive
->regs
[reg
];
1218 case VC_EQC_CWATCH_DAT0
:
1220 * Load DATA registers from cache with data requested by the
1223 pnv_xive_end_cache_load(xive
);
1224 val
= xive
->regs
[reg
];
1226 case VC_EQC_CWATCH_DAT1
... VC_EQC_CWATCH_DAT3
:
1227 val
= xive
->regs
[reg
];
1230 case PC_VPC_CWATCH_SPEC
:
1231 xive
->regs
[reg
] = ~(PC_VPC_CWATCH_FULL
| PC_VPC_CWATCH_CONFLICT
);
1232 val
= xive
->regs
[reg
];
1234 case PC_VPC_CWATCH_DAT0
:
1236 * Load DATA registers from cache with data requested by the
1239 pnv_xive_nvt_cache_load(xive
);
1240 val
= xive
->regs
[reg
];
1242 case PC_VPC_CWATCH_DAT1
... PC_VPC_CWATCH_DAT7
:
1243 val
= xive
->regs
[reg
];
1246 case PC_VPC_SCRUB_TRIG
:
1247 case VC_IVC_SCRUB_TRIG
:
1248 case VC_EQC_SCRUB_TRIG
:
1249 xive
->regs
[reg
] &= ~VC_SCRUB_VALID
;
1250 val
= xive
->regs
[reg
];
1254 * XIVE PC & VC cache invalidation
1257 xive
->regs
[reg
] &= ~PC_AT_KILL_VALID
;
1258 val
= xive
->regs
[reg
];
1260 case VC_AT_MACRO_KILL
:
1261 xive
->regs
[reg
] &= ~VC_KILL_VALID
;
1262 val
= xive
->regs
[reg
];
1266 * XIVE synchronisation
1269 val
= VC_EQC_SYNC_MASK
;
1273 xive_error(xive
, "IC: invalid read reg=0x%"HWADDR_PRIx
, offset
);
1279 static const MemoryRegionOps pnv_xive_ic_reg_ops
= {
1280 .read
= pnv_xive_ic_reg_read
,
1281 .write
= pnv_xive_ic_reg_write
,
1282 .endianness
= DEVICE_BIG_ENDIAN
,
1284 .min_access_size
= 8,
1285 .max_access_size
= 8,
1288 .min_access_size
= 8,
1289 .max_access_size
= 8,
1294 * IC - Notify MMIO port page (write only)
1296 #define PNV_XIVE_FORWARD_IPI 0x800 /* Forward IPI */
1297 #define PNV_XIVE_FORWARD_HW 0x880 /* Forward HW */
1298 #define PNV_XIVE_FORWARD_OS_ESC 0x900 /* Forward OS escalation */
1299 #define PNV_XIVE_FORWARD_HW_ESC 0x980 /* Forward Hyp escalation */
1300 #define PNV_XIVE_FORWARD_REDIS 0xa00 /* Forward Redistribution */
1301 #define PNV_XIVE_RESERVED5 0xa80 /* Cache line 5 PowerBUS operation */
1302 #define PNV_XIVE_RESERVED6 0xb00 /* Cache line 6 PowerBUS operation */
1303 #define PNV_XIVE_RESERVED7 0xb80 /* Cache line 7 PowerBUS operation */
1305 /* VC synchronisation */
1306 #define PNV_XIVE_SYNC_IPI 0xc00 /* Sync IPI */
1307 #define PNV_XIVE_SYNC_HW 0xc80 /* Sync HW */
1308 #define PNV_XIVE_SYNC_OS_ESC 0xd00 /* Sync OS escalation */
1309 #define PNV_XIVE_SYNC_HW_ESC 0xd80 /* Sync Hyp escalation */
1310 #define PNV_XIVE_SYNC_REDIS 0xe00 /* Sync Redistribution */
1312 /* PC synchronisation */
1313 #define PNV_XIVE_SYNC_PULL 0xe80 /* Sync pull context */
1314 #define PNV_XIVE_SYNC_PUSH 0xf00 /* Sync push context */
1315 #define PNV_XIVE_SYNC_VPC 0xf80 /* Sync remove VPC store */
1317 static void pnv_xive_ic_hw_trigger(PnvXive
*xive
, hwaddr addr
, uint64_t val
)
1322 if (val
& XIVE_TRIGGER_END
) {
1323 xive_error(xive
, "IC: END trigger at @0x%"HWADDR_PRIx
" data 0x%"PRIx64
,
1329 * Forward the source event notification directly to the Router.
1330 * The source interrupt number should already be correctly encoded
1331 * with the chip block id by the sending device (PHB, PSI).
1333 blk
= XIVE_EAS_BLOCK(val
);
1334 idx
= XIVE_EAS_INDEX(val
);
1336 xive_router_notify(XIVE_NOTIFIER(xive
), XIVE_EAS(blk
, idx
));
1339 static void pnv_xive_ic_notify_write(void *opaque
, hwaddr addr
, uint64_t val
,
1342 PnvXive
*xive
= PNV_XIVE(opaque
);
1344 /* VC: HW triggers */
1346 case 0x000 ... 0x7FF:
1347 pnv_xive_ic_hw_trigger(opaque
, addr
, val
);
1350 /* VC: Forwarded IRQs */
1351 case PNV_XIVE_FORWARD_IPI
:
1352 case PNV_XIVE_FORWARD_HW
:
1353 case PNV_XIVE_FORWARD_OS_ESC
:
1354 case PNV_XIVE_FORWARD_HW_ESC
:
1355 case PNV_XIVE_FORWARD_REDIS
:
1356 /* TODO: forwarded IRQs. Should be like HW triggers */
1357 xive_error(xive
, "IC: forwarded at @0x%"HWADDR_PRIx
" IRQ 0x%"PRIx64
,
1362 case PNV_XIVE_SYNC_IPI
:
1363 case PNV_XIVE_SYNC_HW
:
1364 case PNV_XIVE_SYNC_OS_ESC
:
1365 case PNV_XIVE_SYNC_HW_ESC
:
1366 case PNV_XIVE_SYNC_REDIS
:
1370 case PNV_XIVE_SYNC_PULL
:
1371 case PNV_XIVE_SYNC_PUSH
:
1372 case PNV_XIVE_SYNC_VPC
:
1376 xive_error(xive
, "IC: invalid notify write @%"HWADDR_PRIx
, addr
);
1380 static uint64_t pnv_xive_ic_notify_read(void *opaque
, hwaddr addr
,
1383 PnvXive
*xive
= PNV_XIVE(opaque
);
1385 /* loads are invalid */
1386 xive_error(xive
, "IC: invalid notify read @%"HWADDR_PRIx
, addr
);
1390 static const MemoryRegionOps pnv_xive_ic_notify_ops
= {
1391 .read
= pnv_xive_ic_notify_read
,
1392 .write
= pnv_xive_ic_notify_write
,
1393 .endianness
= DEVICE_BIG_ENDIAN
,
1395 .min_access_size
= 8,
1396 .max_access_size
= 8,
1399 .min_access_size
= 8,
1400 .max_access_size
= 8,
1405 * IC - LSI MMIO handlers (not modeled)
1408 static void pnv_xive_ic_lsi_write(void *opaque
, hwaddr addr
,
1409 uint64_t val
, unsigned size
)
1411 PnvXive
*xive
= PNV_XIVE(opaque
);
1413 xive_error(xive
, "IC: LSI invalid write @%"HWADDR_PRIx
, addr
);
1416 static uint64_t pnv_xive_ic_lsi_read(void *opaque
, hwaddr addr
, unsigned size
)
1418 PnvXive
*xive
= PNV_XIVE(opaque
);
1420 xive_error(xive
, "IC: LSI invalid read @%"HWADDR_PRIx
, addr
);
1424 static const MemoryRegionOps pnv_xive_ic_lsi_ops
= {
1425 .read
= pnv_xive_ic_lsi_read
,
1426 .write
= pnv_xive_ic_lsi_write
,
1427 .endianness
= DEVICE_BIG_ENDIAN
,
1429 .min_access_size
= 8,
1430 .max_access_size
= 8,
1433 .min_access_size
= 8,
1434 .max_access_size
= 8,
1439 * IC - Indirect TIMA MMIO handlers
1443 * When the TIMA is accessed from the indirect page, the thread id of
1444 * the target CPU is configured in the PC_TCTXT_INDIR0 register before
1445 * use. This is used for resets and for debug purpose also.
1447 static XiveTCTX
*pnv_xive_get_indirect_tctx(PnvXive
*xive
)
1449 PnvChip
*chip
= xive
->chip
;
1450 uint64_t tctxt_indir
= xive
->regs
[PC_TCTXT_INDIR0
>> 3];
1451 PowerPCCPU
*cpu
= NULL
;
1454 if (!(tctxt_indir
& PC_TCTXT_INDIR_VALID
)) {
1455 xive_error(xive
, "IC: no indirect TIMA access in progress");
1459 pir
= (chip
->chip_id
<< 8) | GETFIELD(PC_TCTXT_INDIR_THRDID
, tctxt_indir
);
1460 cpu
= pnv_chip_find_cpu(chip
, pir
);
1462 xive_error(xive
, "IC: invalid PIR %x for indirect access", pir
);
1466 /* Check that HW thread is XIVE enabled */
1467 if (!pnv_xive_is_cpu_enabled(xive
, cpu
)) {
1468 xive_error(xive
, "IC: CPU %x is not enabled", pir
);
1471 return XIVE_TCTX(pnv_cpu_state(cpu
)->intc
);
1474 static void xive_tm_indirect_write(void *opaque
, hwaddr offset
,
1475 uint64_t value
, unsigned size
)
1477 XiveTCTX
*tctx
= pnv_xive_get_indirect_tctx(PNV_XIVE(opaque
));
1479 xive_tctx_tm_write(XIVE_PRESENTER(opaque
), tctx
, offset
, value
, size
);
1482 static uint64_t xive_tm_indirect_read(void *opaque
, hwaddr offset
,
1485 XiveTCTX
*tctx
= pnv_xive_get_indirect_tctx(PNV_XIVE(opaque
));
1487 return xive_tctx_tm_read(XIVE_PRESENTER(opaque
), tctx
, offset
, size
);
1490 static const MemoryRegionOps xive_tm_indirect_ops
= {
1491 .read
= xive_tm_indirect_read
,
1492 .write
= xive_tm_indirect_write
,
1493 .endianness
= DEVICE_BIG_ENDIAN
,
1495 .min_access_size
= 1,
1496 .max_access_size
= 8,
1499 .min_access_size
= 1,
1500 .max_access_size
= 8,
1504 static void pnv_xive_tm_write(void *opaque
, hwaddr offset
,
1505 uint64_t value
, unsigned size
)
1507 PowerPCCPU
*cpu
= POWERPC_CPU(current_cpu
);
1508 PnvXive
*xive
= pnv_xive_tm_get_xive(cpu
);
1509 XiveTCTX
*tctx
= XIVE_TCTX(pnv_cpu_state(cpu
)->intc
);
1511 xive_tctx_tm_write(XIVE_PRESENTER(xive
), tctx
, offset
, value
, size
);
1514 static uint64_t pnv_xive_tm_read(void *opaque
, hwaddr offset
, unsigned size
)
1516 PowerPCCPU
*cpu
= POWERPC_CPU(current_cpu
);
1517 PnvXive
*xive
= pnv_xive_tm_get_xive(cpu
);
1518 XiveTCTX
*tctx
= XIVE_TCTX(pnv_cpu_state(cpu
)->intc
);
1520 return xive_tctx_tm_read(XIVE_PRESENTER(xive
), tctx
, offset
, size
);
1523 const MemoryRegionOps pnv_xive_tm_ops
= {
1524 .read
= pnv_xive_tm_read
,
1525 .write
= pnv_xive_tm_write
,
1526 .endianness
= DEVICE_BIG_ENDIAN
,
1528 .min_access_size
= 1,
1529 .max_access_size
= 8,
1532 .min_access_size
= 1,
1533 .max_access_size
= 8,
1538 * Interrupt controller XSCOM region.
1540 static uint64_t pnv_xive_xscom_read(void *opaque
, hwaddr addr
, unsigned size
)
1542 switch (addr
>> 3) {
1543 case X_VC_EQC_CONFIG
:
1544 /* FIXME (skiboot): This is the only XSCOM load. Bizarre. */
1545 return VC_EQC_SYNC_MASK
;
1547 return pnv_xive_ic_reg_read(opaque
, addr
, size
);
1551 static void pnv_xive_xscom_write(void *opaque
, hwaddr addr
,
1552 uint64_t val
, unsigned size
)
1554 pnv_xive_ic_reg_write(opaque
, addr
, val
, size
);
1557 static const MemoryRegionOps pnv_xive_xscom_ops
= {
1558 .read
= pnv_xive_xscom_read
,
1559 .write
= pnv_xive_xscom_write
,
1560 .endianness
= DEVICE_BIG_ENDIAN
,
1562 .min_access_size
= 8,
1563 .max_access_size
= 8,
1566 .min_access_size
= 8,
1567 .max_access_size
= 8,
1572 * Virtualization Controller MMIO region containing the IPI and END ESB pages
1574 static uint64_t pnv_xive_vc_read(void *opaque
, hwaddr offset
,
1577 PnvXive
*xive
= PNV_XIVE(opaque
);
1578 uint64_t edt_index
= offset
>> pnv_xive_edt_shift(xive
);
1579 uint64_t edt_type
= 0;
1580 uint64_t edt_offset
;
1582 AddressSpace
*edt_as
= NULL
;
1585 if (edt_index
< XIVE_TABLE_EDT_MAX
) {
1586 edt_type
= GETFIELD(CQ_TDR_EDT_TYPE
, xive
->edt
[edt_index
]);
1590 case CQ_TDR_EDT_IPI
:
1591 edt_as
= &xive
->ipi_as
;
1594 edt_as
= &xive
->end_as
;
1597 xive_error(xive
, "VC: invalid EDT type for read @%"HWADDR_PRIx
, offset
);
1601 /* Remap the offset for the targeted address space */
1602 edt_offset
= pnv_xive_edt_offset(xive
, offset
, edt_type
);
1604 ret
= address_space_ldq(edt_as
, edt_offset
, MEMTXATTRS_UNSPECIFIED
,
1607 if (result
!= MEMTX_OK
) {
1608 xive_error(xive
, "VC: %s read failed at @0x%"HWADDR_PRIx
" -> @0x%"
1609 HWADDR_PRIx
, edt_type
== CQ_TDR_EDT_IPI
? "IPI" : "END",
1610 offset
, edt_offset
);
1617 static void pnv_xive_vc_write(void *opaque
, hwaddr offset
,
1618 uint64_t val
, unsigned size
)
1620 PnvXive
*xive
= PNV_XIVE(opaque
);
1621 uint64_t edt_index
= offset
>> pnv_xive_edt_shift(xive
);
1622 uint64_t edt_type
= 0;
1623 uint64_t edt_offset
;
1625 AddressSpace
*edt_as
= NULL
;
1627 if (edt_index
< XIVE_TABLE_EDT_MAX
) {
1628 edt_type
= GETFIELD(CQ_TDR_EDT_TYPE
, xive
->edt
[edt_index
]);
1632 case CQ_TDR_EDT_IPI
:
1633 edt_as
= &xive
->ipi_as
;
1636 edt_as
= &xive
->end_as
;
1639 xive_error(xive
, "VC: invalid EDT type for write @%"HWADDR_PRIx
,
1644 /* Remap the offset for the targeted address space */
1645 edt_offset
= pnv_xive_edt_offset(xive
, offset
, edt_type
);
1647 address_space_stq(edt_as
, edt_offset
, val
, MEMTXATTRS_UNSPECIFIED
, &result
);
1648 if (result
!= MEMTX_OK
) {
1649 xive_error(xive
, "VC: write failed at @0x%"HWADDR_PRIx
, edt_offset
);
1653 static const MemoryRegionOps pnv_xive_vc_ops
= {
1654 .read
= pnv_xive_vc_read
,
1655 .write
= pnv_xive_vc_write
,
1656 .endianness
= DEVICE_BIG_ENDIAN
,
1658 .min_access_size
= 8,
1659 .max_access_size
= 8,
1662 .min_access_size
= 8,
1663 .max_access_size
= 8,
1668 * Presenter Controller MMIO region. The Virtualization Controller
1669 * updates the IPB in the NVT table when required. Not modeled.
1671 static uint64_t pnv_xive_pc_read(void *opaque
, hwaddr addr
,
1674 PnvXive
*xive
= PNV_XIVE(opaque
);
1676 xive_error(xive
, "PC: invalid read @%"HWADDR_PRIx
, addr
);
1680 static void pnv_xive_pc_write(void *opaque
, hwaddr addr
,
1681 uint64_t value
, unsigned size
)
1683 PnvXive
*xive
= PNV_XIVE(opaque
);
1685 xive_error(xive
, "PC: invalid write to VC @%"HWADDR_PRIx
, addr
);
1688 static const MemoryRegionOps pnv_xive_pc_ops
= {
1689 .read
= pnv_xive_pc_read
,
1690 .write
= pnv_xive_pc_write
,
1691 .endianness
= DEVICE_BIG_ENDIAN
,
1693 .min_access_size
= 8,
1694 .max_access_size
= 8,
1697 .min_access_size
= 8,
1698 .max_access_size
= 8,
1702 static void xive_nvt_pic_print_info(XiveNVT
*nvt
, uint32_t nvt_idx
,
1705 uint8_t eq_blk
= xive_get_field32(NVT_W1_EQ_BLOCK
, nvt
->w1
);
1706 uint32_t eq_idx
= xive_get_field32(NVT_W1_EQ_INDEX
, nvt
->w1
);
1708 if (!xive_nvt_is_valid(nvt
)) {
1712 monitor_printf(mon
, " %08x end:%02x/%04x IPB:%02x\n", nvt_idx
,
1714 xive_get_field32(NVT_W4_IPB
, nvt
->w4
));
1717 void pnv_xive_pic_print_info(PnvXive
*xive
, Monitor
*mon
)
1719 XiveRouter
*xrtr
= XIVE_ROUTER(xive
);
1720 uint8_t blk
= pnv_xive_block_id(xive
);
1721 uint8_t chip_id
= xive
->chip
->chip_id
;
1722 uint32_t srcno0
= XIVE_EAS(blk
, 0);
1723 uint32_t nr_ipis
= pnv_xive_nr_ipis(xive
, blk
);
1728 uint64_t xive_nvt_per_subpage
;
1730 monitor_printf(mon
, "XIVE[%x] #%d Source %08x .. %08x\n", chip_id
, blk
,
1731 srcno0
, srcno0
+ nr_ipis
- 1);
1732 xive_source_pic_print_info(&xive
->ipi_source
, srcno0
, mon
);
1734 monitor_printf(mon
, "XIVE[%x] #%d EAT %08x .. %08x\n", chip_id
, blk
,
1735 srcno0
, srcno0
+ nr_ipis
- 1);
1736 for (i
= 0; i
< nr_ipis
; i
++) {
1737 if (xive_router_get_eas(xrtr
, blk
, i
, &eas
)) {
1740 if (!xive_eas_is_masked(&eas
)) {
1741 xive_eas_pic_print_info(&eas
, i
, mon
);
1745 monitor_printf(mon
, "XIVE[%x] #%d ENDT\n", chip_id
, blk
);
1747 while (!xive_router_get_end(xrtr
, blk
, i
, &end
)) {
1748 xive_end_pic_print_info(&end
, i
++, mon
);
1751 monitor_printf(mon
, "XIVE[%x] #%d END Escalation EAT\n", chip_id
, blk
);
1753 while (!xive_router_get_end(xrtr
, blk
, i
, &end
)) {
1754 xive_end_eas_pic_print_info(&end
, i
++, mon
);
1757 monitor_printf(mon
, "XIVE[%x] #%d NVTT %08x .. %08x\n", chip_id
, blk
,
1758 0, XIVE_NVT_COUNT
- 1);
1759 xive_nvt_per_subpage
= pnv_xive_vst_per_subpage(xive
, VST_TSEL_VPDT
);
1760 for (i
= 0; i
< XIVE_NVT_COUNT
; i
+= xive_nvt_per_subpage
) {
1761 while (!xive_router_get_nvt(xrtr
, blk
, i
, &nvt
)) {
1762 xive_nvt_pic_print_info(&nvt
, i
++, mon
);
1767 static void pnv_xive_reset(void *dev
)
1769 PnvXive
*xive
= PNV_XIVE(dev
);
1770 XiveSource
*xsrc
= &xive
->ipi_source
;
1771 XiveENDSource
*end_xsrc
= &xive
->end_source
;
1773 /* Default page size (Should be changed at runtime to 64k) */
1774 xive
->ic_shift
= xive
->vc_shift
= xive
->pc_shift
= 12;
1776 /* Clear subregions */
1777 if (memory_region_is_mapped(&xsrc
->esb_mmio
)) {
1778 memory_region_del_subregion(&xive
->ipi_edt_mmio
, &xsrc
->esb_mmio
);
1781 if (memory_region_is_mapped(&xive
->ipi_edt_mmio
)) {
1782 memory_region_del_subregion(&xive
->ipi_mmio
, &xive
->ipi_edt_mmio
);
1785 if (memory_region_is_mapped(&end_xsrc
->esb_mmio
)) {
1786 memory_region_del_subregion(&xive
->end_edt_mmio
, &end_xsrc
->esb_mmio
);
1789 if (memory_region_is_mapped(&xive
->end_edt_mmio
)) {
1790 memory_region_del_subregion(&xive
->end_mmio
, &xive
->end_edt_mmio
);
1794 static void pnv_xive_init(Object
*obj
)
1796 PnvXive
*xive
= PNV_XIVE(obj
);
1798 object_initialize_child(obj
, "ipi_source", &xive
->ipi_source
,
1800 object_initialize_child(obj
, "end_source", &xive
->end_source
,
1801 TYPE_XIVE_END_SOURCE
);
1805 * Maximum number of IRQs and ENDs supported by HW
1807 #define PNV_XIVE_NR_IRQS (PNV9_XIVE_VC_SIZE / (1ull << XIVE_ESB_64K_2PAGE))
1808 #define PNV_XIVE_NR_ENDS (PNV9_XIVE_VC_SIZE / (1ull << XIVE_ESB_64K_2PAGE))
1810 static void pnv_xive_realize(DeviceState
*dev
, Error
**errp
)
1812 PnvXive
*xive
= PNV_XIVE(dev
);
1813 PnvXiveClass
*pxc
= PNV_XIVE_GET_CLASS(dev
);
1814 XiveSource
*xsrc
= &xive
->ipi_source
;
1815 XiveENDSource
*end_xsrc
= &xive
->end_source
;
1816 Error
*local_err
= NULL
;
1818 pxc
->parent_realize(dev
, &local_err
);
1820 error_propagate(errp
, local_err
);
1827 * The XiveSource and XiveENDSource objects are realized with the
1828 * maximum allowed HW configuration. The ESB MMIO regions will be
1829 * resized dynamically when the controller is configured by the FW
1830 * to limit accesses to resources not provisioned.
1832 object_property_set_int(OBJECT(xsrc
), "nr-irqs", PNV_XIVE_NR_IRQS
,
1834 object_property_set_link(OBJECT(xsrc
), "xive", OBJECT(xive
), &error_abort
);
1835 if (!qdev_realize(DEVICE(xsrc
), NULL
, errp
)) {
1839 object_property_set_int(OBJECT(end_xsrc
), "nr-ends", PNV_XIVE_NR_ENDS
,
1841 object_property_set_link(OBJECT(end_xsrc
), "xive", OBJECT(xive
),
1843 if (!qdev_realize(DEVICE(end_xsrc
), NULL
, errp
)) {
1847 /* Default page size. Generally changed at runtime to 64k */
1848 xive
->ic_shift
= xive
->vc_shift
= xive
->pc_shift
= 12;
1850 /* XSCOM region, used for initial configuration of the BARs */
1851 memory_region_init_io(&xive
->xscom_regs
, OBJECT(dev
), &pnv_xive_xscom_ops
,
1852 xive
, "xscom-xive", PNV9_XSCOM_XIVE_SIZE
<< 3);
1854 /* Interrupt controller MMIO regions */
1855 memory_region_init(&xive
->ic_mmio
, OBJECT(dev
), "xive-ic",
1858 memory_region_init_io(&xive
->ic_reg_mmio
, OBJECT(dev
), &pnv_xive_ic_reg_ops
,
1859 xive
, "xive-ic-reg", 1 << xive
->ic_shift
);
1860 memory_region_init_io(&xive
->ic_notify_mmio
, OBJECT(dev
),
1861 &pnv_xive_ic_notify_ops
,
1862 xive
, "xive-ic-notify", 1 << xive
->ic_shift
);
1864 /* The Pervasive LSI trigger and EOI pages (not modeled) */
1865 memory_region_init_io(&xive
->ic_lsi_mmio
, OBJECT(dev
), &pnv_xive_ic_lsi_ops
,
1866 xive
, "xive-ic-lsi", 2 << xive
->ic_shift
);
1868 /* Thread Interrupt Management Area (Indirect) */
1869 memory_region_init_io(&xive
->tm_indirect_mmio
, OBJECT(dev
),
1870 &xive_tm_indirect_ops
,
1871 xive
, "xive-tima-indirect", PNV9_XIVE_TM_SIZE
);
1873 * Overall Virtualization Controller MMIO region containing the
1874 * IPI ESB pages and END ESB pages. The layout is defined by the
1875 * EDT "Domain table" and the accesses are dispatched using
1876 * address spaces for each.
1878 memory_region_init_io(&xive
->vc_mmio
, OBJECT(xive
), &pnv_xive_vc_ops
, xive
,
1879 "xive-vc", PNV9_XIVE_VC_SIZE
);
1881 memory_region_init(&xive
->ipi_mmio
, OBJECT(xive
), "xive-vc-ipi",
1883 address_space_init(&xive
->ipi_as
, &xive
->ipi_mmio
, "xive-vc-ipi");
1884 memory_region_init(&xive
->end_mmio
, OBJECT(xive
), "xive-vc-end",
1886 address_space_init(&xive
->end_as
, &xive
->end_mmio
, "xive-vc-end");
1889 * The MMIO windows exposing the IPI ESBs and the END ESBs in the
1890 * VC region. Their size is configured by the FW in the EDT table.
1892 memory_region_init(&xive
->ipi_edt_mmio
, OBJECT(xive
), "xive-vc-ipi-edt", 0);
1893 memory_region_init(&xive
->end_edt_mmio
, OBJECT(xive
), "xive-vc-end-edt", 0);
1895 /* Presenter Controller MMIO region (not modeled) */
1896 memory_region_init_io(&xive
->pc_mmio
, OBJECT(xive
), &pnv_xive_pc_ops
, xive
,
1897 "xive-pc", PNV9_XIVE_PC_SIZE
);
1899 /* Thread Interrupt Management Area (Direct) */
1900 memory_region_init_io(&xive
->tm_mmio
, OBJECT(xive
), &pnv_xive_tm_ops
,
1901 xive
, "xive-tima", PNV9_XIVE_TM_SIZE
);
1903 qemu_register_reset(pnv_xive_reset
, dev
);
1906 static int pnv_xive_dt_xscom(PnvXScomInterface
*dev
, void *fdt
,
1909 const char compat
[] = "ibm,power9-xive-x";
1912 uint32_t lpc_pcba
= PNV9_XSCOM_XIVE_BASE
;
1914 cpu_to_be32(lpc_pcba
),
1915 cpu_to_be32(PNV9_XSCOM_XIVE_SIZE
)
1918 name
= g_strdup_printf("xive@%x", lpc_pcba
);
1919 offset
= fdt_add_subnode(fdt
, xscom_offset
, name
);
1923 _FDT((fdt_setprop(fdt
, offset
, "reg", reg
, sizeof(reg
))));
1924 _FDT((fdt_setprop(fdt
, offset
, "compatible", compat
,
1929 static Property pnv_xive_properties
[] = {
1930 DEFINE_PROP_UINT64("ic-bar", PnvXive
, ic_base
, 0),
1931 DEFINE_PROP_UINT64("vc-bar", PnvXive
, vc_base
, 0),
1932 DEFINE_PROP_UINT64("pc-bar", PnvXive
, pc_base
, 0),
1933 DEFINE_PROP_UINT64("tm-bar", PnvXive
, tm_base
, 0),
1934 /* The PnvChip id identifies the XIVE interrupt controller. */
1935 DEFINE_PROP_LINK("chip", PnvXive
, chip
, TYPE_PNV_CHIP
, PnvChip
*),
1936 DEFINE_PROP_END_OF_LIST(),
1939 static void pnv_xive_class_init(ObjectClass
*klass
, void *data
)
1941 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1942 PnvXScomInterfaceClass
*xdc
= PNV_XSCOM_INTERFACE_CLASS(klass
);
1943 XiveRouterClass
*xrc
= XIVE_ROUTER_CLASS(klass
);
1944 XiveNotifierClass
*xnc
= XIVE_NOTIFIER_CLASS(klass
);
1945 XivePresenterClass
*xpc
= XIVE_PRESENTER_CLASS(klass
);
1946 PnvXiveClass
*pxc
= PNV_XIVE_CLASS(klass
);
1948 xdc
->dt_xscom
= pnv_xive_dt_xscom
;
1950 dc
->desc
= "PowerNV XIVE Interrupt Controller";
1951 device_class_set_parent_realize(dc
, pnv_xive_realize
, &pxc
->parent_realize
);
1952 dc
->realize
= pnv_xive_realize
;
1953 device_class_set_props(dc
, pnv_xive_properties
);
1955 xrc
->get_eas
= pnv_xive_get_eas
;
1956 xrc
->get_end
= pnv_xive_get_end
;
1957 xrc
->write_end
= pnv_xive_write_end
;
1958 xrc
->get_nvt
= pnv_xive_get_nvt
;
1959 xrc
->write_nvt
= pnv_xive_write_nvt
;
1960 xrc
->get_block_id
= pnv_xive_get_block_id
;
1962 xnc
->notify
= pnv_xive_notify
;
1963 xpc
->match_nvt
= pnv_xive_match_nvt
;
1966 static const TypeInfo pnv_xive_info
= {
1967 .name
= TYPE_PNV_XIVE
,
1968 .parent
= TYPE_XIVE_ROUTER
,
1969 .instance_init
= pnv_xive_init
,
1970 .instance_size
= sizeof(PnvXive
),
1971 .class_init
= pnv_xive_class_init
,
1972 .class_size
= sizeof(PnvXiveClass
),
1973 .interfaces
= (InterfaceInfo
[]) {
1974 { TYPE_PNV_XSCOM_INTERFACE
},
1979 static void pnv_xive_register_types(void)
1981 type_register_static(&pnv_xive_info
);
1984 type_init(pnv_xive_register_types
)