blob: b349dd3e76eacdb3e713ff2f531ca78d34789d6c [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
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +110012#define pr_fmt(fmt) "opal: " fmt
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000013
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +110014#include <linux/printk.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000015#include <linux/types.h>
16#include <linux/of.h>
Rob Herring26a20562013-09-26 07:40:04 -050017#include <linux/of_fdt.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000018#include <linux/of_platform.h>
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +000019#include <linux/interrupt.h>
Gavin Shan1bc98de2013-06-20 18:13:22 +080020#include <linux/notifier.h>
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100021#include <linux/slab.h>
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +053022#include <linux/sched.h>
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053023#include <linux/kobject.h>
Vasant Hegdef7d98d12014-01-15 17:02:04 +110024#include <linux/delay.h>
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053025#include <linux/memblock.h>
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +110026#include <linux/kthread.h>
27#include <linux/freezer.h>
Michael Ellermanb14726c2014-07-15 22:22:24 +100028
29#include <asm/machdep.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000030#include <asm/opal.h>
31#include <asm/firmware.h>
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +053032#include <asm/mce.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000033
34#include "powernv.h"
35
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053036/* /sys/firmware/opal */
37struct kobject *opal_kobj;
38
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000039struct opal {
40 u64 base;
41 u64 entry;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053042 u64 size;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000043} opal;
44
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053045struct mcheck_recoverable_range {
46 u64 start_addr;
47 u64 end_addr;
48 u64 recover_addr;
49};
50
51static struct mcheck_recoverable_range *mc_recoverable_range;
52static int mc_recoverable_range_len;
53
Joel Stanleybfc36892014-04-01 14:28:19 +103054struct device_node *opal_node;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000055static DEFINE_SPINLOCK(opal_write_lock);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +053056static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX];
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +110057static uint32_t opal_heartbeat;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000058
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100059static void opal_reinit_cores(void)
60{
61 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
62 *
63 * It will preserve non volatile GPRs and HSPRG0/1. It will
64 * also restore HIDs and other SPRs to their original value
65 * but it might clobber a bunch.
66 */
67#ifdef __BIG_ENDIAN__
68 opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_BE);
69#else
70 opal_reinit_cpus(OPAL_REINIT_CPUS_HILE_LE);
71#endif
72}
73
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000074int __init early_init_dt_scan_opal(unsigned long node,
75 const char *uname, int depth, void *data)
76{
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053077 const void *basep, *entryp, *sizep;
Rob Herring9d0c4df2014-04-01 23:49:03 -050078 int basesz, entrysz, runtimesz;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000079
80 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
81 return 0;
82
83 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
84 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053085 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000086
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053087 if (!basep || !entryp || !sizep)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000088 return 1;
89
90 opal.base = of_read_number(basep, basesz/4);
91 opal.entry = of_read_number(entryp, entrysz/4);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053092 opal.size = of_read_number(sizep, runtimesz/4);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000093
Rob Herring9d0c4df2014-04-01 23:49:03 -050094 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000095 opal.base, basep, basesz);
Rob Herring9d0c4df2014-04-01 23:49:03 -050096 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000097 opal.entry, entryp, entrysz);
Rob Herring9d0c4df2014-04-01 23:49:03 -050098 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053099 opal.size, sizep, runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000100
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +1000101 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
Stewart Smithe4d54f72015-12-09 17:18:20 +1100102 powerpc_firmware_features |= FW_FEATURE_OPAL;
103 pr_info("OPAL detected !\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000104 } else {
Stewart Smith786842b2015-12-09 17:18:18 +1100105 panic("OPAL != V3 detected, no longer supported.\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000106 }
107
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +1000108 /* Reinit all cores with the right endian */
109 opal_reinit_cores();
110
111 /* Restore some bits */
112 if (cur_cpu_spec->cpu_restore)
113 cur_cpu_spec->cpu_restore();
114
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000115 return 1;
116}
117
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530118int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
119 const char *uname, int depth, void *data)
120{
Rob Herring9d0c4df2014-04-01 23:49:03 -0500121 int i, psize, size;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530122 const __be32 *prop;
123
124 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
125 return 0;
126
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530127 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530128
129 if (!prop)
130 return 1;
131
132 pr_debug("Found machine check recoverable ranges.\n");
133
134 /*
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530135 * Calculate number of available entries.
136 *
137 * Each recoverable address range entry is (start address, len,
138 * recovery address), 2 cells each for start and recovery address,
139 * 1 cell for len, totalling 5 cells per entry.
140 */
141 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
142
143 /* Sanity check */
144 if (!mc_recoverable_range_len)
145 return 1;
146
147 /* Size required to hold all the entries. */
148 size = mc_recoverable_range_len *
149 sizeof(struct mcheck_recoverable_range);
150
151 /*
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530152 * Allocate a buffer to hold the MC recoverable ranges. We would be
153 * accessing them in real mode, hence it needs to be within
154 * RMO region.
155 */
156 mc_recoverable_range =__va(memblock_alloc_base(size, __alignof__(u64),
157 ppc64_rma_size));
158 memset(mc_recoverable_range, 0, size);
159
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530160 for (i = 0; i < mc_recoverable_range_len; i++) {
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530161 mc_recoverable_range[i].start_addr =
162 of_read_number(prop + (i * 5) + 0, 2);
163 mc_recoverable_range[i].end_addr =
164 mc_recoverable_range[i].start_addr +
165 of_read_number(prop + (i * 5) + 2, 1);
166 mc_recoverable_range[i].recover_addr =
167 of_read_number(prop + (i * 5) + 3, 2);
168
169 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
170 mc_recoverable_range[i].start_addr,
171 mc_recoverable_range[i].end_addr,
172 mc_recoverable_range[i].recover_addr);
173 }
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530174 return 1;
175}
176
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000177static int __init opal_register_exception_handlers(void)
178{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000179#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000180 u64 glue;
181
182 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
183 return -ENODEV;
184
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530185 /* Hookup some exception handlers except machine check. We use the
186 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000187 */
188 glue = 0x7000;
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530189
190 /*
191 * Check if we are running on newer firmware that exports
192 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
193 * the HMI interrupt and we catch it directly in Linux.
194 *
195 * For older firmware (i.e currently released POWER8 System Firmware
196 * as of today <= SV810_087), we fallback to old behavior and let OPAL
197 * patch the HMI vector and handle it inside OPAL firmware.
198 *
199 * For newer firmware (in development/yet to be released) we will
200 * start catching/handling HMI directly in Linux.
201 */
202 if (!opal_check_token(OPAL_HANDLE_HMI)) {
Michael Ellerman08135132015-01-28 15:10:33 +1100203 pr_info("Old firmware detected, OPAL handles HMIs.\n");
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530204 opal_register_exception_handler(
205 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
206 0, glue);
207 glue += 128;
208 }
209
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000210 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000211#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000212
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000213 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000214}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000215machine_early_initcall(powernv, opal_register_exception_handlers);
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000216
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530217/*
218 * Opal message notifier based on message type. Allow subscribers to get
219 * notified for specific messgae type.
220 */
Michael Ellermand7cf83f2015-02-17 20:01:54 +1100221int opal_message_notifier_register(enum opal_msg_type msg_type,
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530222 struct notifier_block *nb)
223{
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530224 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
225 pr_warning("%s: Invalid arguments, msg_type:%d\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530226 __func__, msg_type);
227 return -EINVAL;
228 }
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530229
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530230 return atomic_notifier_chain_register(
231 &opal_msg_notifier_head[msg_type], nb);
232}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800233EXPORT_SYMBOL_GPL(opal_message_notifier_register);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530234
Michael Ellermandf60f572015-03-26 20:03:16 +1100235int opal_message_notifier_unregister(enum opal_msg_type msg_type,
Neelesh Guptab921e902015-02-11 11:57:23 +0530236 struct notifier_block *nb)
237{
238 return atomic_notifier_chain_unregister(
239 &opal_msg_notifier_head[msg_type], nb);
240}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800241EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
Neelesh Guptab921e902015-02-11 11:57:23 +0530242
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530243static void opal_message_do_notify(uint32_t msg_type, void *msg)
244{
245 /* notify subscribers */
246 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
247 msg_type, msg);
248}
249
250static void opal_handle_message(void)
251{
252 s64 ret;
253 /*
254 * TODO: pre-allocate a message buffer depending on opal-msg-size
255 * value in /proc/device-tree.
256 */
257 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100258 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530259
260 ret = opal_get_msg(__pa(&msg), sizeof(msg));
261 /* No opal message pending. */
262 if (ret == OPAL_RESOURCE)
263 return;
264
265 /* check for errors. */
266 if (ret) {
Masanari Iida1a84db52014-08-29 23:37:33 +0900267 pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530268 __func__, ret);
269 return;
270 }
271
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100272 type = be32_to_cpu(msg.msg_type);
273
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530274 /* Sanity check */
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530275 if (type >= OPAL_MSG_TYPE_MAX) {
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100276 pr_warning("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530277 return;
278 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100279 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530280}
281
Alistair Popplea295af22015-05-15 14:06:41 +1000282static irqreturn_t opal_message_notify(int irq, void *data)
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530283{
Alistair Popplea295af22015-05-15 14:06:41 +1000284 opal_handle_message();
285 return IRQ_HANDLED;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530286}
287
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530288static int __init opal_message_init(void)
289{
Alistair Popplea295af22015-05-15 14:06:41 +1000290 int ret, i, irq;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530291
292 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
293 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
294
Alistair Popplea295af22015-05-15 14:06:41 +1000295 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
296 if (!irq) {
297 pr_err("%s: Can't register OPAL event irq (%d)\n",
298 __func__, irq);
299 return irq;
300 }
301
302 ret = request_irq(irq, opal_message_notify,
303 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530304 if (ret) {
Alistair Popplea295af22015-05-15 14:06:41 +1000305 pr_err("%s: Can't request OPAL event irq (%d)\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530306 __func__, ret);
307 return ret;
308 }
Alistair Popplea295af22015-05-15 14:06:41 +1000309
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530310 return 0;
311}
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530312
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000313int opal_get_chars(uint32_t vtermno, char *buf, int count)
314{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000315 s64 rc;
316 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000317
318 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000319 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000320 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000321 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000322 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000323 len = cpu_to_be64(count);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500324 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000325 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000326 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000327 return 0;
328}
329
330int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
331{
332 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000333 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000334 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000335 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000336 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000337
338 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000339 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000340
341 /* We want put_chars to be atomic to avoid mangling of hvsi
342 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000343 * -EAGAIN if there isn't enough.
344 *
345 * Unfortunately, opal_console_write_buffer_space() doesn't
346 * appear to work on opal v1, so we just assume there is
347 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000348 */
349 spin_lock_irqsave(&opal_write_lock, flags);
Stewart Smithe4d54f72015-12-09 17:18:20 +1100350 rc = opal_console_write_buffer_space(vtermno, &olen);
351 len = be64_to_cpu(olen);
352 if (rc || len < total_len) {
353 spin_unlock_irqrestore(&opal_write_lock, flags);
354 /* Closed -> drop characters */
355 if (rc)
356 return total_len;
357 opal_poll_events(NULL);
358 return -EAGAIN;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000359 }
360
361 /* We still try to handle partial completions, though they
362 * should no longer happen.
363 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000364 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000365 while(total_len > 0 && (rc == OPAL_BUSY ||
366 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000367 olen = cpu_to_be64(total_len);
368 rc = opal_console_write(vtermno, &olen, data);
369 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000370
371 /* Closed or other error drop */
372 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
373 rc != OPAL_BUSY_EVENT) {
374 written = total_len;
375 break;
376 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000377 if (rc == OPAL_SUCCESS) {
378 total_len -= len;
379 data += len;
380 written += len;
381 }
382 /* This is a bit nasty but we need that for the console to
383 * flush when there aren't any interrupts. We will clean
384 * things a bit later to limit that to synchronous path
385 * such as the kernel console and xmon/udbg
386 */
387 do
388 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000389 while(rc == OPAL_SUCCESS &&
390 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000391 }
392 spin_unlock_irqrestore(&opal_write_lock, flags);
393 return written;
394}
395
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530396static int opal_recover_mce(struct pt_regs *regs,
397 struct machine_check_event *evt)
398{
399 int recovered = 0;
400 uint64_t ea = get_mce_fault_addr(evt);
401
402 if (!(regs->msr & MSR_RI)) {
403 /* If MSR_RI isn't set, we cannot recover */
404 recovered = 0;
405 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
406 /* Platform corrected itself */
407 recovered = 1;
408 } else if (ea && !is_kernel_addr(ea)) {
409 /*
410 * Faulting address is not in kernel text. We should be fine.
411 * We need to find which process uses this address.
412 * For now, kill the task if we have received exception when
413 * in userspace.
414 *
415 * TODO: Queue up this address for hwpoisioning later.
416 */
417 if (user_mode(regs) && !is_global_init(current)) {
418 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
419 recovered = 1;
420 } else
421 recovered = 0;
422 } else if (user_mode(regs) && !is_global_init(current) &&
423 evt->severity == MCE_SEV_ERROR_SYNC) {
424 /*
425 * If we have received a synchronous error when in userspace
426 * kill the task.
427 */
428 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
429 recovered = 1;
430 }
431 return recovered;
432}
433
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000434int opal_machine_check(struct pt_regs *regs)
435{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530436 struct machine_check_event evt;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530437 int ret;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000438
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530439 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
440 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000441
442 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530443 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000444 pr_err("Machine Check Exception, Unknown event version %d !\n",
445 evt.version);
446 return 0;
447 }
Mahesh Salgaonkarb5ff4212013-10-30 20:05:49 +0530448 machine_check_print_event_info(&evt);
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000449
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530450 if (opal_recover_mce(regs, &evt))
451 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530452
453 /*
454 * Unrecovered machine check, we are heading to panic path.
455 *
456 * We may have hit this MCE in very early stage of kernel
457 * initialization even before opal-prd has started running. If
458 * this is the case then this MCE error may go un-noticed or
459 * un-analyzed if we go down panic path. We need to inform
460 * BMC/OCC about this error so that they can collect relevant
461 * data for error analysis before rebooting.
462 * Use opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR) to do so.
463 * This function may not return on BMC based system.
464 */
465 ret = opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR,
466 "Unrecoverable Machine Check exception");
467 if (ret == OPAL_UNSUPPORTED) {
468 pr_emerg("Reboot type %d not supported\n",
469 OPAL_REBOOT_PLATFORM_ERROR);
470 }
471
472 /*
473 * We reached here. There can be three possibilities:
474 * 1. We are running on a firmware level that do not support
475 * opal_cec_reboot2()
476 * 2. We are running on a firmware level that do not support
477 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
478 * 3. We are running on FSP based system that does not need opal
479 * to trigger checkstop explicitly for error analysis. The FSP
480 * PRD component would have already got notified about this
481 * error through other channels.
482 *
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000483 * If hardware marked this as an unrecoverable MCE, we are
484 * going to panic anyway. Even if it didn't, it's not safe to
485 * continue at this point, so we should explicitly panic.
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530486 */
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000487
488 panic("PowerNV Unrecovered Machine Check");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530489 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000490}
491
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530492/* Early hmi handler called in real mode. */
493int opal_hmi_exception_early(struct pt_regs *regs)
494{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530495 s64 rc;
496
497 /*
498 * call opal hmi handler. Pass paca address as token.
499 * The return value OPAL_SUCCESS is an indication that there is
500 * an HMI event generated waiting to pull by Linux.
501 */
502 rc = opal_handle_hmi();
503 if (rc == OPAL_SUCCESS) {
504 local_paca->hmi_event_available = 1;
505 return 1;
506 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530507 return 0;
508}
509
510/* HMI exception handler called in virtual mode during check_irq_replay. */
511int opal_handle_hmi_exception(struct pt_regs *regs)
512{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530513 s64 rc;
514 __be64 evt = 0;
515
516 /*
517 * Check if HMI event is available.
518 * if Yes, then call opal_poll_events to pull opal messages and
519 * process them.
520 */
521 if (!local_paca->hmi_event_available)
522 return 0;
523
524 local_paca->hmi_event_available = 0;
525 rc = opal_poll_events(&evt);
Alistair Popple81f2f7c2015-05-15 14:06:44 +1000526 if (rc == OPAL_SUCCESS && evt)
Alistair Popple9f0fd042015-05-15 14:06:37 +1000527 opal_handle_events(be64_to_cpu(evt));
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530528
529 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530530}
531
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530532static uint64_t find_recovery_address(uint64_t nip)
533{
534 int i;
535
536 for (i = 0; i < mc_recoverable_range_len; i++)
537 if ((nip >= mc_recoverable_range[i].start_addr) &&
538 (nip < mc_recoverable_range[i].end_addr))
539 return mc_recoverable_range[i].recover_addr;
540 return 0;
541}
542
543bool opal_mce_check_early_recovery(struct pt_regs *regs)
544{
545 uint64_t recover_addr = 0;
546
547 if (!opal.base || !opal.size)
548 goto out;
549
550 if ((regs->nip >= opal.base) &&
551 (regs->nip <= (opal.base + opal.size)))
552 recover_addr = find_recovery_address(regs->nip);
553
554 /*
555 * Setup regs->nip to rfi into fixup address.
556 */
557 if (recover_addr)
558 regs->nip = recover_addr;
559
560out:
561 return !!recover_addr;
562}
563
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530564static int opal_sysfs_init(void)
565{
566 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
567 if (!opal_kobj) {
568 pr_warn("kobject_create_and_add opal failed\n");
569 return -ENOMEM;
570 }
571
572 return 0;
573}
574
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100575static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
576 struct bin_attribute *bin_attr,
577 char *buf, loff_t off, size_t count)
578{
579 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
580 bin_attr->size);
581}
582
583static BIN_ATTR_RO(symbol_map, 0);
584
585static void opal_export_symmap(void)
586{
587 const __be64 *syms;
588 unsigned int size;
589 struct device_node *fw;
590 int rc;
591
592 fw = of_find_node_by_path("/ibm,opal/firmware");
593 if (!fw)
594 return;
595 syms = of_get_property(fw, "symbol-map", &size);
596 if (!syms || size != 2 * sizeof(__be64))
597 return;
598
599 /* Setup attributes */
600 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
601 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
602
603 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
604 if (rc)
605 pr_warn("Error %d creating OPAL symbols file\n", rc);
606}
607
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530608static void __init opal_dump_region_init(void)
609{
610 void *addr;
611 uint64_t size;
612 int rc;
613
Stewart Smithb962f5a2015-02-12 16:25:27 +1100614 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
615 return;
616
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530617 /* Register kernel log buffer */
618 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500619 if (addr == NULL)
620 return;
621
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530622 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500623 if (size == 0)
624 return;
625
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530626 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
627 __pa(addr), size);
628 /* Don't warn if this is just an older OPAL that doesn't
629 * know about that call
630 */
631 if (rc && rc != OPAL_UNSUPPORTED)
632 pr_warn("DUMP: Failed to register kernel log buffer. "
633 "rc = %d\n", rc);
634}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800635
Jeremy Kerr48c06152015-05-20 11:23:33 +0800636static void opal_pdev_init(struct device_node *opal_node,
637 const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800638{
639 struct device_node *np;
640
641 for_each_child_of_node(opal_node, np)
Jeremy Kerr48c06152015-05-20 11:23:33 +0800642 if (of_device_is_compatible(np, compatible))
Jeremy Kerr608b2862014-11-06 11:38:27 +0800643 of_platform_device_create(np, NULL, NULL);
644}
645
Neelesh Gupta47083452014-12-13 23:31:05 +0530646static void opal_i2c_create_devs(void)
647{
648 struct device_node *np;
649
650 for_each_compatible_node(np, NULL, "ibm,opal-i2c")
651 of_platform_device_create(np, NULL, NULL);
652}
653
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100654static int kopald(void *unused)
655{
Alistair Popple9f0fd042015-05-15 14:06:37 +1000656 __be64 events;
657
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100658 set_freezable();
659 do {
660 try_to_freeze();
Alistair Popple9f0fd042015-05-15 14:06:37 +1000661 opal_poll_events(&events);
662 opal_handle_events(be64_to_cpu(events));
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100663 msleep_interruptible(opal_heartbeat);
664 } while (!kthread_should_stop());
665
666 return 0;
667}
668
669static void opal_init_heartbeat(void)
670{
671 /* Old firwmware, we assume the HVC heartbeat is sufficient */
672 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
673 &opal_heartbeat) != 0)
674 opal_heartbeat = 0;
675
676 if (opal_heartbeat)
677 kthread_run(kopald, NULL, "kopald");
678}
679
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000680static int __init opal_init(void)
681{
Vasant Hegdec159b592015-08-19 22:19:53 +0530682 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100683 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000684
685 opal_node = of_find_node_by_path("/ibm,opal");
686 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100687 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000688 return -ENODEV;
689 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000690
691 /* Register OPAL consoles if any ports */
Stewart Smith7261aaf2015-12-09 17:18:19 +1100692 consoles = of_find_node_by_path("/ibm,opal/consoles");
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000693 if (consoles) {
694 for_each_child_of_node(consoles, np) {
695 if (strcmp(np->name, "serial"))
696 continue;
697 of_platform_device_create(np, NULL, NULL);
698 }
699 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000700 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000701
Alistair Popple96e023e2015-05-15 14:06:36 +1000702 /* Initialise OPAL messaging system */
703 opal_message_init();
704
705 /* Initialise OPAL asynchronous completion interface */
706 opal_async_comp_init();
707
708 /* Initialise OPAL sensor interface */
709 opal_sensor_init();
710
711 /* Initialise OPAL hypervisor maintainence interrupt handling */
712 opal_hmi_handler_init();
713
Neelesh Gupta47083452014-12-13 23:31:05 +0530714 /* Create i2c platform devices */
715 opal_i2c_create_devs();
716
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100717 /* Setup a heatbeat thread if requested by OPAL */
718 opal_init_heartbeat();
719
Vasant Hegdec159b592015-08-19 22:19:53 +0530720 /* Create leds platform devices */
721 leds = of_find_node_by_path("/ibm,opal/leds");
722 if (leds) {
723 of_platform_device_create(leds, "opal_leds", NULL);
724 of_node_put(leds);
725 }
726
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530727 /* Create "opal" kobject under /sys/firmware */
728 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530729 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100730 /* Export symbol map to userspace */
731 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530732 /* Setup dump region interface */
733 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100734 /* Setup error log interface */
735 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530736 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800737 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100738 /* Setup platform dump extract interface */
739 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530740 /* Setup system parameters interface */
741 opal_sys_param_init();
Joel Stanleybfc36892014-04-01 14:28:19 +1030742 /* Setup message log interface. */
743 opal_msglog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530744 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530745
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800746 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jeremy Kerr48c06152015-05-20 11:23:33 +0800747 opal_pdev_init(opal_node, "ibm,opal-ipmi");
748 opal_pdev_init(opal_node, "ibm,opal-flash");
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800749 opal_pdev_init(opal_node, "ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800750
Russell Curreyaffddff2015-11-27 17:23:07 +1100751 /* Initialise OPAL kmsg dumper for flushing console on panic */
752 opal_kmsg_init();
753
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000754 return 0;
755}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000756machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000757
758void opal_shutdown(void)
759{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100760 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000761
Alistair Popple9f0fd042015-05-15 14:06:37 +1000762 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100763
764 /*
765 * Then sync with OPAL which ensure anything that can
766 * potentially write to our memory has completed such
767 * as an ongoing dump retrieval
768 */
769 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
770 rc = opal_sync_host_reboot();
771 if (rc == OPAL_BUSY)
772 opal_poll_events(NULL);
773 else
774 mdelay(10);
775 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530776
777 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100778 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
779 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000780}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030781
782/* Export this so that test modules can use it */
783EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800784EXPORT_SYMBOL_GPL(opal_xscom_read);
785EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800786EXPORT_SYMBOL_GPL(opal_ipmi_send);
787EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800788EXPORT_SYMBOL_GPL(opal_flash_read);
789EXPORT_SYMBOL_GPL(opal_flash_write);
790EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800791EXPORT_SYMBOL_GPL(opal_prd_msg);
Anton Blanchard3441f042014-04-22 15:01:26 +1000792
793/* Convert a region of vmalloc memory to an opal sg list */
794struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
795 unsigned long vmalloc_size)
796{
797 struct opal_sg_list *sg, *first = NULL;
798 unsigned long i = 0;
799
800 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
801 if (!sg)
802 goto nomem;
803
804 first = sg;
805
806 while (vmalloc_size > 0) {
807 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
808 uint64_t length = min(vmalloc_size, PAGE_SIZE);
809
810 sg->entry[i].data = cpu_to_be64(data);
811 sg->entry[i].length = cpu_to_be64(length);
812 i++;
813
814 if (i >= SG_ENTRIES_PER_NODE) {
815 struct opal_sg_list *next;
816
817 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
818 if (!next)
819 goto nomem;
820
821 sg->length = cpu_to_be64(
822 i * sizeof(struct opal_sg_entry) + 16);
823 i = 0;
824 sg->next = cpu_to_be64(__pa(next));
825 sg = next;
826 }
827
828 vmalloc_addr += length;
829 vmalloc_size -= length;
830 }
831
832 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
833
834 return first;
835
836nomem:
837 pr_err("%s : Failed to allocate memory\n", __func__);
838 opal_free_sg_list(first);
839 return NULL;
840}
841
842void opal_free_sg_list(struct opal_sg_list *sg)
843{
844 while (sg) {
845 uint64_t next = be64_to_cpu(sg->next);
846
847 kfree(sg);
848
849 if (next)
850 sg = __va(next);
851 else
852 sg = NULL;
853 }
854}
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530855
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200856int opal_error_code(int rc)
857{
858 switch (rc) {
859 case OPAL_SUCCESS: return 0;
860
861 case OPAL_PARAMETER: return -EINVAL;
862 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
863 case OPAL_BUSY_EVENT: return -EBUSY;
864 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +0200865 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200866
867 case OPAL_UNSUPPORTED: return -EIO;
868 case OPAL_HARDWARE: return -EIO;
869 case OPAL_INTERNAL_ERROR: return -EIO;
870 default:
871 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
872 return -EIO;
873 }
874}
875
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530876EXPORT_SYMBOL_GPL(opal_poll_events);
877EXPORT_SYMBOL_GPL(opal_rtc_read);
878EXPORT_SYMBOL_GPL(opal_rtc_write);
879EXPORT_SYMBOL_GPL(opal_tpo_read);
880EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +0530881EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +0530882/* Export these symbols for PowerNV LED class driver */
883EXPORT_SYMBOL_GPL(opal_leds_get_ind);
884EXPORT_SYMBOL_GPL(opal_leds_set_ind);