1 // SPDX-License-Identifier: GPL-2.0-or-later
4 * Procedures for interfacing to the RTAS on CHRP machines.
6 * Peter Bergner, IBM March 2001.
7 * Copyright (C) 2001 IBM.
10 #define pr_fmt(fmt) "rtas: " fmt
12 #include <linux/bsearch.h>
13 #include <linux/capability.h>
14 #include <linux/delay.h>
15 #include <linux/export.h>
16 #include <linux/init.h>
17 #include <linux/kconfig.h>
18 #include <linux/kernel.h>
19 #include <linux/lockdep.h>
20 #include <linux/memblock.h>
21 #include <linux/mutex.h>
23 #include <linux/of_fdt.h>
24 #include <linux/reboot.h>
25 #include <linux/sched.h>
26 #include <linux/security.h>
27 #include <linux/slab.h>
28 #include <linux/spinlock.h>
29 #include <linux/stdarg.h>
30 #include <linux/syscalls.h>
31 #include <linux/types.h>
32 #include <linux/uaccess.h>
33 #include <linux/xarray.h>
35 #include <asm/delay.h>
36 #include <asm/firmware.h>
37 #include <asm/interrupt.h>
38 #include <asm/machdep.h>
41 #include <asm/rtas-work-area.h>
44 #include <asm/trace.h>
48 /* Indexes into the args buffer, -1 if not used */
54 * Assumed buffer size per the spec if the function does not
55 * have a size parameter, e.g. ibm,errinjct. 0 if unused.
61 * struct rtas_function - Descriptor for RTAS functions.
63 * @token: Value of @name if it exists under the /rtas node.
64 * @name: Function name.
65 * @filter: If non-NULL, invoking this function via the rtas syscall is
66 * generally allowed, and @filter describes constraints on the
67 * arguments. See also @banned_for_syscall_on_le.
68 * @banned_for_syscall_on_le: Set when call via sys_rtas is generally allowed
69 * but specifically restricted on ppc64le. Such
70 * functions are believed to have no users on
71 * ppc64le, and we want to keep it that way. It does
72 * not make sense for this to be set when @filter
74 * @lock: Pointer to an optional dedicated per-function mutex. This
75 * should be set for functions that require multiple calls in
76 * sequence to complete a single operation, and such sequences
77 * will disrupt each other if allowed to interleave. Users of
78 * this function are required to hold the associated lock for
79 * the duration of the call sequence. Add an explanatory
80 * comment to the function table entry if setting this member.
82 struct rtas_function {
84 const bool banned_for_syscall_on_le:1;
85 const char * const name;
86 const struct rtas_filter *filter;
91 * Per-function locks for sequence-based RTAS functions.
93 static DEFINE_MUTEX(rtas_ibm_activate_firmware_lock);
94 static DEFINE_MUTEX(rtas_ibm_get_dynamic_sensor_state_lock);
95 static DEFINE_MUTEX(rtas_ibm_get_indices_lock);
96 static DEFINE_MUTEX(rtas_ibm_lpar_perftools_lock);
97 static DEFINE_MUTEX(rtas_ibm_physical_attestation_lock);
98 static DEFINE_MUTEX(rtas_ibm_set_dynamic_indicator_lock);
99 DEFINE_MUTEX(rtas_ibm_get_vpd_lock);
101 static struct rtas_function rtas_function_table[] __ro_after_init = {
102 [RTAS_FNIDX__CHECK_EXCEPTION] = {
103 .name = "check-exception",
105 [RTAS_FNIDX__DISPLAY_CHARACTER] = {
106 .name = "display-character",
107 .filter = &(const struct rtas_filter) {
108 .buf_idx1 = -1, .size_idx1 = -1,
109 .buf_idx2 = -1, .size_idx2 = -1,
112 [RTAS_FNIDX__EVENT_SCAN] = {
113 .name = "event-scan",
115 [RTAS_FNIDX__FREEZE_TIME_BASE] = {
116 .name = "freeze-time-base",
118 [RTAS_FNIDX__GET_POWER_LEVEL] = {
119 .name = "get-power-level",
120 .filter = &(const struct rtas_filter) {
121 .buf_idx1 = -1, .size_idx1 = -1,
122 .buf_idx2 = -1, .size_idx2 = -1,
125 [RTAS_FNIDX__GET_SENSOR_STATE] = {
126 .name = "get-sensor-state",
127 .filter = &(const struct rtas_filter) {
128 .buf_idx1 = -1, .size_idx1 = -1,
129 .buf_idx2 = -1, .size_idx2 = -1,
132 [RTAS_FNIDX__GET_TERM_CHAR] = {
133 .name = "get-term-char",
135 [RTAS_FNIDX__GET_TIME_OF_DAY] = {
136 .name = "get-time-of-day",
137 .filter = &(const struct rtas_filter) {
138 .buf_idx1 = -1, .size_idx1 = -1,
139 .buf_idx2 = -1, .size_idx2 = -1,
142 [RTAS_FNIDX__IBM_ACTIVATE_FIRMWARE] = {
143 .name = "ibm,activate-firmware",
144 .filter = &(const struct rtas_filter) {
145 .buf_idx1 = -1, .size_idx1 = -1,
146 .buf_idx2 = -1, .size_idx2 = -1,
149 * PAPR+ as of v2.13 doesn't explicitly impose any
150 * restriction, but this typically requires multiple
151 * calls before success, and there's no reason to
152 * allow sequences to interleave.
154 .lock = &rtas_ibm_activate_firmware_lock,
156 [RTAS_FNIDX__IBM_CBE_START_PTCAL] = {
157 .name = "ibm,cbe-start-ptcal",
159 [RTAS_FNIDX__IBM_CBE_STOP_PTCAL] = {
160 .name = "ibm,cbe-stop-ptcal",
162 [RTAS_FNIDX__IBM_CHANGE_MSI] = {
163 .name = "ibm,change-msi",
165 [RTAS_FNIDX__IBM_CLOSE_ERRINJCT] = {
166 .name = "ibm,close-errinjct",
167 .filter = &(const struct rtas_filter) {
168 .buf_idx1 = -1, .size_idx1 = -1,
169 .buf_idx2 = -1, .size_idx2 = -1,
172 [RTAS_FNIDX__IBM_CONFIGURE_BRIDGE] = {
173 .name = "ibm,configure-bridge",
175 [RTAS_FNIDX__IBM_CONFIGURE_CONNECTOR] = {
176 .name = "ibm,configure-connector",
177 .filter = &(const struct rtas_filter) {
178 .buf_idx1 = 0, .size_idx1 = -1,
179 .buf_idx2 = 1, .size_idx2 = -1,
183 [RTAS_FNIDX__IBM_CONFIGURE_KERNEL_DUMP] = {
184 .name = "ibm,configure-kernel-dump",
186 [RTAS_FNIDX__IBM_CONFIGURE_PE] = {
187 .name = "ibm,configure-pe",
189 [RTAS_FNIDX__IBM_CREATE_PE_DMA_WINDOW] = {
190 .name = "ibm,create-pe-dma-window",
192 [RTAS_FNIDX__IBM_DISPLAY_MESSAGE] = {
193 .name = "ibm,display-message",
194 .filter = &(const struct rtas_filter) {
195 .buf_idx1 = 0, .size_idx1 = -1,
196 .buf_idx2 = -1, .size_idx2 = -1,
199 [RTAS_FNIDX__IBM_ERRINJCT] = {
200 .name = "ibm,errinjct",
201 .filter = &(const struct rtas_filter) {
202 .buf_idx1 = 2, .size_idx1 = -1,
203 .buf_idx2 = -1, .size_idx2 = -1,
207 [RTAS_FNIDX__IBM_EXTI2C] = {
208 .name = "ibm,exti2c",
210 [RTAS_FNIDX__IBM_GET_CONFIG_ADDR_INFO] = {
211 .name = "ibm,get-config-addr-info",
213 [RTAS_FNIDX__IBM_GET_CONFIG_ADDR_INFO2] = {
214 .name = "ibm,get-config-addr-info2",
215 .filter = &(const struct rtas_filter) {
216 .buf_idx1 = -1, .size_idx1 = -1,
217 .buf_idx2 = -1, .size_idx2 = -1,
220 [RTAS_FNIDX__IBM_GET_DYNAMIC_SENSOR_STATE] = {
221 .name = "ibm,get-dynamic-sensor-state",
222 .filter = &(const struct rtas_filter) {
223 .buf_idx1 = 1, .size_idx1 = -1,
224 .buf_idx2 = -1, .size_idx2 = -1,
227 * PAPR+ v2.13 R1–7.3.19–3 is explicit that the OS
228 * must not call ibm,get-dynamic-sensor-state with
229 * different inputs until a non-retry status has been
232 .lock = &rtas_ibm_get_dynamic_sensor_state_lock,
234 [RTAS_FNIDX__IBM_GET_INDICES] = {
235 .name = "ibm,get-indices",
236 .filter = &(const struct rtas_filter) {
237 .buf_idx1 = 2, .size_idx1 = 3,
238 .buf_idx2 = -1, .size_idx2 = -1,
241 * PAPR+ v2.13 R1–7.3.17–2 says that the OS must not
242 * interleave ibm,get-indices call sequences with
245 .lock = &rtas_ibm_get_indices_lock,
247 [RTAS_FNIDX__IBM_GET_RIO_TOPOLOGY] = {
248 .name = "ibm,get-rio-topology",
250 [RTAS_FNIDX__IBM_GET_SYSTEM_PARAMETER] = {
251 .name = "ibm,get-system-parameter",
252 .filter = &(const struct rtas_filter) {
253 .buf_idx1 = 1, .size_idx1 = 2,
254 .buf_idx2 = -1, .size_idx2 = -1,
257 [RTAS_FNIDX__IBM_GET_VPD] = {
258 .name = "ibm,get-vpd",
259 .filter = &(const struct rtas_filter) {
260 .buf_idx1 = 0, .size_idx1 = -1,
261 .buf_idx2 = 1, .size_idx2 = 2,
264 * PAPR+ v2.13 R1–7.3.20–4 indicates that sequences
265 * should not be allowed to interleave.
267 .lock = &rtas_ibm_get_vpd_lock,
269 [RTAS_FNIDX__IBM_GET_XIVE] = {
270 .name = "ibm,get-xive",
272 [RTAS_FNIDX__IBM_INT_OFF] = {
273 .name = "ibm,int-off",
275 [RTAS_FNIDX__IBM_INT_ON] = {
276 .name = "ibm,int-on",
278 [RTAS_FNIDX__IBM_IO_QUIESCE_ACK] = {
279 .name = "ibm,io-quiesce-ack",
281 [RTAS_FNIDX__IBM_LPAR_PERFTOOLS] = {
282 .name = "ibm,lpar-perftools",
283 .filter = &(const struct rtas_filter) {
284 .buf_idx1 = 2, .size_idx1 = 3,
285 .buf_idx2 = -1, .size_idx2 = -1,
288 * PAPR+ v2.13 R1–7.3.26–6 says the OS should allow
289 * only one call sequence in progress at a time.
291 .lock = &rtas_ibm_lpar_perftools_lock,
293 [RTAS_FNIDX__IBM_MANAGE_FLASH_IMAGE] = {
294 .name = "ibm,manage-flash-image",
296 [RTAS_FNIDX__IBM_MANAGE_STORAGE_PRESERVATION] = {
297 .name = "ibm,manage-storage-preservation",
299 [RTAS_FNIDX__IBM_NMI_INTERLOCK] = {
300 .name = "ibm,nmi-interlock",
302 [RTAS_FNIDX__IBM_NMI_REGISTER] = {
303 .name = "ibm,nmi-register",
305 [RTAS_FNIDX__IBM_OPEN_ERRINJCT] = {
306 .name = "ibm,open-errinjct",
307 .filter = &(const struct rtas_filter) {
308 .buf_idx1 = -1, .size_idx1 = -1,
309 .buf_idx2 = -1, .size_idx2 = -1,
312 [RTAS_FNIDX__IBM_OPEN_SRIOV_ALLOW_UNFREEZE] = {
313 .name = "ibm,open-sriov-allow-unfreeze",
315 [RTAS_FNIDX__IBM_OPEN_SRIOV_MAP_PE_NUMBER] = {
316 .name = "ibm,open-sriov-map-pe-number",
318 [RTAS_FNIDX__IBM_OS_TERM] = {
319 .name = "ibm,os-term",
321 [RTAS_FNIDX__IBM_PARTNER_CONTROL] = {
322 .name = "ibm,partner-control",
324 [RTAS_FNIDX__IBM_PHYSICAL_ATTESTATION] = {
325 .name = "ibm,physical-attestation",
326 .filter = &(const struct rtas_filter) {
327 .buf_idx1 = 0, .size_idx1 = 1,
328 .buf_idx2 = -1, .size_idx2 = -1,
331 * This follows a sequence-based pattern similar to
332 * ibm,get-vpd et al. Since PAPR+ restricts
333 * interleaving call sequences for other functions of
334 * this style, assume the restriction applies here,
335 * even though it's not explicit in the spec.
337 .lock = &rtas_ibm_physical_attestation_lock,
339 [RTAS_FNIDX__IBM_PLATFORM_DUMP] = {
340 .name = "ibm,platform-dump",
341 .filter = &(const struct rtas_filter) {
342 .buf_idx1 = 4, .size_idx1 = 5,
343 .buf_idx2 = -1, .size_idx2 = -1,
346 * PAPR+ v2.13 7.3.3.4.1 indicates that concurrent
347 * sequences of ibm,platform-dump are allowed if they
348 * are operating on different dump tags. So leave the
349 * lock pointer unset for now. This may need
350 * reconsideration if kernel-internal users appear.
353 [RTAS_FNIDX__IBM_POWER_OFF_UPS] = {
354 .name = "ibm,power-off-ups",
356 [RTAS_FNIDX__IBM_QUERY_INTERRUPT_SOURCE_NUMBER] = {
357 .name = "ibm,query-interrupt-source-number",
359 [RTAS_FNIDX__IBM_QUERY_PE_DMA_WINDOW] = {
360 .name = "ibm,query-pe-dma-window",
362 [RTAS_FNIDX__IBM_READ_PCI_CONFIG] = {
363 .name = "ibm,read-pci-config",
365 [RTAS_FNIDX__IBM_READ_SLOT_RESET_STATE] = {
366 .name = "ibm,read-slot-reset-state",
367 .filter = &(const struct rtas_filter) {
368 .buf_idx1 = -1, .size_idx1 = -1,
369 .buf_idx2 = -1, .size_idx2 = -1,
372 [RTAS_FNIDX__IBM_READ_SLOT_RESET_STATE2] = {
373 .name = "ibm,read-slot-reset-state2",
375 [RTAS_FNIDX__IBM_REMOVE_PE_DMA_WINDOW] = {
376 .name = "ibm,remove-pe-dma-window",
378 [RTAS_FNIDX__IBM_RESET_PE_DMA_WINDOWS] = {
379 .name = "ibm,reset-pe-dma-windows",
381 [RTAS_FNIDX__IBM_SCAN_LOG_DUMP] = {
382 .name = "ibm,scan-log-dump",
383 .filter = &(const struct rtas_filter) {
384 .buf_idx1 = 0, .size_idx1 = 1,
385 .buf_idx2 = -1, .size_idx2 = -1,
388 [RTAS_FNIDX__IBM_SET_DYNAMIC_INDICATOR] = {
389 .name = "ibm,set-dynamic-indicator",
390 .filter = &(const struct rtas_filter) {
391 .buf_idx1 = 2, .size_idx1 = -1,
392 .buf_idx2 = -1, .size_idx2 = -1,
395 * PAPR+ v2.13 R1–7.3.18–3 says the OS must not call
396 * this function with different inputs until a
397 * non-retry status has been returned.
399 .lock = &rtas_ibm_set_dynamic_indicator_lock,
401 [RTAS_FNIDX__IBM_SET_EEH_OPTION] = {
402 .name = "ibm,set-eeh-option",
403 .filter = &(const struct rtas_filter) {
404 .buf_idx1 = -1, .size_idx1 = -1,
405 .buf_idx2 = -1, .size_idx2 = -1,
408 [RTAS_FNIDX__IBM_SET_SLOT_RESET] = {
409 .name = "ibm,set-slot-reset",
411 [RTAS_FNIDX__IBM_SET_SYSTEM_PARAMETER] = {
412 .name = "ibm,set-system-parameter",
413 .filter = &(const struct rtas_filter) {
414 .buf_idx1 = 1, .size_idx1 = -1,
415 .buf_idx2 = -1, .size_idx2 = -1,
418 [RTAS_FNIDX__IBM_SET_XIVE] = {
419 .name = "ibm,set-xive",
421 [RTAS_FNIDX__IBM_SLOT_ERROR_DETAIL] = {
422 .name = "ibm,slot-error-detail",
424 [RTAS_FNIDX__IBM_SUSPEND_ME] = {
425 .name = "ibm,suspend-me",
426 .banned_for_syscall_on_le = true,
427 .filter = &(const struct rtas_filter) {
428 .buf_idx1 = -1, .size_idx1 = -1,
429 .buf_idx2 = -1, .size_idx2 = -1,
432 [RTAS_FNIDX__IBM_TUNE_DMA_PARMS] = {
433 .name = "ibm,tune-dma-parms",
435 [RTAS_FNIDX__IBM_UPDATE_FLASH_64_AND_REBOOT] = {
436 .name = "ibm,update-flash-64-and-reboot",
438 [RTAS_FNIDX__IBM_UPDATE_NODES] = {
439 .name = "ibm,update-nodes",
440 .banned_for_syscall_on_le = true,
441 .filter = &(const struct rtas_filter) {
442 .buf_idx1 = 0, .size_idx1 = -1,
443 .buf_idx2 = -1, .size_idx2 = -1,
447 [RTAS_FNIDX__IBM_UPDATE_PROPERTIES] = {
448 .name = "ibm,update-properties",
449 .banned_for_syscall_on_le = true,
450 .filter = &(const struct rtas_filter) {
451 .buf_idx1 = 0, .size_idx1 = -1,
452 .buf_idx2 = -1, .size_idx2 = -1,
456 [RTAS_FNIDX__IBM_VALIDATE_FLASH_IMAGE] = {
457 .name = "ibm,validate-flash-image",
459 [RTAS_FNIDX__IBM_WRITE_PCI_CONFIG] = {
460 .name = "ibm,write-pci-config",
462 [RTAS_FNIDX__NVRAM_FETCH] = {
463 .name = "nvram-fetch",
465 [RTAS_FNIDX__NVRAM_STORE] = {
466 .name = "nvram-store",
468 [RTAS_FNIDX__POWER_OFF] = {
471 [RTAS_FNIDX__PUT_TERM_CHAR] = {
472 .name = "put-term-char",
474 [RTAS_FNIDX__QUERY_CPU_STOPPED_STATE] = {
475 .name = "query-cpu-stopped-state",
477 [RTAS_FNIDX__READ_PCI_CONFIG] = {
478 .name = "read-pci-config",
480 [RTAS_FNIDX__RTAS_LAST_ERROR] = {
481 .name = "rtas-last-error",
483 [RTAS_FNIDX__SET_INDICATOR] = {
484 .name = "set-indicator",
485 .filter = &(const struct rtas_filter) {
486 .buf_idx1 = -1, .size_idx1 = -1,
487 .buf_idx2 = -1, .size_idx2 = -1,
490 [RTAS_FNIDX__SET_POWER_LEVEL] = {
491 .name = "set-power-level",
492 .filter = &(const struct rtas_filter) {
493 .buf_idx1 = -1, .size_idx1 = -1,
494 .buf_idx2 = -1, .size_idx2 = -1,
497 [RTAS_FNIDX__SET_TIME_FOR_POWER_ON] = {
498 .name = "set-time-for-power-on",
499 .filter = &(const struct rtas_filter) {
500 .buf_idx1 = -1, .size_idx1 = -1,
501 .buf_idx2 = -1, .size_idx2 = -1,
504 [RTAS_FNIDX__SET_TIME_OF_DAY] = {
505 .name = "set-time-of-day",
506 .filter = &(const struct rtas_filter) {
507 .buf_idx1 = -1, .size_idx1 = -1,
508 .buf_idx2 = -1, .size_idx2 = -1,
511 [RTAS_FNIDX__START_CPU] = {
514 [RTAS_FNIDX__STOP_SELF] = {
517 [RTAS_FNIDX__SYSTEM_REBOOT] = {
518 .name = "system-reboot",
520 [RTAS_FNIDX__THAW_TIME_BASE] = {
521 .name = "thaw-time-base",
523 [RTAS_FNIDX__WRITE_PCI_CONFIG] = {
524 .name = "write-pci-config",
528 #define for_each_rtas_function(funcp) \
529 for (funcp = &rtas_function_table[0]; \
530 funcp < &rtas_function_table[ARRAY_SIZE(rtas_function_table)]; \
534 * Nearly all RTAS calls need to be serialized. All uses of the
535 * default rtas_args block must hold rtas_lock.
537 * Exceptions to the RTAS serialization requirement (e.g. stop-self)
538 * must use a separate rtas_args structure.
540 static DEFINE_RAW_SPINLOCK(rtas_lock);
541 static struct rtas_args rtas_args;
544 * rtas_function_token() - RTAS function token lookup.
545 * @handle: Function handle, e.g. RTAS_FN_EVENT_SCAN.
547 * Context: Any context.
548 * Return: the token value for the function if implemented by this platform,
549 * otherwise RTAS_UNKNOWN_SERVICE.
551 s32 rtas_function_token(const rtas_fn_handle_t handle)
553 const size_t index = handle.index;
554 const bool out_of_bounds = index >= ARRAY_SIZE(rtas_function_table);
556 if (WARN_ONCE(out_of_bounds, "invalid function index %zu", index))
557 return RTAS_UNKNOWN_SERVICE;
559 * Various drivers attempt token lookups on non-RTAS
563 return RTAS_UNKNOWN_SERVICE;
565 return rtas_function_table[index].token;
567 EXPORT_SYMBOL_GPL(rtas_function_token);
569 static int rtas_function_cmp(const void *a, const void *b)
571 const struct rtas_function *f1 = a;
572 const struct rtas_function *f2 = b;
574 return strcmp(f1->name, f2->name);
578 * Boot-time initialization of the function table needs the lookup to
579 * return a non-const-qualified object. Use rtas_name_to_function()
580 * in all other contexts.
582 static struct rtas_function *__rtas_name_to_function(const char *name)
584 const struct rtas_function key = {
587 struct rtas_function *found;
589 found = bsearch(&key, rtas_function_table, ARRAY_SIZE(rtas_function_table),
590 sizeof(rtas_function_table[0]), rtas_function_cmp);
595 static const struct rtas_function *rtas_name_to_function(const char *name)
597 return __rtas_name_to_function(name);
600 static DEFINE_XARRAY(rtas_token_to_function_xarray);
602 static int __init rtas_token_to_function_xarray_init(void)
604 const struct rtas_function *func;
607 for_each_rtas_function(func) {
608 const s32 token = func->token;
610 if (token == RTAS_UNKNOWN_SERVICE)
613 err = xa_err(xa_store(&rtas_token_to_function_xarray,
614 token, (void *)func, GFP_KERNEL));
621 arch_initcall(rtas_token_to_function_xarray_init);
624 * For use by sys_rtas(), where the token value is provided by user
625 * space and we don't want to warn on failed lookups.
627 static const struct rtas_function *rtas_token_to_function_untrusted(s32 token)
629 return xa_load(&rtas_token_to_function_xarray, token);
633 * Reverse lookup for deriving the function descriptor from a
634 * known-good token value in contexts where the former is not already
635 * available. @token must be valid, e.g. derived from the result of a
636 * prior lookup against the function table.
638 static const struct rtas_function *rtas_token_to_function(s32 token)
640 const struct rtas_function *func;
642 if (WARN_ONCE(token < 0, "invalid token %d", token))
645 func = rtas_token_to_function_untrusted(token);
649 * Fall back to linear scan in case the reverse mapping hasn't
650 * been initialized yet.
652 if (xa_empty(&rtas_token_to_function_xarray)) {
653 for_each_rtas_function(func) {
654 if (func->token == token)
659 WARN_ONCE(true, "unexpected failed lookup for token %d", token);
663 /* This is here deliberately so it's only used in this file */
664 void enter_rtas(unsigned long);
666 static void __do_enter_rtas(struct rtas_args *args)
668 enter_rtas(__pa(args));
669 srr_regs_clobbered(); /* rtas uses SRRs, invalidate */
672 static void __do_enter_rtas_trace(struct rtas_args *args)
674 const struct rtas_function *func = rtas_token_to_function(be32_to_cpu(args->token));
677 * If there is a per-function lock, it must be held by the
681 lockdep_assert_held(func->lock);
683 if (args == &rtas_args)
684 lockdep_assert_held(&rtas_lock);
686 trace_rtas_input(args, func->name);
687 trace_rtas_ll_entry(args);
689 __do_enter_rtas(args);
691 trace_rtas_ll_exit(args);
692 trace_rtas_output(args, func->name);
695 static void do_enter_rtas(struct rtas_args *args)
697 const unsigned long msr = mfmsr();
699 * Situations where we want to skip any active tracepoints for
702 * 1. The last code executed on an offline CPU as it stops,
703 * i.e. we're about to call stop-self. The tracepoints'
704 * function name lookup uses xarray, which uses RCU, which
705 * isn't valid to call on an offline CPU. Any events
706 * emitted on an offline CPU will be discarded anyway.
708 * 2. In real mode, as when invoking ibm,nmi-interlock from
709 * the pseries MCE handler. We cannot count on trace
710 * buffers or the entries in rtas_token_to_function_xarray
711 * to be contained in the RMO.
713 const unsigned long mask = MSR_IR | MSR_DR;
714 const bool can_trace = likely(cpu_online(raw_smp_processor_id()) &&
715 (msr & mask) == mask);
717 * Make sure MSR[RI] is currently enabled as it will be forced later
720 BUG_ON(!(msr & MSR_RI));
722 BUG_ON(!irqs_disabled());
724 hard_irq_disable(); /* Ensure MSR[EE] is disabled on PPC64 */
727 __do_enter_rtas_trace(args);
729 __do_enter_rtas(args);
734 DEFINE_SPINLOCK(rtas_data_buf_lock);
735 EXPORT_SYMBOL_GPL(rtas_data_buf_lock);
737 char rtas_data_buf[RTAS_DATA_BUF_SIZE] __aligned(SZ_4K);
738 EXPORT_SYMBOL_GPL(rtas_data_buf);
740 unsigned long rtas_rmo_buf;
743 * If non-NULL, this gets called when the kernel terminates.
744 * This is done like this so rtas_flash can be a module.
746 void (*rtas_flash_term_hook)(int);
747 EXPORT_SYMBOL_GPL(rtas_flash_term_hook);
750 * call_rtas_display_status and call_rtas_display_status_delay
751 * are designed only for very early low-level debugging, which
752 * is why the token is hard-coded to 10.
754 static void call_rtas_display_status(unsigned char c)
761 raw_spin_lock_irqsave(&rtas_lock, flags);
762 rtas_call_unlocked(&rtas_args, 10, 1, 1, NULL, c);
763 raw_spin_unlock_irqrestore(&rtas_lock, flags);
766 static void call_rtas_display_status_delay(char c)
768 static int pending_newline = 0; /* did last write end with unprinted newline? */
769 static int width = 16;
773 call_rtas_display_status(' ');
778 if (pending_newline) {
779 call_rtas_display_status('\r');
780 call_rtas_display_status('\n');
784 call_rtas_display_status(c);
790 void __init udbg_init_rtas_panel(void)
792 udbg_putc = call_rtas_display_status_delay;
795 #ifdef CONFIG_UDBG_RTAS_CONSOLE
797 /* If you think you're dying before early_init_dt_scan_rtas() does its
798 * work, you can hard code the token values for your firmware here and
799 * hardcode rtas.base/entry etc.
801 static unsigned int rtas_putchar_token = RTAS_UNKNOWN_SERVICE;
802 static unsigned int rtas_getchar_token = RTAS_UNKNOWN_SERVICE;
804 static void udbg_rtascon_putc(char c)
811 /* Add CRs before LFs */
813 udbg_rtascon_putc('\r');
815 /* if there is more than one character to be displayed, wait a bit */
816 for (tries = 0; tries < 16; tries++) {
817 if (rtas_call(rtas_putchar_token, 1, 1, NULL, c) == 0)
823 static int udbg_rtascon_getc_poll(void)
830 if (rtas_call(rtas_getchar_token, 0, 2, &c))
836 static int udbg_rtascon_getc(void)
840 while ((c = udbg_rtascon_getc_poll()) == -1)
847 void __init udbg_init_rtas_console(void)
849 udbg_putc = udbg_rtascon_putc;
850 udbg_getc = udbg_rtascon_getc;
851 udbg_getc_poll = udbg_rtascon_getc_poll;
853 #endif /* CONFIG_UDBG_RTAS_CONSOLE */
855 void rtas_progress(char *s, unsigned short hex)
857 struct device_node *root;
861 static int display_character, set_indicator;
862 static int display_width, display_lines, form_feed;
863 static const int *row_width;
864 static DEFINE_SPINLOCK(progress_lock);
865 static int current_line;
866 static int pending_newline = 0; /* did last write end with unprinted newline? */
871 if (display_width == 0) {
872 display_width = 0x10;
873 if ((root = of_find_node_by_path("/rtas"))) {
874 if ((p = of_get_property(root,
875 "ibm,display-line-length", NULL)))
876 display_width = be32_to_cpu(*p);
877 if ((p = of_get_property(root,
878 "ibm,form-feed", NULL)))
879 form_feed = be32_to_cpu(*p);
880 if ((p = of_get_property(root,
881 "ibm,display-number-of-lines", NULL)))
882 display_lines = be32_to_cpu(*p);
883 row_width = of_get_property(root,
884 "ibm,display-truncation-length", NULL);
887 display_character = rtas_function_token(RTAS_FN_DISPLAY_CHARACTER);
888 set_indicator = rtas_function_token(RTAS_FN_SET_INDICATOR);
891 if (display_character == RTAS_UNKNOWN_SERVICE) {
892 /* use hex display if available */
893 if (set_indicator != RTAS_UNKNOWN_SERVICE)
894 rtas_call(set_indicator, 3, 1, NULL, 6, 0, hex);
898 spin_lock(&progress_lock);
901 * Last write ended with newline, but we didn't print it since
902 * it would just clear the bottom line of output. Print it now
905 * If no newline is pending and form feed is supported, clear the
906 * display with a form feed; otherwise, print a CR to start output
907 * at the beginning of the line.
909 if (pending_newline) {
910 rtas_call(display_character, 1, 1, NULL, '\r');
911 rtas_call(display_character, 1, 1, NULL, '\n');
916 rtas_call(display_character, 1, 1, NULL,
919 rtas_call(display_character, 1, 1, NULL, '\r');
923 width = row_width[current_line];
925 width = display_width;
928 if (*os == '\n' || *os == '\r') {
929 /* If newline is the last character, save it
930 * until next call to avoid bumping up the
933 if (*os == '\n' && !os[1]) {
936 if (current_line > display_lines-1)
937 current_line = display_lines-1;
938 spin_unlock(&progress_lock);
942 /* RTAS wants CR-LF, not just LF */
945 rtas_call(display_character, 1, 1, NULL, '\r');
946 rtas_call(display_character, 1, 1, NULL, '\n');
948 /* CR might be used to re-draw a line, so we'll
949 * leave it alone and not add LF.
951 rtas_call(display_character, 1, 1, NULL, *os);
955 width = row_width[current_line];
957 width = display_width;
960 rtas_call(display_character, 1, 1, NULL, *os);
965 /* if we overwrite the screen length */
967 while ((*os != 0) && (*os != '\n') && (*os != '\r'))
971 spin_unlock(&progress_lock);
973 EXPORT_SYMBOL_GPL(rtas_progress); /* needed by rtas_flash module */
975 int rtas_token(const char *service)
977 const struct rtas_function *func;
980 if (rtas.dev == NULL)
981 return RTAS_UNKNOWN_SERVICE;
983 func = rtas_name_to_function(service);
987 * The caller is looking up a name that is not known to be an
988 * RTAS function. Either it's a function that needs to be
989 * added to the table, or they're misusing rtas_token() to
990 * access non-function properties of the /rtas node. Warn and
991 * fall back to the legacy behavior.
993 WARN_ONCE(1, "unknown function `%s`, should it be added to rtas_function_table?\n",
996 tokp = of_get_property(rtas.dev, service, NULL);
997 return tokp ? be32_to_cpu(*tokp) : RTAS_UNKNOWN_SERVICE;
999 EXPORT_SYMBOL_GPL(rtas_token);
1001 #ifdef CONFIG_RTAS_ERROR_LOGGING
1003 static u32 rtas_error_log_max __ro_after_init = RTAS_ERROR_LOG_MAX;
1006 * Return the firmware-specified size of the error log buffer
1007 * for all rtas calls that require an error buffer argument.
1008 * This includes 'check-exception' and 'rtas-last-error'.
1010 int rtas_get_error_log_max(void)
1012 return rtas_error_log_max;
1015 static void __init init_error_log_max(void)
1017 static const char propname[] __initconst = "rtas-error-log-max";
1020 if (of_property_read_u32(rtas.dev, propname, &max)) {
1021 pr_warn("%s not found, using default of %u\n",
1022 propname, RTAS_ERROR_LOG_MAX);
1023 max = RTAS_ERROR_LOG_MAX;
1026 if (max > RTAS_ERROR_LOG_MAX) {
1027 pr_warn("%s = %u, clamping max error log size to %u\n",
1028 propname, max, RTAS_ERROR_LOG_MAX);
1029 max = RTAS_ERROR_LOG_MAX;
1032 rtas_error_log_max = max;
1036 static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
1038 /** Return a copy of the detailed error text associated with the
1039 * most recent failed call to rtas. Because the error text
1040 * might go stale if there are any other intervening rtas calls,
1041 * this routine must be called atomically with whatever produced
1042 * the error (i.e. with rtas_lock still held from the previous call).
1044 static char *__fetch_rtas_last_error(char *altbuf)
1046 const s32 token = rtas_function_token(RTAS_FN_RTAS_LAST_ERROR);
1047 struct rtas_args err_args, save_args;
1051 lockdep_assert_held(&rtas_lock);
1056 bufsz = rtas_get_error_log_max();
1058 err_args.token = cpu_to_be32(token);
1059 err_args.nargs = cpu_to_be32(2);
1060 err_args.nret = cpu_to_be32(1);
1061 err_args.args[0] = cpu_to_be32(__pa(rtas_err_buf));
1062 err_args.args[1] = cpu_to_be32(bufsz);
1063 err_args.args[2] = 0;
1065 save_args = rtas_args;
1066 rtas_args = err_args;
1068 do_enter_rtas(&rtas_args);
1070 err_args = rtas_args;
1071 rtas_args = save_args;
1073 /* Log the error in the unlikely case that there was one. */
1074 if (unlikely(err_args.args[2] == 0)) {
1079 if (slab_is_available())
1080 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC);
1083 memmove(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX);
1089 #define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL)
1091 #else /* CONFIG_RTAS_ERROR_LOGGING */
1092 #define __fetch_rtas_last_error(x) NULL
1093 #define get_errorlog_buffer() NULL
1094 static void __init init_error_log_max(void) {}
1099 va_rtas_call_unlocked(struct rtas_args *args, int token, int nargs, int nret,
1104 args->token = cpu_to_be32(token);
1105 args->nargs = cpu_to_be32(nargs);
1106 args->nret = cpu_to_be32(nret);
1107 args->rets = &(args->args[nargs]);
1109 for (i = 0; i < nargs; ++i)
1110 args->args[i] = cpu_to_be32(va_arg(list, __u32));
1112 for (i = 0; i < nret; ++i)
1115 do_enter_rtas(args);
1119 * rtas_call_unlocked() - Invoke an RTAS firmware function without synchronization.
1120 * @args: RTAS parameter block to be used for the call, must obey RTAS addressing
1122 * @token: Identifies the function being invoked.
1123 * @nargs: Number of input parameters. Does not include token.
1124 * @nret: Number of output parameters, including the call status.
1125 * @....: List of @nargs input parameters.
1127 * Invokes the RTAS function indicated by @token, which the caller
1128 * should obtain via rtas_function_token().
1130 * This function is similar to rtas_call(), but must be used with a
1131 * limited set of RTAS calls specifically exempted from the general
1132 * requirement that only one RTAS call may be in progress at any
1133 * time. Examples include stop-self and ibm,nmi-interlock.
1135 void rtas_call_unlocked(struct rtas_args *args, int token, int nargs, int nret, ...)
1139 va_start(list, nret);
1140 va_rtas_call_unlocked(args, token, nargs, nret, list);
1144 static bool token_is_restricted_errinjct(s32 token)
1146 return token == rtas_function_token(RTAS_FN_IBM_OPEN_ERRINJCT) ||
1147 token == rtas_function_token(RTAS_FN_IBM_ERRINJCT);
1151 * rtas_call() - Invoke an RTAS firmware function.
1152 * @token: Identifies the function being invoked.
1153 * @nargs: Number of input parameters. Does not include token.
1154 * @nret: Number of output parameters, including the call status.
1155 * @outputs: Array of @nret output words.
1156 * @....: List of @nargs input parameters.
1158 * Invokes the RTAS function indicated by @token, which the caller
1159 * should obtain via rtas_function_token().
1161 * The @nargs and @nret arguments must match the number of input and
1162 * output parameters specified for the RTAS function.
1164 * rtas_call() returns RTAS status codes, not conventional Linux errno
1165 * values. Callers must translate any failure to an appropriate errno
1166 * in syscall context. Most callers of RTAS functions that can return
1167 * -2 or 990x should use rtas_busy_delay() to correctly handle those
1168 * statuses before calling again.
1170 * The return value descriptions are adapted from 7.2.8 [RTAS] Return
1171 * Codes of the PAPR and CHRP specifications.
1173 * Context: Process context preferably, interrupt context if
1174 * necessary. Acquires an internal spinlock and may perform
1175 * GFP_ATOMIC slab allocation in error path. Unsafe for NMI
1178 * * 0 - RTAS function call succeeded.
1179 * * -1 - RTAS function encountered a hardware or
1180 * platform error, or the token is invalid,
1181 * or the function is restricted by kernel policy.
1182 * * -2 - Specs say "A necessary hardware device was busy,
1183 * and the requested function could not be
1184 * performed. The operation should be retried at
1185 * a later time." This is misleading, at least with
1186 * respect to current RTAS implementations. What it
1187 * usually means in practice is that the function
1188 * could not be completed while meeting RTAS's
1189 * deadline for returning control to the OS (250us
1190 * for PAPR/PowerVM, typically), but the call may be
1191 * immediately reattempted to resume work on it.
1192 * * -3 - Parameter error.
1193 * * -7 - Unexpected state change.
1194 * * 9000...9899 - Vendor-specific success codes.
1195 * * 9900...9905 - Advisory extended delay. Caller should try
1196 * again after ~10^x ms has elapsed, where x is
1197 * the last digit of the status [0-5]. Again going
1198 * beyond the PAPR text, 990x on PowerVM indicates
1199 * contention for RTAS-internal resources. Other
1200 * RTAS call sequences in progress should be
1201 * allowed to complete before reattempting the
1203 * * -9000 - Multi-level isolation error.
1204 * * -9999...-9004 - Vendor-specific error codes.
1205 * * Additional negative values - Function-specific error.
1206 * * Additional positive values - Function-specific success.
1208 int rtas_call(int token, int nargs, int nret, int *outputs, ...)
1210 struct pin_cookie cookie;
1213 unsigned long flags;
1214 struct rtas_args *args;
1215 char *buff_copy = NULL;
1218 if (!rtas.entry || token == RTAS_UNKNOWN_SERVICE)
1221 if (token_is_restricted_errinjct(token)) {
1223 * It would be nicer to not discard the error value
1224 * from security_locked_down(), but callers expect an
1225 * RTAS status, not an errno.
1227 if (security_locked_down(LOCKDOWN_RTAS_ERROR_INJECTION))
1231 if ((mfmsr() & (MSR_IR|MSR_DR)) != (MSR_IR|MSR_DR)) {
1236 raw_spin_lock_irqsave(&rtas_lock, flags);
1237 cookie = lockdep_pin_lock(&rtas_lock);
1239 /* We use the global rtas args buffer */
1242 va_start(list, outputs);
1243 va_rtas_call_unlocked(args, token, nargs, nret, list);
1246 /* A -1 return code indicates that the last command couldn't
1247 be completed due to a hardware error. */
1248 if (be32_to_cpu(args->rets[0]) == -1)
1249 buff_copy = __fetch_rtas_last_error(NULL);
1251 if (nret > 1 && outputs != NULL)
1252 for (i = 0; i < nret-1; ++i)
1253 outputs[i] = be32_to_cpu(args->rets[i + 1]);
1254 ret = (nret > 0) ? be32_to_cpu(args->rets[0]) : 0;
1256 lockdep_unpin_lock(&rtas_lock, cookie);
1257 raw_spin_unlock_irqrestore(&rtas_lock, flags);
1260 log_error(buff_copy, ERR_TYPE_RTAS_LOG, 0);
1261 if (slab_is_available())
1266 EXPORT_SYMBOL_GPL(rtas_call);
1269 * rtas_busy_delay_time() - From an RTAS status value, calculate the
1270 * suggested delay time in milliseconds.
1272 * @status: a value returned from rtas_call() or similar APIs which return
1273 * the status of a RTAS function call.
1275 * Context: Any context.
1278 * * 100000 - If @status is 9905.
1279 * * 10000 - If @status is 9904.
1280 * * 1000 - If @status is 9903.
1281 * * 100 - If @status is 9902.
1282 * * 10 - If @status is 9901.
1283 * * 1 - If @status is either 9900 or -2. This is "wrong" for -2, but
1284 * some callers depend on this behavior, and the worst outcome
1285 * is that they will delay for longer than necessary.
1286 * * 0 - If @status is not a busy or extended delay value.
1288 unsigned int rtas_busy_delay_time(int status)
1291 unsigned int ms = 0;
1293 if (status == RTAS_BUSY) {
1295 } else if (status >= RTAS_EXTENDED_DELAY_MIN &&
1296 status <= RTAS_EXTENDED_DELAY_MAX) {
1297 order = status - RTAS_EXTENDED_DELAY_MIN;
1298 for (ms = 1; order > 0; order--)
1306 * Early boot fallback for rtas_busy_delay().
1308 static bool __init rtas_busy_delay_early(int status)
1310 static size_t successive_ext_delays __initdata;
1314 case RTAS_EXTENDED_DELAY_MIN...RTAS_EXTENDED_DELAY_MAX:
1316 * In the unlikely case that we receive an extended
1317 * delay status in early boot, the OS is probably not
1318 * the cause, and there's nothing we can do to clear
1319 * the condition. Best we can do is delay for a bit
1320 * and hope it's transient. Lie to the caller if it
1321 * seems like we're stuck in a retry loop.
1325 successive_ext_delays += 1;
1326 if (successive_ext_delays > 1000) {
1327 pr_err("too many extended delays, giving up\n");
1330 successive_ext_delays = 0;
1335 successive_ext_delays = 0;
1339 successive_ext_delays = 0;
1347 * rtas_busy_delay() - helper for RTAS busy and extended delay statuses
1349 * @status: a value returned from rtas_call() or similar APIs which return
1350 * the status of a RTAS function call.
1352 * Context: Process context. May sleep or schedule.
1355 * * true - @status is RTAS_BUSY or an extended delay hint. The
1356 * caller may assume that the CPU has been yielded if necessary,
1357 * and that an appropriate delay for @status has elapsed.
1358 * Generally the caller should reattempt the RTAS call which
1361 * * false - @status is not @RTAS_BUSY nor an extended delay hint. The
1362 * caller is responsible for handling @status.
1364 bool __ref rtas_busy_delay(int status)
1370 * Can't do timed sleeps before timekeeping is up.
1372 if (system_state < SYSTEM_SCHEDULING)
1373 return rtas_busy_delay_early(status);
1376 case RTAS_EXTENDED_DELAY_MIN...RTAS_EXTENDED_DELAY_MAX:
1378 ms = rtas_busy_delay_time(status);
1380 * The extended delay hint can be as high as 100 seconds.
1381 * Surely any function returning such a status is either
1382 * buggy or isn't going to be significantly slowed by us
1383 * polling at 1HZ. Clamp the sleep time to one second.
1385 ms = clamp(ms, 1U, 1000U);
1387 * The delay hint is an order-of-magnitude suggestion, not
1388 * a minimum. It is fine, possibly even advantageous, for
1389 * us to pause for less time than hinted. For small values,
1390 * use usleep_range() to ensure we don't sleep much longer
1391 * than actually needed.
1393 * See Documentation/timers/timers-howto.rst for
1394 * explanation of the threshold used here. In effect we use
1395 * usleep_range() for 9900 and 9901, msleep() for
1399 usleep_range(ms * 100, ms * 1000);
1406 * We should call again immediately if there's no other
1414 * Not a busy or extended delay status; the caller should
1415 * handle @status itself. Ensure we warn on misuses in
1416 * atomic context regardless.
1424 EXPORT_SYMBOL_GPL(rtas_busy_delay);
1426 int rtas_error_rc(int rtas_rc)
1431 case RTAS_HARDWARE_ERROR: /* Hardware Error */
1434 case RTAS_INVALID_PARAMETER: /* Bad indicator/domain/etc */
1437 case -9000: /* Isolation error */
1440 case -9001: /* Outstanding TCE/PTE */
1443 case -9002: /* No usable slot */
1447 pr_err("%s: unexpected error %d\n", __func__, rtas_rc);
1453 EXPORT_SYMBOL_GPL(rtas_error_rc);
1455 int rtas_get_power_level(int powerdomain, int *level)
1457 int token = rtas_function_token(RTAS_FN_GET_POWER_LEVEL);
1460 if (token == RTAS_UNKNOWN_SERVICE)
1463 while ((rc = rtas_call(token, 1, 2, level, powerdomain)) == RTAS_BUSY)
1467 return rtas_error_rc(rc);
1470 EXPORT_SYMBOL_GPL(rtas_get_power_level);
1472 int rtas_set_power_level(int powerdomain, int level, int *setlevel)
1474 int token = rtas_function_token(RTAS_FN_SET_POWER_LEVEL);
1477 if (token == RTAS_UNKNOWN_SERVICE)
1481 rc = rtas_call(token, 2, 2, setlevel, powerdomain, level);
1482 } while (rtas_busy_delay(rc));
1485 return rtas_error_rc(rc);
1488 EXPORT_SYMBOL_GPL(rtas_set_power_level);
1490 int rtas_get_sensor(int sensor, int index, int *state)
1492 int token = rtas_function_token(RTAS_FN_GET_SENSOR_STATE);
1495 if (token == RTAS_UNKNOWN_SERVICE)
1499 rc = rtas_call(token, 2, 2, state, sensor, index);
1500 } while (rtas_busy_delay(rc));
1503 return rtas_error_rc(rc);
1506 EXPORT_SYMBOL_GPL(rtas_get_sensor);
1508 int rtas_get_sensor_fast(int sensor, int index, int *state)
1510 int token = rtas_function_token(RTAS_FN_GET_SENSOR_STATE);
1513 if (token == RTAS_UNKNOWN_SERVICE)
1516 rc = rtas_call(token, 2, 2, state, sensor, index);
1517 WARN_ON(rc == RTAS_BUSY || (rc >= RTAS_EXTENDED_DELAY_MIN &&
1518 rc <= RTAS_EXTENDED_DELAY_MAX));
1521 return rtas_error_rc(rc);
1525 bool rtas_indicator_present(int token, int *maxindex)
1527 int proplen, count, i;
1528 const struct indicator_elem {
1533 indicators = of_get_property(rtas.dev, "rtas-indicators", &proplen);
1537 count = proplen / sizeof(struct indicator_elem);
1539 for (i = 0; i < count; i++) {
1540 if (__be32_to_cpu(indicators[i].token) != token)
1543 *maxindex = __be32_to_cpu(indicators[i].maxindex);
1550 int rtas_set_indicator(int indicator, int index, int new_value)
1552 int token = rtas_function_token(RTAS_FN_SET_INDICATOR);
1555 if (token == RTAS_UNKNOWN_SERVICE)
1559 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
1560 } while (rtas_busy_delay(rc));
1563 return rtas_error_rc(rc);
1566 EXPORT_SYMBOL_GPL(rtas_set_indicator);
1569 * Ignoring RTAS extended delay
1571 int rtas_set_indicator_fast(int indicator, int index, int new_value)
1573 int token = rtas_function_token(RTAS_FN_SET_INDICATOR);
1576 if (token == RTAS_UNKNOWN_SERVICE)
1579 rc = rtas_call(token, 3, 1, NULL, indicator, index, new_value);
1581 WARN_ON(rc == RTAS_BUSY || (rc >= RTAS_EXTENDED_DELAY_MIN &&
1582 rc <= RTAS_EXTENDED_DELAY_MAX));
1585 return rtas_error_rc(rc);
1591 * rtas_ibm_suspend_me() - Call ibm,suspend-me to suspend the LPAR.
1593 * @fw_status: RTAS call status will be placed here if not NULL.
1595 * rtas_ibm_suspend_me() should be called only on a CPU which has
1596 * received H_CONTINUE from the H_JOIN hcall. All other active CPUs
1597 * should be waiting to return from H_JOIN.
1599 * rtas_ibm_suspend_me() may suspend execution of the OS
1600 * indefinitely. Callers should take appropriate measures upon return, such as
1601 * resetting watchdog facilities.
1603 * Callers may choose to retry this call if @fw_status is
1604 * %RTAS_THREADS_ACTIVE.
1607 * 0 - The partition has resumed from suspend, possibly after
1608 * migration to a different host.
1609 * -ECANCELED - The operation was aborted.
1610 * -EAGAIN - There were other CPUs not in H_JOIN at the time of the call.
1611 * -EBUSY - Some other condition prevented the suspend from succeeding.
1612 * -EIO - Hardware/platform error.
1614 int rtas_ibm_suspend_me(int *fw_status)
1616 int token = rtas_function_token(RTAS_FN_IBM_SUSPEND_ME);
1620 fwrc = rtas_call(token, 0, 1, NULL);
1626 case RTAS_SUSPEND_ABORTED:
1629 case RTAS_THREADS_ACTIVE:
1632 case RTAS_NOT_SUSPENDABLE:
1633 case RTAS_OUTSTANDING_COPROC:
1648 void __noreturn rtas_restart(char *cmd)
1650 if (rtas_flash_term_hook)
1651 rtas_flash_term_hook(SYS_RESTART);
1652 pr_emerg("system-reboot returned %d\n",
1653 rtas_call(rtas_function_token(RTAS_FN_SYSTEM_REBOOT), 0, 1, NULL));
1657 void rtas_power_off(void)
1659 if (rtas_flash_term_hook)
1660 rtas_flash_term_hook(SYS_POWER_OFF);
1661 /* allow power on only with power button press */
1662 pr_emerg("power-off returned %d\n",
1663 rtas_call(rtas_function_token(RTAS_FN_POWER_OFF), 2, 1, NULL, -1, -1));
1667 void __noreturn rtas_halt(void)
1669 if (rtas_flash_term_hook)
1670 rtas_flash_term_hook(SYS_HALT);
1671 /* allow power on only with power button press */
1672 pr_emerg("power-off returned %d\n",
1673 rtas_call(rtas_function_token(RTAS_FN_POWER_OFF), 2, 1, NULL, -1, -1));
1677 /* Must be in the RMO region, so we place it here */
1678 static char rtas_os_term_buf[2048];
1679 static bool ibm_extended_os_term;
1681 void rtas_os_term(char *str)
1683 s32 token = rtas_function_token(RTAS_FN_IBM_OS_TERM);
1684 static struct rtas_args args;
1688 * Firmware with the ibm,extended-os-term property is guaranteed
1689 * to always return from an ibm,os-term call. Earlier versions without
1690 * this property may terminate the partition which we want to avoid
1691 * since it interferes with panic_timeout.
1694 if (token == RTAS_UNKNOWN_SERVICE || !ibm_extended_os_term)
1697 snprintf(rtas_os_term_buf, 2048, "OS panic: %s", str);
1700 * Keep calling as long as RTAS returns a "try again" status,
1701 * but don't use rtas_busy_delay(), which potentially
1705 rtas_call_unlocked(&args, token, 1, 1, NULL, __pa(rtas_os_term_buf));
1706 status = be32_to_cpu(args.rets[0]);
1707 } while (rtas_busy_delay_time(status));
1710 pr_emerg("ibm,os-term call failed %d\n", status);
1714 * rtas_activate_firmware() - Activate a new version of firmware.
1716 * Context: This function may sleep.
1718 * Activate a new version of partition firmware. The OS must call this
1719 * after resuming from a partition hibernation or migration in order
1720 * to maintain the ability to perform live firmware updates. It's not
1721 * catastrophic for this method to be absent or to fail; just log the
1722 * condition in that case.
1724 void rtas_activate_firmware(void)
1726 int token = rtas_function_token(RTAS_FN_IBM_ACTIVATE_FIRMWARE);
1729 if (token == RTAS_UNKNOWN_SERVICE) {
1730 pr_notice("ibm,activate-firmware method unavailable\n");
1734 mutex_lock(&rtas_ibm_activate_firmware_lock);
1737 fwrc = rtas_call(token, 0, 1, NULL);
1738 } while (rtas_busy_delay(fwrc));
1740 mutex_unlock(&rtas_ibm_activate_firmware_lock);
1743 pr_err("ibm,activate-firmware failed (%i)\n", fwrc);
1747 * get_pseries_errorlog() - Find a specific pseries error log in an RTAS
1748 * extended event log.
1749 * @log: RTAS error/event log
1750 * @section_id: two character section identifier
1752 * Return: A pointer to the specified errorlog or NULL if not found.
1754 noinstr struct pseries_errorlog *get_pseries_errorlog(struct rtas_error_log *log,
1755 uint16_t section_id)
1757 struct rtas_ext_event_log_v6 *ext_log =
1758 (struct rtas_ext_event_log_v6 *)log->buffer;
1759 struct pseries_errorlog *sect;
1760 unsigned char *p, *log_end;
1761 uint32_t ext_log_length = rtas_error_extended_log_length(log);
1762 uint8_t log_format = rtas_ext_event_log_format(ext_log);
1763 uint32_t company_id = rtas_ext_event_company_id(ext_log);
1765 /* Check that we understand the format */
1766 if (ext_log_length < sizeof(struct rtas_ext_event_log_v6) ||
1767 log_format != RTAS_V6EXT_LOG_FORMAT_EVENT_LOG ||
1768 company_id != RTAS_V6EXT_COMPANY_ID_IBM)
1771 log_end = log->buffer + ext_log_length;
1772 p = ext_log->vendor_log;
1774 while (p < log_end) {
1775 sect = (struct pseries_errorlog *)p;
1776 if (pseries_errorlog_id(sect) == section_id)
1778 p += pseries_errorlog_length(sect);
1785 * The sys_rtas syscall, as originally designed, allows root to pass
1786 * arbitrary physical addresses to RTAS calls. A number of RTAS calls
1787 * can be abused to write to arbitrary memory and do other things that
1788 * are potentially harmful to system integrity, and thus should only
1789 * be used inside the kernel and not exposed to userspace.
1791 * All known legitimate users of the sys_rtas syscall will only ever
1792 * pass addresses that fall within the RMO buffer, and use a known
1793 * subset of RTAS calls.
1795 * Accordingly, we filter RTAS requests to check that the call is
1796 * permitted, and that provided pointers fall within the RMO buffer.
1797 * If a function is allowed to be invoked via the syscall, then its
1798 * entry in the rtas_functions table points to a rtas_filter that
1799 * describes its constraints, with the indexes of the parameters which
1800 * are expected to contain addresses and sizes of buffers allocated
1801 * inside the RMO buffer.
1804 static bool in_rmo_buf(u32 base, u32 end)
1806 return base >= rtas_rmo_buf &&
1807 base < (rtas_rmo_buf + RTAS_USER_REGION_SIZE) &&
1809 end >= rtas_rmo_buf &&
1810 end < (rtas_rmo_buf + RTAS_USER_REGION_SIZE);
1813 static bool block_rtas_call(const struct rtas_function *func, int nargs,
1814 struct rtas_args *args)
1816 const struct rtas_filter *f;
1817 const bool is_platform_dump =
1818 func == &rtas_function_table[RTAS_FNIDX__IBM_PLATFORM_DUMP];
1819 const bool is_config_conn =
1820 func == &rtas_function_table[RTAS_FNIDX__IBM_CONFIGURE_CONNECTOR];
1821 u32 base, size, end;
1824 * Only functions with filters attached are allowed.
1830 * And some functions aren't allowed on LE.
1832 if (IS_ENABLED(CONFIG_CPU_LITTLE_ENDIAN) && func->banned_for_syscall_on_le)
1835 if (f->buf_idx1 != -1) {
1836 base = be32_to_cpu(args->args[f->buf_idx1]);
1837 if (f->size_idx1 != -1)
1838 size = be32_to_cpu(args->args[f->size_idx1]);
1839 else if (f->fixed_size)
1840 size = f->fixed_size;
1844 end = base + size - 1;
1847 * Special case for ibm,platform-dump - NULL buffer
1848 * address is used to indicate end of dump processing
1850 if (is_platform_dump && base == 0)
1853 if (!in_rmo_buf(base, end))
1857 if (f->buf_idx2 != -1) {
1858 base = be32_to_cpu(args->args[f->buf_idx2]);
1859 if (f->size_idx2 != -1)
1860 size = be32_to_cpu(args->args[f->size_idx2]);
1861 else if (f->fixed_size)
1862 size = f->fixed_size;
1865 end = base + size - 1;
1868 * Special case for ibm,configure-connector where the
1871 if (is_config_conn && base == 0)
1874 if (!in_rmo_buf(base, end))
1880 pr_err_ratelimited("sys_rtas: RTAS call blocked - exploit attempt?\n");
1881 pr_err_ratelimited("sys_rtas: %s nargs=%d (called by %s)\n",
1882 func->name, nargs, current->comm);
1886 /* We assume to be passed big endian arguments */
1887 SYSCALL_DEFINE1(rtas, struct rtas_args __user *, uargs)
1889 const struct rtas_function *func;
1890 struct pin_cookie cookie;
1891 struct rtas_args args;
1892 unsigned long flags;
1893 char *buff_copy, *errbuf = NULL;
1894 int nargs, nret, token;
1896 if (!capable(CAP_SYS_ADMIN))
1902 if (copy_from_user(&args, uargs, 3 * sizeof(u32)) != 0)
1905 nargs = be32_to_cpu(args.nargs);
1906 nret = be32_to_cpu(args.nret);
1907 token = be32_to_cpu(args.token);
1909 if (nargs >= ARRAY_SIZE(args.args)
1910 || nret > ARRAY_SIZE(args.args)
1911 || nargs + nret > ARRAY_SIZE(args.args))
1915 if (copy_from_user(args.args, uargs->args,
1916 nargs * sizeof(rtas_arg_t)) != 0)
1920 * If this token doesn't correspond to a function the kernel
1921 * understands, you're not allowed to call it.
1923 func = rtas_token_to_function_untrusted(token);
1927 args.rets = &args.args[nargs];
1928 memset(args.rets, 0, nret * sizeof(rtas_arg_t));
1930 if (block_rtas_call(func, nargs, &args))
1933 if (token_is_restricted_errinjct(token)) {
1936 err = security_locked_down(LOCKDOWN_RTAS_ERROR_INJECTION);
1941 /* Need to handle ibm,suspend_me call specially */
1942 if (token == rtas_function_token(RTAS_FN_IBM_SUSPEND_ME)) {
1945 * rtas_ibm_suspend_me assumes the streamid handle is in cpu
1946 * endian, or at least the hcall within it requires it.
1949 u64 handle = ((u64)be32_to_cpu(args.args[0]) << 32)
1950 | be32_to_cpu(args.args[1]);
1951 rc = rtas_syscall_dispatch_ibm_suspend_me(handle);
1953 args.rets[0] = cpu_to_be32(RTAS_NOT_SUSPENDABLE);
1954 else if (rc == -EIO)
1955 args.rets[0] = cpu_to_be32(-1);
1961 buff_copy = get_errorlog_buffer();
1964 * If this function has a mutex assigned to it, we must
1965 * acquire it to avoid interleaving with any kernel-based uses
1966 * of the same function. Kernel-based sequences acquire the
1967 * appropriate mutex explicitly.
1970 mutex_lock(func->lock);
1972 raw_spin_lock_irqsave(&rtas_lock, flags);
1973 cookie = lockdep_pin_lock(&rtas_lock);
1976 do_enter_rtas(&rtas_args);
1979 /* A -1 return code indicates that the last command couldn't
1980 be completed due to a hardware error. */
1981 if (be32_to_cpu(args.rets[0]) == -1)
1982 errbuf = __fetch_rtas_last_error(buff_copy);
1984 lockdep_unpin_lock(&rtas_lock, cookie);
1985 raw_spin_unlock_irqrestore(&rtas_lock, flags);
1988 mutex_unlock(func->lock);
1992 log_error(errbuf, ERR_TYPE_RTAS_LOG, 0);
1997 /* Copy out args. */
1998 if (copy_to_user(uargs->args + nargs,
2000 nret * sizeof(rtas_arg_t)) != 0)
2006 static void __init rtas_function_table_init(void)
2008 struct property *prop;
2010 for (size_t i = 0; i < ARRAY_SIZE(rtas_function_table); ++i) {
2011 struct rtas_function *curr = &rtas_function_table[i];
2012 struct rtas_function *prior;
2015 curr->token = RTAS_UNKNOWN_SERVICE;
2020 * Ensure table is sorted correctly for binary search
2021 * on function names.
2023 prior = &rtas_function_table[i - 1];
2025 cmp = strcmp(prior->name, curr->name);
2030 pr_err("'%s' has duplicate function table entries\n",
2033 pr_err("function table unsorted: '%s' wrongly precedes '%s'\n",
2034 prior->name, curr->name);
2038 for_each_property_of_node(rtas.dev, prop) {
2039 struct rtas_function *func;
2041 if (prop->length != sizeof(u32))
2044 func = __rtas_name_to_function(prop->name);
2048 func->token = be32_to_cpup((__be32 *)prop->value);
2050 pr_debug("function %s has token %u\n", func->name, func->token);
2055 * Call early during boot, before mem init, to retrieve the RTAS
2056 * information from the device-tree and allocate the RMO buffer for userland
2059 void __init rtas_initialize(void)
2061 unsigned long rtas_region = RTAS_INSTANTIATE_MAX;
2062 u32 base, size, entry;
2063 int no_base, no_size, no_entry;
2065 /* Get RTAS dev node and fill up our "rtas" structure with infos
2068 rtas.dev = of_find_node_by_name(NULL, "rtas");
2072 no_base = of_property_read_u32(rtas.dev, "linux,rtas-base", &base);
2073 no_size = of_property_read_u32(rtas.dev, "rtas-size", &size);
2074 if (no_base || no_size) {
2075 of_node_put(rtas.dev);
2082 no_entry = of_property_read_u32(rtas.dev, "linux,rtas-entry", &entry);
2083 rtas.entry = no_entry ? rtas.base : entry;
2085 init_error_log_max();
2087 /* Must be called before any function token lookups */
2088 rtas_function_table_init();
2091 * Discover this now to avoid a device tree lookup in the
2094 ibm_extended_os_term = of_property_read_bool(rtas.dev, "ibm,extended-os-term");
2096 /* If RTAS was found, allocate the RMO buffer for it and look for
2097 * the stop-self token if any
2100 if (firmware_has_feature(FW_FEATURE_LPAR))
2101 rtas_region = min(ppc64_rma_size, RTAS_INSTANTIATE_MAX);
2103 rtas_rmo_buf = memblock_phys_alloc_range(RTAS_USER_REGION_SIZE, PAGE_SIZE,
2106 panic("ERROR: RTAS: Failed to allocate %lx bytes below %pa\n",
2107 PAGE_SIZE, &rtas_region);
2109 rtas_work_area_reserve_arena(rtas_region);
2112 int __init early_init_dt_scan_rtas(unsigned long node,
2113 const char *uname, int depth, void *data)
2115 const u32 *basep, *entryp, *sizep;
2117 if (depth != 1 || strcmp(uname, "rtas") != 0)
2120 basep = of_get_flat_dt_prop(node, "linux,rtas-base", NULL);
2121 entryp = of_get_flat_dt_prop(node, "linux,rtas-entry", NULL);
2122 sizep = of_get_flat_dt_prop(node, "rtas-size", NULL);
2125 /* need this feature to decide the crashkernel offset */
2126 if (of_get_flat_dt_prop(node, "ibm,hypertas-functions", NULL))
2127 powerpc_firmware_features |= FW_FEATURE_LPAR;
2130 if (basep && entryp && sizep) {
2132 rtas.entry = *entryp;
2136 #ifdef CONFIG_UDBG_RTAS_CONSOLE
2137 basep = of_get_flat_dt_prop(node, "put-term-char", NULL);
2139 rtas_putchar_token = *basep;
2141 basep = of_get_flat_dt_prop(node, "get-term-char", NULL);
2143 rtas_getchar_token = *basep;
2145 if (rtas_putchar_token != RTAS_UNKNOWN_SERVICE &&
2146 rtas_getchar_token != RTAS_UNKNOWN_SERVICE)
2147 udbg_init_rtas_console();
2155 static DEFINE_RAW_SPINLOCK(timebase_lock);
2156 static u64 timebase = 0;
2158 void rtas_give_timebase(void)
2160 unsigned long flags;
2162 raw_spin_lock_irqsave(&timebase_lock, flags);
2164 rtas_call(rtas_function_token(RTAS_FN_FREEZE_TIME_BASE), 0, 1, NULL);
2165 timebase = get_tb();
2166 raw_spin_unlock(&timebase_lock);
2170 rtas_call(rtas_function_token(RTAS_FN_THAW_TIME_BASE), 0, 1, NULL);
2171 local_irq_restore(flags);
2174 void rtas_take_timebase(void)
2178 raw_spin_lock(&timebase_lock);
2179 set_tb(timebase >> 32, timebase & 0xffffffff);
2181 raw_spin_unlock(&timebase_lock);