blob: f659edbc50567f6af9a16eab065964661da758bd [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>
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +053019#include <linux/of_address.h>
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +000020#include <linux/interrupt.h>
Gavin Shan1bc98de2013-06-20 18:13:22 +080021#include <linux/notifier.h>
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100022#include <linux/slab.h>
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +053023#include <linux/sched.h>
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053024#include <linux/kobject.h>
Vasant Hegdef7d98d12014-01-15 17:02:04 +110025#include <linux/delay.h>
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053026#include <linux/memblock.h>
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +110027#include <linux/kthread.h>
28#include <linux/freezer.h>
Michael Ellermanb14726c2014-07-15 22:22:24 +100029
30#include <asm/machdep.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000031#include <asm/opal.h>
32#include <asm/firmware.h>
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +053033#include <asm/mce.h>
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +053034#include <asm/imc-pmu.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000035
36#include "powernv.h"
37
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053038/* /sys/firmware/opal */
39struct kobject *opal_kobj;
40
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000041struct opal {
42 u64 base;
43 u64 entry;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053044 u64 size;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000045} opal;
46
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053047struct mcheck_recoverable_range {
48 u64 start_addr;
49 u64 end_addr;
50 u64 recover_addr;
51};
52
53static struct mcheck_recoverable_range *mc_recoverable_range;
54static int mc_recoverable_range_len;
55
Joel Stanleybfc36892014-04-01 14:28:19 +103056struct device_node *opal_node;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000057static DEFINE_SPINLOCK(opal_write_lock);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +053058static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX];
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +110059static uint32_t opal_heartbeat;
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +100060static struct task_struct *kopald_tsk;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000061
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100062void opal_configure_cores(void)
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100063{
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050064 u64 reinit_flags = 0;
65
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100066 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
67 *
68 * It will preserve non volatile GPRs and HSPRG0/1. It will
69 * also restore HIDs and other SPRs to their original value
70 * but it might clobber a bunch.
71 */
72#ifdef __BIG_ENDIAN__
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050073 reinit_flags |= OPAL_REINIT_CPUS_HILE_BE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100074#else
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050075 reinit_flags |= OPAL_REINIT_CPUS_HILE_LE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100076#endif
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100077
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050078 /*
79 * POWER9 always support running hash:
80 * ie. Host hash supports hash guests
81 * Host radix supports hash/radix guests
82 */
Michael Ellermana70b4872017-07-17 21:19:01 +100083 if (early_cpu_has_feature(CPU_FTR_ARCH_300)) {
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050084 reinit_flags |= OPAL_REINIT_CPUS_MMU_HASH;
85 if (early_radix_enabled())
86 reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX;
87 }
88
89 opal_reinit_cpus(reinit_flags);
90
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100091 /* Restore some bits */
92 if (cur_cpu_spec->cpu_restore)
93 cur_cpu_spec->cpu_restore();
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100094}
95
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000096int __init early_init_dt_scan_opal(unsigned long node,
97 const char *uname, int depth, void *data)
98{
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053099 const void *basep, *entryp, *sizep;
Rob Herring9d0c4df2014-04-01 23:49:03 -0500100 int basesz, entrysz, runtimesz;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000101
102 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
103 return 0;
104
105 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
106 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530107 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000108
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530109 if (!basep || !entryp || !sizep)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000110 return 1;
111
112 opal.base = of_read_number(basep, basesz/4);
113 opal.entry = of_read_number(entryp, entrysz/4);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530114 opal.size = of_read_number(sizep, runtimesz/4);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000115
Rob Herring9d0c4df2014-04-01 23:49:03 -0500116 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000117 opal.base, basep, basesz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500118 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000119 opal.entry, entryp, entrysz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500120 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530121 opal.size, sizep, runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000122
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +1000123 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
Stewart Smithe4d54f72015-12-09 17:18:20 +1100124 powerpc_firmware_features |= FW_FEATURE_OPAL;
125 pr_info("OPAL detected !\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000126 } else {
Stewart Smith786842b2015-12-09 17:18:18 +1100127 panic("OPAL != V3 detected, no longer supported.\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000128 }
129
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000130 return 1;
131}
132
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530133int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
134 const char *uname, int depth, void *data)
135{
Rob Herring9d0c4df2014-04-01 23:49:03 -0500136 int i, psize, size;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530137 const __be32 *prop;
138
139 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
140 return 0;
141
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530142 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530143
144 if (!prop)
145 return 1;
146
147 pr_debug("Found machine check recoverable ranges.\n");
148
149 /*
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530150 * Calculate number of available entries.
151 *
152 * Each recoverable address range entry is (start address, len,
153 * recovery address), 2 cells each for start and recovery address,
154 * 1 cell for len, totalling 5 cells per entry.
155 */
156 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
157
158 /* Sanity check */
159 if (!mc_recoverable_range_len)
160 return 1;
161
162 /* Size required to hold all the entries. */
163 size = mc_recoverable_range_len *
164 sizeof(struct mcheck_recoverable_range);
165
166 /*
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530167 * Allocate a buffer to hold the MC recoverable ranges. We would be
168 * accessing them in real mode, hence it needs to be within
169 * RMO region.
170 */
171 mc_recoverable_range =__va(memblock_alloc_base(size, __alignof__(u64),
172 ppc64_rma_size));
173 memset(mc_recoverable_range, 0, size);
174
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530175 for (i = 0; i < mc_recoverable_range_len; i++) {
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530176 mc_recoverable_range[i].start_addr =
177 of_read_number(prop + (i * 5) + 0, 2);
178 mc_recoverable_range[i].end_addr =
179 mc_recoverable_range[i].start_addr +
180 of_read_number(prop + (i * 5) + 2, 1);
181 mc_recoverable_range[i].recover_addr =
182 of_read_number(prop + (i * 5) + 3, 2);
183
184 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
185 mc_recoverable_range[i].start_addr,
186 mc_recoverable_range[i].end_addr,
187 mc_recoverable_range[i].recover_addr);
188 }
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530189 return 1;
190}
191
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000192static int __init opal_register_exception_handlers(void)
193{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000194#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000195 u64 glue;
196
197 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
198 return -ENODEV;
199
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530200 /* Hookup some exception handlers except machine check. We use the
201 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000202 */
203 glue = 0x7000;
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530204
205 /*
206 * Check if we are running on newer firmware that exports
207 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
208 * the HMI interrupt and we catch it directly in Linux.
209 *
210 * For older firmware (i.e currently released POWER8 System Firmware
211 * as of today <= SV810_087), we fallback to old behavior and let OPAL
212 * patch the HMI vector and handle it inside OPAL firmware.
213 *
214 * For newer firmware (in development/yet to be released) we will
215 * start catching/handling HMI directly in Linux.
216 */
217 if (!opal_check_token(OPAL_HANDLE_HMI)) {
Michael Ellerman08135132015-01-28 15:10:33 +1100218 pr_info("Old firmware detected, OPAL handles HMIs.\n");
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530219 opal_register_exception_handler(
220 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
221 0, glue);
222 glue += 128;
223 }
224
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000225 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000226#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000227
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000228 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000229}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000230machine_early_initcall(powernv, opal_register_exception_handlers);
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000231
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530232/*
233 * Opal message notifier based on message type. Allow subscribers to get
234 * notified for specific messgae type.
235 */
Michael Ellermand7cf83f2015-02-17 20:01:54 +1100236int opal_message_notifier_register(enum opal_msg_type msg_type,
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530237 struct notifier_block *nb)
238{
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530239 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
240 pr_warning("%s: Invalid arguments, msg_type:%d\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530241 __func__, msg_type);
242 return -EINVAL;
243 }
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530244
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530245 return atomic_notifier_chain_register(
246 &opal_msg_notifier_head[msg_type], nb);
247}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800248EXPORT_SYMBOL_GPL(opal_message_notifier_register);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530249
Michael Ellermandf60f572015-03-26 20:03:16 +1100250int opal_message_notifier_unregister(enum opal_msg_type msg_type,
Neelesh Guptab921e902015-02-11 11:57:23 +0530251 struct notifier_block *nb)
252{
253 return atomic_notifier_chain_unregister(
254 &opal_msg_notifier_head[msg_type], nb);
255}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800256EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
Neelesh Guptab921e902015-02-11 11:57:23 +0530257
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530258static void opal_message_do_notify(uint32_t msg_type, void *msg)
259{
260 /* notify subscribers */
261 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
262 msg_type, msg);
263}
264
265static void opal_handle_message(void)
266{
267 s64 ret;
268 /*
269 * TODO: pre-allocate a message buffer depending on opal-msg-size
270 * value in /proc/device-tree.
271 */
272 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100273 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530274
275 ret = opal_get_msg(__pa(&msg), sizeof(msg));
276 /* No opal message pending. */
277 if (ret == OPAL_RESOURCE)
278 return;
279
280 /* check for errors. */
281 if (ret) {
Masanari Iida1a84db52014-08-29 23:37:33 +0900282 pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530283 __func__, ret);
284 return;
285 }
286
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100287 type = be32_to_cpu(msg.msg_type);
288
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530289 /* Sanity check */
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530290 if (type >= OPAL_MSG_TYPE_MAX) {
Stewart Smith98da62b2015-12-11 12:08:23 +1100291 pr_warn_once("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530292 return;
293 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100294 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530295}
296
Alistair Popplea295af22015-05-15 14:06:41 +1000297static irqreturn_t opal_message_notify(int irq, void *data)
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530298{
Alistair Popplea295af22015-05-15 14:06:41 +1000299 opal_handle_message();
300 return IRQ_HANDLED;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530301}
302
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530303static int __init opal_message_init(void)
304{
Alistair Popplea295af22015-05-15 14:06:41 +1000305 int ret, i, irq;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530306
307 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
308 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
309
Alistair Popplea295af22015-05-15 14:06:41 +1000310 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
311 if (!irq) {
312 pr_err("%s: Can't register OPAL event irq (%d)\n",
313 __func__, irq);
314 return irq;
315 }
316
317 ret = request_irq(irq, opal_message_notify,
318 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530319 if (ret) {
Alistair Popplea295af22015-05-15 14:06:41 +1000320 pr_err("%s: Can't request OPAL event irq (%d)\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530321 __func__, ret);
322 return ret;
323 }
Alistair Popplea295af22015-05-15 14:06:41 +1000324
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530325 return 0;
326}
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530327
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000328int opal_get_chars(uint32_t vtermno, char *buf, int count)
329{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000330 s64 rc;
331 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000332
333 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000334 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000335 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000336 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000337 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000338 len = cpu_to_be64(count);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500339 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000340 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000341 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000342 return 0;
343}
344
345int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
346{
347 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000348 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000349 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000350 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000351 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000352
353 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000354 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000355
356 /* We want put_chars to be atomic to avoid mangling of hvsi
357 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000358 * -EAGAIN if there isn't enough.
359 *
360 * Unfortunately, opal_console_write_buffer_space() doesn't
361 * appear to work on opal v1, so we just assume there is
362 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000363 */
364 spin_lock_irqsave(&opal_write_lock, flags);
Stewart Smithe4d54f72015-12-09 17:18:20 +1100365 rc = opal_console_write_buffer_space(vtermno, &olen);
366 len = be64_to_cpu(olen);
367 if (rc || len < total_len) {
368 spin_unlock_irqrestore(&opal_write_lock, flags);
369 /* Closed -> drop characters */
370 if (rc)
371 return total_len;
372 opal_poll_events(NULL);
373 return -EAGAIN;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000374 }
375
376 /* We still try to handle partial completions, though they
377 * should no longer happen.
378 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000379 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000380 while(total_len > 0 && (rc == OPAL_BUSY ||
381 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000382 olen = cpu_to_be64(total_len);
383 rc = opal_console_write(vtermno, &olen, data);
384 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000385
386 /* Closed or other error drop */
387 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
388 rc != OPAL_BUSY_EVENT) {
389 written = total_len;
390 break;
391 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000392 if (rc == OPAL_SUCCESS) {
393 total_len -= len;
394 data += len;
395 written += len;
396 }
397 /* This is a bit nasty but we need that for the console to
398 * flush when there aren't any interrupts. We will clean
399 * things a bit later to limit that to synchronous path
400 * such as the kernel console and xmon/udbg
401 */
402 do
403 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000404 while(rc == OPAL_SUCCESS &&
405 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000406 }
407 spin_unlock_irqrestore(&opal_write_lock, flags);
408 return written;
409}
410
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530411static int opal_recover_mce(struct pt_regs *regs,
412 struct machine_check_event *evt)
413{
414 int recovered = 0;
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530415
416 if (!(regs->msr & MSR_RI)) {
417 /* If MSR_RI isn't set, we cannot recover */
Mahesh Salgaonkarc74dd882016-08-09 10:39:13 +0530418 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530419 recovered = 0;
420 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
421 /* Platform corrected itself */
422 recovered = 1;
Nicholas Piggin13638752017-02-28 12:00:46 +1000423 } else if (evt->severity == MCE_SEV_FATAL) {
424 /* Fatal machine check */
425 pr_err("Machine check interrupt is fatal\n");
426 recovered = 0;
427 } else if ((evt->severity == MCE_SEV_ERROR_SYNC) &&
428 (user_mode(regs) && !is_global_init(current))) {
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530429 /*
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530430 * For now, kill the task if we have received exception when
431 * in userspace.
432 *
433 * TODO: Queue up this address for hwpoisioning later.
434 */
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530435 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
436 recovered = 1;
437 }
438 return recovered;
439}
440
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000441int opal_machine_check(struct pt_regs *regs)
442{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530443 struct machine_check_event evt;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530444 int ret;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000445
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530446 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
447 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000448
449 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530450 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000451 pr_err("Machine Check Exception, Unknown event version %d !\n",
452 evt.version);
453 return 0;
454 }
Michael Ellerman63f44d62017-04-03 15:29:34 +1000455 machine_check_print_event_info(&evt, user_mode(regs));
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000456
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530457 if (opal_recover_mce(regs, &evt))
458 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530459
460 /*
461 * Unrecovered machine check, we are heading to panic path.
462 *
463 * We may have hit this MCE in very early stage of kernel
464 * initialization even before opal-prd has started running. If
465 * this is the case then this MCE error may go un-noticed or
466 * un-analyzed if we go down panic path. We need to inform
467 * BMC/OCC about this error so that they can collect relevant
468 * data for error analysis before rebooting.
469 * Use opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR) to do so.
470 * This function may not return on BMC based system.
471 */
472 ret = opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR,
473 "Unrecoverable Machine Check exception");
474 if (ret == OPAL_UNSUPPORTED) {
475 pr_emerg("Reboot type %d not supported\n",
476 OPAL_REBOOT_PLATFORM_ERROR);
477 }
478
479 /*
480 * We reached here. There can be three possibilities:
481 * 1. We are running on a firmware level that do not support
482 * opal_cec_reboot2()
483 * 2. We are running on a firmware level that do not support
484 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
485 * 3. We are running on FSP based system that does not need opal
486 * to trigger checkstop explicitly for error analysis. The FSP
487 * PRD component would have already got notified about this
488 * error through other channels.
489 *
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000490 * If hardware marked this as an unrecoverable MCE, we are
491 * going to panic anyway. Even if it didn't, it's not safe to
492 * continue at this point, so we should explicitly panic.
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530493 */
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000494
495 panic("PowerNV Unrecovered Machine Check");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530496 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000497}
498
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530499/* Early hmi handler called in real mode. */
500int opal_hmi_exception_early(struct pt_regs *regs)
501{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530502 s64 rc;
503
504 /*
505 * call opal hmi handler. Pass paca address as token.
506 * The return value OPAL_SUCCESS is an indication that there is
507 * an HMI event generated waiting to pull by Linux.
508 */
509 rc = opal_handle_hmi();
510 if (rc == OPAL_SUCCESS) {
511 local_paca->hmi_event_available = 1;
512 return 1;
513 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530514 return 0;
515}
516
517/* HMI exception handler called in virtual mode during check_irq_replay. */
518int opal_handle_hmi_exception(struct pt_regs *regs)
519{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530520 s64 rc;
521 __be64 evt = 0;
522
523 /*
524 * Check if HMI event is available.
525 * if Yes, then call opal_poll_events to pull opal messages and
526 * process them.
527 */
528 if (!local_paca->hmi_event_available)
529 return 0;
530
531 local_paca->hmi_event_available = 0;
532 rc = opal_poll_events(&evt);
Alistair Popple81f2f7c2015-05-15 14:06:44 +1000533 if (rc == OPAL_SUCCESS && evt)
Alistair Popple9f0fd042015-05-15 14:06:37 +1000534 opal_handle_events(be64_to_cpu(evt));
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530535
536 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530537}
538
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530539static uint64_t find_recovery_address(uint64_t nip)
540{
541 int i;
542
543 for (i = 0; i < mc_recoverable_range_len; i++)
544 if ((nip >= mc_recoverable_range[i].start_addr) &&
545 (nip < mc_recoverable_range[i].end_addr))
546 return mc_recoverable_range[i].recover_addr;
547 return 0;
548}
549
550bool opal_mce_check_early_recovery(struct pt_regs *regs)
551{
552 uint64_t recover_addr = 0;
553
554 if (!opal.base || !opal.size)
555 goto out;
556
557 if ((regs->nip >= opal.base) &&
Andrew Donnellandc3799b2015-12-21 18:28:37 +1100558 (regs->nip < (opal.base + opal.size)))
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530559 recover_addr = find_recovery_address(regs->nip);
560
561 /*
562 * Setup regs->nip to rfi into fixup address.
563 */
564 if (recover_addr)
565 regs->nip = recover_addr;
566
567out:
568 return !!recover_addr;
569}
570
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530571static int opal_sysfs_init(void)
572{
573 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
574 if (!opal_kobj) {
575 pr_warn("kobject_create_and_add opal failed\n");
576 return -ENOMEM;
577 }
578
579 return 0;
580}
581
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100582static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
583 struct bin_attribute *bin_attr,
584 char *buf, loff_t off, size_t count)
585{
586 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
587 bin_attr->size);
588}
589
590static BIN_ATTR_RO(symbol_map, 0);
591
592static void opal_export_symmap(void)
593{
594 const __be64 *syms;
595 unsigned int size;
596 struct device_node *fw;
597 int rc;
598
599 fw = of_find_node_by_path("/ibm,opal/firmware");
600 if (!fw)
601 return;
602 syms = of_get_property(fw, "symbol-map", &size);
603 if (!syms || size != 2 * sizeof(__be64))
604 return;
605
606 /* Setup attributes */
607 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
608 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
609
610 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
611 if (rc)
612 pr_warn("Error %d creating OPAL symbols file\n", rc);
613}
614
Matt Brown11fe9092017-03-30 10:28:01 +1100615static ssize_t export_attr_read(struct file *fp, struct kobject *kobj,
616 struct bin_attribute *bin_attr, char *buf,
617 loff_t off, size_t count)
618{
619 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
620 bin_attr->size);
621}
622
623/*
624 * opal_export_attrs: creates a sysfs node for each property listed in
625 * the device-tree under /ibm,opal/firmware/exports/
626 * All new sysfs nodes are created under /opal/exports/.
627 * This allows for reserved memory regions (e.g. HDAT) to be read.
628 * The new sysfs nodes are only readable by root.
629 */
630static void opal_export_attrs(void)
631{
632 struct bin_attribute *attr;
633 struct device_node *np;
634 struct property *prop;
635 struct kobject *kobj;
636 u64 vals[2];
637 int rc;
638
639 np = of_find_node_by_path("/ibm,opal/firmware/exports");
640 if (!np)
641 return;
642
643 /* Create new 'exports' directory - /sys/firmware/opal/exports */
644 kobj = kobject_create_and_add("exports", opal_kobj);
645 if (!kobj) {
646 pr_warn("kobject_create_and_add() of exports failed\n");
647 return;
648 }
649
650 for_each_property_of_node(np, prop) {
651 if (!strcmp(prop->name, "name") || !strcmp(prop->name, "phandle"))
652 continue;
653
654 if (of_property_read_u64_array(np, prop->name, &vals[0], 2))
655 continue;
656
Michael Ellerman83c49192017-04-26 15:57:19 +1000657 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
Matt Brown11fe9092017-03-30 10:28:01 +1100658
659 if (attr == NULL) {
660 pr_warn("Failed kmalloc for bin_attribute!");
661 continue;
662 }
663
Michael Ellerman83c49192017-04-26 15:57:19 +1000664 sysfs_bin_attr_init(attr);
Matt Brown11fe9092017-03-30 10:28:01 +1100665 attr->attr.name = kstrdup(prop->name, GFP_KERNEL);
666 attr->attr.mode = 0400;
667 attr->read = export_attr_read;
668 attr->private = __va(vals[0]);
669 attr->size = vals[1];
670
671 if (attr->attr.name == NULL) {
672 pr_warn("Failed kstrdup for bin_attribute attr.name");
673 kfree(attr);
674 continue;
675 }
676
677 rc = sysfs_create_bin_file(kobj, attr);
678 if (rc) {
679 pr_warn("Error %d creating OPAL sysfs exports/%s file\n",
680 rc, prop->name);
681 kfree(attr->attr.name);
682 kfree(attr);
683 }
684 }
685
686 of_node_put(np);
687}
688
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530689static void __init opal_dump_region_init(void)
690{
691 void *addr;
692 uint64_t size;
693 int rc;
694
Stewart Smithb962f5a2015-02-12 16:25:27 +1100695 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
696 return;
697
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530698 /* Register kernel log buffer */
699 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500700 if (addr == NULL)
701 return;
702
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530703 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500704 if (size == 0)
705 return;
706
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530707 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
708 __pa(addr), size);
709 /* Don't warn if this is just an older OPAL that doesn't
710 * know about that call
711 */
712 if (rc && rc != OPAL_UNSUPPORTED)
713 pr_warn("DUMP: Failed to register kernel log buffer. "
714 "rc = %d\n", rc);
715}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800716
Jack Miller9e4f51b2016-08-10 19:32:40 -0500717static void opal_pdev_init(const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800718{
719 struct device_node *np;
720
Jack Miller9e4f51b2016-08-10 19:32:40 -0500721 for_each_compatible_node(np, NULL, compatible)
Neelesh Gupta47083452014-12-13 23:31:05 +0530722 of_platform_device_create(np, NULL, NULL);
723}
724
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530725static void __init opal_imc_init_dev(void)
726{
727 struct device_node *np;
728
729 np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT);
730 if (np)
731 of_platform_device_create(np, NULL, NULL);
732}
733
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100734static int kopald(void *unused)
735{
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000736 unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1;
Alistair Popple9f0fd042015-05-15 14:06:37 +1000737 __be64 events;
738
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100739 set_freezable();
740 do {
741 try_to_freeze();
Alistair Popple9f0fd042015-05-15 14:06:37 +1000742 opal_poll_events(&events);
743 opal_handle_events(be64_to_cpu(events));
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000744 schedule_timeout_interruptible(timeout);
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100745 } while (!kthread_should_stop());
746
747 return 0;
748}
749
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000750void opal_wake_poller(void)
751{
752 if (kopald_tsk)
753 wake_up_process(kopald_tsk);
754}
755
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100756static void opal_init_heartbeat(void)
757{
758 /* Old firwmware, we assume the HVC heartbeat is sufficient */
759 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
760 &opal_heartbeat) != 0)
761 opal_heartbeat = 0;
762
763 if (opal_heartbeat)
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000764 kopald_tsk = kthread_run(kopald, NULL, "kopald");
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100765}
766
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000767static int __init opal_init(void)
768{
Vasant Hegdec159b592015-08-19 22:19:53 +0530769 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100770 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000771
772 opal_node = of_find_node_by_path("/ibm,opal");
773 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100774 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000775 return -ENODEV;
776 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000777
778 /* Register OPAL consoles if any ports */
Stewart Smith7261aaf2015-12-09 17:18:19 +1100779 consoles = of_find_node_by_path("/ibm,opal/consoles");
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000780 if (consoles) {
781 for_each_child_of_node(consoles, np) {
782 if (strcmp(np->name, "serial"))
783 continue;
784 of_platform_device_create(np, NULL, NULL);
785 }
786 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000787 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000788
Alistair Popple96e023e2015-05-15 14:06:36 +1000789 /* Initialise OPAL messaging system */
790 opal_message_init();
791
792 /* Initialise OPAL asynchronous completion interface */
793 opal_async_comp_init();
794
795 /* Initialise OPAL sensor interface */
796 opal_sensor_init();
797
798 /* Initialise OPAL hypervisor maintainence interrupt handling */
799 opal_hmi_handler_init();
800
Neelesh Gupta47083452014-12-13 23:31:05 +0530801 /* Create i2c platform devices */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500802 opal_pdev_init("ibm,opal-i2c");
Neelesh Gupta47083452014-12-13 23:31:05 +0530803
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100804 /* Setup a heatbeat thread if requested by OPAL */
805 opal_init_heartbeat();
806
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530807 /* Detect In-Memory Collection counters and create devices*/
808 opal_imc_init_dev();
809
Vasant Hegdec159b592015-08-19 22:19:53 +0530810 /* Create leds platform devices */
811 leds = of_find_node_by_path("/ibm,opal/leds");
812 if (leds) {
813 of_platform_device_create(leds, "opal_leds", NULL);
814 of_node_put(leds);
815 }
816
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100817 /* Initialise OPAL message log interface */
818 opal_msglog_init();
819
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530820 /* Create "opal" kobject under /sys/firmware */
821 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530822 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100823 /* Export symbol map to userspace */
824 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530825 /* Setup dump region interface */
826 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100827 /* Setup error log interface */
828 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530829 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800830 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100831 /* Setup platform dump extract interface */
832 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530833 /* Setup system parameters interface */
834 opal_sys_param_init();
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100835 /* Setup message log sysfs interface. */
836 opal_msglog_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530837 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530838
Matt Brown11fe9092017-03-30 10:28:01 +1100839 /* Export all properties */
840 opal_export_attrs();
841
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800842 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500843 opal_pdev_init("ibm,opal-ipmi");
844 opal_pdev_init("ibm,opal-flash");
845 opal_pdev_init("ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800846
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000847 /* Initialise platform device: oppanel interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500848 opal_pdev_init("ibm,opal-oppanel");
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000849
Russell Curreyaffddff2015-11-27 17:23:07 +1100850 /* Initialise OPAL kmsg dumper for flushing console on panic */
851 opal_kmsg_init();
852
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +0530853 /* Initialise OPAL powercap interface */
854 opal_powercap_init();
855
Shilpasri G Bhat8e84b2d2017-08-10 09:01:19 +0530856 /* Initialise OPAL Power-Shifting-Ratio interface */
857 opal_psr_init();
858
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000859 return 0;
860}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000861machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000862
863void opal_shutdown(void)
864{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100865 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000866
Alistair Popple9f0fd042015-05-15 14:06:37 +1000867 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100868
869 /*
870 * Then sync with OPAL which ensure anything that can
871 * potentially write to our memory has completed such
872 * as an ongoing dump retrieval
873 */
874 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
875 rc = opal_sync_host_reboot();
876 if (rc == OPAL_BUSY)
877 opal_poll_events(NULL);
878 else
879 mdelay(10);
880 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530881
882 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100883 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
884 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000885}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030886
887/* Export this so that test modules can use it */
888EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800889EXPORT_SYMBOL_GPL(opal_xscom_read);
890EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800891EXPORT_SYMBOL_GPL(opal_ipmi_send);
892EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800893EXPORT_SYMBOL_GPL(opal_flash_read);
894EXPORT_SYMBOL_GPL(opal_flash_write);
895EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800896EXPORT_SYMBOL_GPL(opal_prd_msg);
Anton Blanchard3441f042014-04-22 15:01:26 +1000897
898/* Convert a region of vmalloc memory to an opal sg list */
899struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
900 unsigned long vmalloc_size)
901{
902 struct opal_sg_list *sg, *first = NULL;
903 unsigned long i = 0;
904
905 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
906 if (!sg)
907 goto nomem;
908
909 first = sg;
910
911 while (vmalloc_size > 0) {
912 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
913 uint64_t length = min(vmalloc_size, PAGE_SIZE);
914
915 sg->entry[i].data = cpu_to_be64(data);
916 sg->entry[i].length = cpu_to_be64(length);
917 i++;
918
919 if (i >= SG_ENTRIES_PER_NODE) {
920 struct opal_sg_list *next;
921
922 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
923 if (!next)
924 goto nomem;
925
926 sg->length = cpu_to_be64(
927 i * sizeof(struct opal_sg_entry) + 16);
928 i = 0;
929 sg->next = cpu_to_be64(__pa(next));
930 sg = next;
931 }
932
933 vmalloc_addr += length;
934 vmalloc_size -= length;
935 }
936
937 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
938
939 return first;
940
941nomem:
942 pr_err("%s : Failed to allocate memory\n", __func__);
943 opal_free_sg_list(first);
944 return NULL;
945}
946
947void opal_free_sg_list(struct opal_sg_list *sg)
948{
949 while (sg) {
950 uint64_t next = be64_to_cpu(sg->next);
951
952 kfree(sg);
953
954 if (next)
955 sg = __va(next);
956 else
957 sg = NULL;
958 }
959}
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530960
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200961int opal_error_code(int rc)
962{
963 switch (rc) {
964 case OPAL_SUCCESS: return 0;
965
966 case OPAL_PARAMETER: return -EINVAL;
967 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
968 case OPAL_BUSY_EVENT: return -EBUSY;
969 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +0200970 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200971
972 case OPAL_UNSUPPORTED: return -EIO;
973 case OPAL_HARDWARE: return -EIO;
974 case OPAL_INTERNAL_ERROR: return -EIO;
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +0530975 case OPAL_TIMEOUT: return -ETIMEDOUT;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200976 default:
977 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
978 return -EIO;
979 }
980}
981
Alistair Popple1d0761d2016-12-14 13:36:51 +1100982void powernv_set_nmmu_ptcr(unsigned long ptcr)
983{
984 int rc;
985
986 if (firmware_has_feature(FW_FEATURE_OPAL)) {
987 rc = opal_nmmu_set_ptcr(-1UL, ptcr);
988 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
989 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__);
990 }
991}
992
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530993EXPORT_SYMBOL_GPL(opal_poll_events);
994EXPORT_SYMBOL_GPL(opal_rtc_read);
995EXPORT_SYMBOL_GPL(opal_rtc_write);
996EXPORT_SYMBOL_GPL(opal_tpo_read);
997EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +0530998EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +0530999/* Export these symbols for PowerNV LED class driver */
1000EXPORT_SYMBOL_GPL(opal_leds_get_ind);
1001EXPORT_SYMBOL_GPL(opal_leds_set_ind);
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +10001002/* Export this symbol for PowerNV Operator Panel class driver */
1003EXPORT_SYMBOL_GPL(opal_write_oppanel_async);
Paul Mackerrasffe6d812016-11-21 16:01:36 +11001004/* Export this for KVM */
1005EXPORT_SYMBOL_GPL(opal_int_set_mfrr);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001006EXPORT_SYMBOL_GPL(opal_int_eoi);