blob: faea1abaa785934b76c2872290e419fcf34f9c78 [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
101 powerpc_firmware_features |= FW_FEATURE_OPAL;
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +1000102 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
103 powerpc_firmware_features |= FW_FEATURE_OPALv2;
104 powerpc_firmware_features |= FW_FEATURE_OPALv3;
Anton Blanchard9a4f5cd2014-09-17 14:39:38 +1000105 pr_info("OPAL V3 detected !\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000106 } else {
Stewart Smith786842b2015-12-09 17:18:18 +1100107 panic("OPAL != V3 detected, no longer supported.\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000108 }
109
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +1000110 /* Reinit all cores with the right endian */
111 opal_reinit_cores();
112
113 /* Restore some bits */
114 if (cur_cpu_spec->cpu_restore)
115 cur_cpu_spec->cpu_restore();
116
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000117 return 1;
118}
119
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530120int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
121 const char *uname, int depth, void *data)
122{
Rob Herring9d0c4df2014-04-01 23:49:03 -0500123 int i, psize, size;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530124 const __be32 *prop;
125
126 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
127 return 0;
128
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530129 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530130
131 if (!prop)
132 return 1;
133
134 pr_debug("Found machine check recoverable ranges.\n");
135
136 /*
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530137 * Calculate number of available entries.
138 *
139 * Each recoverable address range entry is (start address, len,
140 * recovery address), 2 cells each for start and recovery address,
141 * 1 cell for len, totalling 5 cells per entry.
142 */
143 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
144
145 /* Sanity check */
146 if (!mc_recoverable_range_len)
147 return 1;
148
149 /* Size required to hold all the entries. */
150 size = mc_recoverable_range_len *
151 sizeof(struct mcheck_recoverable_range);
152
153 /*
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530154 * Allocate a buffer to hold the MC recoverable ranges. We would be
155 * accessing them in real mode, hence it needs to be within
156 * RMO region.
157 */
158 mc_recoverable_range =__va(memblock_alloc_base(size, __alignof__(u64),
159 ppc64_rma_size));
160 memset(mc_recoverable_range, 0, size);
161
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530162 for (i = 0; i < mc_recoverable_range_len; i++) {
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530163 mc_recoverable_range[i].start_addr =
164 of_read_number(prop + (i * 5) + 0, 2);
165 mc_recoverable_range[i].end_addr =
166 mc_recoverable_range[i].start_addr +
167 of_read_number(prop + (i * 5) + 2, 1);
168 mc_recoverable_range[i].recover_addr =
169 of_read_number(prop + (i * 5) + 3, 2);
170
171 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
172 mc_recoverable_range[i].start_addr,
173 mc_recoverable_range[i].end_addr,
174 mc_recoverable_range[i].recover_addr);
175 }
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530176 return 1;
177}
178
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000179static int __init opal_register_exception_handlers(void)
180{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000181#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000182 u64 glue;
183
184 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
185 return -ENODEV;
186
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530187 /* Hookup some exception handlers except machine check. We use the
188 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000189 */
190 glue = 0x7000;
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530191
192 /*
193 * Check if we are running on newer firmware that exports
194 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
195 * the HMI interrupt and we catch it directly in Linux.
196 *
197 * For older firmware (i.e currently released POWER8 System Firmware
198 * as of today <= SV810_087), we fallback to old behavior and let OPAL
199 * patch the HMI vector and handle it inside OPAL firmware.
200 *
201 * For newer firmware (in development/yet to be released) we will
202 * start catching/handling HMI directly in Linux.
203 */
204 if (!opal_check_token(OPAL_HANDLE_HMI)) {
Michael Ellerman08135132015-01-28 15:10:33 +1100205 pr_info("Old firmware detected, OPAL handles HMIs.\n");
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530206 opal_register_exception_handler(
207 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
208 0, glue);
209 glue += 128;
210 }
211
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000212 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000213#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000214
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000215 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000216}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000217machine_early_initcall(powernv, opal_register_exception_handlers);
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000218
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530219/*
220 * Opal message notifier based on message type. Allow subscribers to get
221 * notified for specific messgae type.
222 */
Michael Ellermand7cf83f2015-02-17 20:01:54 +1100223int opal_message_notifier_register(enum opal_msg_type msg_type,
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530224 struct notifier_block *nb)
225{
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530226 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
227 pr_warning("%s: Invalid arguments, msg_type:%d\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530228 __func__, msg_type);
229 return -EINVAL;
230 }
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530231
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530232 return atomic_notifier_chain_register(
233 &opal_msg_notifier_head[msg_type], nb);
234}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800235EXPORT_SYMBOL_GPL(opal_message_notifier_register);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530236
Michael Ellermandf60f572015-03-26 20:03:16 +1100237int opal_message_notifier_unregister(enum opal_msg_type msg_type,
Neelesh Guptab921e902015-02-11 11:57:23 +0530238 struct notifier_block *nb)
239{
240 return atomic_notifier_chain_unregister(
241 &opal_msg_notifier_head[msg_type], nb);
242}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800243EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
Neelesh Guptab921e902015-02-11 11:57:23 +0530244
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530245static void opal_message_do_notify(uint32_t msg_type, void *msg)
246{
247 /* notify subscribers */
248 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
249 msg_type, msg);
250}
251
252static void opal_handle_message(void)
253{
254 s64 ret;
255 /*
256 * TODO: pre-allocate a message buffer depending on opal-msg-size
257 * value in /proc/device-tree.
258 */
259 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100260 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530261
262 ret = opal_get_msg(__pa(&msg), sizeof(msg));
263 /* No opal message pending. */
264 if (ret == OPAL_RESOURCE)
265 return;
266
267 /* check for errors. */
268 if (ret) {
Masanari Iida1a84db52014-08-29 23:37:33 +0900269 pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530270 __func__, ret);
271 return;
272 }
273
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100274 type = be32_to_cpu(msg.msg_type);
275
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530276 /* Sanity check */
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530277 if (type >= OPAL_MSG_TYPE_MAX) {
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100278 pr_warning("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530279 return;
280 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100281 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530282}
283
Alistair Popplea295af22015-05-15 14:06:41 +1000284static irqreturn_t opal_message_notify(int irq, void *data)
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530285{
Alistair Popplea295af22015-05-15 14:06:41 +1000286 opal_handle_message();
287 return IRQ_HANDLED;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530288}
289
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530290static int __init opal_message_init(void)
291{
Alistair Popplea295af22015-05-15 14:06:41 +1000292 int ret, i, irq;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530293
294 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
295 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
296
Alistair Popplea295af22015-05-15 14:06:41 +1000297 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
298 if (!irq) {
299 pr_err("%s: Can't register OPAL event irq (%d)\n",
300 __func__, irq);
301 return irq;
302 }
303
304 ret = request_irq(irq, opal_message_notify,
305 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530306 if (ret) {
Alistair Popplea295af22015-05-15 14:06:41 +1000307 pr_err("%s: Can't request OPAL event irq (%d)\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530308 __func__, ret);
309 return ret;
310 }
Alistair Popplea295af22015-05-15 14:06:41 +1000311
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530312 return 0;
313}
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530314
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000315int opal_get_chars(uint32_t vtermno, char *buf, int count)
316{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000317 s64 rc;
318 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000319
320 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000321 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000322 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000323 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000324 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000325 len = cpu_to_be64(count);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500326 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000327 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000328 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000329 return 0;
330}
331
332int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
333{
334 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000335 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000336 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000337 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000338 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000339
340 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000341 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000342
343 /* We want put_chars to be atomic to avoid mangling of hvsi
344 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000345 * -EAGAIN if there isn't enough.
346 *
347 * Unfortunately, opal_console_write_buffer_space() doesn't
348 * appear to work on opal v1, so we just assume there is
349 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000350 */
351 spin_lock_irqsave(&opal_write_lock, flags);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000352 if (firmware_has_feature(FW_FEATURE_OPALv2)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000353 rc = opal_console_write_buffer_space(vtermno, &olen);
354 len = be64_to_cpu(olen);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000355 if (rc || len < total_len) {
356 spin_unlock_irqrestore(&opal_write_lock, flags);
357 /* Closed -> drop characters */
358 if (rc)
359 return total_len;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000360 opal_poll_events(NULL);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000361 return -EAGAIN;
362 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000363 }
364
365 /* We still try to handle partial completions, though they
366 * should no longer happen.
367 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000368 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000369 while(total_len > 0 && (rc == OPAL_BUSY ||
370 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000371 olen = cpu_to_be64(total_len);
372 rc = opal_console_write(vtermno, &olen, data);
373 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000374
375 /* Closed or other error drop */
376 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
377 rc != OPAL_BUSY_EVENT) {
378 written = total_len;
379 break;
380 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000381 if (rc == OPAL_SUCCESS) {
382 total_len -= len;
383 data += len;
384 written += len;
385 }
386 /* This is a bit nasty but we need that for the console to
387 * flush when there aren't any interrupts. We will clean
388 * things a bit later to limit that to synchronous path
389 * such as the kernel console and xmon/udbg
390 */
391 do
392 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000393 while(rc == OPAL_SUCCESS &&
394 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000395 }
396 spin_unlock_irqrestore(&opal_write_lock, flags);
397 return written;
398}
399
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530400static int opal_recover_mce(struct pt_regs *regs,
401 struct machine_check_event *evt)
402{
403 int recovered = 0;
404 uint64_t ea = get_mce_fault_addr(evt);
405
406 if (!(regs->msr & MSR_RI)) {
407 /* If MSR_RI isn't set, we cannot recover */
408 recovered = 0;
409 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
410 /* Platform corrected itself */
411 recovered = 1;
412 } else if (ea && !is_kernel_addr(ea)) {
413 /*
414 * Faulting address is not in kernel text. We should be fine.
415 * We need to find which process uses this address.
416 * For now, kill the task if we have received exception when
417 * in userspace.
418 *
419 * TODO: Queue up this address for hwpoisioning later.
420 */
421 if (user_mode(regs) && !is_global_init(current)) {
422 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
423 recovered = 1;
424 } else
425 recovered = 0;
426 } else if (user_mode(regs) && !is_global_init(current) &&
427 evt->severity == MCE_SEV_ERROR_SYNC) {
428 /*
429 * If we have received a synchronous error when in userspace
430 * kill the task.
431 */
432 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
433 recovered = 1;
434 }
435 return recovered;
436}
437
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000438int opal_machine_check(struct pt_regs *regs)
439{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530440 struct machine_check_event evt;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530441 int ret;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000442
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530443 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
444 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000445
446 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530447 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000448 pr_err("Machine Check Exception, Unknown event version %d !\n",
449 evt.version);
450 return 0;
451 }
Mahesh Salgaonkarb5ff4212013-10-30 20:05:49 +0530452 machine_check_print_event_info(&evt);
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000453
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530454 if (opal_recover_mce(regs, &evt))
455 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530456
457 /*
458 * Unrecovered machine check, we are heading to panic path.
459 *
460 * We may have hit this MCE in very early stage of kernel
461 * initialization even before opal-prd has started running. If
462 * this is the case then this MCE error may go un-noticed or
463 * un-analyzed if we go down panic path. We need to inform
464 * BMC/OCC about this error so that they can collect relevant
465 * data for error analysis before rebooting.
466 * Use opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR) to do so.
467 * This function may not return on BMC based system.
468 */
469 ret = opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR,
470 "Unrecoverable Machine Check exception");
471 if (ret == OPAL_UNSUPPORTED) {
472 pr_emerg("Reboot type %d not supported\n",
473 OPAL_REBOOT_PLATFORM_ERROR);
474 }
475
476 /*
477 * We reached here. There can be three possibilities:
478 * 1. We are running on a firmware level that do not support
479 * opal_cec_reboot2()
480 * 2. We are running on a firmware level that do not support
481 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
482 * 3. We are running on FSP based system that does not need opal
483 * to trigger checkstop explicitly for error analysis. The FSP
484 * PRD component would have already got notified about this
485 * error through other channels.
486 *
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000487 * If hardware marked this as an unrecoverable MCE, we are
488 * going to panic anyway. Even if it didn't, it's not safe to
489 * continue at this point, so we should explicitly panic.
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530490 */
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000491
492 panic("PowerNV Unrecovered Machine Check");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530493 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000494}
495
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530496/* Early hmi handler called in real mode. */
497int opal_hmi_exception_early(struct pt_regs *regs)
498{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530499 s64 rc;
500
501 /*
502 * call opal hmi handler. Pass paca address as token.
503 * The return value OPAL_SUCCESS is an indication that there is
504 * an HMI event generated waiting to pull by Linux.
505 */
506 rc = opal_handle_hmi();
507 if (rc == OPAL_SUCCESS) {
508 local_paca->hmi_event_available = 1;
509 return 1;
510 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530511 return 0;
512}
513
514/* HMI exception handler called in virtual mode during check_irq_replay. */
515int opal_handle_hmi_exception(struct pt_regs *regs)
516{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530517 s64 rc;
518 __be64 evt = 0;
519
520 /*
521 * Check if HMI event is available.
522 * if Yes, then call opal_poll_events to pull opal messages and
523 * process them.
524 */
525 if (!local_paca->hmi_event_available)
526 return 0;
527
528 local_paca->hmi_event_available = 0;
529 rc = opal_poll_events(&evt);
Alistair Popple81f2f7c2015-05-15 14:06:44 +1000530 if (rc == OPAL_SUCCESS && evt)
Alistair Popple9f0fd042015-05-15 14:06:37 +1000531 opal_handle_events(be64_to_cpu(evt));
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530532
533 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530534}
535
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530536static uint64_t find_recovery_address(uint64_t nip)
537{
538 int i;
539
540 for (i = 0; i < mc_recoverable_range_len; i++)
541 if ((nip >= mc_recoverable_range[i].start_addr) &&
542 (nip < mc_recoverable_range[i].end_addr))
543 return mc_recoverable_range[i].recover_addr;
544 return 0;
545}
546
547bool opal_mce_check_early_recovery(struct pt_regs *regs)
548{
549 uint64_t recover_addr = 0;
550
551 if (!opal.base || !opal.size)
552 goto out;
553
554 if ((regs->nip >= opal.base) &&
555 (regs->nip <= (opal.base + opal.size)))
556 recover_addr = find_recovery_address(regs->nip);
557
558 /*
559 * Setup regs->nip to rfi into fixup address.
560 */
561 if (recover_addr)
562 regs->nip = recover_addr;
563
564out:
565 return !!recover_addr;
566}
567
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530568static int opal_sysfs_init(void)
569{
570 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
571 if (!opal_kobj) {
572 pr_warn("kobject_create_and_add opal failed\n");
573 return -ENOMEM;
574 }
575
576 return 0;
577}
578
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100579static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
580 struct bin_attribute *bin_attr,
581 char *buf, loff_t off, size_t count)
582{
583 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
584 bin_attr->size);
585}
586
587static BIN_ATTR_RO(symbol_map, 0);
588
589static void opal_export_symmap(void)
590{
591 const __be64 *syms;
592 unsigned int size;
593 struct device_node *fw;
594 int rc;
595
596 fw = of_find_node_by_path("/ibm,opal/firmware");
597 if (!fw)
598 return;
599 syms = of_get_property(fw, "symbol-map", &size);
600 if (!syms || size != 2 * sizeof(__be64))
601 return;
602
603 /* Setup attributes */
604 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
605 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
606
607 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
608 if (rc)
609 pr_warn("Error %d creating OPAL symbols file\n", rc);
610}
611
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530612static void __init opal_dump_region_init(void)
613{
614 void *addr;
615 uint64_t size;
616 int rc;
617
Stewart Smithb962f5a2015-02-12 16:25:27 +1100618 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
619 return;
620
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530621 /* Register kernel log buffer */
622 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500623 if (addr == NULL)
624 return;
625
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530626 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500627 if (size == 0)
628 return;
629
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530630 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
631 __pa(addr), size);
632 /* Don't warn if this is just an older OPAL that doesn't
633 * know about that call
634 */
635 if (rc && rc != OPAL_UNSUPPORTED)
636 pr_warn("DUMP: Failed to register kernel log buffer. "
637 "rc = %d\n", rc);
638}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800639
Jeremy Kerr48c06152015-05-20 11:23:33 +0800640static void opal_pdev_init(struct device_node *opal_node,
641 const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800642{
643 struct device_node *np;
644
645 for_each_child_of_node(opal_node, np)
Jeremy Kerr48c06152015-05-20 11:23:33 +0800646 if (of_device_is_compatible(np, compatible))
Jeremy Kerr608b2862014-11-06 11:38:27 +0800647 of_platform_device_create(np, NULL, NULL);
648}
649
Neelesh Gupta47083452014-12-13 23:31:05 +0530650static void opal_i2c_create_devs(void)
651{
652 struct device_node *np;
653
654 for_each_compatible_node(np, NULL, "ibm,opal-i2c")
655 of_platform_device_create(np, NULL, NULL);
656}
657
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100658static int kopald(void *unused)
659{
Alistair Popple9f0fd042015-05-15 14:06:37 +1000660 __be64 events;
661
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100662 set_freezable();
663 do {
664 try_to_freeze();
Alistair Popple9f0fd042015-05-15 14:06:37 +1000665 opal_poll_events(&events);
666 opal_handle_events(be64_to_cpu(events));
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100667 msleep_interruptible(opal_heartbeat);
668 } while (!kthread_should_stop());
669
670 return 0;
671}
672
673static void opal_init_heartbeat(void)
674{
675 /* Old firwmware, we assume the HVC heartbeat is sufficient */
676 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
677 &opal_heartbeat) != 0)
678 opal_heartbeat = 0;
679
680 if (opal_heartbeat)
681 kthread_run(kopald, NULL, "kopald");
682}
683
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000684static int __init opal_init(void)
685{
Vasant Hegdec159b592015-08-19 22:19:53 +0530686 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100687 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000688
689 opal_node = of_find_node_by_path("/ibm,opal");
690 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100691 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000692 return -ENODEV;
693 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000694
695 /* Register OPAL consoles if any ports */
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000696 if (firmware_has_feature(FW_FEATURE_OPALv2))
697 consoles = of_find_node_by_path("/ibm,opal/consoles");
698 else
699 consoles = of_node_get(opal_node);
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000700 if (consoles) {
701 for_each_child_of_node(consoles, np) {
702 if (strcmp(np->name, "serial"))
703 continue;
704 of_platform_device_create(np, NULL, NULL);
705 }
706 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000707 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000708
Alistair Popple96e023e2015-05-15 14:06:36 +1000709 /* Initialise OPAL messaging system */
710 opal_message_init();
711
712 /* Initialise OPAL asynchronous completion interface */
713 opal_async_comp_init();
714
715 /* Initialise OPAL sensor interface */
716 opal_sensor_init();
717
718 /* Initialise OPAL hypervisor maintainence interrupt handling */
719 opal_hmi_handler_init();
720
Neelesh Gupta47083452014-12-13 23:31:05 +0530721 /* Create i2c platform devices */
722 opal_i2c_create_devs();
723
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100724 /* Setup a heatbeat thread if requested by OPAL */
725 opal_init_heartbeat();
726
Vasant Hegdec159b592015-08-19 22:19:53 +0530727 /* Create leds platform devices */
728 leds = of_find_node_by_path("/ibm,opal/leds");
729 if (leds) {
730 of_platform_device_create(leds, "opal_leds", NULL);
731 of_node_put(leds);
732 }
733
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530734 /* Create "opal" kobject under /sys/firmware */
735 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530736 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100737 /* Export symbol map to userspace */
738 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530739 /* Setup dump region interface */
740 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100741 /* Setup error log interface */
742 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530743 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800744 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100745 /* Setup platform dump extract interface */
746 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530747 /* Setup system parameters interface */
748 opal_sys_param_init();
Joel Stanleybfc36892014-04-01 14:28:19 +1030749 /* Setup message log interface. */
750 opal_msglog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530751 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530752
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800753 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jeremy Kerr48c06152015-05-20 11:23:33 +0800754 opal_pdev_init(opal_node, "ibm,opal-ipmi");
755 opal_pdev_init(opal_node, "ibm,opal-flash");
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800756 opal_pdev_init(opal_node, "ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800757
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000758 return 0;
759}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000760machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000761
762void opal_shutdown(void)
763{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100764 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000765
Alistair Popple9f0fd042015-05-15 14:06:37 +1000766 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100767
768 /*
769 * Then sync with OPAL which ensure anything that can
770 * potentially write to our memory has completed such
771 * as an ongoing dump retrieval
772 */
773 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
774 rc = opal_sync_host_reboot();
775 if (rc == OPAL_BUSY)
776 opal_poll_events(NULL);
777 else
778 mdelay(10);
779 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530780
781 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100782 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
783 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000784}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030785
786/* Export this so that test modules can use it */
787EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800788EXPORT_SYMBOL_GPL(opal_xscom_read);
789EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800790EXPORT_SYMBOL_GPL(opal_ipmi_send);
791EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800792EXPORT_SYMBOL_GPL(opal_flash_read);
793EXPORT_SYMBOL_GPL(opal_flash_write);
794EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800795EXPORT_SYMBOL_GPL(opal_prd_msg);
Anton Blanchard3441f042014-04-22 15:01:26 +1000796
797/* Convert a region of vmalloc memory to an opal sg list */
798struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
799 unsigned long vmalloc_size)
800{
801 struct opal_sg_list *sg, *first = NULL;
802 unsigned long i = 0;
803
804 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
805 if (!sg)
806 goto nomem;
807
808 first = sg;
809
810 while (vmalloc_size > 0) {
811 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
812 uint64_t length = min(vmalloc_size, PAGE_SIZE);
813
814 sg->entry[i].data = cpu_to_be64(data);
815 sg->entry[i].length = cpu_to_be64(length);
816 i++;
817
818 if (i >= SG_ENTRIES_PER_NODE) {
819 struct opal_sg_list *next;
820
821 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
822 if (!next)
823 goto nomem;
824
825 sg->length = cpu_to_be64(
826 i * sizeof(struct opal_sg_entry) + 16);
827 i = 0;
828 sg->next = cpu_to_be64(__pa(next));
829 sg = next;
830 }
831
832 vmalloc_addr += length;
833 vmalloc_size -= length;
834 }
835
836 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
837
838 return first;
839
840nomem:
841 pr_err("%s : Failed to allocate memory\n", __func__);
842 opal_free_sg_list(first);
843 return NULL;
844}
845
846void opal_free_sg_list(struct opal_sg_list *sg)
847{
848 while (sg) {
849 uint64_t next = be64_to_cpu(sg->next);
850
851 kfree(sg);
852
853 if (next)
854 sg = __va(next);
855 else
856 sg = NULL;
857 }
858}
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530859
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200860int opal_error_code(int rc)
861{
862 switch (rc) {
863 case OPAL_SUCCESS: return 0;
864
865 case OPAL_PARAMETER: return -EINVAL;
866 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
867 case OPAL_BUSY_EVENT: return -EBUSY;
868 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +0200869 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200870
871 case OPAL_UNSUPPORTED: return -EIO;
872 case OPAL_HARDWARE: return -EIO;
873 case OPAL_INTERNAL_ERROR: return -EIO;
874 default:
875 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
876 return -EIO;
877 }
878}
879
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530880EXPORT_SYMBOL_GPL(opal_poll_events);
881EXPORT_SYMBOL_GPL(opal_rtc_read);
882EXPORT_SYMBOL_GPL(opal_rtc_write);
883EXPORT_SYMBOL_GPL(opal_tpo_read);
884EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +0530885EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +0530886/* Export these symbols for PowerNV LED class driver */
887EXPORT_SYMBOL_GPL(opal_leds_get_ind);
888EXPORT_SYMBOL_GPL(opal_leds_set_ind);