blob: 778a2793e75b019ef0dbc8e2732f5019dd7e0087 [file] [log] [blame]
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +00001/*
2 * PowerNV OPAL high level interfaces
3 *
4 * Copyright 2011 IBM Corp.
5 *
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.
10 */
11
12#undef DEBUG
13
14#include <linux/types.h>
15#include <linux/of.h>
Rob Herring26a20562013-09-26 07:40:04 -050016#include <linux/of_fdt.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000017#include <linux/of_platform.h>
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +000018#include <linux/interrupt.h>
Gavin Shan1bc98de2013-06-20 18:13:22 +080019#include <linux/notifier.h>
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100020#include <linux/slab.h>
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +053021#include <linux/sched.h>
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053022#include <linux/kobject.h>
Vasant Hegdef7d98d12014-01-15 17:02:04 +110023#include <linux/delay.h>
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053024#include <linux/memblock.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000025#include <asm/opal.h>
26#include <asm/firmware.h>
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +053027#include <asm/mce.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000028
29#include "powernv.h"
30
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053031/* /sys/firmware/opal */
32struct kobject *opal_kobj;
33
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000034struct opal {
35 u64 base;
36 u64 entry;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053037 u64 size;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000038} opal;
39
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053040struct mcheck_recoverable_range {
41 u64 start_addr;
42 u64 end_addr;
43 u64 recover_addr;
44};
45
46static struct mcheck_recoverable_range *mc_recoverable_range;
47static int mc_recoverable_range_len;
48
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000049static struct device_node *opal_node;
50static DEFINE_SPINLOCK(opal_write_lock);
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +000051extern u64 opal_mc_secondary_handler[];
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100052static unsigned int *opal_irqs;
53static unsigned int opal_irq_count;
Gavin Shan1bc98de2013-06-20 18:13:22 +080054static ATOMIC_NOTIFIER_HEAD(opal_notifier_head);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +053055static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX];
Gavin Shan1bc98de2013-06-20 18:13:22 +080056static DEFINE_SPINLOCK(opal_notifier_lock);
57static uint64_t last_notified_mask = 0x0ul;
58static atomic_t opal_notifier_hold = ATOMIC_INIT(0);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000059
60int __init early_init_dt_scan_opal(unsigned long node,
61 const char *uname, int depth, void *data)
62{
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053063 const void *basep, *entryp, *sizep;
64 unsigned long basesz, entrysz, runtimesz;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000065
66 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
67 return 0;
68
69 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
70 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053071 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000072
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053073 if (!basep || !entryp || !sizep)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000074 return 1;
75
76 opal.base = of_read_number(basep, basesz/4);
77 opal.entry = of_read_number(entryp, entrysz/4);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053078 opal.size = of_read_number(sizep, runtimesz/4);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000079
80 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%ld)\n",
81 opal.base, basep, basesz);
82 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%ld)\n",
83 opal.entry, entryp, entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053084 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%ld)\n",
85 opal.size, sizep, runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000086
87 powerpc_firmware_features |= FW_FEATURE_OPAL;
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +100088 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
89 powerpc_firmware_features |= FW_FEATURE_OPALv2;
90 powerpc_firmware_features |= FW_FEATURE_OPALv3;
91 printk("OPAL V3 detected !\n");
92 } else if (of_flat_dt_is_compatible(node, "ibm,opal-v2")) {
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000093 powerpc_firmware_features |= FW_FEATURE_OPALv2;
94 printk("OPAL V2 detected !\n");
95 } else {
96 printk("OPAL V1 detected !\n");
97 }
98
Jeremy Kerrc4463b32013-05-01 22:31:50 +000099 return 1;
100}
101
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530102int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
103 const char *uname, int depth, void *data)
104{
105 unsigned long i, size;
106 const __be32 *prop;
107
108 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
109 return 0;
110
111 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &size);
112
113 if (!prop)
114 return 1;
115
116 pr_debug("Found machine check recoverable ranges.\n");
117
118 /*
119 * Allocate a buffer to hold the MC recoverable ranges. We would be
120 * accessing them in real mode, hence it needs to be within
121 * RMO region.
122 */
123 mc_recoverable_range =__va(memblock_alloc_base(size, __alignof__(u64),
124 ppc64_rma_size));
125 memset(mc_recoverable_range, 0, size);
126
127 /*
128 * Each recoverable address entry is an (start address,len,
129 * recover address) pair, * 2 cells each, totalling 4 cells per entry.
130 */
131 for (i = 0; i < size / (sizeof(*prop) * 5); i++) {
132 mc_recoverable_range[i].start_addr =
133 of_read_number(prop + (i * 5) + 0, 2);
134 mc_recoverable_range[i].end_addr =
135 mc_recoverable_range[i].start_addr +
136 of_read_number(prop + (i * 5) + 2, 1);
137 mc_recoverable_range[i].recover_addr =
138 of_read_number(prop + (i * 5) + 3, 2);
139
140 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
141 mc_recoverable_range[i].start_addr,
142 mc_recoverable_range[i].end_addr,
143 mc_recoverable_range[i].recover_addr);
144 }
145 mc_recoverable_range_len = i;
146 return 1;
147}
148
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000149static int __init opal_register_exception_handlers(void)
150{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000151#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000152 u64 glue;
153
154 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
155 return -ENODEV;
156
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530157 /* Hookup some exception handlers except machine check. We use the
158 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000159 */
160 glue = 0x7000;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000161 opal_register_exception_handler(OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
162 0, glue);
163 glue += 128;
164 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000165#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000166
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000167 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000168}
169
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000170early_initcall(opal_register_exception_handlers);
171
Gavin Shan1bc98de2013-06-20 18:13:22 +0800172int opal_notifier_register(struct notifier_block *nb)
173{
174 if (!nb) {
175 pr_warning("%s: Invalid argument (%p)\n",
176 __func__, nb);
177 return -EINVAL;
178 }
179
180 atomic_notifier_chain_register(&opal_notifier_head, nb);
181 return 0;
182}
Benjamin Herrenschmidt798af002014-03-28 13:36:31 +1100183EXPORT_SYMBOL_GPL(opal_notifier_register);
184
185int opal_notifier_unregister(struct notifier_block *nb)
186{
187 if (!nb) {
188 pr_warning("%s: Invalid argument (%p)\n",
189 __func__, nb);
190 return -EINVAL;
191 }
192
193 atomic_notifier_chain_unregister(&opal_notifier_head, nb);
194 return 0;
195}
196EXPORT_SYMBOL_GPL(opal_notifier_unregister);
Gavin Shan1bc98de2013-06-20 18:13:22 +0800197
198static void opal_do_notifier(uint64_t events)
199{
200 unsigned long flags;
201 uint64_t changed_mask;
202
203 if (atomic_read(&opal_notifier_hold))
204 return;
205
206 spin_lock_irqsave(&opal_notifier_lock, flags);
207 changed_mask = last_notified_mask ^ events;
208 last_notified_mask = events;
209 spin_unlock_irqrestore(&opal_notifier_lock, flags);
210
211 /*
212 * We feed with the event bits and changed bits for
213 * enough information to the callback.
214 */
215 atomic_notifier_call_chain(&opal_notifier_head,
216 events, (void *)changed_mask);
217}
218
219void opal_notifier_update_evt(uint64_t evt_mask,
220 uint64_t evt_val)
221{
222 unsigned long flags;
223
224 spin_lock_irqsave(&opal_notifier_lock, flags);
225 last_notified_mask &= ~evt_mask;
226 last_notified_mask |= evt_val;
227 spin_unlock_irqrestore(&opal_notifier_lock, flags);
228}
229
230void opal_notifier_enable(void)
231{
232 int64_t rc;
233 uint64_t evt = 0;
234
235 atomic_set(&opal_notifier_hold, 0);
236
237 /* Process pending events */
238 rc = opal_poll_events(&evt);
239 if (rc == OPAL_SUCCESS && evt)
240 opal_do_notifier(evt);
241}
242
243void opal_notifier_disable(void)
244{
245 atomic_set(&opal_notifier_hold, 1);
246}
247
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530248/*
249 * Opal message notifier based on message type. Allow subscribers to get
250 * notified for specific messgae type.
251 */
252int opal_message_notifier_register(enum OpalMessageType msg_type,
253 struct notifier_block *nb)
254{
255 if (!nb) {
256 pr_warning("%s: Invalid argument (%p)\n",
257 __func__, nb);
258 return -EINVAL;
259 }
260 if (msg_type > OPAL_MSG_TYPE_MAX) {
261 pr_warning("%s: Invalid message type argument (%d)\n",
262 __func__, msg_type);
263 return -EINVAL;
264 }
265 return atomic_notifier_chain_register(
266 &opal_msg_notifier_head[msg_type], nb);
267}
268
269static void opal_message_do_notify(uint32_t msg_type, void *msg)
270{
271 /* notify subscribers */
272 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
273 msg_type, msg);
274}
275
276static void opal_handle_message(void)
277{
278 s64 ret;
279 /*
280 * TODO: pre-allocate a message buffer depending on opal-msg-size
281 * value in /proc/device-tree.
282 */
283 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100284 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530285
286 ret = opal_get_msg(__pa(&msg), sizeof(msg));
287 /* No opal message pending. */
288 if (ret == OPAL_RESOURCE)
289 return;
290
291 /* check for errors. */
292 if (ret) {
293 pr_warning("%s: Failed to retrive opal message, err=%lld\n",
294 __func__, ret);
295 return;
296 }
297
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100298 type = be32_to_cpu(msg.msg_type);
299
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530300 /* Sanity check */
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100301 if (type > OPAL_MSG_TYPE_MAX) {
302 pr_warning("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530303 return;
304 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100305 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530306}
307
308static int opal_message_notify(struct notifier_block *nb,
309 unsigned long events, void *change)
310{
311 if (events & OPAL_EVENT_MSG_PENDING)
312 opal_handle_message();
313 return 0;
314}
315
316static struct notifier_block opal_message_nb = {
317 .notifier_call = opal_message_notify,
318 .next = NULL,
319 .priority = 0,
320};
321
322static int __init opal_message_init(void)
323{
324 int ret, i;
325
326 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
327 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
328
329 ret = opal_notifier_register(&opal_message_nb);
330 if (ret) {
331 pr_err("%s: Can't register OPAL event notifier (%d)\n",
332 __func__, ret);
333 return ret;
334 }
335 return 0;
336}
337early_initcall(opal_message_init);
338
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000339int opal_get_chars(uint32_t vtermno, char *buf, int count)
340{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000341 s64 rc;
342 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000343
344 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000345 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000346 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000347 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000348 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000349 len = cpu_to_be64(count);
350 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000351 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000352 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000353 return 0;
354}
355
356int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
357{
358 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000359 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000360 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000361 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000362 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000363
364 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000365 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000366
367 /* We want put_chars to be atomic to avoid mangling of hvsi
368 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000369 * -EAGAIN if there isn't enough.
370 *
371 * Unfortunately, opal_console_write_buffer_space() doesn't
372 * appear to work on opal v1, so we just assume there is
373 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000374 */
375 spin_lock_irqsave(&opal_write_lock, flags);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000376 if (firmware_has_feature(FW_FEATURE_OPALv2)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000377 rc = opal_console_write_buffer_space(vtermno, &olen);
378 len = be64_to_cpu(olen);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000379 if (rc || len < total_len) {
380 spin_unlock_irqrestore(&opal_write_lock, flags);
381 /* Closed -> drop characters */
382 if (rc)
383 return total_len;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000384 opal_poll_events(NULL);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000385 return -EAGAIN;
386 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000387 }
388
389 /* We still try to handle partial completions, though they
390 * should no longer happen.
391 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000392 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000393 while(total_len > 0 && (rc == OPAL_BUSY ||
394 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000395 olen = cpu_to_be64(total_len);
396 rc = opal_console_write(vtermno, &olen, data);
397 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000398
399 /* Closed or other error drop */
400 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
401 rc != OPAL_BUSY_EVENT) {
402 written = total_len;
403 break;
404 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000405 if (rc == OPAL_SUCCESS) {
406 total_len -= len;
407 data += len;
408 written += len;
409 }
410 /* This is a bit nasty but we need that for the console to
411 * flush when there aren't any interrupts. We will clean
412 * things a bit later to limit that to synchronous path
413 * such as the kernel console and xmon/udbg
414 */
415 do
416 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000417 while(rc == OPAL_SUCCESS &&
418 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000419 }
420 spin_unlock_irqrestore(&opal_write_lock, flags);
421 return written;
422}
423
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530424static int opal_recover_mce(struct pt_regs *regs,
425 struct machine_check_event *evt)
426{
427 int recovered = 0;
428 uint64_t ea = get_mce_fault_addr(evt);
429
430 if (!(regs->msr & MSR_RI)) {
431 /* If MSR_RI isn't set, we cannot recover */
432 recovered = 0;
433 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
434 /* Platform corrected itself */
435 recovered = 1;
436 } else if (ea && !is_kernel_addr(ea)) {
437 /*
438 * Faulting address is not in kernel text. We should be fine.
439 * We need to find which process uses this address.
440 * For now, kill the task if we have received exception when
441 * in userspace.
442 *
443 * TODO: Queue up this address for hwpoisioning later.
444 */
445 if (user_mode(regs) && !is_global_init(current)) {
446 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
447 recovered = 1;
448 } else
449 recovered = 0;
450 } else if (user_mode(regs) && !is_global_init(current) &&
451 evt->severity == MCE_SEV_ERROR_SYNC) {
452 /*
453 * If we have received a synchronous error when in userspace
454 * kill the task.
455 */
456 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
457 recovered = 1;
458 }
459 return recovered;
460}
461
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000462int opal_machine_check(struct pt_regs *regs)
463{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530464 struct machine_check_event evt;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000465
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530466 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
467 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000468
469 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530470 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000471 pr_err("Machine Check Exception, Unknown event version %d !\n",
472 evt.version);
473 return 0;
474 }
Mahesh Salgaonkarb5ff4212013-10-30 20:05:49 +0530475 machine_check_print_event_info(&evt);
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000476
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530477 if (opal_recover_mce(regs, &evt))
478 return 1;
479 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000480}
481
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530482static uint64_t find_recovery_address(uint64_t nip)
483{
484 int i;
485
486 for (i = 0; i < mc_recoverable_range_len; i++)
487 if ((nip >= mc_recoverable_range[i].start_addr) &&
488 (nip < mc_recoverable_range[i].end_addr))
489 return mc_recoverable_range[i].recover_addr;
490 return 0;
491}
492
493bool opal_mce_check_early_recovery(struct pt_regs *regs)
494{
495 uint64_t recover_addr = 0;
496
497 if (!opal.base || !opal.size)
498 goto out;
499
500 if ((regs->nip >= opal.base) &&
501 (regs->nip <= (opal.base + opal.size)))
502 recover_addr = find_recovery_address(regs->nip);
503
504 /*
505 * Setup regs->nip to rfi into fixup address.
506 */
507 if (recover_addr)
508 regs->nip = recover_addr;
509
510out:
511 return !!recover_addr;
512}
513
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000514static irqreturn_t opal_interrupt(int irq, void *data)
515{
Anton Blanchard5e4da532013-09-23 12:05:06 +1000516 __be64 events;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000517
518 opal_handle_interrupt(virq_to_hw(irq), &events);
519
Gavin Shan1bc98de2013-06-20 18:13:22 +0800520 opal_do_notifier(events);
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000521
522 return IRQ_HANDLED;
523}
524
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530525static int opal_sysfs_init(void)
526{
527 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
528 if (!opal_kobj) {
529 pr_warn("kobject_create_and_add opal failed\n");
530 return -ENOMEM;
531 }
532
533 return 0;
534}
535
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000536static int __init opal_init(void)
537{
538 struct device_node *np, *consoles;
Alistair Popple1cc79bc2013-09-23 12:04:54 +1000539 const __be32 *irqs;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000540 int rc, i, irqlen;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000541
542 opal_node = of_find_node_by_path("/ibm,opal");
543 if (!opal_node) {
544 pr_warn("opal: Node not found\n");
545 return -ENODEV;
546 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000547
548 /* Register OPAL consoles if any ports */
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000549 if (firmware_has_feature(FW_FEATURE_OPALv2))
550 consoles = of_find_node_by_path("/ibm,opal/consoles");
551 else
552 consoles = of_node_get(opal_node);
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000553 if (consoles) {
554 for_each_child_of_node(consoles, np) {
555 if (strcmp(np->name, "serial"))
556 continue;
557 of_platform_device_create(np, NULL, NULL);
558 }
559 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000560 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000561
562 /* Find all OPAL interrupts and request them */
563 irqs = of_get_property(opal_node, "opal-interrupts", &irqlen);
564 pr_debug("opal: Found %d interrupts reserved for OPAL\n",
565 irqs ? (irqlen / 4) : 0);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000566 opal_irq_count = irqlen / 4;
567 opal_irqs = kzalloc(opal_irq_count * sizeof(unsigned int), GFP_KERNEL);
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000568 for (i = 0; irqs && i < (irqlen / 4); i++, irqs++) {
569 unsigned int hwirq = be32_to_cpup(irqs);
570 unsigned int irq = irq_create_mapping(NULL, hwirq);
571 if (irq == NO_IRQ) {
572 pr_warning("opal: Failed to map irq 0x%x\n", hwirq);
573 continue;
574 }
575 rc = request_irq(irq, opal_interrupt, 0, "opal", NULL);
576 if (rc)
577 pr_warning("opal: Error %d requesting irq %d"
578 " (0x%x)\n", rc, irq, hwirq);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000579 opal_irqs[i] = irq;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000580 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530581
582 /* Create "opal" kobject under /sys/firmware */
583 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530584 if (rc == 0) {
Stewart Smith774fea12014-02-28 11:58:32 +1100585 /* Setup error log interface */
586 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530587 /* Setup code update interface */
588 opal_flash_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100589 /* Setup platform dump extract interface */
590 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530591 /* Setup system parameters interface */
592 opal_sys_param_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530593 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530594
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000595 return 0;
596}
597subsys_initcall(opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000598
599void opal_shutdown(void)
600{
601 unsigned int i;
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100602 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000603
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100604 /* First free interrupts, which will also mask them */
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000605 for (i = 0; i < opal_irq_count; i++) {
606 if (opal_irqs[i])
Anton Blanchardb0d436c2013-08-07 02:01:24 +1000607 free_irq(opal_irqs[i], NULL);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000608 opal_irqs[i] = 0;
609 }
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100610
611 /*
612 * Then sync with OPAL which ensure anything that can
613 * potentially write to our memory has completed such
614 * as an ongoing dump retrieval
615 */
616 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
617 rc = opal_sync_host_reboot();
618 if (rc == OPAL_BUSY)
619 opal_poll_events(NULL);
620 else
621 mdelay(10);
622 }
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000623}