Home
last modified time | relevance | path

Searched refs:XIVE_PRIORITY_MAX (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/tests/qtest/
H A Dpnv-xive2-nvpg_bar.c17 #define XIVE_PRIORITY_MAX 7 macro
75 uint32_t vp_count[XIVE_PRIORITY_MAX + 1] = { 0 }; in test_nvpg_bar()
76 uint32_t group_count[XIVE_PRIORITY_MAX + 1] = { 0 }; in test_nvpg_bar()
107 for (i = 0; i <= XIVE_PRIORITY_MAX; i++) { in test_nvpg_bar()
/openbmc/qemu/include/hw/ppc/
H A Dxive.h514 #define XIVE_PRIORITY_MAX 7 macro
523 return priority > XIVE_PRIORITY_MAX ? in xive_priority_to_ipb()
524 0 : 1 << (XIVE_PRIORITY_MAX - priority); in xive_priority_to_ipb()
529 return priority > XIVE_PRIORITY_MAX ? 0xFF : priority; in xive_priority_to_pipr()
/openbmc/qemu/hw/intc/
H A Dxive.c203 if (cppr > XIVE_PRIORITY_MAX) { in xive_tctx_set_cppr()