1 /* 2 * QEMU PowerPC XIVE2 interrupt controller model (POWER10) 3 * 4 * Copyright (c) 2019-2024, IBM Corporation.. 5 * 6 * SPDX-License-Identifier: GPL-2.0-or-later 7 */ 8 9 #include "qemu/osdep.h" 10 #include "qemu/log.h" 11 #include "qemu/module.h" 12 #include "qapi/error.h" 13 #include "target/ppc/cpu.h" 14 #include "system/cpus.h" 15 #include "system/dma.h" 16 #include "hw/qdev-properties.h" 17 #include "hw/ppc/xive.h" 18 #include "hw/ppc/xive2.h" 19 #include "hw/ppc/xive2_regs.h" 20 #include "trace.h" 21 22 static void xive2_router_end_notify(Xive2Router *xrtr, uint8_t end_blk, 23 uint32_t end_idx, uint32_t end_data, 24 bool redistribute); 25 26 static int xive2_tctx_get_nvp_indexes(XiveTCTX *tctx, uint8_t ring, 27 uint8_t *nvp_blk, uint32_t *nvp_idx); 28 29 uint32_t xive2_router_get_config(Xive2Router *xrtr) 30 { 31 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 32 33 return xrc->get_config(xrtr); 34 } 35 36 static int xive2_router_get_block_id(Xive2Router *xrtr) 37 { 38 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 39 40 return xrc->get_block_id(xrtr); 41 } 42 43 static uint64_t xive2_nvp_reporting_addr(Xive2Nvp *nvp) 44 { 45 uint64_t cache_addr; 46 47 cache_addr = xive_get_field32(NVP2_W6_REPORTING_LINE, nvp->w6) << 24 | 48 xive_get_field32(NVP2_W7_REPORTING_LINE, nvp->w7); 49 cache_addr <<= 8; /* aligned on a cache line pair */ 50 return cache_addr; 51 } 52 53 static uint32_t xive2_nvgc_get_backlog(Xive2Nvgc *nvgc, uint8_t priority) 54 { 55 uint32_t val = 0; 56 uint8_t *ptr, i; 57 58 if (priority > 7) { 59 return 0; 60 } 61 62 /* 63 * The per-priority backlog counters are 24-bit and the structure 64 * is stored in big endian. NVGC is 32-bytes long, so 24-bytes from 65 * w2, which fits 8 priorities * 24-bits per priority. 66 */ 67 ptr = (uint8_t *)&nvgc->w2 + priority * 3; 68 for (i = 0; i < 3; i++, ptr++) { 69 val = (val << 8) + *ptr; 70 } 71 return val; 72 } 73 74 static void xive2_nvgc_set_backlog(Xive2Nvgc *nvgc, uint8_t priority, 75 uint32_t val) 76 { 77 uint8_t *ptr, i; 78 uint32_t shift; 79 80 if (priority > 7) { 81 return; 82 } 83 84 if (val > 0xFFFFFF) { 85 val = 0xFFFFFF; 86 } 87 /* 88 * The per-priority backlog counters are 24-bit and the structure 89 * is stored in big endian 90 */ 91 ptr = (uint8_t *)&nvgc->w2 + priority * 3; 92 for (i = 0; i < 3; i++, ptr++) { 93 shift = 8 * (2 - i); 94 *ptr = (val >> shift) & 0xFF; 95 } 96 } 97 98 uint64_t xive2_presenter_nvgc_backlog_op(XivePresenter *xptr, 99 bool crowd, 100 uint8_t blk, uint32_t idx, 101 uint16_t offset, uint16_t val) 102 { 103 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 104 uint8_t priority = GETFIELD(NVx_BACKLOG_PRIO, offset); 105 uint8_t op = GETFIELD(NVx_BACKLOG_OP, offset); 106 Xive2Nvgc nvgc; 107 uint32_t count, old_count; 108 109 if (xive2_router_get_nvgc(xrtr, crowd, blk, idx, &nvgc)) { 110 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No %s %x/%x\n", 111 crowd ? "NVC" : "NVG", blk, idx); 112 return -1; 113 } 114 if (!xive2_nvgc_is_valid(&nvgc)) { 115 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid NVG %x/%x\n", blk, idx); 116 return -1; 117 } 118 119 old_count = xive2_nvgc_get_backlog(&nvgc, priority); 120 count = old_count; 121 /* 122 * op: 123 * 0b00 => increment 124 * 0b01 => decrement 125 * 0b1- => read 126 */ 127 if (op == 0b00 || op == 0b01) { 128 if (op == 0b00) { 129 count += val; 130 } else { 131 if (count > val) { 132 count -= val; 133 } else { 134 count = 0; 135 } 136 } 137 xive2_nvgc_set_backlog(&nvgc, priority, count); 138 xive2_router_write_nvgc(xrtr, crowd, blk, idx, &nvgc); 139 } 140 trace_xive_nvgc_backlog_op(crowd, blk, idx, op, priority, old_count); 141 return old_count; 142 } 143 144 uint64_t xive2_presenter_nvp_backlog_op(XivePresenter *xptr, 145 uint8_t blk, uint32_t idx, 146 uint16_t offset) 147 { 148 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 149 uint8_t priority = GETFIELD(NVx_BACKLOG_PRIO, offset); 150 uint8_t op = GETFIELD(NVx_BACKLOG_OP, offset); 151 Xive2Nvp nvp; 152 uint8_t ipb, old_ipb, rc; 153 154 if (xive2_router_get_nvp(xrtr, blk, idx, &nvp)) { 155 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", blk, idx); 156 return -1; 157 } 158 if (!xive2_nvp_is_valid(&nvp)) { 159 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid NVP %x/%x\n", blk, idx); 160 return -1; 161 } 162 163 old_ipb = xive_get_field32(NVP2_W2_IPB, nvp.w2); 164 ipb = old_ipb; 165 /* 166 * op: 167 * 0b00 => set priority bit 168 * 0b01 => reset priority bit 169 * 0b1- => read 170 */ 171 if (op == 0b00 || op == 0b01) { 172 if (op == 0b00) { 173 ipb |= xive_priority_to_ipb(priority); 174 } else { 175 ipb &= ~xive_priority_to_ipb(priority); 176 } 177 nvp.w2 = xive_set_field32(NVP2_W2_IPB, nvp.w2, ipb); 178 xive2_router_write_nvp(xrtr, blk, idx, &nvp, 2); 179 } 180 rc = !!(old_ipb & xive_priority_to_ipb(priority)); 181 trace_xive_nvp_backlog_op(blk, idx, op, priority, rc); 182 return rc; 183 } 184 185 void xive2_eas_pic_print_info(Xive2Eas *eas, uint32_t lisn, GString *buf) 186 { 187 if (!xive2_eas_is_valid(eas)) { 188 return; 189 } 190 191 g_string_append_printf(buf, " %08x %s end:%02x/%04x data:%08x\n", 192 lisn, xive2_eas_is_masked(eas) ? "M" : " ", 193 (uint8_t) xive_get_field64(EAS2_END_BLOCK, eas->w), 194 (uint32_t) xive_get_field64(EAS2_END_INDEX, eas->w), 195 (uint32_t) xive_get_field64(EAS2_END_DATA, eas->w)); 196 } 197 198 #define XIVE2_QSIZE_CHUNK_CL 128 199 #define XIVE2_QSIZE_CHUNK_4k 4096 200 /* Calculate max number of queue entries for an END */ 201 static uint32_t xive2_end_get_qentries(Xive2End *end) 202 { 203 uint32_t w3 = end->w3; 204 uint32_t qsize = xive_get_field32(END2_W3_QSIZE, w3); 205 if (xive_get_field32(END2_W3_CL, w3)) { 206 g_assert(qsize <= 4); 207 return (XIVE2_QSIZE_CHUNK_CL << qsize) / sizeof(uint32_t); 208 } else { 209 g_assert(qsize <= 12); 210 return (XIVE2_QSIZE_CHUNK_4k << qsize) / sizeof(uint32_t); 211 } 212 } 213 214 void xive2_end_queue_pic_print_info(Xive2End *end, uint32_t width, GString *buf) 215 { 216 uint64_t qaddr_base = xive2_end_qaddr(end); 217 uint32_t qindex = xive_get_field32(END2_W1_PAGE_OFF, end->w1); 218 uint32_t qentries = xive2_end_get_qentries(end); 219 int i; 220 221 /* 222 * print out the [ (qindex - (width - 1)) .. (qindex + 1)] window 223 */ 224 g_string_append_printf(buf, " [ "); 225 qindex = (qindex - (width - 1)) & (qentries - 1); 226 for (i = 0; i < width; i++) { 227 uint64_t qaddr = qaddr_base + (qindex << 2); 228 uint32_t qdata = -1; 229 230 if (dma_memory_read(&address_space_memory, qaddr, &qdata, 231 sizeof(qdata), MEMTXATTRS_UNSPECIFIED)) { 232 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: failed to read EQ @0x%" 233 HWADDR_PRIx "\n", qaddr); 234 return; 235 } 236 g_string_append_printf(buf, "%s%08x ", i == width - 1 ? "^" : "", 237 be32_to_cpu(qdata)); 238 qindex = (qindex + 1) & (qentries - 1); 239 } 240 g_string_append_printf(buf, "]"); 241 } 242 243 void xive2_end_pic_print_info(Xive2End *end, uint32_t end_idx, GString *buf) 244 { 245 uint64_t qaddr_base = xive2_end_qaddr(end); 246 uint32_t qindex = xive_get_field32(END2_W1_PAGE_OFF, end->w1); 247 uint32_t qgen = xive_get_field32(END2_W1_GENERATION, end->w1); 248 uint32_t qentries = xive2_end_get_qentries(end); 249 250 uint32_t nvx_blk = xive_get_field32(END2_W6_VP_BLOCK, end->w6); 251 uint32_t nvx_idx = xive_get_field32(END2_W6_VP_OFFSET, end->w6); 252 uint8_t priority = xive_get_field32(END2_W7_F0_PRIORITY, end->w7); 253 uint8_t pq; 254 255 if (!xive2_end_is_valid(end)) { 256 return; 257 } 258 259 pq = xive_get_field32(END2_W1_ESn, end->w1); 260 261 g_string_append_printf(buf, 262 " %08x %c%c %c%c%c%c%c%c%c%c%c%c%c %c%c " 263 "prio:%d nvp:%02x/%04x", 264 end_idx, 265 pq & XIVE_ESB_VAL_P ? 'P' : '-', 266 pq & XIVE_ESB_VAL_Q ? 'Q' : '-', 267 xive2_end_is_valid(end) ? 'v' : '-', 268 xive2_end_is_enqueue(end) ? 'q' : '-', 269 xive2_end_is_notify(end) ? 'n' : '-', 270 xive2_end_is_backlog(end) ? 'b' : '-', 271 xive2_end_is_precluded_escalation(end) ? 'p' : '-', 272 xive2_end_is_escalate(end) ? 'e' : '-', 273 xive2_end_is_escalate_end(end) ? 'N' : '-', 274 xive2_end_is_uncond_escalation(end) ? 'u' : '-', 275 xive2_end_is_silent_escalation(end) ? 's' : '-', 276 xive2_end_is_firmware1(end) ? 'f' : '-', 277 xive2_end_is_firmware2(end) ? 'F' : '-', 278 xive2_end_is_ignore(end) ? 'i' : '-', 279 xive2_end_is_crowd(end) ? 'c' : '-', 280 priority, nvx_blk, nvx_idx); 281 282 if (qaddr_base) { 283 g_string_append_printf(buf, " eq:@%08"PRIx64"% 6d/%5d ^%d", 284 qaddr_base, qindex, qentries, qgen); 285 xive2_end_queue_pic_print_info(end, 6, buf); 286 } 287 g_string_append_c(buf, '\n'); 288 } 289 290 void xive2_end_eas_pic_print_info(Xive2End *end, uint32_t end_idx, 291 GString *buf) 292 { 293 Xive2Eas *eas = (Xive2Eas *) &end->w4; 294 uint8_t pq; 295 296 if (!xive2_end_is_escalate(end)) { 297 return; 298 } 299 300 pq = xive_get_field32(END2_W1_ESe, end->w1); 301 302 g_string_append_printf(buf, " %08x %c%c %c%c end:%02x/%04x data:%08x\n", 303 end_idx, 304 pq & XIVE_ESB_VAL_P ? 'P' : '-', 305 pq & XIVE_ESB_VAL_Q ? 'Q' : '-', 306 xive2_eas_is_valid(eas) ? 'v' : ' ', 307 xive2_eas_is_masked(eas) ? 'M' : ' ', 308 (uint8_t) xive_get_field64(EAS2_END_BLOCK, eas->w), 309 (uint32_t) xive_get_field64(EAS2_END_INDEX, eas->w), 310 (uint32_t) xive_get_field64(EAS2_END_DATA, eas->w)); 311 } 312 313 void xive2_nvp_pic_print_info(Xive2Nvp *nvp, uint32_t nvp_idx, GString *buf) 314 { 315 uint8_t eq_blk = xive_get_field32(NVP2_W5_VP_END_BLOCK, nvp->w5); 316 uint32_t eq_idx = xive_get_field32(NVP2_W5_VP_END_INDEX, nvp->w5); 317 uint64_t cache_line = xive2_nvp_reporting_addr(nvp); 318 319 if (!xive2_nvp_is_valid(nvp)) { 320 return; 321 } 322 323 g_string_append_printf(buf, " %08x end:%02x/%04x IPB:%02x PGoFirst:%02x", 324 nvp_idx, eq_blk, eq_idx, 325 xive_get_field32(NVP2_W2_IPB, nvp->w2), 326 xive_get_field32(NVP2_W0_PGOFIRST, nvp->w0)); 327 if (cache_line) { 328 g_string_append_printf(buf, " reporting CL:%016"PRIx64, cache_line); 329 } 330 331 /* 332 * When the NVP is HW controlled, more fields are updated 333 */ 334 if (xive2_nvp_is_hw(nvp)) { 335 g_string_append_printf(buf, " CPPR:%02x", 336 xive_get_field32(NVP2_W2_CPPR, nvp->w2)); 337 if (xive2_nvp_is_co(nvp)) { 338 g_string_append_printf(buf, " CO:%04x", 339 xive_get_field32(NVP2_W1_CO_THRID, nvp->w1)); 340 } 341 } 342 g_string_append_c(buf, '\n'); 343 } 344 345 void xive2_nvgc_pic_print_info(Xive2Nvgc *nvgc, uint32_t nvgc_idx, GString *buf) 346 { 347 uint8_t i; 348 349 if (!xive2_nvgc_is_valid(nvgc)) { 350 return; 351 } 352 353 g_string_append_printf(buf, " %08x PGoNext:%02x bklog: ", nvgc_idx, 354 xive_get_field32(NVGC2_W0_PGONEXT, nvgc->w0)); 355 for (i = 0; i <= XIVE_PRIORITY_MAX; i++) { 356 g_string_append_printf(buf, "[%d]=0x%x ", 357 i, xive2_nvgc_get_backlog(nvgc, i)); 358 } 359 g_string_append_printf(buf, "\n"); 360 } 361 362 static void xive2_end_enqueue(Xive2End *end, uint32_t data) 363 { 364 uint64_t qaddr_base = xive2_end_qaddr(end); 365 uint32_t qindex = xive_get_field32(END2_W1_PAGE_OFF, end->w1); 366 uint32_t qgen = xive_get_field32(END2_W1_GENERATION, end->w1); 367 368 uint64_t qaddr = qaddr_base + (qindex << 2); 369 uint32_t qdata = cpu_to_be32((qgen << 31) | (data & 0x7fffffff)); 370 uint32_t qentries = xive2_end_get_qentries(end); 371 372 if (dma_memory_write(&address_space_memory, qaddr, &qdata, sizeof(qdata), 373 MEMTXATTRS_UNSPECIFIED)) { 374 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: failed to write END data @0x%" 375 HWADDR_PRIx "\n", qaddr); 376 return; 377 } 378 379 qindex = (qindex + 1) & (qentries - 1); 380 if (qindex == 0) { 381 qgen ^= 1; 382 end->w1 = xive_set_field32(END2_W1_GENERATION, end->w1, qgen); 383 384 /* Set gen flipped to 1, it gets reset on a cache watch operation */ 385 end->w1 = xive_set_field32(END2_W1_GEN_FLIPPED, end->w1, 1); 386 } 387 end->w1 = xive_set_field32(END2_W1_PAGE_OFF, end->w1, qindex); 388 } 389 390 static void xive2_pgofnext(uint8_t *nvgc_blk, uint32_t *nvgc_idx, 391 uint8_t next_level) 392 { 393 uint32_t mask, next_idx; 394 uint8_t next_blk; 395 396 /* 397 * Adjust the block and index of a VP for the next group/crowd 398 * size (PGofFirst/PGofNext field in the NVP and NVGC structures). 399 * 400 * The 6-bit group level is split into a 2-bit crowd and 4-bit 401 * group levels. Encoding is similar. However, we don't support 402 * crowd size of 8. So a crowd level of 0b11 is bumped to a crowd 403 * size of 16. 404 */ 405 next_blk = NVx_CROWD_LVL(next_level); 406 if (next_blk == 3) { 407 next_blk = 4; 408 } 409 mask = (1 << next_blk) - 1; 410 *nvgc_blk &= ~mask; 411 *nvgc_blk |= mask >> 1; 412 413 next_idx = NVx_GROUP_LVL(next_level); 414 mask = (1 << next_idx) - 1; 415 *nvgc_idx &= ~mask; 416 *nvgc_idx |= mask >> 1; 417 } 418 419 /* 420 * Scan the group chain and return the highest priority and group 421 * level of pending group interrupts. 422 */ 423 static uint8_t xive2_presenter_backlog_scan(XivePresenter *xptr, 424 uint8_t nvx_blk, uint32_t nvx_idx, 425 uint8_t first_group, 426 uint8_t *out_level) 427 { 428 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 429 uint32_t nvgc_idx; 430 uint32_t current_level, count; 431 uint8_t nvgc_blk, prio; 432 Xive2Nvgc nvgc; 433 434 for (prio = 0; prio <= XIVE_PRIORITY_MAX; prio++) { 435 current_level = first_group & 0x3F; 436 nvgc_blk = nvx_blk; 437 nvgc_idx = nvx_idx; 438 439 while (current_level) { 440 xive2_pgofnext(&nvgc_blk, &nvgc_idx, current_level); 441 442 if (xive2_router_get_nvgc(xrtr, NVx_CROWD_LVL(current_level), 443 nvgc_blk, nvgc_idx, &nvgc)) { 444 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVGC %x/%x\n", 445 nvgc_blk, nvgc_idx); 446 return 0xFF; 447 } 448 if (!xive2_nvgc_is_valid(&nvgc)) { 449 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid NVGC %x/%x\n", 450 nvgc_blk, nvgc_idx); 451 return 0xFF; 452 } 453 454 count = xive2_nvgc_get_backlog(&nvgc, prio); 455 if (count) { 456 *out_level = current_level; 457 return prio; 458 } 459 current_level = xive_get_field32(NVGC2_W0_PGONEXT, nvgc.w0) & 0x3F; 460 } 461 } 462 return 0xFF; 463 } 464 465 static void xive2_presenter_backlog_decr(XivePresenter *xptr, 466 uint8_t nvx_blk, uint32_t nvx_idx, 467 uint8_t group_prio, 468 uint8_t group_level) 469 { 470 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 471 uint32_t nvgc_idx, count; 472 uint8_t nvgc_blk; 473 Xive2Nvgc nvgc; 474 475 nvgc_blk = nvx_blk; 476 nvgc_idx = nvx_idx; 477 xive2_pgofnext(&nvgc_blk, &nvgc_idx, group_level); 478 479 if (xive2_router_get_nvgc(xrtr, NVx_CROWD_LVL(group_level), 480 nvgc_blk, nvgc_idx, &nvgc)) { 481 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVGC %x/%x\n", 482 nvgc_blk, nvgc_idx); 483 return; 484 } 485 if (!xive2_nvgc_is_valid(&nvgc)) { 486 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid NVGC %x/%x\n", 487 nvgc_blk, nvgc_idx); 488 return; 489 } 490 count = xive2_nvgc_get_backlog(&nvgc, group_prio); 491 if (!count) { 492 return; 493 } 494 xive2_nvgc_set_backlog(&nvgc, group_prio, count - 1); 495 xive2_router_write_nvgc(xrtr, NVx_CROWD_LVL(group_level), 496 nvgc_blk, nvgc_idx, &nvgc); 497 } 498 499 /* 500 * XIVE Thread Interrupt Management Area (TIMA) - Gen2 mode 501 * 502 * TIMA Gen2 VP “save & restore” (S&R) indicated by H bit next to V bit 503 * 504 * - if a context is enabled with the H bit set, the VP context 505 * information is retrieved from the NVP structure (“check out”) 506 * and stored back on a context pull (“check in”), the SW receives 507 * the same context pull information as on P9 508 * 509 * - the H bit cannot be changed while the V bit is set, i.e. a 510 * context cannot be set up in the TIMA and then be “pushed” into 511 * the NVP by changing the H bit while the context is enabled 512 */ 513 514 static void xive2_tctx_save_ctx(Xive2Router *xrtr, XiveTCTX *tctx, 515 uint8_t nvp_blk, uint32_t nvp_idx, 516 uint8_t ring) 517 { 518 CPUPPCState *env = &POWERPC_CPU(tctx->cs)->env; 519 uint32_t pir = env->spr_cb[SPR_PIR].default_value; 520 Xive2Nvp nvp; 521 uint8_t *regs = &tctx->regs[ring]; 522 523 if (xive2_router_get_nvp(xrtr, nvp_blk, nvp_idx, &nvp)) { 524 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", 525 nvp_blk, nvp_idx); 526 return; 527 } 528 529 if (!xive2_nvp_is_valid(&nvp)) { 530 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 531 nvp_blk, nvp_idx); 532 return; 533 } 534 535 if (!xive2_nvp_is_hw(&nvp)) { 536 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: NVP %x/%x is not HW owned\n", 537 nvp_blk, nvp_idx); 538 return; 539 } 540 541 if (!xive2_nvp_is_co(&nvp)) { 542 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: NVP %x/%x is not checkout\n", 543 nvp_blk, nvp_idx); 544 return; 545 } 546 547 if (xive_get_field32(NVP2_W1_CO_THRID_VALID, nvp.w1) && 548 xive_get_field32(NVP2_W1_CO_THRID, nvp.w1) != pir) { 549 qemu_log_mask(LOG_GUEST_ERROR, 550 "XIVE: NVP %x/%x invalid checkout Thread %x\n", 551 nvp_blk, nvp_idx, pir); 552 return; 553 } 554 555 nvp.w2 = xive_set_field32(NVP2_W2_IPB, nvp.w2, regs[TM_IPB]); 556 nvp.w2 = xive_set_field32(NVP2_W2_CPPR, nvp.w2, regs[TM_CPPR]); 557 if (nvp.w0 & NVP2_W0_L) { 558 /* 559 * Typically not used. If LSMFB is restored with 0, it will 560 * force a backlog rescan 561 */ 562 nvp.w2 = xive_set_field32(NVP2_W2_LSMFB, nvp.w2, regs[TM_LSMFB]); 563 } 564 if (nvp.w0 & NVP2_W0_G) { 565 nvp.w2 = xive_set_field32(NVP2_W2_LGS, nvp.w2, regs[TM_LGS]); 566 } 567 if (nvp.w0 & NVP2_W0_T) { 568 nvp.w2 = xive_set_field32(NVP2_W2_T, nvp.w2, regs[TM_T]); 569 } 570 xive2_router_write_nvp(xrtr, nvp_blk, nvp_idx, &nvp, 2); 571 572 nvp.w1 = xive_set_field32(NVP2_W1_CO, nvp.w1, 0); 573 /* NVP2_W1_CO_THRID_VALID only set once */ 574 nvp.w1 = xive_set_field32(NVP2_W1_CO_THRID, nvp.w1, 0xFFFF); 575 xive2_router_write_nvp(xrtr, nvp_blk, nvp_idx, &nvp, 1); 576 } 577 578 static void xive2_cam_decode(uint32_t cam, uint8_t *nvp_blk, 579 uint32_t *nvp_idx, bool *valid, bool *hw) 580 { 581 *nvp_blk = xive2_nvp_blk(cam); 582 *nvp_idx = xive2_nvp_idx(cam); 583 *valid = !!(cam & TM2_W2_VALID); 584 *hw = !!(cam & TM2_W2_HW); 585 } 586 587 /* 588 * Encode the HW CAM line with 7bit or 8bit thread id. The thread id 589 * width and block id width is configurable at the IC level. 590 * 591 * chipid << 24 | 0000 0000 0000 0000 1 threadid (7Bit) 592 * chipid << 24 | 0000 0000 0000 0001 threadid (8Bit) 593 */ 594 static uint32_t xive2_tctx_hw_cam_line(XivePresenter *xptr, XiveTCTX *tctx) 595 { 596 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 597 CPUPPCState *env = &POWERPC_CPU(tctx->cs)->env; 598 uint32_t pir = env->spr_cb[SPR_PIR].default_value; 599 uint8_t blk = xive2_router_get_block_id(xrtr); 600 uint8_t tid_shift = 601 xive2_router_get_config(xrtr) & XIVE2_THREADID_8BITS ? 8 : 7; 602 uint8_t tid_mask = (1 << tid_shift) - 1; 603 604 return xive2_nvp_cam_line(blk, 1 << tid_shift | (pir & tid_mask)); 605 } 606 607 static void xive2_redistribute(Xive2Router *xrtr, XiveTCTX *tctx, uint8_t ring) 608 { 609 uint8_t *sig_regs = xive_tctx_signal_regs(tctx, ring); 610 uint8_t nsr = sig_regs[TM_NSR]; 611 uint8_t pipr = sig_regs[TM_PIPR]; 612 uint8_t crowd = NVx_CROWD_LVL(nsr); 613 uint8_t group = NVx_GROUP_LVL(nsr); 614 uint8_t nvgc_blk, end_blk, nvp_blk; 615 uint32_t nvgc_idx, end_idx, nvp_idx; 616 Xive2Nvgc nvgc; 617 uint8_t prio_limit; 618 uint32_t cfg; 619 620 /* redistribution is only for group/crowd interrupts */ 621 if (!xive_nsr_indicates_group_exception(ring, nsr)) { 622 return; 623 } 624 625 /* Don't check return code since ring is expected to be invalidated */ 626 xive2_tctx_get_nvp_indexes(tctx, ring, &nvp_blk, &nvp_idx); 627 628 trace_xive_redistribute(tctx->cs->cpu_index, ring, nvp_blk, nvp_idx); 629 630 trace_xive_redistribute(tctx->cs->cpu_index, ring, nvp_blk, nvp_idx); 631 /* convert crowd/group to blk/idx */ 632 if (group > 0) { 633 nvgc_idx = (nvp_idx & (0xffffffff << group)) | 634 ((1 << (group - 1)) - 1); 635 } else { 636 nvgc_idx = nvp_idx; 637 } 638 639 if (crowd > 0) { 640 crowd = (crowd == 3) ? 4 : crowd; 641 nvgc_blk = (nvp_blk & (0xffffffff << crowd)) | 642 ((1 << (crowd - 1)) - 1); 643 } else { 644 nvgc_blk = nvp_blk; 645 } 646 647 /* Use blk/idx to retrieve the NVGC */ 648 if (xive2_router_get_nvgc(xrtr, crowd, nvgc_blk, nvgc_idx, &nvgc)) { 649 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: no %s %x/%x\n", 650 crowd ? "NVC" : "NVG", nvgc_blk, nvgc_idx); 651 return; 652 } 653 654 /* retrieve the END blk/idx from the NVGC */ 655 end_blk = xive_get_field32(NVGC2_W1_END_BLK, nvgc.w1); 656 end_idx = xive_get_field32(NVGC2_W1_END_IDX, nvgc.w1); 657 658 /* determine number of priorities being used */ 659 cfg = xive2_router_get_config(xrtr); 660 if (cfg & XIVE2_EN_VP_GRP_PRIORITY) { 661 prio_limit = 1 << GETFIELD(NVGC2_W1_PSIZE, nvgc.w1); 662 } else { 663 prio_limit = 1 << GETFIELD(XIVE2_VP_INT_PRIO, cfg); 664 } 665 666 /* add priority offset to end index */ 667 end_idx += pipr % prio_limit; 668 669 /* trigger the group END */ 670 xive2_router_end_notify(xrtr, end_blk, end_idx, 0, true); 671 672 /* clear interrupt indication for the context */ 673 sig_regs[TM_NSR] = 0; 674 sig_regs[TM_PIPR] = sig_regs[TM_CPPR]; 675 xive_tctx_reset_signal(tctx, ring); 676 } 677 678 static uint64_t xive2_tm_pull_ctx(XivePresenter *xptr, XiveTCTX *tctx, 679 hwaddr offset, unsigned size, uint8_t ring) 680 { 681 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 682 uint32_t target_ringw2 = xive_tctx_word2(&tctx->regs[ring]); 683 uint32_t cam = be32_to_cpu(target_ringw2); 684 uint8_t nvp_blk; 685 uint32_t nvp_idx; 686 uint8_t cur_ring; 687 bool valid; 688 bool do_save; 689 uint8_t nsr; 690 691 xive2_cam_decode(cam, &nvp_blk, &nvp_idx, &valid, &do_save); 692 693 if (xive2_tctx_get_nvp_indexes(tctx, ring, &nvp_blk, &nvp_idx)) { 694 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: pulling invalid NVP %x/%x !?\n", 695 nvp_blk, nvp_idx); 696 } 697 698 /* Invalidate CAM line of requested ring and all lower rings */ 699 for (cur_ring = TM_QW0_USER; cur_ring <= ring; 700 cur_ring += XIVE_TM_RING_SIZE) { 701 uint32_t ringw2 = xive_tctx_word2(&tctx->regs[cur_ring]); 702 uint32_t ringw2_new = xive_set_field32(TM2_QW1W2_VO, ringw2, 0); 703 bool is_valid = !!(xive_get_field32(TM2_QW1W2_VO, ringw2)); 704 uint8_t *sig_regs; 705 706 memcpy(&tctx->regs[cur_ring + TM_WORD2], &ringw2_new, 4); 707 708 /* Skip the rest for USER or invalid contexts */ 709 if ((cur_ring == TM_QW0_USER) || !is_valid) { 710 continue; 711 } 712 713 /* Active group/crowd interrupts need to be redistributed */ 714 sig_regs = xive_tctx_signal_regs(tctx, ring); 715 nsr = sig_regs[TM_NSR]; 716 if (xive_nsr_indicates_group_exception(cur_ring, nsr)) { 717 /* Ensure ring matches NSR (for HV NSR POOL vs PHYS rings) */ 718 if (cur_ring == xive_nsr_exception_ring(cur_ring, nsr)) { 719 xive2_redistribute(xrtr, tctx, cur_ring); 720 } 721 } 722 } 723 724 if (xive2_router_get_config(xrtr) & XIVE2_VP_SAVE_RESTORE && do_save) { 725 xive2_tctx_save_ctx(xrtr, tctx, nvp_blk, nvp_idx, ring); 726 } 727 728 /* 729 * Lower external interrupt line of requested ring and below except for 730 * USER, which doesn't exist. 731 */ 732 for (cur_ring = TM_QW1_OS; cur_ring <= ring; 733 cur_ring += XIVE_TM_RING_SIZE) { 734 xive_tctx_reset_signal(tctx, cur_ring); 735 } 736 return target_ringw2; 737 } 738 739 uint64_t xive2_tm_pull_os_ctx(XivePresenter *xptr, XiveTCTX *tctx, 740 hwaddr offset, unsigned size) 741 { 742 return xive2_tm_pull_ctx(xptr, tctx, offset, size, TM_QW1_OS); 743 } 744 745 uint64_t xive2_tm_pull_pool_ctx(XivePresenter *xptr, XiveTCTX *tctx, 746 hwaddr offset, unsigned size) 747 { 748 return xive2_tm_pull_ctx(xptr, tctx, offset, size, TM_QW2_HV_POOL); 749 } 750 751 uint64_t xive2_tm_pull_phys_ctx(XivePresenter *xptr, XiveTCTX *tctx, 752 hwaddr offset, unsigned size) 753 { 754 return xive2_tm_pull_ctx(xptr, tctx, offset, size, TM_QW3_HV_PHYS); 755 } 756 757 #define REPORT_LINE_GEN1_SIZE 16 758 759 static void xive2_tm_report_line_gen1(XiveTCTX *tctx, uint8_t *data, 760 uint8_t size) 761 { 762 uint8_t *regs = tctx->regs; 763 764 g_assert(size == REPORT_LINE_GEN1_SIZE); 765 memset(data, 0, size); 766 /* 767 * See xive architecture for description of what is saved. It is 768 * hand-picked information to fit in 16 bytes. 769 */ 770 data[0x0] = regs[TM_QW3_HV_PHYS + TM_NSR]; 771 data[0x1] = regs[TM_QW3_HV_PHYS + TM_CPPR]; 772 data[0x2] = regs[TM_QW3_HV_PHYS + TM_IPB]; 773 data[0x3] = regs[TM_QW2_HV_POOL + TM_IPB]; 774 data[0x4] = regs[TM_QW1_OS + TM_ACK_CNT]; 775 data[0x5] = regs[TM_QW3_HV_PHYS + TM_LGS]; 776 data[0x6] = 0xFF; 777 data[0x7] = regs[TM_QW3_HV_PHYS + TM_WORD2] & 0x80; 778 data[0x7] |= (regs[TM_QW2_HV_POOL + TM_WORD2] & 0x80) >> 1; 779 data[0x7] |= (regs[TM_QW1_OS + TM_WORD2] & 0x80) >> 2; 780 data[0x7] |= (regs[TM_QW3_HV_PHYS + TM_WORD2] & 0x3); 781 data[0x8] = regs[TM_QW1_OS + TM_NSR]; 782 data[0x9] = regs[TM_QW1_OS + TM_CPPR]; 783 data[0xA] = regs[TM_QW1_OS + TM_IPB]; 784 data[0xB] = regs[TM_QW1_OS + TM_LGS]; 785 if (regs[TM_QW0_USER + TM_WORD2] & 0x80) { 786 /* 787 * Logical server extension, except VU bit replaced by EB bit 788 * from NSR 789 */ 790 data[0xC] = regs[TM_QW0_USER + TM_WORD2]; 791 data[0xC] &= ~0x80; 792 data[0xC] |= regs[TM_QW0_USER + TM_NSR] & 0x80; 793 data[0xD] = regs[TM_QW0_USER + TM_WORD2 + 1]; 794 data[0xE] = regs[TM_QW0_USER + TM_WORD2 + 2]; 795 data[0xF] = regs[TM_QW0_USER + TM_WORD2 + 3]; 796 } 797 } 798 799 static void xive2_tm_pull_ctx_ol(XivePresenter *xptr, XiveTCTX *tctx, 800 hwaddr offset, uint64_t value, 801 unsigned size, uint8_t ring) 802 { 803 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 804 uint32_t hw_cam, nvp_idx, xive2_cfg, reserved; 805 uint8_t nvp_blk; 806 Xive2Nvp nvp; 807 uint64_t phys_addr; 808 MemTxResult result; 809 810 hw_cam = xive2_tctx_hw_cam_line(xptr, tctx); 811 nvp_blk = xive2_nvp_blk(hw_cam); 812 nvp_idx = xive2_nvp_idx(hw_cam); 813 814 if (xive2_router_get_nvp(xrtr, nvp_blk, nvp_idx, &nvp)) { 815 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", 816 nvp_blk, nvp_idx); 817 return; 818 } 819 820 if (!xive2_nvp_is_valid(&nvp)) { 821 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 822 nvp_blk, nvp_idx); 823 return; 824 } 825 826 xive2_cfg = xive2_router_get_config(xrtr); 827 828 phys_addr = xive2_nvp_reporting_addr(&nvp) + 0x80; /* odd line */ 829 if (xive2_cfg & XIVE2_GEN1_TIMA_OS) { 830 uint8_t pull_ctxt[REPORT_LINE_GEN1_SIZE]; 831 832 xive2_tm_report_line_gen1(tctx, pull_ctxt, REPORT_LINE_GEN1_SIZE); 833 result = dma_memory_write(&address_space_memory, phys_addr, 834 pull_ctxt, REPORT_LINE_GEN1_SIZE, 835 MEMTXATTRS_UNSPECIFIED); 836 assert(result == MEMTX_OK); 837 } else { 838 result = dma_memory_write(&address_space_memory, phys_addr, 839 &tctx->regs, sizeof(tctx->regs), 840 MEMTXATTRS_UNSPECIFIED); 841 assert(result == MEMTX_OK); 842 reserved = 0xFFFFFFFF; 843 result = dma_memory_write(&address_space_memory, phys_addr + 12, 844 &reserved, sizeof(reserved), 845 MEMTXATTRS_UNSPECIFIED); 846 assert(result == MEMTX_OK); 847 } 848 849 /* the rest is similar to pull context to registers */ 850 xive2_tm_pull_ctx(xptr, tctx, offset, size, ring); 851 } 852 853 void xive2_tm_pull_os_ctx_ol(XivePresenter *xptr, XiveTCTX *tctx, 854 hwaddr offset, uint64_t value, unsigned size) 855 { 856 xive2_tm_pull_ctx_ol(xptr, tctx, offset, value, size, TM_QW1_OS); 857 } 858 859 860 void xive2_tm_pull_phys_ctx_ol(XivePresenter *xptr, XiveTCTX *tctx, 861 hwaddr offset, uint64_t value, unsigned size) 862 { 863 xive2_tm_pull_ctx_ol(xptr, tctx, offset, value, size, TM_QW3_HV_PHYS); 864 } 865 866 static uint8_t xive2_tctx_restore_os_ctx(Xive2Router *xrtr, XiveTCTX *tctx, 867 uint8_t nvp_blk, uint32_t nvp_idx, 868 Xive2Nvp *nvp) 869 { 870 CPUPPCState *env = &POWERPC_CPU(tctx->cs)->env; 871 uint32_t pir = env->spr_cb[SPR_PIR].default_value; 872 uint8_t cppr; 873 874 if (!xive2_nvp_is_hw(nvp)) { 875 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: NVP %x/%x is not HW owned\n", 876 nvp_blk, nvp_idx); 877 return 0; 878 } 879 880 cppr = xive_get_field32(NVP2_W2_CPPR, nvp->w2); 881 nvp->w2 = xive_set_field32(NVP2_W2_CPPR, nvp->w2, 0); 882 xive2_router_write_nvp(xrtr, nvp_blk, nvp_idx, nvp, 2); 883 884 tctx->regs[TM_QW1_OS + TM_CPPR] = cppr; 885 tctx->regs[TM_QW1_OS + TM_LSMFB] = xive_get_field32(NVP2_W2_LSMFB, nvp->w2); 886 tctx->regs[TM_QW1_OS + TM_LGS] = xive_get_field32(NVP2_W2_LGS, nvp->w2); 887 tctx->regs[TM_QW1_OS + TM_T] = xive_get_field32(NVP2_W2_T, nvp->w2); 888 889 nvp->w1 = xive_set_field32(NVP2_W1_CO, nvp->w1, 1); 890 nvp->w1 = xive_set_field32(NVP2_W1_CO_THRID_VALID, nvp->w1, 1); 891 nvp->w1 = xive_set_field32(NVP2_W1_CO_THRID, nvp->w1, pir); 892 893 /* 894 * Checkout privilege: 0:OS, 1:Pool, 2:Hard 895 * 896 * TODO: we only support OS push/pull 897 */ 898 nvp->w1 = xive_set_field32(NVP2_W1_CO_PRIV, nvp->w1, 0); 899 900 xive2_router_write_nvp(xrtr, nvp_blk, nvp_idx, nvp, 1); 901 902 /* return restored CPPR to generate a CPU exception if needed */ 903 return cppr; 904 } 905 906 static void xive2_tctx_need_resend(Xive2Router *xrtr, XiveTCTX *tctx, 907 uint8_t nvp_blk, uint32_t nvp_idx, 908 bool do_restore) 909 { 910 XivePresenter *xptr = XIVE_PRESENTER(xrtr); 911 uint8_t ipb; 912 uint8_t backlog_level; 913 uint8_t group_level; 914 uint8_t first_group; 915 uint8_t backlog_prio; 916 uint8_t group_prio; 917 uint8_t *regs = &tctx->regs[TM_QW1_OS]; 918 Xive2Nvp nvp; 919 920 /* 921 * Grab the associated thread interrupt context registers in the 922 * associated NVP 923 */ 924 if (xive2_router_get_nvp(xrtr, nvp_blk, nvp_idx, &nvp)) { 925 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", 926 nvp_blk, nvp_idx); 927 return; 928 } 929 930 if (!xive2_nvp_is_valid(&nvp)) { 931 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 932 nvp_blk, nvp_idx); 933 return; 934 } 935 936 /* Automatically restore thread context registers */ 937 if (xive2_router_get_config(xrtr) & XIVE2_VP_SAVE_RESTORE && 938 do_restore) { 939 xive2_tctx_restore_os_ctx(xrtr, tctx, nvp_blk, nvp_idx, &nvp); 940 } 941 942 ipb = xive_get_field32(NVP2_W2_IPB, nvp.w2); 943 if (ipb) { 944 nvp.w2 = xive_set_field32(NVP2_W2_IPB, nvp.w2, 0); 945 xive2_router_write_nvp(xrtr, nvp_blk, nvp_idx, &nvp, 2); 946 } 947 /* IPB bits in the backlog are merged with the TIMA IPB bits */ 948 regs[TM_IPB] |= ipb; 949 backlog_prio = xive_ipb_to_pipr(regs[TM_IPB]); 950 backlog_level = 0; 951 952 first_group = xive_get_field32(NVP2_W0_PGOFIRST, nvp.w0); 953 if (first_group && regs[TM_LSMFB] < backlog_prio) { 954 group_prio = xive2_presenter_backlog_scan(xptr, nvp_blk, nvp_idx, 955 first_group, &group_level); 956 regs[TM_LSMFB] = group_prio; 957 if (regs[TM_LGS] && group_prio < backlog_prio && 958 group_prio < regs[TM_CPPR]) { 959 960 /* VP can take a group interrupt */ 961 xive2_presenter_backlog_decr(xptr, nvp_blk, nvp_idx, 962 group_prio, group_level); 963 backlog_prio = group_prio; 964 backlog_level = group_level; 965 } 966 } 967 968 /* 969 * Set the PIPR/NSR based on the restored state. 970 * It will raise the External interrupt signal if needed. 971 */ 972 xive_tctx_pipr_set(tctx, TM_QW1_OS, backlog_prio, backlog_level); 973 } 974 975 /* 976 * Updating the OS CAM line can trigger a resend of interrupt 977 */ 978 void xive2_tm_push_os_ctx(XivePresenter *xptr, XiveTCTX *tctx, 979 hwaddr offset, uint64_t value, unsigned size) 980 { 981 uint32_t cam; 982 uint32_t qw1w2; 983 uint64_t qw1dw1; 984 uint8_t nvp_blk; 985 uint32_t nvp_idx; 986 bool vo; 987 bool do_restore; 988 989 /* First update the thead context */ 990 switch (size) { 991 case 4: 992 cam = value; 993 qw1w2 = cpu_to_be32(cam); 994 memcpy(&tctx->regs[TM_QW1_OS + TM_WORD2], &qw1w2, 4); 995 break; 996 case 8: 997 cam = value >> 32; 998 qw1dw1 = cpu_to_be64(value); 999 memcpy(&tctx->regs[TM_QW1_OS + TM_WORD2], &qw1dw1, 8); 1000 break; 1001 default: 1002 g_assert_not_reached(); 1003 } 1004 1005 xive2_cam_decode(cam, &nvp_blk, &nvp_idx, &vo, &do_restore); 1006 1007 /* Check the interrupt pending bits */ 1008 if (vo) { 1009 xive2_tctx_need_resend(XIVE2_ROUTER(xptr), tctx, nvp_blk, nvp_idx, 1010 do_restore); 1011 } 1012 } 1013 1014 /* returns -1 if ring is invalid, but still populates block and index */ 1015 static int xive2_tctx_get_nvp_indexes(XiveTCTX *tctx, uint8_t ring, 1016 uint8_t *nvp_blk, uint32_t *nvp_idx) 1017 { 1018 uint32_t w2; 1019 uint32_t cam = 0; 1020 int rc = 0; 1021 1022 w2 = xive_tctx_word2(&tctx->regs[ring]); 1023 switch (ring) { 1024 case TM_QW1_OS: 1025 if (!(be32_to_cpu(w2) & TM2_QW1W2_VO)) { 1026 rc = -1; 1027 } 1028 cam = xive_get_field32(TM2_QW1W2_OS_CAM, w2); 1029 break; 1030 case TM_QW2_HV_POOL: 1031 if (!(be32_to_cpu(w2) & TM2_QW2W2_VP)) { 1032 rc = -1; 1033 } 1034 cam = xive_get_field32(TM2_QW2W2_POOL_CAM, w2); 1035 break; 1036 case TM_QW3_HV_PHYS: 1037 if (!(be32_to_cpu(w2) & TM2_QW3W2_VT)) { 1038 rc = -1; 1039 } 1040 cam = xive2_tctx_hw_cam_line(tctx->xptr, tctx); 1041 break; 1042 default: 1043 rc = -1; 1044 } 1045 *nvp_blk = xive2_nvp_blk(cam); 1046 *nvp_idx = xive2_nvp_idx(cam); 1047 return rc; 1048 } 1049 1050 static void xive2_tctx_accept_el(XivePresenter *xptr, XiveTCTX *tctx, 1051 uint8_t ring, uint8_t cl_ring) 1052 { 1053 uint64_t rd; 1054 Xive2Router *xrtr = XIVE2_ROUTER(xptr); 1055 uint32_t nvp_idx, xive2_cfg; 1056 uint8_t nvp_blk; 1057 Xive2Nvp nvp; 1058 uint64_t phys_addr; 1059 uint8_t OGen = 0; 1060 1061 xive2_tctx_get_nvp_indexes(tctx, cl_ring, &nvp_blk, &nvp_idx); 1062 1063 if (xive2_router_get_nvp(xrtr, (uint8_t)nvp_blk, nvp_idx, &nvp)) { 1064 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", 1065 nvp_blk, nvp_idx); 1066 return; 1067 } 1068 1069 if (!xive2_nvp_is_valid(&nvp)) { 1070 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 1071 nvp_blk, nvp_idx); 1072 return; 1073 } 1074 1075 1076 rd = xive_tctx_accept(tctx, ring); 1077 1078 if (ring == TM_QW1_OS) { 1079 OGen = tctx->regs[ring + TM_OGEN]; 1080 } 1081 xive2_cfg = xive2_router_get_config(xrtr); 1082 phys_addr = xive2_nvp_reporting_addr(&nvp); 1083 uint8_t report_data[REPORT_LINE_GEN1_SIZE]; 1084 memset(report_data, 0xff, sizeof(report_data)); 1085 if ((OGen == 1) || (xive2_cfg & XIVE2_GEN1_TIMA_OS)) { 1086 report_data[8] = (rd >> 8) & 0xff; 1087 report_data[9] = rd & 0xff; 1088 } else { 1089 report_data[0] = (rd >> 8) & 0xff; 1090 report_data[1] = rd & 0xff; 1091 } 1092 cpu_physical_memory_write(phys_addr, report_data, REPORT_LINE_GEN1_SIZE); 1093 } 1094 1095 void xive2_tm_ack_os_el(XivePresenter *xptr, XiveTCTX *tctx, 1096 hwaddr offset, uint64_t value, unsigned size) 1097 { 1098 xive2_tctx_accept_el(xptr, tctx, TM_QW1_OS, TM_QW1_OS); 1099 } 1100 1101 /* NOTE: CPPR only exists for TM_QW1_OS and TM_QW3_HV_PHYS */ 1102 static void xive2_tctx_set_cppr(XiveTCTX *tctx, uint8_t ring, uint8_t cppr) 1103 { 1104 uint8_t *sig_regs = &tctx->regs[ring]; 1105 Xive2Router *xrtr = XIVE2_ROUTER(tctx->xptr); 1106 uint8_t old_cppr, backlog_prio, first_group, group_level; 1107 uint8_t pipr_min, lsmfb_min, ring_min; 1108 bool group_enabled; 1109 uint8_t nvp_blk; 1110 uint32_t nvp_idx; 1111 Xive2Nvp nvp; 1112 int rc; 1113 uint8_t nsr = sig_regs[TM_NSR]; 1114 1115 g_assert(ring == TM_QW1_OS || ring == TM_QW3_HV_PHYS); 1116 1117 g_assert(tctx->regs[TM_QW2_HV_POOL + TM_NSR] == 0); 1118 g_assert(tctx->regs[TM_QW2_HV_POOL + TM_PIPR] == 0); 1119 g_assert(tctx->regs[TM_QW2_HV_POOL + TM_CPPR] == 0); 1120 1121 /* XXX: should show pool IPB for PHYS ring */ 1122 trace_xive_tctx_set_cppr(tctx->cs->cpu_index, ring, 1123 sig_regs[TM_IPB], sig_regs[TM_PIPR], 1124 cppr, nsr); 1125 1126 if (cppr > XIVE_PRIORITY_MAX) { 1127 cppr = 0xff; 1128 } 1129 1130 old_cppr = sig_regs[TM_CPPR]; 1131 sig_regs[TM_CPPR] = cppr; 1132 1133 /* Handle increased CPPR priority (lower value) */ 1134 if (cppr < old_cppr) { 1135 if (cppr <= sig_regs[TM_PIPR]) { 1136 /* CPPR lowered below PIPR, must un-present interrupt */ 1137 if (xive_nsr_indicates_exception(ring, nsr)) { 1138 if (xive_nsr_indicates_group_exception(ring, nsr)) { 1139 /* redistribute precluded active grp interrupt */ 1140 xive2_redistribute(xrtr, tctx, 1141 xive_nsr_exception_ring(ring, nsr)); 1142 return; 1143 } 1144 } 1145 1146 /* interrupt is VP directed, pending in IPB */ 1147 xive_tctx_pipr_set(tctx, ring, cppr, 0); 1148 return; 1149 } else { 1150 /* CPPR was lowered, but still above PIPR. No action needed. */ 1151 return; 1152 } 1153 } 1154 1155 /* CPPR didn't change, nothing needs to be done */ 1156 if (cppr == old_cppr) { 1157 return; 1158 } 1159 1160 /* CPPR priority decreased (higher value) */ 1161 1162 /* 1163 * Recompute the PIPR based on local pending interrupts. It will 1164 * be adjusted below if needed in case of pending group interrupts. 1165 */ 1166 again: 1167 pipr_min = xive_ipb_to_pipr(sig_regs[TM_IPB]); 1168 group_enabled = !!sig_regs[TM_LGS]; 1169 lsmfb_min = group_enabled ? sig_regs[TM_LSMFB] : 0xff; 1170 ring_min = ring; 1171 group_level = 0; 1172 1173 /* PHYS updates also depend on POOL values */ 1174 if (ring == TM_QW3_HV_PHYS) { 1175 uint8_t *pool_regs = &tctx->regs[TM_QW2_HV_POOL]; 1176 1177 /* POOL values only matter if POOL ctx is valid */ 1178 if (pool_regs[TM_WORD2] & 0x80) { 1179 uint8_t pool_pipr = xive_ipb_to_pipr(pool_regs[TM_IPB]); 1180 uint8_t pool_lsmfb = pool_regs[TM_LSMFB]; 1181 1182 /* 1183 * Determine highest priority interrupt and 1184 * remember which ring has it. 1185 */ 1186 if (pool_pipr < pipr_min) { 1187 pipr_min = pool_pipr; 1188 if (pool_pipr < lsmfb_min) { 1189 ring_min = TM_QW2_HV_POOL; 1190 } 1191 } 1192 1193 /* Values needed for group priority calculation */ 1194 if (pool_regs[TM_LGS] && (pool_lsmfb < lsmfb_min)) { 1195 group_enabled = true; 1196 lsmfb_min = pool_lsmfb; 1197 if (lsmfb_min < pipr_min) { 1198 ring_min = TM_QW2_HV_POOL; 1199 } 1200 } 1201 } 1202 } 1203 1204 rc = xive2_tctx_get_nvp_indexes(tctx, ring_min, &nvp_blk, &nvp_idx); 1205 if (rc) { 1206 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: set CPPR on invalid context\n"); 1207 return; 1208 } 1209 1210 if (group_enabled && 1211 lsmfb_min < cppr && 1212 lsmfb_min < pipr_min) { 1213 /* 1214 * Thread has seen a group interrupt with a higher priority 1215 * than the new cppr or pending local interrupt. Check the 1216 * backlog 1217 */ 1218 if (xive2_router_get_nvp(xrtr, nvp_blk, nvp_idx, &nvp)) { 1219 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No NVP %x/%x\n", 1220 nvp_blk, nvp_idx); 1221 return; 1222 } 1223 1224 if (!xive2_nvp_is_valid(&nvp)) { 1225 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 1226 nvp_blk, nvp_idx); 1227 return; 1228 } 1229 1230 first_group = xive_get_field32(NVP2_W0_PGOFIRST, nvp.w0); 1231 if (!first_group) { 1232 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid NVP %x/%x\n", 1233 nvp_blk, nvp_idx); 1234 return; 1235 } 1236 1237 backlog_prio = xive2_presenter_backlog_scan(tctx->xptr, 1238 nvp_blk, nvp_idx, 1239 first_group, &group_level); 1240 tctx->regs[ring_min + TM_LSMFB] = backlog_prio; 1241 if (backlog_prio != lsmfb_min) { 1242 /* 1243 * If the group backlog scan finds a less favored or no interrupt, 1244 * then re-do the processing which may turn up a more favored 1245 * interrupt from IPB or the other pool. Backlog should not 1246 * find a priority < LSMFB. 1247 */ 1248 g_assert(backlog_prio >= lsmfb_min); 1249 goto again; 1250 } 1251 1252 xive2_presenter_backlog_decr(tctx->xptr, nvp_blk, nvp_idx, 1253 backlog_prio, group_level); 1254 pipr_min = backlog_prio; 1255 } 1256 1257 if (pipr_min > cppr) { 1258 pipr_min = cppr; 1259 } 1260 xive_tctx_pipr_set(tctx, ring_min, pipr_min, group_level); 1261 } 1262 1263 void xive2_tm_set_hv_cppr(XivePresenter *xptr, XiveTCTX *tctx, 1264 hwaddr offset, uint64_t value, unsigned size) 1265 { 1266 xive2_tctx_set_cppr(tctx, TM_QW3_HV_PHYS, value & 0xff); 1267 } 1268 1269 void xive2_tm_set_os_cppr(XivePresenter *xptr, XiveTCTX *tctx, 1270 hwaddr offset, uint64_t value, unsigned size) 1271 { 1272 xive2_tctx_set_cppr(tctx, TM_QW1_OS, value & 0xff); 1273 } 1274 1275 static void xive2_tctx_set_target(XiveTCTX *tctx, uint8_t ring, uint8_t target) 1276 { 1277 uint8_t *regs = &tctx->regs[ring]; 1278 1279 regs[TM_T] = target; 1280 } 1281 1282 void xive2_tm_set_hv_target(XivePresenter *xptr, XiveTCTX *tctx, 1283 hwaddr offset, uint64_t value, unsigned size) 1284 { 1285 xive2_tctx_set_target(tctx, TM_QW3_HV_PHYS, value & 0xff); 1286 } 1287 1288 /* 1289 * XIVE Router (aka. Virtualization Controller or IVRE) 1290 */ 1291 1292 int xive2_router_get_eas(Xive2Router *xrtr, uint8_t eas_blk, uint32_t eas_idx, 1293 Xive2Eas *eas) 1294 { 1295 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1296 1297 return xrc->get_eas(xrtr, eas_blk, eas_idx, eas); 1298 } 1299 1300 static 1301 int xive2_router_get_pq(Xive2Router *xrtr, uint8_t eas_blk, uint32_t eas_idx, 1302 uint8_t *pq) 1303 { 1304 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1305 1306 return xrc->get_pq(xrtr, eas_blk, eas_idx, pq); 1307 } 1308 1309 static 1310 int xive2_router_set_pq(Xive2Router *xrtr, uint8_t eas_blk, uint32_t eas_idx, 1311 uint8_t *pq) 1312 { 1313 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1314 1315 return xrc->set_pq(xrtr, eas_blk, eas_idx, pq); 1316 } 1317 1318 int xive2_router_get_end(Xive2Router *xrtr, uint8_t end_blk, uint32_t end_idx, 1319 Xive2End *end) 1320 { 1321 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1322 1323 return xrc->get_end(xrtr, end_blk, end_idx, end); 1324 } 1325 1326 int xive2_router_write_end(Xive2Router *xrtr, uint8_t end_blk, uint32_t end_idx, 1327 Xive2End *end, uint8_t word_number) 1328 { 1329 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1330 1331 return xrc->write_end(xrtr, end_blk, end_idx, end, word_number); 1332 } 1333 1334 int xive2_router_get_nvp(Xive2Router *xrtr, uint8_t nvp_blk, uint32_t nvp_idx, 1335 Xive2Nvp *nvp) 1336 { 1337 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1338 1339 return xrc->get_nvp(xrtr, nvp_blk, nvp_idx, nvp); 1340 } 1341 1342 int xive2_router_write_nvp(Xive2Router *xrtr, uint8_t nvp_blk, uint32_t nvp_idx, 1343 Xive2Nvp *nvp, uint8_t word_number) 1344 { 1345 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1346 1347 return xrc->write_nvp(xrtr, nvp_blk, nvp_idx, nvp, word_number); 1348 } 1349 1350 int xive2_router_get_nvgc(Xive2Router *xrtr, bool crowd, 1351 uint8_t nvgc_blk, uint32_t nvgc_idx, 1352 Xive2Nvgc *nvgc) 1353 { 1354 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1355 1356 return xrc->get_nvgc(xrtr, crowd, nvgc_blk, nvgc_idx, nvgc); 1357 } 1358 1359 int xive2_router_write_nvgc(Xive2Router *xrtr, bool crowd, 1360 uint8_t nvgc_blk, uint32_t nvgc_idx, 1361 Xive2Nvgc *nvgc) 1362 { 1363 Xive2RouterClass *xrc = XIVE2_ROUTER_GET_CLASS(xrtr); 1364 1365 return xrc->write_nvgc(xrtr, crowd, nvgc_blk, nvgc_idx, nvgc); 1366 } 1367 1368 static bool xive2_vp_match_mask(uint32_t cam1, uint32_t cam2, 1369 uint32_t vp_mask) 1370 { 1371 return (cam1 & vp_mask) == (cam2 & vp_mask); 1372 } 1373 1374 static uint8_t xive2_get_vp_block_mask(uint32_t nvt_blk, bool crowd) 1375 { 1376 uint8_t block_mask = 0b1111; 1377 1378 /* 3 supported crowd sizes: 2, 4, 16 */ 1379 if (crowd) { 1380 uint32_t size = xive_get_vpgroup_size(nvt_blk); 1381 1382 if (size != 2 && size != 4 && size != 16) { 1383 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid crowd size of %d", 1384 size); 1385 return block_mask; 1386 } 1387 block_mask &= ~(size - 1); 1388 } 1389 return block_mask; 1390 } 1391 1392 static uint32_t xive2_get_vp_index_mask(uint32_t nvt_index, bool cam_ignore) 1393 { 1394 uint32_t index_mask = 0xFFFFFF; /* 24 bits */ 1395 1396 if (cam_ignore) { 1397 uint32_t size = xive_get_vpgroup_size(nvt_index); 1398 1399 if (size < 2) { 1400 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid group size of %d", 1401 size); 1402 return index_mask; 1403 } 1404 index_mask &= ~(size - 1); 1405 } 1406 return index_mask; 1407 } 1408 1409 /* 1410 * The thread context register words are in big-endian format. 1411 */ 1412 int xive2_presenter_tctx_match(XivePresenter *xptr, XiveTCTX *tctx, 1413 uint8_t format, 1414 uint8_t nvt_blk, uint32_t nvt_idx, 1415 bool crowd, bool cam_ignore, 1416 uint32_t logic_serv) 1417 { 1418 uint32_t cam = xive2_nvp_cam_line(nvt_blk, nvt_idx); 1419 uint32_t qw3w2 = xive_tctx_word2(&tctx->regs[TM_QW3_HV_PHYS]); 1420 uint32_t qw2w2 = xive_tctx_word2(&tctx->regs[TM_QW2_HV_POOL]); 1421 uint32_t qw1w2 = xive_tctx_word2(&tctx->regs[TM_QW1_OS]); 1422 uint32_t qw0w2 = xive_tctx_word2(&tctx->regs[TM_QW0_USER]); 1423 1424 uint32_t index_mask, vp_mask; 1425 uint8_t block_mask; 1426 1427 if (format == 0) { 1428 /* 1429 * i=0: Specific NVT notification 1430 * i=1: VP-group notification (bits ignored at the end of the 1431 * NVT identifier) 1432 */ 1433 block_mask = xive2_get_vp_block_mask(nvt_blk, crowd); 1434 index_mask = xive2_get_vp_index_mask(nvt_idx, cam_ignore); 1435 vp_mask = xive2_nvp_cam_line(block_mask, index_mask); 1436 1437 /* For VP-group notifications, threads with LGS=0 are excluded */ 1438 1439 /* PHYS ring */ 1440 if ((be32_to_cpu(qw3w2) & TM2_QW3W2_VT) && 1441 !(cam_ignore && tctx->regs[TM_QW3_HV_PHYS + TM_LGS] == 0) && 1442 xive2_vp_match_mask(cam, 1443 xive2_tctx_hw_cam_line(xptr, tctx), 1444 vp_mask)) { 1445 return TM_QW3_HV_PHYS; 1446 } 1447 1448 /* HV POOL ring */ 1449 if ((be32_to_cpu(qw2w2) & TM2_QW2W2_VP) && 1450 !(cam_ignore && tctx->regs[TM_QW2_HV_POOL + TM_LGS] == 0) && 1451 xive2_vp_match_mask(cam, 1452 xive_get_field32(TM2_QW2W2_POOL_CAM, qw2w2), 1453 vp_mask)) { 1454 return TM_QW2_HV_POOL; 1455 } 1456 1457 /* OS ring */ 1458 if ((be32_to_cpu(qw1w2) & TM2_QW1W2_VO) && 1459 !(cam_ignore && tctx->regs[TM_QW1_OS + TM_LGS] == 0) && 1460 xive2_vp_match_mask(cam, 1461 xive_get_field32(TM2_QW1W2_OS_CAM, qw1w2), 1462 vp_mask)) { 1463 return TM_QW1_OS; 1464 } 1465 } else { 1466 /* F=1 : User level Event-Based Branch (EBB) notification */ 1467 1468 /* FIXME: what if cam_ignore and LGS = 0 ? */ 1469 /* USER ring */ 1470 if ((be32_to_cpu(qw1w2) & TM2_QW1W2_VO) && 1471 (cam == xive_get_field32(TM2_QW1W2_OS_CAM, qw1w2)) && 1472 (be32_to_cpu(qw0w2) & TM2_QW0W2_VU) && 1473 (logic_serv == xive_get_field32(TM2_QW0W2_LOGIC_SERV, qw0w2))) { 1474 return TM_QW0_USER; 1475 } 1476 } 1477 return -1; 1478 } 1479 1480 bool xive2_tm_irq_precluded(XiveTCTX *tctx, int ring, uint8_t priority) 1481 { 1482 uint8_t *sig_regs = xive_tctx_signal_regs(tctx, ring); 1483 1484 /* 1485 * The xive2_presenter_tctx_match() above tells if there's a match 1486 * but for VP-group notification, we still need to look at the 1487 * priority to know if the thread can take the interrupt now or if 1488 * it is precluded. 1489 */ 1490 if (priority < sig_regs[TM_PIPR]) { 1491 return false; 1492 } 1493 return true; 1494 } 1495 1496 void xive2_tm_set_lsmfb(XiveTCTX *tctx, int ring, uint8_t priority) 1497 { 1498 uint8_t *regs = &tctx->regs[ring]; 1499 1500 /* 1501 * Called by the router during a VP-group notification when the 1502 * thread matches but can't take the interrupt because it's 1503 * already running at a more favored priority. It then stores the 1504 * new interrupt priority in the LSMFB field. 1505 */ 1506 regs[TM_LSMFB] = priority; 1507 } 1508 1509 static void xive2_router_realize(DeviceState *dev, Error **errp) 1510 { 1511 Xive2Router *xrtr = XIVE2_ROUTER(dev); 1512 1513 assert(xrtr->xfb); 1514 } 1515 1516 /* 1517 * Notification using the END ESe/ESn bit (Event State Buffer for 1518 * escalation and notification). Profide further coalescing in the 1519 * Router. 1520 */ 1521 static bool xive2_router_end_es_notify(Xive2Router *xrtr, uint8_t end_blk, 1522 uint32_t end_idx, Xive2End *end, 1523 uint32_t end_esmask) 1524 { 1525 uint8_t pq = xive_get_field32(end_esmask, end->w1); 1526 bool notify = xive_esb_trigger(&pq); 1527 1528 if (pq != xive_get_field32(end_esmask, end->w1)) { 1529 end->w1 = xive_set_field32(end_esmask, end->w1, pq); 1530 xive2_router_write_end(xrtr, end_blk, end_idx, end, 1); 1531 } 1532 1533 /* ESe/n[Q]=1 : end of notification */ 1534 return notify; 1535 } 1536 1537 /* 1538 * An END trigger can come from an event trigger (IPI or HW) or from 1539 * another chip. We don't model the PowerBus but the END trigger 1540 * message has the same parameters than in the function below. 1541 */ 1542 static void xive2_router_end_notify(Xive2Router *xrtr, uint8_t end_blk, 1543 uint32_t end_idx, uint32_t end_data, 1544 bool redistribute) 1545 { 1546 Xive2End end; 1547 uint8_t priority; 1548 uint8_t format; 1549 XiveTCTXMatch match; 1550 bool crowd, cam_ignore; 1551 uint8_t nvx_blk; 1552 uint32_t nvx_idx; 1553 1554 /* END cache lookup */ 1555 if (xive2_router_get_end(xrtr, end_blk, end_idx, &end)) { 1556 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No END %x/%x\n", end_blk, 1557 end_idx); 1558 return; 1559 } 1560 1561 if (!xive2_end_is_valid(&end)) { 1562 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: END %x/%x is invalid\n", 1563 end_blk, end_idx); 1564 return; 1565 } 1566 1567 if (xive2_end_is_crowd(&end) && !xive2_end_is_ignore(&end)) { 1568 qemu_log_mask(LOG_GUEST_ERROR, 1569 "XIVE: invalid END, 'crowd' bit requires 'ignore' bit\n"); 1570 return; 1571 } 1572 1573 if (!redistribute && xive2_end_is_enqueue(&end)) { 1574 trace_xive_end_enqueue(end_blk, end_idx, end_data); 1575 xive2_end_enqueue(&end, end_data); 1576 /* Enqueuing event data modifies the EQ toggle and index */ 1577 xive2_router_write_end(xrtr, end_blk, end_idx, &end, 1); 1578 } 1579 1580 /* 1581 * When the END is silent, we skip the notification part. 1582 */ 1583 if (xive2_end_is_silent_escalation(&end)) { 1584 goto do_escalation; 1585 } 1586 1587 /* 1588 * The W7 format depends on the F bit in W6. It defines the type 1589 * of the notification : 1590 * 1591 * F=0 : single or multiple NVP notification 1592 * F=1 : User level Event-Based Branch (EBB) notification, no 1593 * priority 1594 */ 1595 format = xive_get_field32(END2_W6_FORMAT_BIT, end.w6); 1596 priority = xive_get_field32(END2_W7_F0_PRIORITY, end.w7); 1597 1598 /* The END is masked */ 1599 if (format == 0 && priority == 0xff) { 1600 return; 1601 } 1602 1603 /* 1604 * Check the END ESn (Event State Buffer for notification) for 1605 * even further coalescing in the Router 1606 */ 1607 if (!xive2_end_is_notify(&end)) { 1608 /* ESn[Q]=1 : end of notification */ 1609 if (!xive2_router_end_es_notify(xrtr, end_blk, end_idx, 1610 &end, END2_W1_ESn)) { 1611 return; 1612 } 1613 } 1614 1615 /* 1616 * Follows IVPE notification 1617 */ 1618 nvx_blk = xive_get_field32(END2_W6_VP_BLOCK, end.w6); 1619 nvx_idx = xive_get_field32(END2_W6_VP_OFFSET, end.w6); 1620 crowd = xive2_end_is_crowd(&end); 1621 cam_ignore = xive2_end_is_ignore(&end); 1622 1623 /* TODO: Auto EOI. */ 1624 if (xive_presenter_match(xrtr->xfb, format, nvx_blk, nvx_idx, 1625 crowd, cam_ignore, priority, 1626 xive_get_field32(END2_W7_F1_LOG_SERVER_ID, end.w7), 1627 &match)) { 1628 XiveTCTX *tctx = match.tctx; 1629 uint8_t ring = match.ring; 1630 uint8_t *sig_regs = xive_tctx_signal_regs(tctx, ring); 1631 uint8_t nsr = sig_regs[TM_NSR]; 1632 uint8_t group_level; 1633 1634 if (priority < sig_regs[TM_PIPR] && 1635 xive_nsr_indicates_group_exception(ring, nsr)) { 1636 xive2_redistribute(xrtr, tctx, xive_nsr_exception_ring(ring, nsr)); 1637 } 1638 1639 group_level = xive_get_group_level(crowd, cam_ignore, nvx_blk, nvx_idx); 1640 trace_xive_presenter_notify(nvx_blk, nvx_idx, ring, group_level); 1641 xive_tctx_pipr_present(tctx, ring, priority, group_level); 1642 return; 1643 } 1644 1645 /* 1646 * If no matching NVP is dispatched on a HW thread : 1647 * - specific VP: update the NVP structure if backlog is activated 1648 * - VP-group: update the backlog counter for that priority in the NVG 1649 */ 1650 if (xive2_end_is_backlog(&end)) { 1651 1652 if (format == 1) { 1653 qemu_log_mask(LOG_GUEST_ERROR, 1654 "XIVE: END %x/%x invalid config: F1 & backlog\n", 1655 end_blk, end_idx); 1656 return; 1657 } 1658 1659 if (!cam_ignore) { 1660 uint8_t ipb; 1661 Xive2Nvp nvp; 1662 1663 /* NVP cache lookup */ 1664 if (xive2_router_get_nvp(xrtr, nvx_blk, nvx_idx, &nvp)) { 1665 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: no NVP %x/%x\n", 1666 nvx_blk, nvx_idx); 1667 return; 1668 } 1669 1670 if (!xive2_nvp_is_valid(&nvp)) { 1671 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: NVP %x/%x is invalid\n", 1672 nvx_blk, nvx_idx); 1673 return; 1674 } 1675 1676 /* 1677 * Record the IPB in the associated NVP structure for later 1678 * use. The presenter will resend the interrupt when the vCPU 1679 * is dispatched again on a HW thread. 1680 */ 1681 ipb = xive_get_field32(NVP2_W2_IPB, nvp.w2) | 1682 xive_priority_to_ipb(priority); 1683 nvp.w2 = xive_set_field32(NVP2_W2_IPB, nvp.w2, ipb); 1684 xive2_router_write_nvp(xrtr, nvx_blk, nvx_idx, &nvp, 2); 1685 } else { 1686 Xive2Nvgc nvgc; 1687 uint32_t backlog; 1688 1689 /* 1690 * For groups and crowds, the per-priority backlog 1691 * counters are stored in the NVG/NVC structures 1692 */ 1693 if (xive2_router_get_nvgc(xrtr, crowd, 1694 nvx_blk, nvx_idx, &nvgc)) { 1695 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: no %s %x/%x\n", 1696 crowd ? "NVC" : "NVG", nvx_blk, nvx_idx); 1697 return; 1698 } 1699 1700 if (!xive2_nvgc_is_valid(&nvgc)) { 1701 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: NVG %x/%x is invalid\n", 1702 nvx_blk, nvx_idx); 1703 return; 1704 } 1705 1706 /* 1707 * Increment the backlog counter for that priority. 1708 * We only call broadcast the first time the counter is 1709 * incremented. broadcast will set the LSMFB field of the TIMA of 1710 * relevant threads so that they know an interrupt is pending. 1711 */ 1712 backlog = xive2_nvgc_get_backlog(&nvgc, priority) + 1; 1713 xive2_nvgc_set_backlog(&nvgc, priority, backlog); 1714 xive2_router_write_nvgc(xrtr, crowd, nvx_blk, nvx_idx, &nvgc); 1715 1716 if (backlog == 1) { 1717 XiveFabricClass *xfc = XIVE_FABRIC_GET_CLASS(xrtr->xfb); 1718 xfc->broadcast(xrtr->xfb, nvx_blk, nvx_idx, 1719 crowd, cam_ignore, priority); 1720 1721 if (!xive2_end_is_precluded_escalation(&end)) { 1722 /* 1723 * The interrupt will be picked up when the 1724 * matching thread lowers its priority level 1725 */ 1726 return; 1727 } 1728 } 1729 } 1730 } 1731 1732 do_escalation: 1733 /* 1734 * If activated, escalate notification using the ESe PQ bits and 1735 * the EAS in w4-5 1736 */ 1737 if (!xive2_end_is_escalate(&end)) { 1738 return; 1739 } 1740 1741 /* 1742 * Check the END ESe (Event State Buffer for escalation) for even 1743 * further coalescing in the Router 1744 */ 1745 if (!xive2_end_is_uncond_escalation(&end)) { 1746 /* ESe[Q]=1 : end of escalation notification */ 1747 if (!xive2_router_end_es_notify(xrtr, end_blk, end_idx, 1748 &end, END2_W1_ESe)) { 1749 return; 1750 } 1751 } 1752 1753 if (xive2_end_is_escalate_end(&end)) { 1754 /* 1755 * Perform END Adaptive escalation processing 1756 * The END trigger becomes an Escalation trigger 1757 */ 1758 uint8_t esc_blk = xive_get_field32(END2_W4_END_BLOCK, end.w4); 1759 uint32_t esc_idx = xive_get_field32(END2_W4_ESC_END_INDEX, end.w4); 1760 uint32_t esc_data = xive_get_field32(END2_W5_ESC_END_DATA, end.w5); 1761 trace_xive_escalate_end(end_blk, end_idx, esc_blk, esc_idx, esc_data); 1762 xive2_router_end_notify(xrtr, esc_blk, esc_idx, esc_data, false); 1763 } /* end END adaptive escalation */ 1764 1765 else { 1766 uint32_t lisn; /* Logical Interrupt Source Number */ 1767 1768 /* 1769 * Perform ESB escalation processing 1770 * E[N] == 1 --> N 1771 * Req[Block] <- E[ESB_Block] 1772 * Req[Index] <- E[ESB_Index] 1773 * Req[Offset] <- 0x000 1774 * Execute <ESB Store> Req command 1775 */ 1776 lisn = XIVE_EAS(xive_get_field32(END2_W4_END_BLOCK, end.w4), 1777 xive_get_field32(END2_W4_ESC_END_INDEX, end.w4)); 1778 1779 trace_xive_escalate_esb(end_blk, end_idx, lisn); 1780 xive2_notify(xrtr, lisn, true /* pq_checked */); 1781 } 1782 1783 return; 1784 } 1785 1786 void xive2_notify(Xive2Router *xrtr , uint32_t lisn, bool pq_checked) 1787 { 1788 uint8_t eas_blk = XIVE_EAS_BLOCK(lisn); 1789 uint32_t eas_idx = XIVE_EAS_INDEX(lisn); 1790 Xive2Eas eas; 1791 1792 /* EAS cache lookup */ 1793 if (xive2_router_get_eas(xrtr, eas_blk, eas_idx, &eas)) { 1794 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN %x\n", lisn); 1795 return; 1796 } 1797 1798 if (!pq_checked) { 1799 bool notify; 1800 uint8_t pq; 1801 1802 /* PQ cache lookup */ 1803 if (xive2_router_get_pq(xrtr, eas_blk, eas_idx, &pq)) { 1804 /* Set FIR */ 1805 g_assert_not_reached(); 1806 } 1807 1808 notify = xive_esb_trigger(&pq); 1809 1810 if (xive2_router_set_pq(xrtr, eas_blk, eas_idx, &pq)) { 1811 /* Set FIR */ 1812 g_assert_not_reached(); 1813 } 1814 1815 if (!notify) { 1816 return; 1817 } 1818 } 1819 1820 if (!xive2_eas_is_valid(&eas)) { 1821 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN %x\n", lisn); 1822 return; 1823 } 1824 1825 if (xive2_eas_is_masked(&eas)) { 1826 /* Notification completed */ 1827 return; 1828 } 1829 1830 /* TODO: add support for EAS resume */ 1831 if (xive2_eas_is_resume(&eas)) { 1832 qemu_log_mask(LOG_UNIMP, 1833 "XIVE: EAS resume processing unimplemented - LISN %x\n", 1834 lisn); 1835 return; 1836 } 1837 1838 /* 1839 * The event trigger becomes an END trigger 1840 */ 1841 xive2_router_end_notify(xrtr, 1842 xive_get_field64(EAS2_END_BLOCK, eas.w), 1843 xive_get_field64(EAS2_END_INDEX, eas.w), 1844 xive_get_field64(EAS2_END_DATA, eas.w), 1845 false); 1846 return; 1847 } 1848 1849 void xive2_router_notify(XiveNotifier *xn, uint32_t lisn, bool pq_checked) 1850 { 1851 Xive2Router *xrtr = XIVE2_ROUTER(xn); 1852 1853 xive2_notify(xrtr, lisn, pq_checked); 1854 return; 1855 } 1856 1857 static const Property xive2_router_properties[] = { 1858 DEFINE_PROP_LINK("xive-fabric", Xive2Router, xfb, 1859 TYPE_XIVE_FABRIC, XiveFabric *), 1860 }; 1861 1862 static void xive2_router_class_init(ObjectClass *klass, const void *data) 1863 { 1864 DeviceClass *dc = DEVICE_CLASS(klass); 1865 XiveNotifierClass *xnc = XIVE_NOTIFIER_CLASS(klass); 1866 1867 dc->desc = "XIVE2 Router Engine"; 1868 device_class_set_props(dc, xive2_router_properties); 1869 /* Parent is SysBusDeviceClass. No need to call its realize hook */ 1870 dc->realize = xive2_router_realize; 1871 xnc->notify = xive2_router_notify; 1872 } 1873 1874 static const TypeInfo xive2_router_info = { 1875 .name = TYPE_XIVE2_ROUTER, 1876 .parent = TYPE_SYS_BUS_DEVICE, 1877 .abstract = true, 1878 .instance_size = sizeof(Xive2Router), 1879 .class_size = sizeof(Xive2RouterClass), 1880 .class_init = xive2_router_class_init, 1881 .interfaces = (const InterfaceInfo[]) { 1882 { TYPE_XIVE_NOTIFIER }, 1883 { TYPE_XIVE_PRESENTER }, 1884 { } 1885 } 1886 }; 1887 1888 static inline bool addr_is_even(hwaddr addr, uint32_t shift) 1889 { 1890 return !((addr >> shift) & 1); 1891 } 1892 1893 static uint64_t xive2_end_source_read(void *opaque, hwaddr addr, unsigned size) 1894 { 1895 Xive2EndSource *xsrc = XIVE2_END_SOURCE(opaque); 1896 uint32_t offset = addr & 0xFFF; 1897 uint8_t end_blk; 1898 uint32_t end_idx; 1899 Xive2End end; 1900 uint32_t end_esmask; 1901 uint8_t pq; 1902 uint64_t ret; 1903 1904 /* 1905 * The block id should be deduced from the load address on the END 1906 * ESB MMIO but our model only supports a single block per XIVE chip. 1907 */ 1908 end_blk = xive2_router_get_block_id(xsrc->xrtr); 1909 end_idx = addr >> (xsrc->esb_shift + 1); 1910 1911 if (xive2_router_get_end(xsrc->xrtr, end_blk, end_idx, &end)) { 1912 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No END %x/%x\n", end_blk, 1913 end_idx); 1914 return -1; 1915 } 1916 1917 if (!xive2_end_is_valid(&end)) { 1918 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: END %x/%x is invalid\n", 1919 end_blk, end_idx); 1920 return -1; 1921 } 1922 1923 end_esmask = addr_is_even(addr, xsrc->esb_shift) ? END2_W1_ESn : 1924 END2_W1_ESe; 1925 pq = xive_get_field32(end_esmask, end.w1); 1926 1927 switch (offset) { 1928 case XIVE_ESB_LOAD_EOI ... XIVE_ESB_LOAD_EOI + 0x7FF: 1929 ret = xive_esb_eoi(&pq); 1930 1931 /* Forward the source event notification for routing ?? */ 1932 break; 1933 1934 case XIVE_ESB_GET ... XIVE_ESB_GET + 0x3FF: 1935 ret = pq; 1936 break; 1937 1938 case XIVE_ESB_SET_PQ_00 ... XIVE_ESB_SET_PQ_00 + 0x0FF: 1939 case XIVE_ESB_SET_PQ_01 ... XIVE_ESB_SET_PQ_01 + 0x0FF: 1940 case XIVE_ESB_SET_PQ_10 ... XIVE_ESB_SET_PQ_10 + 0x0FF: 1941 case XIVE_ESB_SET_PQ_11 ... XIVE_ESB_SET_PQ_11 + 0x0FF: 1942 ret = xive_esb_set(&pq, (offset >> 8) & 0x3); 1943 break; 1944 default: 1945 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid END ESB load addr %d\n", 1946 offset); 1947 return -1; 1948 } 1949 1950 if (pq != xive_get_field32(end_esmask, end.w1)) { 1951 end.w1 = xive_set_field32(end_esmask, end.w1, pq); 1952 xive2_router_write_end(xsrc->xrtr, end_blk, end_idx, &end, 1); 1953 } 1954 1955 return ret; 1956 } 1957 1958 static void xive2_end_source_write(void *opaque, hwaddr addr, 1959 uint64_t value, unsigned size) 1960 { 1961 Xive2EndSource *xsrc = XIVE2_END_SOURCE(opaque); 1962 uint32_t offset = addr & 0xFFF; 1963 uint8_t end_blk; 1964 uint32_t end_idx; 1965 Xive2End end; 1966 uint32_t end_esmask; 1967 uint8_t pq; 1968 bool notify = false; 1969 1970 /* 1971 * The block id should be deduced from the load address on the END 1972 * ESB MMIO but our model only supports a single block per XIVE chip. 1973 */ 1974 end_blk = xive2_router_get_block_id(xsrc->xrtr); 1975 end_idx = addr >> (xsrc->esb_shift + 1); 1976 1977 if (xive2_router_get_end(xsrc->xrtr, end_blk, end_idx, &end)) { 1978 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: No END %x/%x\n", end_blk, 1979 end_idx); 1980 return; 1981 } 1982 1983 if (!xive2_end_is_valid(&end)) { 1984 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: END %x/%x is invalid\n", 1985 end_blk, end_idx); 1986 return; 1987 } 1988 1989 end_esmask = addr_is_even(addr, xsrc->esb_shift) ? END2_W1_ESn : 1990 END2_W1_ESe; 1991 pq = xive_get_field32(end_esmask, end.w1); 1992 1993 switch (offset) { 1994 case 0 ... 0x3FF: 1995 notify = xive_esb_trigger(&pq); 1996 break; 1997 1998 case XIVE_ESB_STORE_EOI ... XIVE_ESB_STORE_EOI + 0x3FF: 1999 /* TODO: can we check StoreEOI availability from the router ? */ 2000 notify = xive_esb_eoi(&pq); 2001 break; 2002 2003 case XIVE_ESB_INJECT ... XIVE_ESB_INJECT + 0x3FF: 2004 if (end_esmask == END2_W1_ESe) { 2005 qemu_log_mask(LOG_GUEST_ERROR, 2006 "XIVE: END %x/%x can not EQ inject on ESe\n", 2007 end_blk, end_idx); 2008 return; 2009 } 2010 notify = true; 2011 break; 2012 2013 default: 2014 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid END ESB write addr %d\n", 2015 offset); 2016 return; 2017 } 2018 2019 if (pq != xive_get_field32(end_esmask, end.w1)) { 2020 end.w1 = xive_set_field32(end_esmask, end.w1, pq); 2021 xive2_router_write_end(xsrc->xrtr, end_blk, end_idx, &end, 1); 2022 } 2023 2024 /* TODO: Forward the source event notification for routing */ 2025 if (notify) { 2026 ; 2027 } 2028 } 2029 2030 static const MemoryRegionOps xive2_end_source_ops = { 2031 .read = xive2_end_source_read, 2032 .write = xive2_end_source_write, 2033 .endianness = DEVICE_BIG_ENDIAN, 2034 .valid = { 2035 .min_access_size = 1, 2036 .max_access_size = 8, 2037 }, 2038 .impl = { 2039 .min_access_size = 1, 2040 .max_access_size = 8, 2041 }, 2042 }; 2043 2044 static void xive2_end_source_realize(DeviceState *dev, Error **errp) 2045 { 2046 Xive2EndSource *xsrc = XIVE2_END_SOURCE(dev); 2047 2048 assert(xsrc->xrtr); 2049 2050 if (!xsrc->nr_ends) { 2051 error_setg(errp, "Number of interrupt needs to be greater than 0"); 2052 return; 2053 } 2054 2055 if (xsrc->esb_shift != XIVE_ESB_4K && 2056 xsrc->esb_shift != XIVE_ESB_64K) { 2057 error_setg(errp, "Invalid ESB shift setting"); 2058 return; 2059 } 2060 2061 /* 2062 * Each END is assigned an even/odd pair of MMIO pages, the even page 2063 * manages the ESn field while the odd page manages the ESe field. 2064 */ 2065 memory_region_init_io(&xsrc->esb_mmio, OBJECT(xsrc), 2066 &xive2_end_source_ops, xsrc, "xive.end", 2067 (1ull << (xsrc->esb_shift + 1)) * xsrc->nr_ends); 2068 } 2069 2070 static const Property xive2_end_source_properties[] = { 2071 DEFINE_PROP_UINT32("nr-ends", Xive2EndSource, nr_ends, 0), 2072 DEFINE_PROP_UINT32("shift", Xive2EndSource, esb_shift, XIVE_ESB_64K), 2073 DEFINE_PROP_LINK("xive", Xive2EndSource, xrtr, TYPE_XIVE2_ROUTER, 2074 Xive2Router *), 2075 }; 2076 2077 static void xive2_end_source_class_init(ObjectClass *klass, const void *data) 2078 { 2079 DeviceClass *dc = DEVICE_CLASS(klass); 2080 2081 dc->desc = "XIVE END Source"; 2082 device_class_set_props(dc, xive2_end_source_properties); 2083 dc->realize = xive2_end_source_realize; 2084 dc->user_creatable = false; 2085 } 2086 2087 static const TypeInfo xive2_end_source_info = { 2088 .name = TYPE_XIVE2_END_SOURCE, 2089 .parent = TYPE_DEVICE, 2090 .instance_size = sizeof(Xive2EndSource), 2091 .class_init = xive2_end_source_class_init, 2092 }; 2093 2094 static void xive2_register_types(void) 2095 { 2096 type_register_static(&xive2_router_info); 2097 type_register_static(&xive2_end_source_info); 2098 } 2099 2100 type_init(xive2_register_types) 2101