1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * 4 * Procedures for interfacing to the RTAS on CHRP machines. 5 * 6 * Peter Bergner, IBM March 2001. 7 * Copyright (C) 2001 IBM. 8 */ 9 10 #include <linux/stdarg.h> 11 #include <linux/kernel.h> 12 #include <linux/types.h> 13 #include <linux/spinlock.h> 14 #include <linux/export.h> 15 #include <linux/init.h> 16 #include <linux/capability.h> 17 #include <linux/delay.h> 18 #include <linux/cpu.h> 19 #include <linux/sched.h> 20 #include <linux/smp.h> 21 #include <linux/completion.h> 22 #include <linux/cpumask.h> 23 #include <linux/memblock.h> 24 #include <linux/slab.h> 25 #include <linux/reboot.h> 26 #include <linux/security.h> 27 #include <linux/syscalls.h> 28 #include <linux/of.h> 29 #include <linux/of_fdt.h> 30 31 #include <asm/interrupt.h> 32 #include <asm/rtas.h> 33 #include <asm/hvcall.h> 34 #include <asm/machdep.h> 35 #include <asm/firmware.h> 36 #include <asm/page.h> 37 #include <asm/param.h> 38 #include <asm/delay.h> 39 #include <linux/uaccess.h> 40 #include <asm/udbg.h> 41 #include <asm/syscalls.h> 42 #include <asm/smp.h> 43 #include <linux/atomic.h> 44 #include <asm/time.h> 45 #include <asm/mmu.h> 46 #include <asm/topology.h> 47 48 /* This is here deliberately so it's only used in this file */ 49 void enter_rtas(unsigned long); 50 51 static inline void do_enter_rtas(unsigned long args) 52 { 53 unsigned long msr; 54 55 /* 56 * Make sure MSR[RI] is currently enabled as it will be forced later 57 * in enter_rtas. 58 */ 59 msr = mfmsr(); 60 BUG_ON(!(msr & MSR_RI)); 61 62 BUG_ON(!irqs_disabled()); 63 64 hard_irq_disable(); /* Ensure MSR[EE] is disabled on PPC64 */ 65 66 enter_rtas(args); 67 68 srr_regs_clobbered(); /* rtas uses SRRs, invalidate */ 69 } 70 71 struct rtas_t rtas = { 72 .lock = __ARCH_SPIN_LOCK_UNLOCKED 73 }; 74 EXPORT_SYMBOL(rtas); 75 76 DEFINE_SPINLOCK(rtas_data_buf_lock); 77 EXPORT_SYMBOL(rtas_data_buf_lock); 78 79 char rtas_data_buf[RTAS_DATA_BUF_SIZE] __cacheline_aligned; 80 EXPORT_SYMBOL(rtas_data_buf); 81 82 unsigned long rtas_rmo_buf; 83 84 /* 85 * If non-NULL, this gets called when the kernel terminates. 86 * This is done like this so rtas_flash can be a module. 87 */ 88 void (*rtas_flash_term_hook)(int); 89 EXPORT_SYMBOL(rtas_flash_term_hook); 90 91 /* RTAS use home made raw locking instead of spin_lock_irqsave 92 * because those can be called from within really nasty contexts 93 * such as having the timebase stopped which would lockup with 94 * normal locks and spinlock debugging enabled 95 */ 96 static unsigned long lock_rtas(void) 97 { 98 unsigned long flags; 99 100 local_irq_save(flags); 101 preempt_disable(); 102 arch_spin_lock(&rtas.lock); 103 return flags; 104 } 105 106 static void unlock_rtas(unsigned long flags) 107 { 108 arch_spin_unlock(&rtas.lock); 109 local_irq_restore(flags); 110 preempt_enable(); 111 } 112 113 /* 114 * call_rtas_display_status and call_rtas_display_status_delay 115 * are designed only for very early low-level debugging, which 116 * is why the token is hard-coded to 10. 117 */ 118 static void call_rtas_display_status(unsigned char c) 119 { 120 unsigned long s; 121 122 if (!rtas.base) 123 return; 124 125 s = lock_rtas(); 126 rtas_call_unlocked(&rtas.args, 10, 1, 1, NULL, c); 127 unlock_rtas(s); 128 } 129 130 static void call_rtas_display_status_delay(char c) 131 { 132 static int pending_newline = 0; /* did last write end with unprinted newline? */ 133 static int width = 16; 134 135 if (c == '\n') { 136 while (width-- > 0) 137 call_rtas_display_status(' '); 138 width = 16; 139 mdelay(500); 140 pending_newline = 1; 141 } else { 142 if (pending_newline) { 143 call_rtas_display_status('\r'); 144 call_rtas_display_status('\n'); 145 } 146 pending_newline = 0; 147 if (width--) { 148 call_rtas_display_status(c); 149 udelay(10000); 150 } 151 } 152 } 153 154 void __init udbg_init_rtas_panel(void) 155 { 156 udbg_putc = call_rtas_display_status_delay; 157 } 158 159 #ifdef CONFIG_UDBG_RTAS_CONSOLE 160 161 /* If you think you're dying before early_init_dt_scan_rtas() does its 162 * work, you can hard code the token values for your firmware here and 163 * hardcode rtas.base/entry etc. 164 */ 165 static unsigned int rtas_putchar_token = RTAS_UNKNOWN_SERVICE; 166 static unsigned int rtas_getchar_token = RTAS_UNKNOWN_SERVICE; 167 168 static void udbg_rtascon_putc(char c) 169 { 170 int tries; 171 172 if (!rtas.base) 173 return; 174 175 /* Add CRs before LFs */ 176 if (c == '\n') 177 udbg_rtascon_putc('\r'); 178 179 /* if there is more than one character to be displayed, wait a bit */ 180 for (tries = 0; tries < 16; tries++) { 181 if (rtas_call(rtas_putchar_token, 1, 1, NULL, c) == 0) 182 break; 183 udelay(1000); 184 } 185 } 186 187 static int udbg_rtascon_getc_poll(void) 188 { 189 int c; 190 191 if (!rtas.base) 192 return -1; 193 194 if (rtas_call(rtas_getchar_token, 0, 2, &c)) 195 return -1; 196 197 return c; 198 } 199 200 static int udbg_rtascon_getc(void) 201 { 202 int c; 203 204 while ((c = udbg_rtascon_getc_poll()) == -1) 205 ; 206 207 return c; 208 } 209 210 211 void __init udbg_init_rtas_console(void) 212 { 213 udbg_putc = udbg_rtascon_putc; 214 udbg_getc = udbg_rtascon_getc; 215 udbg_getc_poll = udbg_rtascon_getc_poll; 216 } 217 #endif /* CONFIG_UDBG_RTAS_CONSOLE */ 218 219 void rtas_progress(char *s, unsigned short hex) 220 { 221 struct device_node *root; 222 int width; 223 const __be32 *p; 224 char *os; 225 static int display_character, set_indicator; 226 static int display_width, display_lines, form_feed; 227 static const int *row_width; 228 static DEFINE_SPINLOCK(progress_lock); 229 static int current_line; 230 static int pending_newline = 0; /* did last write end with unprinted newline? */ 231 232 if (!rtas.base) 233 return; 234 235 if (display_width == 0) { 236 display_width = 0x10; 237 if ((root = of_find_node_by_path("/rtas"))) { 238 if ((p = of_get_property(root, 239 "ibm,display-line-length", NULL))) 240 display_width = be32_to_cpu(*p); 241 if ((p = of_get_property(root, 242 "ibm,form-feed", NULL))) 243 form_feed = be32_to_cpu(*p); 244 if ((p = of_get_property(root, 245 "ibm,display-number-of-lines", NULL))) 246 display_lines = be32_to_cpu(*p); 247 row_width = of_get_property(root, 248 "ibm,display-truncation-length", NULL); 249 of_node_put(root); 250 } 251 display_character = rtas_token("display-character"); 252 set_indicator = rtas_token("set-indicator"); 253 } 254 255 if (display_character == RTAS_UNKNOWN_SERVICE) { 256 /* use hex display if available */ 257 if (set_indicator != RTAS_UNKNOWN_SERVICE) 258 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex); 259 return; 260 } 261 262 spin_lock(&progress_lock); 263 264 /* 265 * Last write ended with newline, but we didn't print it since 266 * it would just clear the bottom line of output. Print it now 267 * instead. 268 * 269 * If no newline is pending and form feed is supported, clear the 270 * display with a form feed; otherwise, print a CR to start output 271 * at the beginning of the line. 272 */ 273 if (pending_newline) { 274 rtas_call(display_character, 1, 1, NULL, '\r'); 275 rtas_call(display_character, 1, 1, NULL, '\n'); 276 pending_newline = 0; 277 } else { 278 current_line = 0; 279 if (form_feed) 280 rtas_call(display_character, 1, 1, NULL, 281 (char)form_feed); 282 else 283 rtas_call(display_character, 1, 1, NULL, '\r'); 284 } 285 286 if (row_width) 287 width = row_width[current_line]; 288 else 289 width = display_width; 290 os = s; 291 while (*os) { 292 if (*os == '\n' || *os == '\r') { 293 /* If newline is the last character, save it 294 * until next call to avoid bumping up the 295 * display output. 296 */ 297 if (*os == '\n' && !os[1]) { 298 pending_newline = 1; 299 current_line++; 300 if (current_line > display_lines-1) 301 current_line = display_lines-1; 302 spin_unlock(&progress_lock); 303 return; 304 } 305 306 /* RTAS wants CR-LF, not just LF */ 307 308 if (*os == '\n') { 309 rtas_call(display_character, 1, 1, NULL, '\r'); 310 rtas_call(display_character, 1, 1, NULL, '\n'); 311 } else { 312 /* CR might be used to re-draw a line, so we'll 313 * leave it alone and not add LF. 314 */ 315 rtas_call(display_character, 1, 1, NULL, *os); 316 } 317 318 if (row_width) 319 width = row_width[current_line]; 320 else 321 width = display_width; 322 } else { 323 width--; 324 rtas_call(display_character, 1, 1, NULL, *os); 325 } 326 327 os++; 328 329 /* if we overwrite the screen length */ 330 if (width <= 0) 331 while ((*os != 0) && (*os != '\n') && (*os != '\r')) 332 os++; 333 } 334 335 spin_unlock(&progress_lock); 336 } 337 EXPORT_SYMBOL(rtas_progress); /* needed by rtas_flash module */ 338 339 int rtas_token(const char *service) 340 { 341 const __be32 *tokp; 342 if (rtas.dev == NULL) 343 return RTAS_UNKNOWN_SERVICE; 344 tokp = of_get_property(rtas.dev, service, NULL); 345 return tokp ? be32_to_cpu(*tokp) : RTAS_UNKNOWN_SERVICE; 346 } 347 EXPORT_SYMBOL(rtas_token); 348 349 int rtas_service_present(const char *service) 350 { 351 return rtas_token(service) != RTAS_UNKNOWN_SERVICE; 352 } 353 EXPORT_SYMBOL(rtas_service_present); 354 355 #ifdef CONFIG_RTAS_ERROR_LOGGING 356 /* 357 * Return the firmware-specified size of the error log buffer 358 * for all rtas calls that require an error buffer argument. 359 * This includes 'check-exception' and 'rtas-last-error'. 360 */ 361 int rtas_get_error_log_max(void) 362 { 363 static int rtas_error_log_max; 364 if (rtas_error_log_max) 365 return rtas_error_log_max; 366 367 rtas_error_log_max = rtas_token ("rtas-error-log-max"); 368 if ((rtas_error_log_max == RTAS_UNKNOWN_SERVICE) || 369 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) { 370 printk (KERN_WARNING "RTAS: bad log buffer size %d\n", 371 rtas_error_log_max); 372 rtas_error_log_max = RTAS_ERROR_LOG_MAX; 373 } 374 return rtas_error_log_max; 375 } 376 EXPORT_SYMBOL(rtas_get_error_log_max); 377 378 379 static char rtas_err_buf[RTAS_ERROR_LOG_MAX]; 380 static int rtas_last_error_token; 381 382 /** Return a copy of the detailed error text associated with the 383 * most recent failed call to rtas. Because the error text 384 * might go stale if there are any other intervening rtas calls, 385 * this routine must be called atomically with whatever produced 386 * the error (i.e. with rtas.lock still held from the previous call). 387 */ 388 static char *__fetch_rtas_last_error(char *altbuf) 389 { 390 struct rtas_args err_args, save_args; 391 u32 bufsz; 392 char *buf = NULL; 393 394 if (rtas_last_error_token == -1) 395 return NULL; 396 397 bufsz = rtas_get_error_log_max(); 398 399 err_args.token = cpu_to_be32(rtas_last_error_token); 400 err_args.nargs = cpu_to_be32(2); 401 err_args.nret = cpu_to_be32(1); 402 err_args.args[0] = cpu_to_be32(__pa(rtas_err_buf)); 403 err_args.args[1] = cpu_to_be32(bufsz); 404 err_args.args[2] = 0; 405 406 save_args = rtas.args; 407 rtas.args = err_args; 408 409 do_enter_rtas(__pa(&rtas.args)); 410 411 err_args = rtas.args; 412 rtas.args = save_args; 413 414 /* Log the error in the unlikely case that there was one. */ 415 if (unlikely(err_args.args[2] == 0)) { 416 if (altbuf) { 417 buf = altbuf; 418 } else { 419 buf = rtas_err_buf; 420 if (slab_is_available()) 421 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC); 422 } 423 if (buf) 424 memcpy(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX); 425 } 426 427 return buf; 428 } 429 430 #define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL) 431 432 #else /* CONFIG_RTAS_ERROR_LOGGING */ 433 #define __fetch_rtas_last_error(x) NULL 434 #define get_errorlog_buffer() NULL 435 #endif 436 437 438 static void 439 va_rtas_call_unlocked(struct rtas_args *args, int token, int nargs, int nret, 440 va_list list) 441 { 442 int i; 443 444 args->token = cpu_to_be32(token); 445 args->nargs = cpu_to_be32(nargs); 446 args->nret = cpu_to_be32(nret); 447 args->rets = &(args->args[nargs]); 448 449 for (i = 0; i < nargs; ++i) 450 args->args[i] = cpu_to_be32(va_arg(list, __u32)); 451 452 for (i = 0; i < nret; ++i) 453 args->rets[i] = 0; 454 455 do_enter_rtas(__pa(args)); 456 } 457 458 void rtas_call_unlocked(struct rtas_args *args, int token, int nargs, int nret, ...) 459 { 460 va_list list; 461 462 va_start(list, nret); 463 va_rtas_call_unlocked(args, token, nargs, nret, list); 464 va_end(list); 465 } 466 467 static int ibm_open_errinjct_token; 468 static int ibm_errinjct_token; 469 470 int rtas_call(int token, int nargs, int nret, int *outputs, ...) 471 { 472 va_list list; 473 int i; 474 unsigned long s; 475 struct rtas_args *rtas_args; 476 char *buff_copy = NULL; 477 int ret; 478 479 if (!rtas.entry || token == RTAS_UNKNOWN_SERVICE) 480 return -1; 481 482 if (token == ibm_open_errinjct_token || token == ibm_errinjct_token) { 483 /* 484 * It would be nicer to not discard the error value 485 * from security_locked_down(), but callers expect an 486 * RTAS status, not an errno. 487 */ 488 if (security_locked_down(LOCKDOWN_RTAS_ERROR_INJECTION)) 489 return -1; 490 } 491 492 if ((mfmsr() & (MSR_IR|MSR_DR)) != (MSR_IR|MSR_DR)) { 493 WARN_ON_ONCE(1); 494 return -1; 495 } 496 497 s = lock_rtas(); 498 499 /* We use the global rtas args buffer */ 500 rtas_args = &rtas.args; 501 502 va_start(list, outputs); 503 va_rtas_call_unlocked(rtas_args, token, nargs, nret, list); 504 va_end(list); 505 506 /* A -1 return code indicates that the last command couldn't 507 be completed due to a hardware error. */ 508 if (be32_to_cpu(rtas_args->rets[0]) == -1) 509 buff_copy = __fetch_rtas_last_error(NULL); 510 511 if (nret > 1 && outputs != NULL) 512 for (i = 0; i < nret-1; ++i) 513 outputs[i] = be32_to_cpu(rtas_args->rets[i+1]); 514 ret = (nret > 0)? be32_to_cpu(rtas_args->rets[0]): 0; 515 516 unlock_rtas(s); 517 518 if (buff_copy) { 519 log_error(buff_copy, ERR_TYPE_RTAS_LOG, 0); 520 if (slab_is_available()) 521 kfree(buff_copy); 522 } 523 return ret; 524 } 525 EXPORT_SYMBOL(rtas_call); 526 527 /** 528 * rtas_busy_delay_time() - From an RTAS status value, calculate the 529 * suggested delay time in milliseconds. 530 * 531 * @status: a value returned from rtas_call() or similar APIs which return 532 * the status of a RTAS function call. 533 * 534 * Context: Any context. 535 * 536 * Return: 537 * * 100000 - If @status is 9905. 538 * * 10000 - If @status is 9904. 539 * * 1000 - If @status is 9903. 540 * * 100 - If @status is 9902. 541 * * 10 - If @status is 9901. 542 * * 1 - If @status is either 9900 or -2. This is "wrong" for -2, but 543 * some callers depend on this behavior, and the worst outcome 544 * is that they will delay for longer than necessary. 545 * * 0 - If @status is not a busy or extended delay value. 546 */ 547 unsigned int rtas_busy_delay_time(int status) 548 { 549 int order; 550 unsigned int ms = 0; 551 552 if (status == RTAS_BUSY) { 553 ms = 1; 554 } else if (status >= RTAS_EXTENDED_DELAY_MIN && 555 status <= RTAS_EXTENDED_DELAY_MAX) { 556 order = status - RTAS_EXTENDED_DELAY_MIN; 557 for (ms = 1; order > 0; order--) 558 ms *= 10; 559 } 560 561 return ms; 562 } 563 EXPORT_SYMBOL(rtas_busy_delay_time); 564 565 /** 566 * rtas_busy_delay() - helper for RTAS busy and extended delay statuses 567 * 568 * @status: a value returned from rtas_call() or similar APIs which return 569 * the status of a RTAS function call. 570 * 571 * Context: Process context. May sleep or schedule. 572 * 573 * Return: 574 * * true - @status is RTAS_BUSY or an extended delay hint. The 575 * caller may assume that the CPU has been yielded if necessary, 576 * and that an appropriate delay for @status has elapsed. 577 * Generally the caller should reattempt the RTAS call which 578 * yielded @status. 579 * 580 * * false - @status is not @RTAS_BUSY nor an extended delay hint. The 581 * caller is responsible for handling @status. 582 */ 583 bool rtas_busy_delay(int status) 584 { 585 unsigned int ms; 586 bool ret; 587 588 switch (status) { 589 case RTAS_EXTENDED_DELAY_MIN...RTAS_EXTENDED_DELAY_MAX: 590 ret = true; 591 ms = rtas_busy_delay_time(status); 592 /* 593 * The extended delay hint can be as high as 100 seconds. 594 * Surely any function returning such a status is either 595 * buggy or isn't going to be significantly slowed by us 596 * polling at 1HZ. Clamp the sleep time to one second. 597 */ 598 ms = clamp(ms, 1U, 1000U); 599 /* 600 * The delay hint is an order-of-magnitude suggestion, not 601 * a minimum. It is fine, possibly even advantageous, for 602 * us to pause for less time than hinted. For small values, 603 * use usleep_range() to ensure we don't sleep much longer 604 * than actually needed. 605 * 606 * See Documentation/timers/timers-howto.rst for 607 * explanation of the threshold used here. In effect we use 608 * usleep_range() for 9900 and 9901, msleep() for 609 * 9902-9905. 610 */ 611 if (ms <= 20) 612 usleep_range(ms * 100, ms * 1000); 613 else 614 msleep(ms); 615 break; 616 case RTAS_BUSY: 617 ret = true; 618 /* 619 * We should call again immediately if there's no other 620 * work to do. 621 */ 622 cond_resched(); 623 break; 624 default: 625 ret = false; 626 /* 627 * Not a busy or extended delay status; the caller should 628 * handle @status itself. Ensure we warn on misuses in 629 * atomic context regardless. 630 */ 631 might_sleep(); 632 break; 633 } 634 635 return ret; 636 } 637 EXPORT_SYMBOL(rtas_busy_delay); 638 639 static int rtas_error_rc(int rtas_rc) 640 { 641 int rc; 642 643 switch (rtas_rc) { 644 case -1: /* Hardware Error */ 645 rc = -EIO; 646 break; 647 case -3: /* Bad indicator/domain/etc */ 648 rc = -EINVAL; 649 break; 650 case -9000: /* Isolation error */ 651 rc = -EFAULT; 652 break; 653 case -9001: /* Outstanding TCE/PTE */ 654 rc = -EEXIST; 655 break; 656 case -9002: /* No usable slot */ 657 rc = -ENODEV; 658 break; 659 default: 660 printk(KERN_ERR "%s: unexpected RTAS error %d\n", 661 __func__, rtas_rc); 662 rc = -ERANGE; 663 break; 664 } 665 return rc; 666 } 667 668 int rtas_get_power_level(int powerdomain, int *level) 669 { 670 int token = rtas_token("get-power-level"); 671 int rc; 672 673 if (token == RTAS_UNKNOWN_SERVICE) 674 return -ENOENT; 675 676 while ((rc = rtas_call(token, 1, 2, level, powerdomain)) == RTAS_BUSY) 677 udelay(1); 678 679 if (rc < 0) 680 return rtas_error_rc(rc); 681 return rc; 682 } 683 EXPORT_SYMBOL(rtas_get_power_level); 684 685 int rtas_set_power_level(int powerdomain, int level, int *setlevel) 686 { 687 int token = rtas_token("set-power-level"); 688 int rc; 689 690 if (token == RTAS_UNKNOWN_SERVICE) 691 return -ENOENT; 692 693 do { 694 rc = rtas_call(token, 2, 2, setlevel, powerdomain, level); 695 } while (rtas_busy_delay(rc)); 696 697 if (rc < 0) 698 return rtas_error_rc(rc); 699 return rc; 700 } 701 EXPORT_SYMBOL(rtas_set_power_level); 702 703 int rtas_get_sensor(int sensor, int index, int *state) 704 { 705 int token = rtas_token("get-sensor-state"); 706 int rc; 707 708 if (token == RTAS_UNKNOWN_SERVICE) 709 return -ENOENT; 710 711 do { 712 rc = rtas_call(token, 2, 2, state, sensor, index); 713 } while (rtas_busy_delay(rc)); 714 715 if (rc < 0) 716 return rtas_error_rc(rc); 717 return rc; 718 } 719 EXPORT_SYMBOL(rtas_get_sensor); 720 721 int rtas_get_sensor_fast(int sensor, int index, int *state) 722 { 723 int token = rtas_token("get-sensor-state"); 724 int rc; 725 726 if (token == RTAS_UNKNOWN_SERVICE) 727 return -ENOENT; 728 729 rc = rtas_call(token, 2, 2, state, sensor, index); 730 WARN_ON(rc == RTAS_BUSY || (rc >= RTAS_EXTENDED_DELAY_MIN && 731 rc <= RTAS_EXTENDED_DELAY_MAX)); 732 733 if (rc < 0) 734 return rtas_error_rc(rc); 735 return rc; 736 } 737 738 bool rtas_indicator_present(int token, int *maxindex) 739 { 740 int proplen, count, i; 741 const struct indicator_elem { 742 __be32 token; 743 __be32 maxindex; 744 } *indicators; 745 746 indicators = of_get_property(rtas.dev, "rtas-indicators", &proplen); 747 if (!indicators) 748 return false; 749 750 count = proplen / sizeof(struct indicator_elem); 751 752 for (i = 0; i < count; i++) { 753 if (__be32_to_cpu(indicators[i].token) != token) 754 continue; 755 if (maxindex) 756 *maxindex = __be32_to_cpu(indicators[i].maxindex); 757 return true; 758 } 759 760 return false; 761 } 762 EXPORT_SYMBOL(rtas_indicator_present); 763 764 int rtas_set_indicator(int indicator, int index, int new_value) 765 { 766 int token = rtas_token("set-indicator"); 767 int rc; 768 769 if (token == RTAS_UNKNOWN_SERVICE) 770 return -ENOENT; 771 772 do { 773 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value); 774 } while (rtas_busy_delay(rc)); 775 776 if (rc < 0) 777 return rtas_error_rc(rc); 778 return rc; 779 } 780 EXPORT_SYMBOL(rtas_set_indicator); 781 782 /* 783 * Ignoring RTAS extended delay 784 */ 785 int rtas_set_indicator_fast(int indicator, int index, int new_value) 786 { 787 int rc; 788 int token = rtas_token("set-indicator"); 789 790 if (token == RTAS_UNKNOWN_SERVICE) 791 return -ENOENT; 792 793 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value); 794 795 WARN_ON(rc == RTAS_BUSY || (rc >= RTAS_EXTENDED_DELAY_MIN && 796 rc <= RTAS_EXTENDED_DELAY_MAX)); 797 798 if (rc < 0) 799 return rtas_error_rc(rc); 800 801 return rc; 802 } 803 804 /** 805 * rtas_ibm_suspend_me() - Call ibm,suspend-me to suspend the LPAR. 806 * 807 * @fw_status: RTAS call status will be placed here if not NULL. 808 * 809 * rtas_ibm_suspend_me() should be called only on a CPU which has 810 * received H_CONTINUE from the H_JOIN hcall. All other active CPUs 811 * should be waiting to return from H_JOIN. 812 * 813 * rtas_ibm_suspend_me() may suspend execution of the OS 814 * indefinitely. Callers should take appropriate measures upon return, such as 815 * resetting watchdog facilities. 816 * 817 * Callers may choose to retry this call if @fw_status is 818 * %RTAS_THREADS_ACTIVE. 819 * 820 * Return: 821 * 0 - The partition has resumed from suspend, possibly after 822 * migration to a different host. 823 * -ECANCELED - The operation was aborted. 824 * -EAGAIN - There were other CPUs not in H_JOIN at the time of the call. 825 * -EBUSY - Some other condition prevented the suspend from succeeding. 826 * -EIO - Hardware/platform error. 827 */ 828 int rtas_ibm_suspend_me(int *fw_status) 829 { 830 int fwrc; 831 int ret; 832 833 fwrc = rtas_call(rtas_token("ibm,suspend-me"), 0, 1, NULL); 834 835 switch (fwrc) { 836 case 0: 837 ret = 0; 838 break; 839 case RTAS_SUSPEND_ABORTED: 840 ret = -ECANCELED; 841 break; 842 case RTAS_THREADS_ACTIVE: 843 ret = -EAGAIN; 844 break; 845 case RTAS_NOT_SUSPENDABLE: 846 case RTAS_OUTSTANDING_COPROC: 847 ret = -EBUSY; 848 break; 849 case -1: 850 default: 851 ret = -EIO; 852 break; 853 } 854 855 if (fw_status) 856 *fw_status = fwrc; 857 858 return ret; 859 } 860 861 void __noreturn rtas_restart(char *cmd) 862 { 863 if (rtas_flash_term_hook) 864 rtas_flash_term_hook(SYS_RESTART); 865 printk("RTAS system-reboot returned %d\n", 866 rtas_call(rtas_token("system-reboot"), 0, 1, NULL)); 867 for (;;); 868 } 869 870 void rtas_power_off(void) 871 { 872 if (rtas_flash_term_hook) 873 rtas_flash_term_hook(SYS_POWER_OFF); 874 /* allow power on only with power button press */ 875 printk("RTAS power-off returned %d\n", 876 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1)); 877 for (;;); 878 } 879 880 void __noreturn rtas_halt(void) 881 { 882 if (rtas_flash_term_hook) 883 rtas_flash_term_hook(SYS_HALT); 884 /* allow power on only with power button press */ 885 printk("RTAS power-off returned %d\n", 886 rtas_call(rtas_token("power-off"), 2, 1, NULL, -1, -1)); 887 for (;;); 888 } 889 890 /* Must be in the RMO region, so we place it here */ 891 static char rtas_os_term_buf[2048]; 892 893 void rtas_os_term(char *str) 894 { 895 int status; 896 897 /* 898 * Firmware with the ibm,extended-os-term property is guaranteed 899 * to always return from an ibm,os-term call. Earlier versions without 900 * this property may terminate the partition which we want to avoid 901 * since it interferes with panic_timeout. 902 */ 903 if (RTAS_UNKNOWN_SERVICE == rtas_token("ibm,os-term") || 904 RTAS_UNKNOWN_SERVICE == rtas_token("ibm,extended-os-term")) 905 return; 906 907 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str); 908 909 do { 910 status = rtas_call(rtas_token("ibm,os-term"), 1, 1, NULL, 911 __pa(rtas_os_term_buf)); 912 } while (rtas_busy_delay(status)); 913 914 if (status != 0) 915 printk(KERN_EMERG "ibm,os-term call failed %d\n", status); 916 } 917 918 /** 919 * rtas_activate_firmware() - Activate a new version of firmware. 920 * 921 * Context: This function may sleep. 922 * 923 * Activate a new version of partition firmware. The OS must call this 924 * after resuming from a partition hibernation or migration in order 925 * to maintain the ability to perform live firmware updates. It's not 926 * catastrophic for this method to be absent or to fail; just log the 927 * condition in that case. 928 */ 929 void rtas_activate_firmware(void) 930 { 931 int token; 932 int fwrc; 933 934 token = rtas_token("ibm,activate-firmware"); 935 if (token == RTAS_UNKNOWN_SERVICE) { 936 pr_notice("ibm,activate-firmware method unavailable\n"); 937 return; 938 } 939 940 do { 941 fwrc = rtas_call(token, 0, 1, NULL); 942 } while (rtas_busy_delay(fwrc)); 943 944 if (fwrc) 945 pr_err("ibm,activate-firmware failed (%i)\n", fwrc); 946 } 947 948 /** 949 * get_pseries_errorlog() - Find a specific pseries error log in an RTAS 950 * extended event log. 951 * @log: RTAS error/event log 952 * @section_id: two character section identifier 953 * 954 * Return: A pointer to the specified errorlog or NULL if not found. 955 */ 956 noinstr struct pseries_errorlog *get_pseries_errorlog(struct rtas_error_log *log, 957 uint16_t section_id) 958 { 959 struct rtas_ext_event_log_v6 *ext_log = 960 (struct rtas_ext_event_log_v6 *)log->buffer; 961 struct pseries_errorlog *sect; 962 unsigned char *p, *log_end; 963 uint32_t ext_log_length = rtas_error_extended_log_length(log); 964 uint8_t log_format = rtas_ext_event_log_format(ext_log); 965 uint32_t company_id = rtas_ext_event_company_id(ext_log); 966 967 /* Check that we understand the format */ 968 if (ext_log_length < sizeof(struct rtas_ext_event_log_v6) || 969 log_format != RTAS_V6EXT_LOG_FORMAT_EVENT_LOG || 970 company_id != RTAS_V6EXT_COMPANY_ID_IBM) 971 return NULL; 972 973 log_end = log->buffer + ext_log_length; 974 p = ext_log->vendor_log; 975 976 while (p < log_end) { 977 sect = (struct pseries_errorlog *)p; 978 if (pseries_errorlog_id(sect) == section_id) 979 return sect; 980 p += pseries_errorlog_length(sect); 981 } 982 983 return NULL; 984 } 985 986 #ifdef CONFIG_PPC_RTAS_FILTER 987 988 /* 989 * The sys_rtas syscall, as originally designed, allows root to pass 990 * arbitrary physical addresses to RTAS calls. A number of RTAS calls 991 * can be abused to write to arbitrary memory and do other things that 992 * are potentially harmful to system integrity, and thus should only 993 * be used inside the kernel and not exposed to userspace. 994 * 995 * All known legitimate users of the sys_rtas syscall will only ever 996 * pass addresses that fall within the RMO buffer, and use a known 997 * subset of RTAS calls. 998 * 999 * Accordingly, we filter RTAS requests to check that the call is 1000 * permitted, and that provided pointers fall within the RMO buffer. 1001 * The rtas_filters list contains an entry for each permitted call, 1002 * with the indexes of the parameters which are expected to contain 1003 * addresses and sizes of buffers allocated inside the RMO buffer. 1004 */ 1005 struct rtas_filter { 1006 const char *name; 1007 int token; 1008 /* Indexes into the args buffer, -1 if not used */ 1009 int buf_idx1; 1010 int size_idx1; 1011 int buf_idx2; 1012 int size_idx2; 1013 1014 int fixed_size; 1015 }; 1016 1017 static struct rtas_filter rtas_filters[] __ro_after_init = { 1018 { "ibm,activate-firmware", -1, -1, -1, -1, -1 }, 1019 { "ibm,configure-connector", -1, 0, -1, 1, -1, 4096 }, /* Special cased */ 1020 { "display-character", -1, -1, -1, -1, -1 }, 1021 { "ibm,display-message", -1, 0, -1, -1, -1 }, 1022 { "ibm,errinjct", -1, 2, -1, -1, -1, 1024 }, 1023 { "ibm,close-errinjct", -1, -1, -1, -1, -1 }, 1024 { "ibm,open-errinjct", -1, -1, -1, -1, -1 }, 1025 { "ibm,get-config-addr-info2", -1, -1, -1, -1, -1 }, 1026 { "ibm,get-dynamic-sensor-state", -1, 1, -1, -1, -1 }, 1027 { "ibm,get-indices", -1, 2, 3, -1, -1 }, 1028 { "get-power-level", -1, -1, -1, -1, -1 }, 1029 { "get-sensor-state", -1, -1, -1, -1, -1 }, 1030 { "ibm,get-system-parameter", -1, 1, 2, -1, -1 }, 1031 { "get-time-of-day", -1, -1, -1, -1, -1 }, 1032 { "ibm,get-vpd", -1, 0, -1, 1, 2 }, 1033 { "ibm,lpar-perftools", -1, 2, 3, -1, -1 }, 1034 { "ibm,platform-dump", -1, 4, 5, -1, -1 }, /* Special cased */ 1035 { "ibm,read-slot-reset-state", -1, -1, -1, -1, -1 }, 1036 { "ibm,scan-log-dump", -1, 0, 1, -1, -1 }, 1037 { "ibm,set-dynamic-indicator", -1, 2, -1, -1, -1 }, 1038 { "ibm,set-eeh-option", -1, -1, -1, -1, -1 }, 1039 { "set-indicator", -1, -1, -1, -1, -1 }, 1040 { "set-power-level", -1, -1, -1, -1, -1 }, 1041 { "set-time-for-power-on", -1, -1, -1, -1, -1 }, 1042 { "ibm,set-system-parameter", -1, 1, -1, -1, -1 }, 1043 { "set-time-of-day", -1, -1, -1, -1, -1 }, 1044 #ifdef CONFIG_CPU_BIG_ENDIAN 1045 { "ibm,suspend-me", -1, -1, -1, -1, -1 }, 1046 { "ibm,update-nodes", -1, 0, -1, -1, -1, 4096 }, 1047 { "ibm,update-properties", -1, 0, -1, -1, -1, 4096 }, 1048 #endif 1049 { "ibm,physical-attestation", -1, 0, 1, -1, -1 }, 1050 }; 1051 1052 static bool in_rmo_buf(u32 base, u32 end) 1053 { 1054 return base >= rtas_rmo_buf && 1055 base < (rtas_rmo_buf + RTAS_USER_REGION_SIZE) && 1056 base <= end && 1057 end >= rtas_rmo_buf && 1058 end < (rtas_rmo_buf + RTAS_USER_REGION_SIZE); 1059 } 1060 1061 static bool block_rtas_call(int token, int nargs, 1062 struct rtas_args *args) 1063 { 1064 int i; 1065 1066 for (i = 0; i < ARRAY_SIZE(rtas_filters); i++) { 1067 struct rtas_filter *f = &rtas_filters[i]; 1068 u32 base, size, end; 1069 1070 if (token != f->token) 1071 continue; 1072 1073 if (f->buf_idx1 != -1) { 1074 base = be32_to_cpu(args->args[f->buf_idx1]); 1075 if (f->size_idx1 != -1) 1076 size = be32_to_cpu(args->args[f->size_idx1]); 1077 else if (f->fixed_size) 1078 size = f->fixed_size; 1079 else 1080 size = 1; 1081 1082 end = base + size - 1; 1083 1084 /* 1085 * Special case for ibm,platform-dump - NULL buffer 1086 * address is used to indicate end of dump processing 1087 */ 1088 if (!strcmp(f->name, "ibm,platform-dump") && 1089 base == 0) 1090 return false; 1091 1092 if (!in_rmo_buf(base, end)) 1093 goto err; 1094 } 1095 1096 if (f->buf_idx2 != -1) { 1097 base = be32_to_cpu(args->args[f->buf_idx2]); 1098 if (f->size_idx2 != -1) 1099 size = be32_to_cpu(args->args[f->size_idx2]); 1100 else if (f->fixed_size) 1101 size = f->fixed_size; 1102 else 1103 size = 1; 1104 end = base + size - 1; 1105 1106 /* 1107 * Special case for ibm,configure-connector where the 1108 * address can be 0 1109 */ 1110 if (!strcmp(f->name, "ibm,configure-connector") && 1111 base == 0) 1112 return false; 1113 1114 if (!in_rmo_buf(base, end)) 1115 goto err; 1116 } 1117 1118 return false; 1119 } 1120 1121 err: 1122 pr_err_ratelimited("sys_rtas: RTAS call blocked - exploit attempt?\n"); 1123 pr_err_ratelimited("sys_rtas: token=0x%x, nargs=%d (called by %s)\n", 1124 token, nargs, current->comm); 1125 return true; 1126 } 1127 1128 static void __init rtas_syscall_filter_init(void) 1129 { 1130 unsigned int i; 1131 1132 for (i = 0; i < ARRAY_SIZE(rtas_filters); i++) 1133 rtas_filters[i].token = rtas_token(rtas_filters[i].name); 1134 } 1135 1136 #else 1137 1138 static bool block_rtas_call(int token, int nargs, 1139 struct rtas_args *args) 1140 { 1141 return false; 1142 } 1143 1144 static void __init rtas_syscall_filter_init(void) 1145 { 1146 } 1147 1148 #endif /* CONFIG_PPC_RTAS_FILTER */ 1149 1150 /* We assume to be passed big endian arguments */ 1151 SYSCALL_DEFINE1(rtas, struct rtas_args __user *, uargs) 1152 { 1153 struct rtas_args args; 1154 unsigned long flags; 1155 char *buff_copy, *errbuf = NULL; 1156 int nargs, nret, token; 1157 1158 if (!capable(CAP_SYS_ADMIN)) 1159 return -EPERM; 1160 1161 if (!rtas.entry) 1162 return -EINVAL; 1163 1164 if (copy_from_user(&args, uargs, 3 * sizeof(u32)) != 0) 1165 return -EFAULT; 1166 1167 nargs = be32_to_cpu(args.nargs); 1168 nret = be32_to_cpu(args.nret); 1169 token = be32_to_cpu(args.token); 1170 1171 if (nargs >= ARRAY_SIZE(args.args) 1172 || nret > ARRAY_SIZE(args.args) 1173 || nargs + nret > ARRAY_SIZE(args.args)) 1174 return -EINVAL; 1175 1176 /* Copy in args. */ 1177 if (copy_from_user(args.args, uargs->args, 1178 nargs * sizeof(rtas_arg_t)) != 0) 1179 return -EFAULT; 1180 1181 if (token == RTAS_UNKNOWN_SERVICE) 1182 return -EINVAL; 1183 1184 args.rets = &args.args[nargs]; 1185 memset(args.rets, 0, nret * sizeof(rtas_arg_t)); 1186 1187 if (block_rtas_call(token, nargs, &args)) 1188 return -EINVAL; 1189 1190 if (token == ibm_open_errinjct_token || token == ibm_errinjct_token) { 1191 int err; 1192 1193 err = security_locked_down(LOCKDOWN_RTAS_ERROR_INJECTION); 1194 if (err) 1195 return err; 1196 } 1197 1198 /* Need to handle ibm,suspend_me call specially */ 1199 if (token == rtas_token("ibm,suspend-me")) { 1200 1201 /* 1202 * rtas_ibm_suspend_me assumes the streamid handle is in cpu 1203 * endian, or at least the hcall within it requires it. 1204 */ 1205 int rc = 0; 1206 u64 handle = ((u64)be32_to_cpu(args.args[0]) << 32) 1207 | be32_to_cpu(args.args[1]); 1208 rc = rtas_syscall_dispatch_ibm_suspend_me(handle); 1209 if (rc == -EAGAIN) 1210 args.rets[0] = cpu_to_be32(RTAS_NOT_SUSPENDABLE); 1211 else if (rc == -EIO) 1212 args.rets[0] = cpu_to_be32(-1); 1213 else if (rc) 1214 return rc; 1215 goto copy_return; 1216 } 1217 1218 buff_copy = get_errorlog_buffer(); 1219 1220 flags = lock_rtas(); 1221 1222 rtas.args = args; 1223 do_enter_rtas(__pa(&rtas.args)); 1224 args = rtas.args; 1225 1226 /* A -1 return code indicates that the last command couldn't 1227 be completed due to a hardware error. */ 1228 if (be32_to_cpu(args.rets[0]) == -1) 1229 errbuf = __fetch_rtas_last_error(buff_copy); 1230 1231 unlock_rtas(flags); 1232 1233 if (buff_copy) { 1234 if (errbuf) 1235 log_error(errbuf, ERR_TYPE_RTAS_LOG, 0); 1236 kfree(buff_copy); 1237 } 1238 1239 copy_return: 1240 /* Copy out args. */ 1241 if (copy_to_user(uargs->args + nargs, 1242 args.args + nargs, 1243 nret * sizeof(rtas_arg_t)) != 0) 1244 return -EFAULT; 1245 1246 return 0; 1247 } 1248 1249 /* 1250 * Call early during boot, before mem init, to retrieve the RTAS 1251 * information from the device-tree and allocate the RMO buffer for userland 1252 * accesses. 1253 */ 1254 void __init rtas_initialize(void) 1255 { 1256 unsigned long rtas_region = RTAS_INSTANTIATE_MAX; 1257 u32 base, size, entry; 1258 int no_base, no_size, no_entry; 1259 1260 /* Get RTAS dev node and fill up our "rtas" structure with infos 1261 * about it. 1262 */ 1263 rtas.dev = of_find_node_by_name(NULL, "rtas"); 1264 if (!rtas.dev) 1265 return; 1266 1267 no_base = of_property_read_u32(rtas.dev, "linux,rtas-base", &base); 1268 no_size = of_property_read_u32(rtas.dev, "rtas-size", &size); 1269 if (no_base || no_size) { 1270 of_node_put(rtas.dev); 1271 rtas.dev = NULL; 1272 return; 1273 } 1274 1275 rtas.base = base; 1276 rtas.size = size; 1277 no_entry = of_property_read_u32(rtas.dev, "linux,rtas-entry", &entry); 1278 rtas.entry = no_entry ? rtas.base : entry; 1279 1280 /* If RTAS was found, allocate the RMO buffer for it and look for 1281 * the stop-self token if any 1282 */ 1283 #ifdef CONFIG_PPC64 1284 if (firmware_has_feature(FW_FEATURE_LPAR)) 1285 rtas_region = min(ppc64_rma_size, RTAS_INSTANTIATE_MAX); 1286 #endif 1287 rtas_rmo_buf = memblock_phys_alloc_range(RTAS_USER_REGION_SIZE, PAGE_SIZE, 1288 0, rtas_region); 1289 if (!rtas_rmo_buf) 1290 panic("ERROR: RTAS: Failed to allocate %lx bytes below %pa\n", 1291 PAGE_SIZE, &rtas_region); 1292 1293 #ifdef CONFIG_RTAS_ERROR_LOGGING 1294 rtas_last_error_token = rtas_token("rtas-last-error"); 1295 #endif 1296 ibm_open_errinjct_token = rtas_token("ibm,open-errinjct"); 1297 ibm_errinjct_token = rtas_token("ibm,errinjct"); 1298 rtas_syscall_filter_init(); 1299 } 1300 1301 int __init early_init_dt_scan_rtas(unsigned long node, 1302 const char *uname, int depth, void *data) 1303 { 1304 const u32 *basep, *entryp, *sizep; 1305 1306 if (depth != 1 || strcmp(uname, "rtas") != 0) 1307 return 0; 1308 1309 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL); 1310 entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL); 1311 sizep = of_get_flat_dt_prop(node, "rtas-size", NULL); 1312 1313 #ifdef CONFIG_PPC64 1314 /* need this feature to decide the crashkernel offset */ 1315 if (of_get_flat_dt_prop(node, "ibm,hypertas-functions", NULL)) 1316 powerpc_firmware_features |= FW_FEATURE_LPAR; 1317 #endif 1318 1319 if (basep && entryp && sizep) { 1320 rtas.base = *basep; 1321 rtas.entry = *entryp; 1322 rtas.size = *sizep; 1323 } 1324 1325 #ifdef CONFIG_UDBG_RTAS_CONSOLE 1326 basep = of_get_flat_dt_prop(node, "put-term-char", NULL); 1327 if (basep) 1328 rtas_putchar_token = *basep; 1329 1330 basep = of_get_flat_dt_prop(node, "get-term-char", NULL); 1331 if (basep) 1332 rtas_getchar_token = *basep; 1333 1334 if (rtas_putchar_token != RTAS_UNKNOWN_SERVICE && 1335 rtas_getchar_token != RTAS_UNKNOWN_SERVICE) 1336 udbg_init_rtas_console(); 1337 1338 #endif 1339 1340 /* break now */ 1341 return 1; 1342 } 1343 1344 static arch_spinlock_t timebase_lock; 1345 static u64 timebase = 0; 1346 1347 void rtas_give_timebase(void) 1348 { 1349 unsigned long flags; 1350 1351 local_irq_save(flags); 1352 hard_irq_disable(); 1353 arch_spin_lock(&timebase_lock); 1354 rtas_call(rtas_token("freeze-time-base"), 0, 1, NULL); 1355 timebase = get_tb(); 1356 arch_spin_unlock(&timebase_lock); 1357 1358 while (timebase) 1359 barrier(); 1360 rtas_call(rtas_token("thaw-time-base"), 0, 1, NULL); 1361 local_irq_restore(flags); 1362 } 1363 1364 void rtas_take_timebase(void) 1365 { 1366 while (!timebase) 1367 barrier(); 1368 arch_spin_lock(&timebase_lock); 1369 set_tb(timebase >> 32, timebase & 0xffffffff); 1370 timebase = 0; 1371 arch_spin_unlock(&timebase_lock); 1372 } 1373