2 * PowerNV OPAL high level interfaces
4 * Copyright 2011 IBM Corp.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #define pr_fmt(fmt) "opal: " fmt
14 #include <linux/printk.h>
15 #include <linux/types.h>
17 #include <linux/of_fdt.h>
18 #include <linux/of_platform.h>
19 #include <linux/of_address.h>
20 #include <linux/interrupt.h>
21 #include <linux/notifier.h>
22 #include <linux/slab.h>
23 #include <linux/sched.h>
24 #include <linux/kobject.h>
25 #include <linux/delay.h>
26 #include <linux/memblock.h>
27 #include <linux/kthread.h>
28 #include <linux/freezer.h>
29 #include <linux/printk.h>
30 #include <linux/kmsg_dump.h>
31 #include <linux/console.h>
32 #include <linux/sched/debug.h>
34 #include <asm/machdep.h>
36 #include <asm/firmware.h>
38 #include <asm/imc-pmu.h>
43 /* /sys/firmware/opal */
44 struct kobject
*opal_kobj
;
52 struct mcheck_recoverable_range
{
58 static struct mcheck_recoverable_range
*mc_recoverable_range
;
59 static int mc_recoverable_range_len
;
61 struct device_node
*opal_node
;
62 static DEFINE_SPINLOCK(opal_write_lock
);
63 static struct atomic_notifier_head opal_msg_notifier_head
[OPAL_MSG_TYPE_MAX
];
64 static uint32_t opal_heartbeat
;
65 static struct task_struct
*kopald_tsk
;
67 void opal_configure_cores(void)
71 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
73 * It will preserve non volatile GPRs and HSPRG0/1. It will
74 * also restore HIDs and other SPRs to their original value
75 * but it might clobber a bunch.
78 reinit_flags
|= OPAL_REINIT_CPUS_HILE_BE
;
80 reinit_flags
|= OPAL_REINIT_CPUS_HILE_LE
;
84 * POWER9 always support running hash:
85 * ie. Host hash supports hash guests
86 * Host radix supports hash/radix guests
88 if (early_cpu_has_feature(CPU_FTR_ARCH_300
)) {
89 reinit_flags
|= OPAL_REINIT_CPUS_MMU_HASH
;
90 if (early_radix_enabled())
91 reinit_flags
|= OPAL_REINIT_CPUS_MMU_RADIX
;
94 opal_reinit_cpus(reinit_flags
);
96 /* Restore some bits */
97 if (cur_cpu_spec
->cpu_restore
)
98 cur_cpu_spec
->cpu_restore();
101 int __init
early_init_dt_scan_opal(unsigned long node
,
102 const char *uname
, int depth
, void *data
)
104 const void *basep
, *entryp
, *sizep
;
105 int basesz
, entrysz
, runtimesz
;
107 if (depth
!= 1 || strcmp(uname
, "ibm,opal") != 0)
110 basep
= of_get_flat_dt_prop(node
, "opal-base-address", &basesz
);
111 entryp
= of_get_flat_dt_prop(node
, "opal-entry-address", &entrysz
);
112 sizep
= of_get_flat_dt_prop(node
, "opal-runtime-size", &runtimesz
);
114 if (!basep
|| !entryp
|| !sizep
)
117 opal
.base
= of_read_number(basep
, basesz
/4);
118 opal
.entry
= of_read_number(entryp
, entrysz
/4);
119 opal
.size
= of_read_number(sizep
, runtimesz
/4);
121 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
122 opal
.base
, basep
, basesz
);
123 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
124 opal
.entry
, entryp
, entrysz
);
125 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
126 opal
.size
, sizep
, runtimesz
);
128 if (of_flat_dt_is_compatible(node
, "ibm,opal-v3")) {
129 powerpc_firmware_features
|= FW_FEATURE_OPAL
;
130 pr_debug("OPAL detected !\n");
132 panic("OPAL != V3 detected, no longer supported.\n");
138 int __init
early_init_dt_scan_recoverable_ranges(unsigned long node
,
139 const char *uname
, int depth
, void *data
)
144 if (depth
!= 1 || strcmp(uname
, "ibm,opal") != 0)
147 prop
= of_get_flat_dt_prop(node
, "mcheck-recoverable-ranges", &psize
);
152 pr_debug("Found machine check recoverable ranges.\n");
155 * Calculate number of available entries.
157 * Each recoverable address range entry is (start address, len,
158 * recovery address), 2 cells each for start and recovery address,
159 * 1 cell for len, totalling 5 cells per entry.
161 mc_recoverable_range_len
= psize
/ (sizeof(*prop
) * 5);
164 if (!mc_recoverable_range_len
)
167 /* Size required to hold all the entries. */
168 size
= mc_recoverable_range_len
*
169 sizeof(struct mcheck_recoverable_range
);
172 * Allocate a buffer to hold the MC recoverable ranges.
174 mc_recoverable_range
=__va(memblock_alloc(size
, __alignof__(u64
)));
175 memset(mc_recoverable_range
, 0, size
);
177 for (i
= 0; i
< mc_recoverable_range_len
; i
++) {
178 mc_recoverable_range
[i
].start_addr
=
179 of_read_number(prop
+ (i
* 5) + 0, 2);
180 mc_recoverable_range
[i
].end_addr
=
181 mc_recoverable_range
[i
].start_addr
+
182 of_read_number(prop
+ (i
* 5) + 2, 1);
183 mc_recoverable_range
[i
].recover_addr
=
184 of_read_number(prop
+ (i
* 5) + 3, 2);
186 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
187 mc_recoverable_range
[i
].start_addr
,
188 mc_recoverable_range
[i
].end_addr
,
189 mc_recoverable_range
[i
].recover_addr
);
194 static int __init
opal_register_exception_handlers(void)
196 #ifdef __BIG_ENDIAN__
199 if (!(powerpc_firmware_features
& FW_FEATURE_OPAL
))
202 /* Hookup some exception handlers except machine check. We use the
203 * fwnmi area at 0x7000 to provide the glue space to OPAL
208 * Check if we are running on newer firmware that exports
209 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
210 * the HMI interrupt and we catch it directly in Linux.
212 * For older firmware (i.e currently released POWER8 System Firmware
213 * as of today <= SV810_087), we fallback to old behavior and let OPAL
214 * patch the HMI vector and handle it inside OPAL firmware.
216 * For newer firmware (in development/yet to be released) we will
217 * start catching/handling HMI directly in Linux.
219 if (!opal_check_token(OPAL_HANDLE_HMI
)) {
220 pr_info("Old firmware detected, OPAL handles HMIs.\n");
221 opal_register_exception_handler(
222 OPAL_HYPERVISOR_MAINTENANCE_HANDLER
,
227 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER
, 0, glue
);
232 machine_early_initcall(powernv
, opal_register_exception_handlers
);
235 * Opal message notifier based on message type. Allow subscribers to get
236 * notified for specific messgae type.
238 int opal_message_notifier_register(enum opal_msg_type msg_type
,
239 struct notifier_block
*nb
)
241 if (!nb
|| msg_type
>= OPAL_MSG_TYPE_MAX
) {
242 pr_warn("%s: Invalid arguments, msg_type:%d\n",
247 return atomic_notifier_chain_register(
248 &opal_msg_notifier_head
[msg_type
], nb
);
250 EXPORT_SYMBOL_GPL(opal_message_notifier_register
);
252 int opal_message_notifier_unregister(enum opal_msg_type msg_type
,
253 struct notifier_block
*nb
)
255 return atomic_notifier_chain_unregister(
256 &opal_msg_notifier_head
[msg_type
], nb
);
258 EXPORT_SYMBOL_GPL(opal_message_notifier_unregister
);
260 static void opal_message_do_notify(uint32_t msg_type
, void *msg
)
262 /* notify subscribers */
263 atomic_notifier_call_chain(&opal_msg_notifier_head
[msg_type
],
267 static void opal_handle_message(void)
271 * TODO: pre-allocate a message buffer depending on opal-msg-size
272 * value in /proc/device-tree.
274 static struct opal_msg msg
;
277 ret
= opal_get_msg(__pa(&msg
), sizeof(msg
));
278 /* No opal message pending. */
279 if (ret
== OPAL_RESOURCE
)
282 /* check for errors. */
284 pr_warn("%s: Failed to retrieve opal message, err=%lld\n",
289 type
= be32_to_cpu(msg
.msg_type
);
292 if (type
>= OPAL_MSG_TYPE_MAX
) {
293 pr_warn_once("%s: Unknown message type: %u\n", __func__
, type
);
296 opal_message_do_notify(type
, (void *)&msg
);
299 static irqreturn_t
opal_message_notify(int irq
, void *data
)
301 opal_handle_message();
305 static int __init
opal_message_init(void)
309 for (i
= 0; i
< OPAL_MSG_TYPE_MAX
; i
++)
310 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head
[i
]);
312 irq
= opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING
));
314 pr_err("%s: Can't register OPAL event irq (%d)\n",
319 ret
= request_irq(irq
, opal_message_notify
,
320 IRQ_TYPE_LEVEL_HIGH
, "opal-msg", NULL
);
322 pr_err("%s: Can't request OPAL event irq (%d)\n",
330 int opal_get_chars(uint32_t vtermno
, char *buf
, int count
)
337 opal_poll_events(&evt
);
338 if ((be64_to_cpu(evt
) & OPAL_EVENT_CONSOLE_INPUT
) == 0)
340 len
= cpu_to_be64(count
);
341 rc
= opal_console_read(vtermno
, &len
, buf
);
342 if (rc
== OPAL_SUCCESS
)
343 return be64_to_cpu(len
);
347 int opal_put_chars(uint32_t vtermno
, const char *data
, int total_len
)
358 /* We want put_chars to be atomic to avoid mangling of hvsi
359 * packets. To do that, we first test for room and return
360 * -EAGAIN if there isn't enough.
362 * Unfortunately, opal_console_write_buffer_space() doesn't
363 * appear to work on opal v1, so we just assume there is
364 * enough room and be done with it
366 spin_lock_irqsave(&opal_write_lock
, flags
);
367 rc
= opal_console_write_buffer_space(vtermno
, &olen
);
368 len
= be64_to_cpu(olen
);
369 if (rc
|| len
< total_len
) {
370 spin_unlock_irqrestore(&opal_write_lock
, flags
);
371 /* Closed -> drop characters */
374 opal_poll_events(NULL
);
378 /* We still try to handle partial completions, though they
379 * should no longer happen.
382 while(total_len
> 0 && (rc
== OPAL_BUSY
||
383 rc
== OPAL_BUSY_EVENT
|| rc
== OPAL_SUCCESS
)) {
384 olen
= cpu_to_be64(total_len
);
385 rc
= opal_console_write(vtermno
, &olen
, data
);
386 len
= be64_to_cpu(olen
);
388 /* Closed or other error drop */
389 if (rc
!= OPAL_SUCCESS
&& rc
!= OPAL_BUSY
&&
390 rc
!= OPAL_BUSY_EVENT
) {
394 if (rc
== OPAL_SUCCESS
) {
399 /* This is a bit nasty but we need that for the console to
400 * flush when there aren't any interrupts. We will clean
401 * things a bit later to limit that to synchronous path
402 * such as the kernel console and xmon/udbg
405 opal_poll_events(&evt
);
406 while(rc
== OPAL_SUCCESS
&&
407 (be64_to_cpu(evt
) & OPAL_EVENT_CONSOLE_OUTPUT
));
409 spin_unlock_irqrestore(&opal_write_lock
, flags
);
413 static int opal_recover_mce(struct pt_regs
*regs
,
414 struct machine_check_event
*evt
)
418 if (!(regs
->msr
& MSR_RI
)) {
419 /* If MSR_RI isn't set, we cannot recover */
420 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
422 } else if (evt
->disposition
== MCE_DISPOSITION_RECOVERED
) {
423 /* Platform corrected itself */
425 } else if (evt
->severity
== MCE_SEV_FATAL
) {
426 /* Fatal machine check */
427 pr_err("Machine check interrupt is fatal\n");
431 if (!recovered
&& evt
->severity
== MCE_SEV_ERROR_SYNC
) {
433 * Try to kill processes if we get a synchronous machine check
434 * (e.g., one caused by execution of this instruction). This
435 * will devolve into a panic if we try to kill init or are in
438 * TODO: Queue up this address for hwpoisioning later.
439 * TODO: This is not quite right for d-side machine
440 * checks ->nip is not necessarily the important
443 if ((user_mode(regs
))) {
444 _exception(SIGBUS
, regs
, BUS_MCEERR_AR
, regs
->nip
);
446 } else if (die_will_crash()) {
448 * die() would kill the kernel, so better to go via
449 * the platform reboot code that will log the
454 die("Machine check", regs
, SIGBUS
);
462 void pnv_platform_error_reboot(struct pt_regs
*regs
, const char *msg
)
464 panic_flush_kmsg_start();
466 pr_emerg("Hardware platform error: %s\n", msg
);
471 panic_flush_kmsg_end();
474 * Don't bother to shut things down because this will
477 if (opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR
, msg
)
478 == OPAL_UNSUPPORTED
) {
479 pr_emerg("Reboot type %d not supported for %s\n",
480 OPAL_REBOOT_PLATFORM_ERROR
, msg
);
484 * We reached here. There can be three possibilities:
485 * 1. We are running on a firmware level that do not support
487 * 2. We are running on a firmware level that do not support
488 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
489 * 3. We are running on FSP based system that does not need
490 * opal to trigger checkstop explicitly for error analysis.
491 * The FSP PRD component would have already got notified
492 * about this error through other channels.
495 ppc_md
.restart(NULL
);
498 int opal_machine_check(struct pt_regs
*regs
)
500 struct machine_check_event evt
;
502 if (!get_mce_event(&evt
, MCE_EVENT_RELEASE
))
505 /* Print things out */
506 if (evt
.version
!= MCE_V1
) {
507 pr_err("Machine Check Exception, Unknown event version %d !\n",
511 machine_check_print_event_info(&evt
, user_mode(regs
));
513 if (opal_recover_mce(regs
, &evt
))
516 pnv_platform_error_reboot(regs
, "Unrecoverable Machine Check exception");
519 /* Early hmi handler called in real mode. */
520 int opal_hmi_exception_early(struct pt_regs
*regs
)
525 * call opal hmi handler. Pass paca address as token.
526 * The return value OPAL_SUCCESS is an indication that there is
527 * an HMI event generated waiting to pull by Linux.
529 rc
= opal_handle_hmi();
530 if (rc
== OPAL_SUCCESS
) {
531 local_paca
->hmi_event_available
= 1;
537 /* HMI exception handler called in virtual mode during check_irq_replay. */
538 int opal_handle_hmi_exception(struct pt_regs
*regs
)
544 * Check if HMI event is available.
545 * if Yes, then call opal_poll_events to pull opal messages and
548 if (!local_paca
->hmi_event_available
)
551 local_paca
->hmi_event_available
= 0;
552 rc
= opal_poll_events(&evt
);
553 if (rc
== OPAL_SUCCESS
&& evt
)
554 opal_handle_events(be64_to_cpu(evt
));
559 static uint64_t find_recovery_address(uint64_t nip
)
563 for (i
= 0; i
< mc_recoverable_range_len
; i
++)
564 if ((nip
>= mc_recoverable_range
[i
].start_addr
) &&
565 (nip
< mc_recoverable_range
[i
].end_addr
))
566 return mc_recoverable_range
[i
].recover_addr
;
570 bool opal_mce_check_early_recovery(struct pt_regs
*regs
)
572 uint64_t recover_addr
= 0;
574 if (!opal
.base
|| !opal
.size
)
577 if ((regs
->nip
>= opal
.base
) &&
578 (regs
->nip
< (opal
.base
+ opal
.size
)))
579 recover_addr
= find_recovery_address(regs
->nip
);
582 * Setup regs->nip to rfi into fixup address.
585 regs
->nip
= recover_addr
;
588 return !!recover_addr
;
591 static int opal_sysfs_init(void)
593 opal_kobj
= kobject_create_and_add("opal", firmware_kobj
);
595 pr_warn("kobject_create_and_add opal failed\n");
602 static ssize_t
symbol_map_read(struct file
*fp
, struct kobject
*kobj
,
603 struct bin_attribute
*bin_attr
,
604 char *buf
, loff_t off
, size_t count
)
606 return memory_read_from_buffer(buf
, count
, &off
, bin_attr
->private,
610 static BIN_ATTR_RO(symbol_map
, 0);
612 static void opal_export_symmap(void)
616 struct device_node
*fw
;
619 fw
= of_find_node_by_path("/ibm,opal/firmware");
622 syms
= of_get_property(fw
, "symbol-map", &size
);
623 if (!syms
|| size
!= 2 * sizeof(__be64
))
626 /* Setup attributes */
627 bin_attr_symbol_map
.private = __va(be64_to_cpu(syms
[0]));
628 bin_attr_symbol_map
.size
= be64_to_cpu(syms
[1]);
630 rc
= sysfs_create_bin_file(opal_kobj
, &bin_attr_symbol_map
);
632 pr_warn("Error %d creating OPAL symbols file\n", rc
);
635 static ssize_t
export_attr_read(struct file
*fp
, struct kobject
*kobj
,
636 struct bin_attribute
*bin_attr
, char *buf
,
637 loff_t off
, size_t count
)
639 return memory_read_from_buffer(buf
, count
, &off
, bin_attr
->private,
644 * opal_export_attrs: creates a sysfs node for each property listed in
645 * the device-tree under /ibm,opal/firmware/exports/
646 * All new sysfs nodes are created under /opal/exports/.
647 * This allows for reserved memory regions (e.g. HDAT) to be read.
648 * The new sysfs nodes are only readable by root.
650 static void opal_export_attrs(void)
652 struct bin_attribute
*attr
;
653 struct device_node
*np
;
654 struct property
*prop
;
655 struct kobject
*kobj
;
659 np
= of_find_node_by_path("/ibm,opal/firmware/exports");
663 /* Create new 'exports' directory - /sys/firmware/opal/exports */
664 kobj
= kobject_create_and_add("exports", opal_kobj
);
666 pr_warn("kobject_create_and_add() of exports failed\n");
670 for_each_property_of_node(np
, prop
) {
671 if (!strcmp(prop
->name
, "name") || !strcmp(prop
->name
, "phandle"))
674 if (of_property_read_u64_array(np
, prop
->name
, &vals
[0], 2))
677 attr
= kzalloc(sizeof(*attr
), GFP_KERNEL
);
680 pr_warn("Failed kmalloc for bin_attribute!");
684 sysfs_bin_attr_init(attr
);
685 attr
->attr
.name
= kstrdup(prop
->name
, GFP_KERNEL
);
686 attr
->attr
.mode
= 0400;
687 attr
->read
= export_attr_read
;
688 attr
->private = __va(vals
[0]);
689 attr
->size
= vals
[1];
691 if (attr
->attr
.name
== NULL
) {
692 pr_warn("Failed kstrdup for bin_attribute attr.name");
697 rc
= sysfs_create_bin_file(kobj
, attr
);
699 pr_warn("Error %d creating OPAL sysfs exports/%s file\n",
701 kfree(attr
->attr
.name
);
709 static void __init
opal_dump_region_init(void)
715 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION
))
718 /* Register kernel log buffer */
719 addr
= log_buf_addr_get();
723 size
= log_buf_len_get();
727 rc
= opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF
,
729 /* Don't warn if this is just an older OPAL that doesn't
730 * know about that call
732 if (rc
&& rc
!= OPAL_UNSUPPORTED
)
733 pr_warn("DUMP: Failed to register kernel log buffer. "
737 static void opal_pdev_init(const char *compatible
)
739 struct device_node
*np
;
741 for_each_compatible_node(np
, NULL
, compatible
)
742 of_platform_device_create(np
, NULL
, NULL
);
745 static void __init
opal_imc_init_dev(void)
747 struct device_node
*np
;
749 np
= of_find_compatible_node(NULL
, NULL
, IMC_DTB_COMPAT
);
751 of_platform_device_create(np
, NULL
, NULL
);
754 static int kopald(void *unused
)
756 unsigned long timeout
= msecs_to_jiffies(opal_heartbeat
) + 1;
762 opal_poll_events(&events
);
763 opal_handle_events(be64_to_cpu(events
));
764 schedule_timeout_interruptible(timeout
);
765 } while (!kthread_should_stop());
770 void opal_wake_poller(void)
773 wake_up_process(kopald_tsk
);
776 static void opal_init_heartbeat(void)
778 /* Old firwmware, we assume the HVC heartbeat is sufficient */
779 if (of_property_read_u32(opal_node
, "ibm,heartbeat-ms",
780 &opal_heartbeat
) != 0)
784 kopald_tsk
= kthread_run(kopald
, NULL
, "kopald");
787 static int __init
opal_init(void)
789 struct device_node
*np
, *consoles
, *leds
;
792 opal_node
= of_find_node_by_path("/ibm,opal");
794 pr_warn("Device node not found\n");
798 /* Register OPAL consoles if any ports */
799 consoles
= of_find_node_by_path("/ibm,opal/consoles");
801 for_each_child_of_node(consoles
, np
) {
802 if (strcmp(np
->name
, "serial"))
804 of_platform_device_create(np
, NULL
, NULL
);
806 of_node_put(consoles
);
809 /* Initialise OPAL messaging system */
812 /* Initialise OPAL asynchronous completion interface */
813 opal_async_comp_init();
815 /* Initialise OPAL sensor interface */
818 /* Initialise OPAL hypervisor maintainence interrupt handling */
819 opal_hmi_handler_init();
821 /* Create i2c platform devices */
822 opal_pdev_init("ibm,opal-i2c");
824 /* Setup a heatbeat thread if requested by OPAL */
825 opal_init_heartbeat();
827 /* Detect In-Memory Collection counters and create devices*/
830 /* Create leds platform devices */
831 leds
= of_find_node_by_path("/ibm,opal/leds");
833 of_platform_device_create(leds
, "opal_leds", NULL
);
837 /* Initialise OPAL message log interface */
840 /* Create "opal" kobject under /sys/firmware */
841 rc
= opal_sysfs_init();
843 /* Export symbol map to userspace */
844 opal_export_symmap();
845 /* Setup dump region interface */
846 opal_dump_region_init();
847 /* Setup error log interface */
848 rc
= opal_elog_init();
849 /* Setup code update interface */
850 opal_flash_update_init();
851 /* Setup platform dump extract interface */
852 opal_platform_dump_init();
853 /* Setup system parameters interface */
854 opal_sys_param_init();
855 /* Setup message log sysfs interface. */
856 opal_msglog_sysfs_init();
859 /* Export all properties */
862 /* Initialize platform devices: IPMI backend, PRD & flash interface */
863 opal_pdev_init("ibm,opal-ipmi");
864 opal_pdev_init("ibm,opal-flash");
865 opal_pdev_init("ibm,opal-prd");
867 /* Initialise platform device: oppanel interface */
868 opal_pdev_init("ibm,opal-oppanel");
870 /* Initialise OPAL kmsg dumper for flushing console on panic */
873 /* Initialise OPAL powercap interface */
874 opal_powercap_init();
876 /* Initialise OPAL Power-Shifting-Ratio interface */
879 /* Initialise OPAL sensor groups */
880 opal_sensor_groups_init();
884 machine_subsys_initcall(powernv
, opal_init
);
886 void opal_shutdown(void)
890 opal_event_shutdown();
893 * Then sync with OPAL which ensure anything that can
894 * potentially write to our memory has completed such
895 * as an ongoing dump retrieval
897 while (rc
== OPAL_BUSY
|| rc
== OPAL_BUSY_EVENT
) {
898 rc
= opal_sync_host_reboot();
900 opal_poll_events(NULL
);
905 /* Unregister memory dump region */
906 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION
))
907 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF
);
910 /* Export this so that test modules can use it */
911 EXPORT_SYMBOL_GPL(opal_invalid_call
);
912 EXPORT_SYMBOL_GPL(opal_xscom_read
);
913 EXPORT_SYMBOL_GPL(opal_xscom_write
);
914 EXPORT_SYMBOL_GPL(opal_ipmi_send
);
915 EXPORT_SYMBOL_GPL(opal_ipmi_recv
);
916 EXPORT_SYMBOL_GPL(opal_flash_read
);
917 EXPORT_SYMBOL_GPL(opal_flash_write
);
918 EXPORT_SYMBOL_GPL(opal_flash_erase
);
919 EXPORT_SYMBOL_GPL(opal_prd_msg
);
921 /* Convert a region of vmalloc memory to an opal sg list */
922 struct opal_sg_list
*opal_vmalloc_to_sg_list(void *vmalloc_addr
,
923 unsigned long vmalloc_size
)
925 struct opal_sg_list
*sg
, *first
= NULL
;
928 sg
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
934 while (vmalloc_size
> 0) {
935 uint64_t data
= vmalloc_to_pfn(vmalloc_addr
) << PAGE_SHIFT
;
936 uint64_t length
= min(vmalloc_size
, PAGE_SIZE
);
938 sg
->entry
[i
].data
= cpu_to_be64(data
);
939 sg
->entry
[i
].length
= cpu_to_be64(length
);
942 if (i
>= SG_ENTRIES_PER_NODE
) {
943 struct opal_sg_list
*next
;
945 next
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
949 sg
->length
= cpu_to_be64(
950 i
* sizeof(struct opal_sg_entry
) + 16);
952 sg
->next
= cpu_to_be64(__pa(next
));
956 vmalloc_addr
+= length
;
957 vmalloc_size
-= length
;
960 sg
->length
= cpu_to_be64(i
* sizeof(struct opal_sg_entry
) + 16);
965 pr_err("%s : Failed to allocate memory\n", __func__
);
966 opal_free_sg_list(first
);
970 void opal_free_sg_list(struct opal_sg_list
*sg
)
973 uint64_t next
= be64_to_cpu(sg
->next
);
984 int opal_error_code(int rc
)
987 case OPAL_SUCCESS
: return 0;
989 case OPAL_PARAMETER
: return -EINVAL
;
990 case OPAL_ASYNC_COMPLETION
: return -EINPROGRESS
;
992 case OPAL_BUSY_EVENT
: return -EBUSY
;
993 case OPAL_NO_MEM
: return -ENOMEM
;
994 case OPAL_PERMISSION
: return -EPERM
;
996 case OPAL_UNSUPPORTED
: return -EIO
;
997 case OPAL_HARDWARE
: return -EIO
;
998 case OPAL_INTERNAL_ERROR
: return -EIO
;
999 case OPAL_TIMEOUT
: return -ETIMEDOUT
;
1001 pr_err("%s: unexpected OPAL error %d\n", __func__
, rc
);
1006 void powernv_set_nmmu_ptcr(unsigned long ptcr
)
1010 if (firmware_has_feature(FW_FEATURE_OPAL
)) {
1011 rc
= opal_nmmu_set_ptcr(-1UL, ptcr
);
1012 if (rc
!= OPAL_SUCCESS
&& rc
!= OPAL_UNSUPPORTED
)
1013 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__
);
1017 EXPORT_SYMBOL_GPL(opal_poll_events
);
1018 EXPORT_SYMBOL_GPL(opal_rtc_read
);
1019 EXPORT_SYMBOL_GPL(opal_rtc_write
);
1020 EXPORT_SYMBOL_GPL(opal_tpo_read
);
1021 EXPORT_SYMBOL_GPL(opal_tpo_write
);
1022 EXPORT_SYMBOL_GPL(opal_i2c_request
);
1023 /* Export these symbols for PowerNV LED class driver */
1024 EXPORT_SYMBOL_GPL(opal_leds_get_ind
);
1025 EXPORT_SYMBOL_GPL(opal_leds_set_ind
);
1026 /* Export this symbol for PowerNV Operator Panel class driver */
1027 EXPORT_SYMBOL_GPL(opal_write_oppanel_async
);
1028 /* Export this for KVM */
1029 EXPORT_SYMBOL_GPL(opal_int_set_mfrr
);
1030 EXPORT_SYMBOL_GPL(opal_int_eoi
);
1031 EXPORT_SYMBOL_GPL(opal_error_code
);