powerpc/powernv: Rework exports to support subnodes
[linux-2.6-block.git] / arch / powerpc / platforms / powernv / opal.c
CommitLineData
2874c5fd 1// SPDX-License-Identifier: GPL-2.0-or-later
14a43e69
BH
2/*
3 * PowerNV OPAL high level interfaces
4 *
5 * Copyright 2011 IBM Corp.
14a43e69
BH
6 */
7
c8742f85 8#define pr_fmt(fmt) "opal: " fmt
14a43e69 9
c8742f85 10#include <linux/printk.h>
14a43e69
BH
11#include <linux/types.h>
12#include <linux/of.h>
26a2056e 13#include <linux/of_fdt.h>
14a43e69 14#include <linux/of_platform.h>
8f95faaa 15#include <linux/of_address.h>
a125e092 16#include <linux/interrupt.h>
1bc98de2 17#include <linux/notifier.h>
73ed148a 18#include <linux/slab.h>
b63a0ffe 19#include <linux/sched.h>
6f68b5e2 20#include <linux/kobject.h>
f7d98d18 21#include <linux/delay.h>
55672ecf 22#include <linux/memblock.h>
3bf57561
BH
23#include <linux/kthread.h>
24#include <linux/freezer.h>
b746e3e0
NP
25#include <linux/kmsg_dump.h>
26#include <linux/console.h>
27#include <linux/sched/debug.h>
b14726c5
ME
28
29#include <asm/machdep.h>
14a43e69
BH
30#include <asm/opal.h>
31#include <asm/firmware.h>
36df96f8 32#include <asm/mce.h>
8f95faaa 33#include <asm/imc-pmu.h>
6fcd6baa 34#include <asm/bug.h>
14a43e69
BH
35
36#include "powernv.h"
37
a9336ddf
DM
38#define OPAL_MSG_QUEUE_MAX 16
39
40struct opal_msg_node {
41 struct list_head list;
42 struct opal_msg msg;
43};
44
45static DEFINE_SPINLOCK(msg_list_lock);
46static LIST_HEAD(msg_list);
47
6f68b5e2
VH
48/* /sys/firmware/opal */
49struct kobject *opal_kobj;
50
14a43e69
BH
51struct opal {
52 u64 base;
53 u64 entry;
55672ecf 54 u64 size;
14a43e69
BH
55} opal;
56
55672ecf
MS
57struct mcheck_recoverable_range {
58 u64 start_addr;
59 u64 end_addr;
60 u64 recover_addr;
61};
62
a9336ddf
DM
63static int msg_list_size;
64
55672ecf
MS
65static struct mcheck_recoverable_range *mc_recoverable_range;
66static int mc_recoverable_range_len;
67
bfc36894 68struct device_node *opal_node;
14a43e69 69static DEFINE_SPINLOCK(opal_write_lock);
24366360 70static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX];
3bf57561 71static uint32_t opal_heartbeat;
a203658b 72static struct task_struct *kopald_tsk;
2be1d5d1
VH
73static struct opal_msg *opal_msg;
74static u32 opal_msg_size __ro_after_init;
14a43e69 75
d3cbff1b 76void opal_configure_cores(void)
4926616c 77{
1c0eaf0f
BH
78 u64 reinit_flags = 0;
79
4926616c
BH
80 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
81 *
82 * It will preserve non volatile GPRs and HSPRG0/1. It will
83 * also restore HIDs and other SPRs to their original value
84 * but it might clobber a bunch.
85 */
86#ifdef __BIG_ENDIAN__
1c0eaf0f 87 reinit_flags |= OPAL_REINIT_CPUS_HILE_BE;
4926616c 88#else
1c0eaf0f 89 reinit_flags |= OPAL_REINIT_CPUS_HILE_LE;
4926616c 90#endif
d3cbff1b 91
1c0eaf0f
BH
92 /*
93 * POWER9 always support running hash:
94 * ie. Host hash supports hash guests
95 * Host radix supports hash/radix guests
96 */
a70b487b 97 if (early_cpu_has_feature(CPU_FTR_ARCH_300)) {
1c0eaf0f
BH
98 reinit_flags |= OPAL_REINIT_CPUS_MMU_HASH;
99 if (early_radix_enabled())
100 reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX;
101 }
102
103 opal_reinit_cpus(reinit_flags);
104
d3cbff1b
BH
105 /* Restore some bits */
106 if (cur_cpu_spec->cpu_restore)
107 cur_cpu_spec->cpu_restore();
4926616c
BH
108}
109
14a43e69
BH
110int __init early_init_dt_scan_opal(unsigned long node,
111 const char *uname, int depth, void *data)
112{
55672ecf 113 const void *basep, *entryp, *sizep;
9d0c4dfe 114 int basesz, entrysz, runtimesz;
14a43e69
BH
115
116 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
117 return 0;
118
119 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
120 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
55672ecf 121 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
14a43e69 122
55672ecf 123 if (!basep || !entryp || !sizep)
14a43e69
BH
124 return 1;
125
126 opal.base = of_read_number(basep, basesz/4);
127 opal.entry = of_read_number(entryp, entrysz/4);
55672ecf 128 opal.size = of_read_number(sizep, runtimesz/4);
14a43e69 129
9d0c4dfe 130 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
14a43e69 131 opal.base, basep, basesz);
9d0c4dfe 132 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
14a43e69 133 opal.entry, entryp, entrysz);
9d0c4dfe 134 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
55672ecf 135 opal.size, sizep, runtimesz);
14a43e69 136
75b93da4 137 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
e4d54f71 138 powerpc_firmware_features |= FW_FEATURE_OPAL;
5138b314 139 pr_debug("OPAL detected !\n");
14a43e69 140 } else {
786842b6 141 panic("OPAL != V3 detected, no longer supported.\n");
14a43e69
BH
142 }
143
c4463b37
JK
144 return 1;
145}
146
55672ecf
MS
147int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
148 const char *uname, int depth, void *data)
149{
9d0c4dfe 150 int i, psize, size;
55672ecf
MS
151 const __be32 *prop;
152
153 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
154 return 0;
155
6e556b47 156 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
55672ecf
MS
157
158 if (!prop)
159 return 1;
160
161 pr_debug("Found machine check recoverable ranges.\n");
162
6e556b47
MS
163 /*
164 * Calculate number of available entries.
165 *
166 * Each recoverable address range entry is (start address, len,
167 * recovery address), 2 cells each for start and recovery address,
168 * 1 cell for len, totalling 5 cells per entry.
169 */
170 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
171
172 /* Sanity check */
173 if (!mc_recoverable_range_len)
174 return 1;
175
176 /* Size required to hold all the entries. */
177 size = mc_recoverable_range_len *
178 sizeof(struct mcheck_recoverable_range);
179
55672ecf 180 /*
76b42e28 181 * Allocate a buffer to hold the MC recoverable ranges.
55672ecf 182 */
b63a07d6 183 mc_recoverable_range = memblock_alloc(size, __alignof__(u64));
8a7f97b9
MR
184 if (!mc_recoverable_range)
185 panic("%s: Failed to allocate %u bytes align=0x%lx\n",
186 __func__, size, __alignof__(u64));
55672ecf 187
6e556b47 188 for (i = 0; i < mc_recoverable_range_len; i++) {
55672ecf
MS
189 mc_recoverable_range[i].start_addr =
190 of_read_number(prop + (i * 5) + 0, 2);
191 mc_recoverable_range[i].end_addr =
192 mc_recoverable_range[i].start_addr +
193 of_read_number(prop + (i * 5) + 2, 1);
194 mc_recoverable_range[i].recover_addr =
195 of_read_number(prop + (i * 5) + 3, 2);
196
197 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
198 mc_recoverable_range[i].start_addr,
199 mc_recoverable_range[i].end_addr,
200 mc_recoverable_range[i].recover_addr);
201 }
55672ecf
MS
202 return 1;
203}
204
c4463b37
JK
205static int __init opal_register_exception_handlers(void)
206{
29186097 207#ifdef __BIG_ENDIAN__
c4463b37
JK
208 u64 glue;
209
210 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
211 return -ENODEV;
212
28446de2
MS
213 /* Hookup some exception handlers except machine check. We use the
214 * fwnmi area at 0x7000 to provide the glue space to OPAL
ed79ba9e
BH
215 */
216 glue = 0x7000;
6507955c
MS
217
218 /*
1549c42d
SS
219 * Only ancient OPAL firmware requires this.
220 * Specifically, firmware from FW810.00 (released June 2014)
221 * through FW810.20 (Released October 2014).
6507955c 222 *
1549c42d
SS
223 * Check if we are running on newer (post Oct 2014) firmware that
224 * exports the OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to
225 * patch the HMI interrupt and we catch it directly in Linux.
6507955c 226 *
1549c42d
SS
227 * For older firmware (i.e < FW810.20), we fallback to old behavior and
228 * let OPAL patch the HMI vector and handle it inside OPAL firmware.
229 *
230 * For newer firmware we catch/handle the HMI directly in Linux.
6507955c
MS
231 */
232 if (!opal_check_token(OPAL_HANDLE_HMI)) {
08135139 233 pr_info("Old firmware detected, OPAL handles HMIs.\n");
6507955c
MS
234 opal_register_exception_handler(
235 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
236 0, glue);
237 glue += 128;
238 }
239
1549c42d
SS
240 /*
241 * Only applicable to ancient firmware, all modern
242 * (post March 2015/skiboot 5.0) firmware will just return
243 * OPAL_UNSUPPORTED.
244 */
ed79ba9e 245 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
29186097 246#endif
ed79ba9e 247
c4463b37 248 return 0;
14a43e69 249}
b14726c5 250machine_early_initcall(powernv, opal_register_exception_handlers);
c4463b37 251
a9336ddf
DM
252static void queue_replay_msg(void *msg)
253{
254 struct opal_msg_node *msg_node;
255
256 if (msg_list_size < OPAL_MSG_QUEUE_MAX) {
257 msg_node = kzalloc(sizeof(*msg_node), GFP_ATOMIC);
258 if (msg_node) {
259 INIT_LIST_HEAD(&msg_node->list);
260 memcpy(&msg_node->msg, msg, sizeof(struct opal_msg));
261 list_add_tail(&msg_node->list, &msg_list);
262 msg_list_size++;
263 } else
264 pr_warn_once("message queue no memory\n");
265
266 if (msg_list_size >= OPAL_MSG_QUEUE_MAX)
267 pr_warn_once("message queue full\n");
268 }
269}
270
271static void dequeue_replay_msg(enum opal_msg_type msg_type)
272{
273 struct opal_msg_node *msg_node, *tmp;
274
275 list_for_each_entry_safe(msg_node, tmp, &msg_list, list) {
276 if (be32_to_cpu(msg_node->msg.msg_type) != msg_type)
277 continue;
278
279 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
280 msg_type,
281 &msg_node->msg);
282
283 list_del(&msg_node->list);
284 kfree(msg_node);
285 msg_list_size--;
286 }
287}
288
24366360
MS
289/*
290 * Opal message notifier based on message type. Allow subscribers to get
291 * notified for specific messgae type.
292 */
d7cf83fc 293int opal_message_notifier_register(enum opal_msg_type msg_type,
24366360
MS
294 struct notifier_block *nb)
295{
a9336ddf
DM
296 int ret;
297 unsigned long flags;
298
792f96e9 299 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
f2c2cbcc
JP
300 pr_warn("%s: Invalid arguments, msg_type:%d\n",
301 __func__, msg_type);
24366360
MS
302 return -EINVAL;
303 }
792f96e9 304
a9336ddf
DM
305 spin_lock_irqsave(&msg_list_lock, flags);
306 ret = atomic_notifier_chain_register(
307 &opal_msg_notifier_head[msg_type], nb);
308
309 /*
310 * If the registration succeeded, replay any queued messages that came
311 * in prior to the notifier chain registration. msg_list_lock held here
312 * to ensure they're delivered prior to any subsequent messages.
313 */
314 if (ret == 0)
315 dequeue_replay_msg(msg_type);
316
317 spin_unlock_irqrestore(&msg_list_lock, flags);
318
319 return ret;
24366360 320}
594fcb9e 321EXPORT_SYMBOL_GPL(opal_message_notifier_register);
24366360 322
df60f576 323int opal_message_notifier_unregister(enum opal_msg_type msg_type,
b921e902
NG
324 struct notifier_block *nb)
325{
326 return atomic_notifier_chain_unregister(
327 &opal_msg_notifier_head[msg_type], nb);
328}
594fcb9e 329EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
b921e902 330
24366360
MS
331static void opal_message_do_notify(uint32_t msg_type, void *msg)
332{
a9336ddf
DM
333 unsigned long flags;
334 bool queued = false;
335
336 spin_lock_irqsave(&msg_list_lock, flags);
337 if (opal_msg_notifier_head[msg_type].head == NULL) {
338 /*
339 * Queue up the msg since no notifiers have registered
340 * yet for this msg_type.
341 */
342 queue_replay_msg(msg);
343 queued = true;
344 }
345 spin_unlock_irqrestore(&msg_list_lock, flags);
346
347 if (queued)
348 return;
349
24366360
MS
350 /* notify subscribers */
351 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
352 msg_type, msg);
353}
354
355static void opal_handle_message(void)
356{
357 s64 ret;
bb4398e1 358 u32 type;
24366360 359
2be1d5d1 360 ret = opal_get_msg(__pa(opal_msg), opal_msg_size);
24366360
MS
361 /* No opal message pending. */
362 if (ret == OPAL_RESOURCE)
363 return;
364
365 /* check for errors. */
366 if (ret) {
f2c2cbcc
JP
367 pr_warn("%s: Failed to retrieve opal message, err=%lld\n",
368 __func__, ret);
24366360
MS
369 return;
370 }
371
2be1d5d1 372 type = be32_to_cpu(opal_msg->msg_type);
bb4398e1 373
24366360 374 /* Sanity check */
792f96e9 375 if (type >= OPAL_MSG_TYPE_MAX) {
98da62b7 376 pr_warn_once("%s: Unknown message type: %u\n", __func__, type);
24366360
MS
377 return;
378 }
2be1d5d1 379 opal_message_do_notify(type, (void *)opal_msg);
24366360
MS
380}
381
a295af24 382static irqreturn_t opal_message_notify(int irq, void *data)
24366360 383{
a295af24
AP
384 opal_handle_message();
385 return IRQ_HANDLED;
24366360
MS
386}
387
2be1d5d1 388static int __init opal_message_init(struct device_node *opal_node)
24366360 389{
a295af24 390 int ret, i, irq;
24366360 391
2be1d5d1
VH
392 ret = of_property_read_u32(opal_node, "opal-msg-size", &opal_msg_size);
393 if (ret) {
394 pr_notice("Failed to read opal-msg-size property\n");
395 opal_msg_size = sizeof(struct opal_msg);
396 }
397
398 opal_msg = kmalloc(opal_msg_size, GFP_KERNEL);
399 if (!opal_msg) {
400 opal_msg_size = sizeof(struct opal_msg);
401 /* Try to allocate fixed message size */
402 opal_msg = kmalloc(opal_msg_size, GFP_KERNEL);
403 BUG_ON(opal_msg == NULL);
404 }
405
24366360
MS
406 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
407 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
408
a295af24
AP
409 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
410 if (!irq) {
411 pr_err("%s: Can't register OPAL event irq (%d)\n",
412 __func__, irq);
413 return irq;
414 }
415
416 ret = request_irq(irq, opal_message_notify,
417 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
24366360 418 if (ret) {
a295af24 419 pr_err("%s: Can't request OPAL event irq (%d)\n",
24366360
MS
420 __func__, ret);
421 return ret;
422 }
a295af24 423
24366360
MS
424 return 0;
425}
24366360 426
14a43e69
BH
427int opal_get_chars(uint32_t vtermno, char *buf, int count)
428{
4f89363b
BH
429 s64 rc;
430 __be64 evt, len;
14a43e69
BH
431
432 if (!opal.entry)
daea1175 433 return -ENODEV;
14a43e69 434 opal_poll_events(&evt);
4f89363b 435 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
14a43e69 436 return 0;
4f89363b 437 len = cpu_to_be64(count);
9d0c4dfe 438 rc = opal_console_read(vtermno, &len, buf);
14a43e69 439 if (rc == OPAL_SUCCESS)
4f89363b 440 return be64_to_cpu(len);
14a43e69
BH
441 return 0;
442}
443
17cc1dd4 444static int __opal_put_chars(uint32_t vtermno, const char *data, int total_len, bool atomic)
14a43e69 445{
17cc1dd4 446 unsigned long flags = 0 /* shut up gcc */;
b74d2807
NP
447 int written;
448 __be64 olen;
449 s64 rc;
14a43e69
BH
450
451 if (!opal.entry)
daea1175 452 return -ENODEV;
14a43e69 453
17cc1dd4
NP
454 if (atomic)
455 spin_lock_irqsave(&opal_write_lock, flags);
e4d54f71 456 rc = opal_console_write_buffer_space(vtermno, &olen);
b74d2807 457 if (rc || be64_to_cpu(olen) < total_len) {
e4d54f71
SS
458 /* Closed -> drop characters */
459 if (rc)
b74d2807
NP
460 written = total_len;
461 else
462 written = -EAGAIN;
463 goto out;
14a43e69
BH
464 }
465
b74d2807
NP
466 /* Should not get a partial write here because space is available. */
467 olen = cpu_to_be64(total_len);
468 rc = opal_console_write(vtermno, &olen, data);
469 if (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
95b861a7 470 if (rc == OPAL_BUSY_EVENT)
b74d2807 471 opal_poll_events(NULL);
b74d2807
NP
472 written = -EAGAIN;
473 goto out;
474 }
36d2dabc 475
b74d2807
NP
476 /* Closed or other error drop */
477 if (rc != OPAL_SUCCESS) {
478 written = opal_error_code(rc);
479 goto out;
480 }
36d2dabc 481
b74d2807
NP
482 written = be64_to_cpu(olen);
483 if (written < total_len) {
17cc1dd4
NP
484 if (atomic) {
485 /* Should not happen */
486 pr_warn("atomic console write returned partial "
487 "len=%d written=%d\n", total_len, written);
488 }
b74d2807
NP
489 if (!written)
490 written = -EAGAIN;
d2a2262e 491 }
b74d2807
NP
492
493out:
17cc1dd4
NP
494 if (atomic)
495 spin_unlock_irqrestore(&opal_write_lock, flags);
d2a2262e
NP
496
497 return written;
498}
499
17cc1dd4
NP
500int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
501{
502 return __opal_put_chars(vtermno, data, total_len, false);
503}
504
505/*
506 * opal_put_chars_atomic will not perform partial-writes. Data will be
507 * atomically written to the terminal or not at all. This is not strictly
508 * true at the moment because console space can race with OPAL's console
509 * writes.
510 */
511int opal_put_chars_atomic(uint32_t vtermno, const char *data, int total_len)
512{
513 return __opal_put_chars(vtermno, data, total_len, true);
514}
515
95b861a7 516static s64 __opal_flush_console(uint32_t vtermno)
d2a2262e
NP
517{
518 s64 rc;
519
520 if (!opal_check_token(OPAL_CONSOLE_FLUSH)) {
521 __be64 evt;
522
d2a2262e
NP
523 /*
524 * If OPAL_CONSOLE_FLUSH is not implemented in the firmware,
525 * the console can still be flushed by calling the polling
526 * function while it has OPAL_EVENT_CONSOLE_OUTPUT events.
527 */
95b861a7
NP
528 WARN_ONCE(1, "opal: OPAL_CONSOLE_FLUSH missing.\n");
529
530 opal_poll_events(&evt);
531 if (!(be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT))
532 return OPAL_SUCCESS;
533 return OPAL_BUSY;
d2a2262e 534
95b861a7
NP
535 } else {
536 rc = opal_console_flush(vtermno);
537 if (rc == OPAL_BUSY_EVENT) {
538 opal_poll_events(NULL);
539 rc = OPAL_BUSY;
540 }
541 return rc;
14a43e69 542 }
d2a2262e 543
95b861a7
NP
544}
545
546/*
547 * opal_flush_console spins until the console is flushed
548 */
549int opal_flush_console(uint32_t vtermno)
550{
551 for (;;) {
552 s64 rc = __opal_flush_console(vtermno);
553
554 if (rc == OPAL_BUSY || rc == OPAL_PARTIAL) {
555 mdelay(1);
556 continue;
557 }
558
559 return opal_error_code(rc);
560 }
561}
562
563/*
564 * opal_flush_chars is an hvc interface that sleeps until the console is
565 * flushed if wait, otherwise it will return -EBUSY if the console has data,
566 * -EAGAIN if it has data and some of it was flushed.
567 */
568int opal_flush_chars(uint32_t vtermno, bool wait)
569{
570 for (;;) {
571 s64 rc = __opal_flush_console(vtermno);
572
573 if (rc == OPAL_BUSY || rc == OPAL_PARTIAL) {
574 if (wait) {
575 msleep(OPAL_BUSY_DELAY_MS);
576 continue;
d2a2262e 577 }
95b861a7
NP
578 if (rc == OPAL_PARTIAL)
579 return -EAGAIN;
d2a2262e 580 }
d2a2262e 581
95b861a7
NP
582 return opal_error_code(rc);
583 }
14a43e69
BH
584}
585
b63a0ffe
MS
586static int opal_recover_mce(struct pt_regs *regs,
587 struct machine_check_event *evt)
588{
589 int recovered = 0;
b63a0ffe
MS
590
591 if (!(regs->msr & MSR_RI)) {
592 /* If MSR_RI isn't set, we cannot recover */
c74dd88e 593 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
b63a0ffe
MS
594 recovered = 0;
595 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
596 /* Platform corrected itself */
597 recovered = 1;
1363875b
NP
598 } else if (evt->severity == MCE_SEV_FATAL) {
599 /* Fatal machine check */
600 pr_err("Machine check interrupt is fatal\n");
601 recovered = 0;
6fcd6baa
NP
602 }
603
cda6618d 604 if (!recovered && evt->sync_error) {
b63a0ffe 605 /*
6fcd6baa
NP
606 * Try to kill processes if we get a synchronous machine check
607 * (e.g., one caused by execution of this instruction). This
608 * will devolve into a panic if we try to kill init or are in
609 * an interrupt etc.
b63a0ffe
MS
610 *
611 * TODO: Queue up this address for hwpoisioning later.
6fcd6baa
NP
612 * TODO: This is not quite right for d-side machine
613 * checks ->nip is not necessarily the important
614 * address.
b63a0ffe 615 */
6fcd6baa
NP
616 if ((user_mode(regs))) {
617 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
618 recovered = 1;
619 } else if (die_will_crash()) {
620 /*
621 * die() would kill the kernel, so better to go via
622 * the platform reboot code that will log the
623 * machine check.
624 */
625 recovered = 0;
626 } else {
627 die("Machine check", regs, SIGBUS);
628 recovered = 1;
629 }
b63a0ffe 630 }
6fcd6baa 631
b63a0ffe
MS
632 return recovered;
633}
634
62dea077 635void __noreturn pnv_platform_error_reboot(struct pt_regs *regs, const char *msg)
b746e3e0 636{
35adacd6
NP
637 panic_flush_kmsg_start();
638
b746e3e0
NP
639 pr_emerg("Hardware platform error: %s\n", msg);
640 if (regs)
641 show_regs(regs);
642 smp_send_stop();
35adacd6
NP
643
644 panic_flush_kmsg_end();
b746e3e0
NP
645
646 /*
647 * Don't bother to shut things down because this will
648 * xstop the system.
649 */
650 if (opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR, msg)
651 == OPAL_UNSUPPORTED) {
652 pr_emerg("Reboot type %d not supported for %s\n",
653 OPAL_REBOOT_PLATFORM_ERROR, msg);
654 }
655
656 /*
657 * We reached here. There can be three possibilities:
658 * 1. We are running on a firmware level that do not support
659 * opal_cec_reboot2()
660 * 2. We are running on a firmware level that do not support
661 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
662 * 3. We are running on FSP based system that does not need
663 * opal to trigger checkstop explicitly for error analysis.
664 * The FSP PRD component would have already got notified
665 * about this error through other channels.
5ee573e8
BS
666 * 4. We are running on a newer skiboot that by default does
667 * not cause a checkstop, drops us back to the kernel to
668 * extract context and state at the time of the error.
b746e3e0
NP
669 */
670
5ee573e8 671 panic(msg);
b746e3e0
NP
672}
673
ed79ba9e
BH
674int opal_machine_check(struct pt_regs *regs)
675{
36df96f8 676 struct machine_check_event evt;
ed79ba9e 677
36df96f8
MS
678 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
679 return 0;
ed79ba9e
BH
680
681 /* Print things out */
36df96f8 682 if (evt.version != MCE_V1) {
ed79ba9e
BH
683 pr_err("Machine Check Exception, Unknown event version %d !\n",
684 evt.version);
685 return 0;
686 }
c0577201 687 machine_check_print_event_info(&evt, user_mode(regs), false);
ed79ba9e 688
b63a0ffe
MS
689 if (opal_recover_mce(regs, &evt))
690 return 1;
e784b649 691
b746e3e0 692 pnv_platform_error_reboot(regs, "Unrecoverable Machine Check exception");
ed79ba9e
BH
693}
694
0869b6fd
MS
695/* Early hmi handler called in real mode. */
696int opal_hmi_exception_early(struct pt_regs *regs)
697{
0ef95b41
MS
698 s64 rc;
699
700 /*
701 * call opal hmi handler. Pass paca address as token.
702 * The return value OPAL_SUCCESS is an indication that there is
703 * an HMI event generated waiting to pull by Linux.
704 */
705 rc = opal_handle_hmi();
706 if (rc == OPAL_SUCCESS) {
707 local_paca->hmi_event_available = 1;
708 return 1;
709 }
0869b6fd
MS
710 return 0;
711}
712
de269129
MS
713int opal_hmi_exception_early2(struct pt_regs *regs)
714{
715 s64 rc;
716 __be64 out_flags;
717
718 /*
719 * call opal hmi handler.
720 * Check 64-bit flag mask to find out if an event was generated,
721 * and whether TB is still valid or not etc.
722 */
723 rc = opal_handle_hmi2(&out_flags);
724 if (rc != OPAL_SUCCESS)
725 return 0;
726
727 if (be64_to_cpu(out_flags) & OPAL_HMI_FLAGS_NEW_EVENT)
728 local_paca->hmi_event_available = 1;
729 if (be64_to_cpu(out_flags) & OPAL_HMI_FLAGS_TOD_TB_FAIL)
730 tb_invalid = true;
731 return 1;
732}
733
0869b6fd
MS
734/* HMI exception handler called in virtual mode during check_irq_replay. */
735int opal_handle_hmi_exception(struct pt_regs *regs)
736{
0ef95b41
MS
737 /*
738 * Check if HMI event is available.
56c0b48b 739 * if Yes, then wake kopald to process them.
0ef95b41
MS
740 */
741 if (!local_paca->hmi_event_available)
742 return 0;
743
744 local_paca->hmi_event_available = 0;
56c0b48b 745 opal_wake_poller();
0ef95b41
MS
746
747 return 1;
0869b6fd
MS
748}
749
55672ecf
MS
750static uint64_t find_recovery_address(uint64_t nip)
751{
752 int i;
753
754 for (i = 0; i < mc_recoverable_range_len; i++)
755 if ((nip >= mc_recoverable_range[i].start_addr) &&
756 (nip < mc_recoverable_range[i].end_addr))
757 return mc_recoverable_range[i].recover_addr;
758 return 0;
759}
760
761bool opal_mce_check_early_recovery(struct pt_regs *regs)
762{
763 uint64_t recover_addr = 0;
764
765 if (!opal.base || !opal.size)
766 goto out;
767
768 if ((regs->nip >= opal.base) &&
dc3799bb 769 (regs->nip < (opal.base + opal.size)))
55672ecf
MS
770 recover_addr = find_recovery_address(regs->nip);
771
772 /*
773 * Setup regs->nip to rfi into fixup address.
774 */
775 if (recover_addr)
776 regs->nip = recover_addr;
777
778out:
779 return !!recover_addr;
780}
781
6f68b5e2
VH
782static int opal_sysfs_init(void)
783{
784 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
785 if (!opal_kobj) {
786 pr_warn("kobject_create_and_add opal failed\n");
787 return -ENOMEM;
788 }
789
790 return 0;
791}
792
c8742f85
BH
793static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
794 struct bin_attribute *bin_attr,
795 char *buf, loff_t off, size_t count)
796{
797 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
798 bin_attr->size);
799}
800
e7de4f7b
AD
801static struct bin_attribute symbol_map_attr = {
802 .attr = {.name = "symbol_map", .mode = 0400},
803 .read = symbol_map_read
804};
c8742f85
BH
805
806static void opal_export_symmap(void)
807{
808 const __be64 *syms;
809 unsigned int size;
810 struct device_node *fw;
811 int rc;
812
813 fw = of_find_node_by_path("/ibm,opal/firmware");
814 if (!fw)
815 return;
816 syms = of_get_property(fw, "symbol-map", &size);
817 if (!syms || size != 2 * sizeof(__be64))
818 return;
819
820 /* Setup attributes */
e7de4f7b
AD
821 symbol_map_attr.private = __va(be64_to_cpu(syms[0]));
822 symbol_map_attr.size = be64_to_cpu(syms[1]);
c8742f85 823
e7de4f7b 824 rc = sysfs_create_bin_file(opal_kobj, &symbol_map_attr);
c8742f85
BH
825 if (rc)
826 pr_warn("Error %d creating OPAL symbols file\n", rc);
827}
828
11fe909d
MB
829static ssize_t export_attr_read(struct file *fp, struct kobject *kobj,
830 struct bin_attribute *bin_attr, char *buf,
831 loff_t off, size_t count)
832{
833 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
834 bin_attr->size);
835}
836
db933612
OH
837static int opal_add_one_export(struct kobject *parent, const char *export_name,
838 struct device_node *np, const char *prop_name)
839{
840 struct bin_attribute *attr = NULL;
841 const char *name = NULL;
842 u64 vals[2];
843 int rc;
844
845 rc = of_property_read_u64_array(np, prop_name, &vals[0], 2);
846 if (rc)
847 goto out;
848
849 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
850 name = kstrdup(export_name, GFP_KERNEL);
851 if (!name) {
852 rc = -ENOMEM;
853 goto out;
854 }
855
856 sysfs_bin_attr_init(attr);
857 attr->attr.name = name;
858 attr->attr.mode = 0400;
859 attr->read = export_attr_read;
860 attr->private = __va(vals[0]);
861 attr->size = vals[1];
862
863 rc = sysfs_create_bin_file(parent, attr);
864out:
865 if (rc) {
866 kfree(name);
867 kfree(attr);
868 }
869
870 return rc;
871}
872
873static void opal_add_exported_attrs(struct device_node *np,
874 struct kobject *kobj)
875{
876 struct device_node *child;
877 struct property *prop;
878
879 for_each_property_of_node(np, prop) {
880 int rc;
881
882 if (!strcmp(prop->name, "name") ||
883 !strcmp(prop->name, "phandle"))
884 continue;
885
886 rc = opal_add_one_export(kobj, prop->name, np, prop->name);
887 if (rc) {
888 pr_warn("Unable to add export %pOF/%s, rc = %d!\n",
889 np, prop->name, rc);
890 }
891 }
892
893 for_each_child_of_node(np, child) {
894 struct kobject *child_kobj;
895
896 child_kobj = kobject_create_and_add(child->name, kobj);
897 if (!child_kobj) {
898 pr_err("Unable to create export dir for %pOF\n", child);
899 continue;
900 }
901
902 opal_add_exported_attrs(child, child_kobj);
903 }
904}
905
11fe909d
MB
906/*
907 * opal_export_attrs: creates a sysfs node for each property listed in
908 * the device-tree under /ibm,opal/firmware/exports/
909 * All new sysfs nodes are created under /opal/exports/.
910 * This allows for reserved memory regions (e.g. HDAT) to be read.
911 * The new sysfs nodes are only readable by root.
912 */
913static void opal_export_attrs(void)
914{
11fe909d 915 struct device_node *np;
11fe909d 916 struct kobject *kobj;
11fe909d
MB
917
918 np = of_find_node_by_path("/ibm,opal/firmware/exports");
919 if (!np)
920 return;
921
922 /* Create new 'exports' directory - /sys/firmware/opal/exports */
923 kobj = kobject_create_and_add("exports", opal_kobj);
924 if (!kobj) {
925 pr_warn("kobject_create_and_add() of exports failed\n");
926 return;
927 }
928
db933612 929 opal_add_exported_attrs(np, kobj);
11fe909d
MB
930
931 of_node_put(np);
932}
933
b09c2ec4
VH
934static void __init opal_dump_region_init(void)
935{
936 void *addr;
937 uint64_t size;
938 int rc;
939
b962f5a4
SS
940 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
941 return;
942
b09c2ec4
VH
943 /* Register kernel log buffer */
944 addr = log_buf_addr_get();
6501ab5e
PK
945 if (addr == NULL)
946 return;
947
b09c2ec4 948 size = log_buf_len_get();
6501ab5e
PK
949 if (size == 0)
950 return;
951
b09c2ec4
VH
952 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
953 __pa(addr), size);
954 /* Don't warn if this is just an older OPAL that doesn't
955 * know about that call
956 */
957 if (rc && rc != OPAL_UNSUPPORTED)
958 pr_warn("DUMP: Failed to register kernel log buffer. "
959 "rc = %d\n", rc);
960}
608b286d 961
9e4f51bd 962static void opal_pdev_init(const char *compatible)
ed59190e
CB
963{
964 struct device_node *np;
965
9e4f51bd 966 for_each_compatible_node(np, NULL, compatible)
47083450
NG
967 of_platform_device_create(np, NULL, NULL);
968}
969
8f95faaa
MS
970static void __init opal_imc_init_dev(void)
971{
972 struct device_node *np;
973
974 np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT);
975 if (np)
976 of_platform_device_create(np, NULL, NULL);
977}
978
3bf57561
BH
979static int kopald(void *unused)
980{
a203658b 981 unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1;
9f0fd049 982
3bf57561
BH
983 set_freezable();
984 do {
985 try_to_freeze();
56c0b48b
NP
986
987 opal_handle_events();
988
989 set_current_state(TASK_INTERRUPTIBLE);
990 if (opal_have_pending_events())
991 __set_current_state(TASK_RUNNING);
992 else
993 schedule_timeout(timeout);
994
3bf57561
BH
995 } while (!kthread_should_stop());
996
997 return 0;
998}
999
a203658b
BH
1000void opal_wake_poller(void)
1001{
1002 if (kopald_tsk)
1003 wake_up_process(kopald_tsk);
1004}
1005
3bf57561
BH
1006static void opal_init_heartbeat(void)
1007{
1008 /* Old firwmware, we assume the HVC heartbeat is sufficient */
1009 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
1010 &opal_heartbeat) != 0)
1011 opal_heartbeat = 0;
1012
1013 if (opal_heartbeat)
a203658b 1014 kopald_tsk = kthread_run(kopald, NULL, "kopald");
3bf57561
BH
1015}
1016
14a43e69
BH
1017static int __init opal_init(void)
1018{
c159b596 1019 struct device_node *np, *consoles, *leds;
c1c3a526 1020 int rc;
14a43e69
BH
1021
1022 opal_node = of_find_node_by_path("/ibm,opal");
1023 if (!opal_node) {
08135139 1024 pr_warn("Device node not found\n");
14a43e69
BH
1025 return -ENODEV;
1026 }
2db29d28
BH
1027
1028 /* Register OPAL consoles if any ports */
7261aafc 1029 consoles = of_find_node_by_path("/ibm,opal/consoles");
2db29d28
BH
1030 if (consoles) {
1031 for_each_child_of_node(consoles, np) {
2c8e65b5 1032 if (!of_node_name_eq(np, "serial"))
2db29d28
BH
1033 continue;
1034 of_platform_device_create(np, NULL, NULL);
1035 }
1036 of_node_put(consoles);
14a43e69 1037 }
a125e092 1038
96e023e7 1039 /* Initialise OPAL messaging system */
2be1d5d1 1040 opal_message_init(opal_node);
96e023e7
AP
1041
1042 /* Initialise OPAL asynchronous completion interface */
1043 opal_async_comp_init();
1044
1045 /* Initialise OPAL sensor interface */
1046 opal_sensor_init();
1047
1048 /* Initialise OPAL hypervisor maintainence interrupt handling */
1049 opal_hmi_handler_init();
1050
47083450 1051 /* Create i2c platform devices */
9e4f51bd 1052 opal_pdev_init("ibm,opal-i2c");
47083450 1053
3013e173
OH
1054 /* Handle non-volatile memory devices */
1055 opal_pdev_init("pmem-region");
1056
3bf57561
BH
1057 /* Setup a heatbeat thread if requested by OPAL */
1058 opal_init_heartbeat();
1059
8f95faaa
MS
1060 /* Detect In-Memory Collection counters and create devices*/
1061 opal_imc_init_dev();
1062
c159b596
VH
1063 /* Create leds platform devices */
1064 leds = of_find_node_by_path("/ibm,opal/leds");
1065 if (leds) {
1066 of_platform_device_create(leds, "opal_leds", NULL);
1067 of_node_put(leds);
1068 }
1069
9b4fffa1
AD
1070 /* Initialise OPAL message log interface */
1071 opal_msglog_init();
1072
6f68b5e2
VH
1073 /* Create "opal" kobject under /sys/firmware */
1074 rc = opal_sysfs_init();
50bd6153 1075 if (rc == 0) {
c8742f85
BH
1076 /* Export symbol map to userspace */
1077 opal_export_symmap();
b09c2ec4
VH
1078 /* Setup dump region interface */
1079 opal_dump_region_init();
774fea1a
SS
1080 /* Setup error log interface */
1081 rc = opal_elog_init();
50bd6153 1082 /* Setup code update interface */
ed59190e 1083 opal_flash_update_init();
c7e64b9c
SS
1084 /* Setup platform dump extract interface */
1085 opal_platform_dump_init();
4029cd66
NG
1086 /* Setup system parameters interface */
1087 opal_sys_param_init();
9b4fffa1
AD
1088 /* Setup message log sysfs interface. */
1089 opal_msglog_sysfs_init();
db933612
OH
1090 /* Add all export properties*/
1091 opal_export_attrs();
50bd6153 1092 }
6f68b5e2 1093
0d7cd855 1094 /* Initialize platform devices: IPMI backend, PRD & flash interface */
9e4f51bd
JM
1095 opal_pdev_init("ibm,opal-ipmi");
1096 opal_pdev_init("ibm,opal-flash");
1097 opal_pdev_init("ibm,opal-prd");
ed59190e 1098
43a1dd9b 1099 /* Initialise platform device: oppanel interface */
9e4f51bd 1100 opal_pdev_init("ibm,opal-oppanel");
43a1dd9b 1101
affddff6
RC
1102 /* Initialise OPAL kmsg dumper for flushing console on panic */
1103 opal_kmsg_init();
1104
cb8b340d
SB
1105 /* Initialise OPAL powercap interface */
1106 opal_powercap_init();
1107
8e84b2d1
SB
1108 /* Initialise OPAL Power-Shifting-Ratio interface */
1109 opal_psr_init();
1110
bf957155
SB
1111 /* Initialise OPAL sensor groups */
1112 opal_sensor_groups_init();
1113
08fb726d
MS
1114 /* Initialise OPAL Power control interface */
1115 opal_power_control_init();
1116
9155e234
NJ
1117 /* Initialize OPAL secure variables */
1118 opal_pdev_init("ibm,secvar-backend");
1119
14a43e69
BH
1120 return 0;
1121}
b14726c5 1122machine_subsys_initcall(powernv, opal_init);
73ed148a
BH
1123
1124void opal_shutdown(void)
1125{
f7d98d18 1126 long rc = OPAL_BUSY;
73ed148a 1127
9f0fd049 1128 opal_event_shutdown();
f7d98d18
VH
1129
1130 /*
1131 * Then sync with OPAL which ensure anything that can
1132 * potentially write to our memory has completed such
1133 * as an ongoing dump retrieval
1134 */
1135 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
1136 rc = opal_sync_host_reboot();
1137 if (rc == OPAL_BUSY)
1138 opal_poll_events(NULL);
1139 else
1140 mdelay(10);
1141 }
b09c2ec4
VH
1142
1143 /* Unregister memory dump region */
b962f5a4
SS
1144 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
1145 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
73ed148a 1146}
e28b05e7
JS
1147
1148/* Export this so that test modules can use it */
1149EXPORT_SYMBOL_GPL(opal_invalid_call);
594fcb9e
JK
1150EXPORT_SYMBOL_GPL(opal_xscom_read);
1151EXPORT_SYMBOL_GPL(opal_xscom_write);
608b286d
JK
1152EXPORT_SYMBOL_GPL(opal_ipmi_send);
1153EXPORT_SYMBOL_GPL(opal_ipmi_recv);
ed59190e
CB
1154EXPORT_SYMBOL_GPL(opal_flash_read);
1155EXPORT_SYMBOL_GPL(opal_flash_write);
1156EXPORT_SYMBOL_GPL(opal_flash_erase);
0d7cd855 1157EXPORT_SYMBOL_GPL(opal_prd_msg);
6e708000 1158EXPORT_SYMBOL_GPL(opal_check_token);
3441f04b
AB
1159
1160/* Convert a region of vmalloc memory to an opal sg list */
1161struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
1162 unsigned long vmalloc_size)
1163{
1164 struct opal_sg_list *sg, *first = NULL;
1165 unsigned long i = 0;
1166
1167 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
1168 if (!sg)
1169 goto nomem;
1170
1171 first = sg;
1172
1173 while (vmalloc_size > 0) {
1174 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
1175 uint64_t length = min(vmalloc_size, PAGE_SIZE);
1176
1177 sg->entry[i].data = cpu_to_be64(data);
1178 sg->entry[i].length = cpu_to_be64(length);
1179 i++;
1180
1181 if (i >= SG_ENTRIES_PER_NODE) {
1182 struct opal_sg_list *next;
1183
1184 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
1185 if (!next)
1186 goto nomem;
1187
1188 sg->length = cpu_to_be64(
1189 i * sizeof(struct opal_sg_entry) + 16);
1190 i = 0;
1191 sg->next = cpu_to_be64(__pa(next));
1192 sg = next;
1193 }
1194
1195 vmalloc_addr += length;
1196 vmalloc_size -= length;
1197 }
1198
1199 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
1200
1201 return first;
1202
1203nomem:
1204 pr_err("%s : Failed to allocate memory\n", __func__);
1205 opal_free_sg_list(first);
1206 return NULL;
1207}
1208
1209void opal_free_sg_list(struct opal_sg_list *sg)
1210{
1211 while (sg) {
1212 uint64_t next = be64_to_cpu(sg->next);
1213
1214 kfree(sg);
1215
1216 if (next)
1217 sg = __va(next);
1218 else
1219 sg = NULL;
1220 }
1221}
16b1d26e 1222
e3c5c2e0
CLG
1223int opal_error_code(int rc)
1224{
1225 switch (rc) {
1226 case OPAL_SUCCESS: return 0;
1227
1228 case OPAL_PARAMETER: return -EINVAL;
1229 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
77adbd22 1230 case OPAL_BUSY:
e3c5c2e0
CLG
1231 case OPAL_BUSY_EVENT: return -EBUSY;
1232 case OPAL_NO_MEM: return -ENOMEM;
14aae78f 1233 case OPAL_PERMISSION: return -EPERM;
e3c5c2e0
CLG
1234
1235 case OPAL_UNSUPPORTED: return -EIO;
1236 case OPAL_HARDWARE: return -EIO;
1237 case OPAL_INTERNAL_ERROR: return -EIO;
cb8b340d 1238 case OPAL_TIMEOUT: return -ETIMEDOUT;
e3c5c2e0
CLG
1239 default:
1240 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
1241 return -EIO;
1242 }
1243}
1244
1d0761d2
AP
1245void powernv_set_nmmu_ptcr(unsigned long ptcr)
1246{
1247 int rc;
1248
1249 if (firmware_has_feature(FW_FEATURE_OPAL)) {
1250 rc = opal_nmmu_set_ptcr(-1UL, ptcr);
1251 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
1252 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__);
1253 }
1254}
1255
16b1d26e
NG
1256EXPORT_SYMBOL_GPL(opal_poll_events);
1257EXPORT_SYMBOL_GPL(opal_rtc_read);
1258EXPORT_SYMBOL_GPL(opal_rtc_write);
1259EXPORT_SYMBOL_GPL(opal_tpo_read);
1260EXPORT_SYMBOL_GPL(opal_tpo_write);
47083450 1261EXPORT_SYMBOL_GPL(opal_i2c_request);
c159b596
VH
1262/* Export these symbols for PowerNV LED class driver */
1263EXPORT_SYMBOL_GPL(opal_leds_get_ind);
1264EXPORT_SYMBOL_GPL(opal_leds_set_ind);
43a1dd9b
SJS
1265/* Export this symbol for PowerNV Operator Panel class driver */
1266EXPORT_SYMBOL_GPL(opal_write_oppanel_async);
ffe6d810
PM
1267/* Export this for KVM */
1268EXPORT_SYMBOL_GPL(opal_int_set_mfrr);
5af50993 1269EXPORT_SYMBOL_GPL(opal_int_eoi);
77adbd22 1270EXPORT_SYMBOL_GPL(opal_error_code);
656ecc16
HM
1271/* Export the below symbol for NX compression */
1272EXPORT_SYMBOL(opal_nx_coproc_init);