blob: cad6b57ce494bb72dff04102e7d8d0499b8e038a [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 Herrenschmidta2036582016-07-04 14:51:44 +100058static struct task_struct *kopald_tsk;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000059
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100060void opal_configure_cores(void)
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100061{
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050062 u64 reinit_flags = 0;
63
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100064 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
65 *
66 * It will preserve non volatile GPRs and HSPRG0/1. It will
67 * also restore HIDs and other SPRs to their original value
68 * but it might clobber a bunch.
69 */
70#ifdef __BIG_ENDIAN__
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050071 reinit_flags |= OPAL_REINIT_CPUS_HILE_BE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100072#else
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050073 reinit_flags |= OPAL_REINIT_CPUS_HILE_LE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100074#endif
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100075
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050076 /*
77 * POWER9 always support running hash:
78 * ie. Host hash supports hash guests
79 * Host radix supports hash/radix guests
80 */
Michael Ellermana70b4872017-07-17 21:19:01 +100081 if (early_cpu_has_feature(CPU_FTR_ARCH_300)) {
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050082 reinit_flags |= OPAL_REINIT_CPUS_MMU_HASH;
83 if (early_radix_enabled())
84 reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX;
85 }
86
87 opal_reinit_cpus(reinit_flags);
88
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100089 /* Restore some bits */
90 if (cur_cpu_spec->cpu_restore)
91 cur_cpu_spec->cpu_restore();
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100092}
93
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000094int __init early_init_dt_scan_opal(unsigned long node,
95 const char *uname, int depth, void *data)
96{
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053097 const void *basep, *entryp, *sizep;
Rob Herring9d0c4df2014-04-01 23:49:03 -050098 int basesz, entrysz, runtimesz;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000099
100 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
101 return 0;
102
103 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
104 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530105 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000106
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530107 if (!basep || !entryp || !sizep)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000108 return 1;
109
110 opal.base = of_read_number(basep, basesz/4);
111 opal.entry = of_read_number(entryp, entrysz/4);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530112 opal.size = of_read_number(sizep, runtimesz/4);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000113
Rob Herring9d0c4df2014-04-01 23:49:03 -0500114 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000115 opal.base, basep, basesz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500116 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000117 opal.entry, entryp, entrysz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500118 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530119 opal.size, sizep, runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000120
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +1000121 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
Stewart Smithe4d54f72015-12-09 17:18:20 +1100122 powerpc_firmware_features |= FW_FEATURE_OPAL;
123 pr_info("OPAL detected !\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000124 } else {
Stewart Smith786842b2015-12-09 17:18:18 +1100125 panic("OPAL != V3 detected, no longer supported.\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000126 }
127
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000128 return 1;
129}
130
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530131int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
132 const char *uname, int depth, void *data)
133{
Rob Herring9d0c4df2014-04-01 23:49:03 -0500134 int i, psize, size;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530135 const __be32 *prop;
136
137 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
138 return 0;
139
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530140 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530141
142 if (!prop)
143 return 1;
144
145 pr_debug("Found machine check recoverable ranges.\n");
146
147 /*
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530148 * Calculate number of available entries.
149 *
150 * Each recoverable address range entry is (start address, len,
151 * recovery address), 2 cells each for start and recovery address,
152 * 1 cell for len, totalling 5 cells per entry.
153 */
154 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
155
156 /* Sanity check */
157 if (!mc_recoverable_range_len)
158 return 1;
159
160 /* Size required to hold all the entries. */
161 size = mc_recoverable_range_len *
162 sizeof(struct mcheck_recoverable_range);
163
164 /*
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530165 * Allocate a buffer to hold the MC recoverable ranges. We would be
166 * accessing them in real mode, hence it needs to be within
167 * RMO region.
168 */
169 mc_recoverable_range =__va(memblock_alloc_base(size, __alignof__(u64),
170 ppc64_rma_size));
171 memset(mc_recoverable_range, 0, size);
172
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530173 for (i = 0; i < mc_recoverable_range_len; i++) {
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530174 mc_recoverable_range[i].start_addr =
175 of_read_number(prop + (i * 5) + 0, 2);
176 mc_recoverable_range[i].end_addr =
177 mc_recoverable_range[i].start_addr +
178 of_read_number(prop + (i * 5) + 2, 1);
179 mc_recoverable_range[i].recover_addr =
180 of_read_number(prop + (i * 5) + 3, 2);
181
182 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
183 mc_recoverable_range[i].start_addr,
184 mc_recoverable_range[i].end_addr,
185 mc_recoverable_range[i].recover_addr);
186 }
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530187 return 1;
188}
189
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000190static int __init opal_register_exception_handlers(void)
191{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000192#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000193 u64 glue;
194
195 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
196 return -ENODEV;
197
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530198 /* Hookup some exception handlers except machine check. We use the
199 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000200 */
201 glue = 0x7000;
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530202
203 /*
204 * Check if we are running on newer firmware that exports
205 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
206 * the HMI interrupt and we catch it directly in Linux.
207 *
208 * For older firmware (i.e currently released POWER8 System Firmware
209 * as of today <= SV810_087), we fallback to old behavior and let OPAL
210 * patch the HMI vector and handle it inside OPAL firmware.
211 *
212 * For newer firmware (in development/yet to be released) we will
213 * start catching/handling HMI directly in Linux.
214 */
215 if (!opal_check_token(OPAL_HANDLE_HMI)) {
Michael Ellerman08135132015-01-28 15:10:33 +1100216 pr_info("Old firmware detected, OPAL handles HMIs.\n");
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530217 opal_register_exception_handler(
218 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
219 0, glue);
220 glue += 128;
221 }
222
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000223 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000224#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000225
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000226 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000227}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000228machine_early_initcall(powernv, opal_register_exception_handlers);
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000229
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530230/*
231 * Opal message notifier based on message type. Allow subscribers to get
232 * notified for specific messgae type.
233 */
Michael Ellermand7cf83f2015-02-17 20:01:54 +1100234int opal_message_notifier_register(enum opal_msg_type msg_type,
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530235 struct notifier_block *nb)
236{
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530237 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
238 pr_warning("%s: Invalid arguments, msg_type:%d\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530239 __func__, msg_type);
240 return -EINVAL;
241 }
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530242
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530243 return atomic_notifier_chain_register(
244 &opal_msg_notifier_head[msg_type], nb);
245}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800246EXPORT_SYMBOL_GPL(opal_message_notifier_register);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530247
Michael Ellermandf60f572015-03-26 20:03:16 +1100248int opal_message_notifier_unregister(enum opal_msg_type msg_type,
Neelesh Guptab921e902015-02-11 11:57:23 +0530249 struct notifier_block *nb)
250{
251 return atomic_notifier_chain_unregister(
252 &opal_msg_notifier_head[msg_type], nb);
253}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800254EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
Neelesh Guptab921e902015-02-11 11:57:23 +0530255
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530256static void opal_message_do_notify(uint32_t msg_type, void *msg)
257{
258 /* notify subscribers */
259 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
260 msg_type, msg);
261}
262
263static void opal_handle_message(void)
264{
265 s64 ret;
266 /*
267 * TODO: pre-allocate a message buffer depending on opal-msg-size
268 * value in /proc/device-tree.
269 */
270 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100271 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530272
273 ret = opal_get_msg(__pa(&msg), sizeof(msg));
274 /* No opal message pending. */
275 if (ret == OPAL_RESOURCE)
276 return;
277
278 /* check for errors. */
279 if (ret) {
Masanari Iida1a84db52014-08-29 23:37:33 +0900280 pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530281 __func__, ret);
282 return;
283 }
284
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100285 type = be32_to_cpu(msg.msg_type);
286
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530287 /* Sanity check */
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530288 if (type >= OPAL_MSG_TYPE_MAX) {
Stewart Smith98da62b2015-12-11 12:08:23 +1100289 pr_warn_once("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530290 return;
291 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100292 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530293}
294
Alistair Popplea295af22015-05-15 14:06:41 +1000295static irqreturn_t opal_message_notify(int irq, void *data)
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530296{
Alistair Popplea295af22015-05-15 14:06:41 +1000297 opal_handle_message();
298 return IRQ_HANDLED;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530299}
300
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530301static int __init opal_message_init(void)
302{
Alistair Popplea295af22015-05-15 14:06:41 +1000303 int ret, i, irq;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530304
305 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
306 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
307
Alistair Popplea295af22015-05-15 14:06:41 +1000308 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
309 if (!irq) {
310 pr_err("%s: Can't register OPAL event irq (%d)\n",
311 __func__, irq);
312 return irq;
313 }
314
315 ret = request_irq(irq, opal_message_notify,
316 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530317 if (ret) {
Alistair Popplea295af22015-05-15 14:06:41 +1000318 pr_err("%s: Can't request OPAL event irq (%d)\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530319 __func__, ret);
320 return ret;
321 }
Alistair Popplea295af22015-05-15 14:06:41 +1000322
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530323 return 0;
324}
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530325
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000326int opal_get_chars(uint32_t vtermno, char *buf, int count)
327{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000328 s64 rc;
329 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000330
331 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000332 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000333 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000334 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000335 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000336 len = cpu_to_be64(count);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500337 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000338 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000339 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000340 return 0;
341}
342
343int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
344{
345 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000346 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000347 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000348 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000349 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000350
351 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000352 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000353
354 /* We want put_chars to be atomic to avoid mangling of hvsi
355 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000356 * -EAGAIN if there isn't enough.
357 *
358 * Unfortunately, opal_console_write_buffer_space() doesn't
359 * appear to work on opal v1, so we just assume there is
360 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000361 */
362 spin_lock_irqsave(&opal_write_lock, flags);
Stewart Smithe4d54f72015-12-09 17:18:20 +1100363 rc = opal_console_write_buffer_space(vtermno, &olen);
364 len = be64_to_cpu(olen);
365 if (rc || len < total_len) {
366 spin_unlock_irqrestore(&opal_write_lock, flags);
367 /* Closed -> drop characters */
368 if (rc)
369 return total_len;
370 opal_poll_events(NULL);
371 return -EAGAIN;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000372 }
373
374 /* We still try to handle partial completions, though they
375 * should no longer happen.
376 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000377 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000378 while(total_len > 0 && (rc == OPAL_BUSY ||
379 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000380 olen = cpu_to_be64(total_len);
381 rc = opal_console_write(vtermno, &olen, data);
382 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000383
384 /* Closed or other error drop */
385 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
386 rc != OPAL_BUSY_EVENT) {
387 written = total_len;
388 break;
389 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000390 if (rc == OPAL_SUCCESS) {
391 total_len -= len;
392 data += len;
393 written += len;
394 }
395 /* This is a bit nasty but we need that for the console to
396 * flush when there aren't any interrupts. We will clean
397 * things a bit later to limit that to synchronous path
398 * such as the kernel console and xmon/udbg
399 */
400 do
401 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000402 while(rc == OPAL_SUCCESS &&
403 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000404 }
405 spin_unlock_irqrestore(&opal_write_lock, flags);
406 return written;
407}
408
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530409static int opal_recover_mce(struct pt_regs *regs,
410 struct machine_check_event *evt)
411{
412 int recovered = 0;
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530413
414 if (!(regs->msr & MSR_RI)) {
415 /* If MSR_RI isn't set, we cannot recover */
Mahesh Salgaonkarc74dd882016-08-09 10:39:13 +0530416 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530417 recovered = 0;
418 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
419 /* Platform corrected itself */
420 recovered = 1;
Nicholas Piggin13638752017-02-28 12:00:46 +1000421 } else if (evt->severity == MCE_SEV_FATAL) {
422 /* Fatal machine check */
423 pr_err("Machine check interrupt is fatal\n");
424 recovered = 0;
425 } else if ((evt->severity == MCE_SEV_ERROR_SYNC) &&
426 (user_mode(regs) && !is_global_init(current))) {
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530427 /*
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530428 * For now, kill the task if we have received exception when
429 * in userspace.
430 *
431 * TODO: Queue up this address for hwpoisioning later.
432 */
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530433 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
434 recovered = 1;
435 }
436 return recovered;
437}
438
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000439int opal_machine_check(struct pt_regs *regs)
440{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530441 struct machine_check_event evt;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530442 int ret;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000443
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530444 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
445 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000446
447 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530448 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000449 pr_err("Machine Check Exception, Unknown event version %d !\n",
450 evt.version);
451 return 0;
452 }
Michael Ellerman63f44d62017-04-03 15:29:34 +1000453 machine_check_print_event_info(&evt, user_mode(regs));
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000454
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530455 if (opal_recover_mce(regs, &evt))
456 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530457
458 /*
459 * Unrecovered machine check, we are heading to panic path.
460 *
461 * We may have hit this MCE in very early stage of kernel
462 * initialization even before opal-prd has started running. If
463 * this is the case then this MCE error may go un-noticed or
464 * un-analyzed if we go down panic path. We need to inform
465 * BMC/OCC about this error so that they can collect relevant
466 * data for error analysis before rebooting.
467 * Use opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR) to do so.
468 * This function may not return on BMC based system.
469 */
470 ret = opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR,
471 "Unrecoverable Machine Check exception");
472 if (ret == OPAL_UNSUPPORTED) {
473 pr_emerg("Reboot type %d not supported\n",
474 OPAL_REBOOT_PLATFORM_ERROR);
475 }
476
477 /*
478 * We reached here. There can be three possibilities:
479 * 1. We are running on a firmware level that do not support
480 * opal_cec_reboot2()
481 * 2. We are running on a firmware level that do not support
482 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
483 * 3. We are running on FSP based system that does not need opal
484 * to trigger checkstop explicitly for error analysis. The FSP
485 * PRD component would have already got notified about this
486 * error through other channels.
487 *
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000488 * If hardware marked this as an unrecoverable MCE, we are
489 * going to panic anyway. Even if it didn't, it's not safe to
490 * continue at this point, so we should explicitly panic.
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530491 */
Daniel Axtensf2dd80e2015-09-23 16:41:48 +1000492
493 panic("PowerNV Unrecovered Machine Check");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530494 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000495}
496
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530497/* Early hmi handler called in real mode. */
498int opal_hmi_exception_early(struct pt_regs *regs)
499{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530500 s64 rc;
501
502 /*
503 * call opal hmi handler. Pass paca address as token.
504 * The return value OPAL_SUCCESS is an indication that there is
505 * an HMI event generated waiting to pull by Linux.
506 */
507 rc = opal_handle_hmi();
508 if (rc == OPAL_SUCCESS) {
509 local_paca->hmi_event_available = 1;
510 return 1;
511 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530512 return 0;
513}
514
515/* HMI exception handler called in virtual mode during check_irq_replay. */
516int opal_handle_hmi_exception(struct pt_regs *regs)
517{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530518 s64 rc;
519 __be64 evt = 0;
520
521 /*
522 * Check if HMI event is available.
523 * if Yes, then call opal_poll_events to pull opal messages and
524 * process them.
525 */
526 if (!local_paca->hmi_event_available)
527 return 0;
528
529 local_paca->hmi_event_available = 0;
530 rc = opal_poll_events(&evt);
Alistair Popple81f2f7c2015-05-15 14:06:44 +1000531 if (rc == OPAL_SUCCESS && evt)
Alistair Popple9f0fd042015-05-15 14:06:37 +1000532 opal_handle_events(be64_to_cpu(evt));
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530533
534 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530535}
536
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530537static uint64_t find_recovery_address(uint64_t nip)
538{
539 int i;
540
541 for (i = 0; i < mc_recoverable_range_len; i++)
542 if ((nip >= mc_recoverable_range[i].start_addr) &&
543 (nip < mc_recoverable_range[i].end_addr))
544 return mc_recoverable_range[i].recover_addr;
545 return 0;
546}
547
548bool opal_mce_check_early_recovery(struct pt_regs *regs)
549{
550 uint64_t recover_addr = 0;
551
552 if (!opal.base || !opal.size)
553 goto out;
554
555 if ((regs->nip >= opal.base) &&
Andrew Donnellandc3799b2015-12-21 18:28:37 +1100556 (regs->nip < (opal.base + opal.size)))
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530557 recover_addr = find_recovery_address(regs->nip);
558
559 /*
560 * Setup regs->nip to rfi into fixup address.
561 */
562 if (recover_addr)
563 regs->nip = recover_addr;
564
565out:
566 return !!recover_addr;
567}
568
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530569static int opal_sysfs_init(void)
570{
571 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
572 if (!opal_kobj) {
573 pr_warn("kobject_create_and_add opal failed\n");
574 return -ENOMEM;
575 }
576
577 return 0;
578}
579
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100580static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
581 struct bin_attribute *bin_attr,
582 char *buf, loff_t off, size_t count)
583{
584 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
585 bin_attr->size);
586}
587
588static BIN_ATTR_RO(symbol_map, 0);
589
590static void opal_export_symmap(void)
591{
592 const __be64 *syms;
593 unsigned int size;
594 struct device_node *fw;
595 int rc;
596
597 fw = of_find_node_by_path("/ibm,opal/firmware");
598 if (!fw)
599 return;
600 syms = of_get_property(fw, "symbol-map", &size);
601 if (!syms || size != 2 * sizeof(__be64))
602 return;
603
604 /* Setup attributes */
605 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
606 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
607
608 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
609 if (rc)
610 pr_warn("Error %d creating OPAL symbols file\n", rc);
611}
612
Matt Brown11fe9092017-03-30 10:28:01 +1100613static ssize_t export_attr_read(struct file *fp, struct kobject *kobj,
614 struct bin_attribute *bin_attr, char *buf,
615 loff_t off, size_t count)
616{
617 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
618 bin_attr->size);
619}
620
621/*
622 * opal_export_attrs: creates a sysfs node for each property listed in
623 * the device-tree under /ibm,opal/firmware/exports/
624 * All new sysfs nodes are created under /opal/exports/.
625 * This allows for reserved memory regions (e.g. HDAT) to be read.
626 * The new sysfs nodes are only readable by root.
627 */
628static void opal_export_attrs(void)
629{
630 struct bin_attribute *attr;
631 struct device_node *np;
632 struct property *prop;
633 struct kobject *kobj;
634 u64 vals[2];
635 int rc;
636
637 np = of_find_node_by_path("/ibm,opal/firmware/exports");
638 if (!np)
639 return;
640
641 /* Create new 'exports' directory - /sys/firmware/opal/exports */
642 kobj = kobject_create_and_add("exports", opal_kobj);
643 if (!kobj) {
644 pr_warn("kobject_create_and_add() of exports failed\n");
645 return;
646 }
647
648 for_each_property_of_node(np, prop) {
649 if (!strcmp(prop->name, "name") || !strcmp(prop->name, "phandle"))
650 continue;
651
652 if (of_property_read_u64_array(np, prop->name, &vals[0], 2))
653 continue;
654
Michael Ellerman83c49192017-04-26 15:57:19 +1000655 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
Matt Brown11fe9092017-03-30 10:28:01 +1100656
657 if (attr == NULL) {
658 pr_warn("Failed kmalloc for bin_attribute!");
659 continue;
660 }
661
Michael Ellerman83c49192017-04-26 15:57:19 +1000662 sysfs_bin_attr_init(attr);
Matt Brown11fe9092017-03-30 10:28:01 +1100663 attr->attr.name = kstrdup(prop->name, GFP_KERNEL);
664 attr->attr.mode = 0400;
665 attr->read = export_attr_read;
666 attr->private = __va(vals[0]);
667 attr->size = vals[1];
668
669 if (attr->attr.name == NULL) {
670 pr_warn("Failed kstrdup for bin_attribute attr.name");
671 kfree(attr);
672 continue;
673 }
674
675 rc = sysfs_create_bin_file(kobj, attr);
676 if (rc) {
677 pr_warn("Error %d creating OPAL sysfs exports/%s file\n",
678 rc, prop->name);
679 kfree(attr->attr.name);
680 kfree(attr);
681 }
682 }
683
684 of_node_put(np);
685}
686
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530687static void __init opal_dump_region_init(void)
688{
689 void *addr;
690 uint64_t size;
691 int rc;
692
Stewart Smithb962f5a2015-02-12 16:25:27 +1100693 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
694 return;
695
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530696 /* Register kernel log buffer */
697 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500698 if (addr == NULL)
699 return;
700
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530701 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500702 if (size == 0)
703 return;
704
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530705 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
706 __pa(addr), size);
707 /* Don't warn if this is just an older OPAL that doesn't
708 * know about that call
709 */
710 if (rc && rc != OPAL_UNSUPPORTED)
711 pr_warn("DUMP: Failed to register kernel log buffer. "
712 "rc = %d\n", rc);
713}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800714
Jack Miller9e4f51b2016-08-10 19:32:40 -0500715static void opal_pdev_init(const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800716{
717 struct device_node *np;
718
Jack Miller9e4f51b2016-08-10 19:32:40 -0500719 for_each_compatible_node(np, NULL, compatible)
Neelesh Gupta47083452014-12-13 23:31:05 +0530720 of_platform_device_create(np, NULL, NULL);
721}
722
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100723static int kopald(void *unused)
724{
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000725 unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1;
Alistair Popple9f0fd042015-05-15 14:06:37 +1000726 __be64 events;
727
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100728 set_freezable();
729 do {
730 try_to_freeze();
Alistair Popple9f0fd042015-05-15 14:06:37 +1000731 opal_poll_events(&events);
732 opal_handle_events(be64_to_cpu(events));
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000733 schedule_timeout_interruptible(timeout);
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100734 } while (!kthread_should_stop());
735
736 return 0;
737}
738
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000739void opal_wake_poller(void)
740{
741 if (kopald_tsk)
742 wake_up_process(kopald_tsk);
743}
744
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100745static void opal_init_heartbeat(void)
746{
747 /* Old firwmware, we assume the HVC heartbeat is sufficient */
748 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
749 &opal_heartbeat) != 0)
750 opal_heartbeat = 0;
751
752 if (opal_heartbeat)
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000753 kopald_tsk = kthread_run(kopald, NULL, "kopald");
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100754}
755
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000756static int __init opal_init(void)
757{
Vasant Hegdec159b592015-08-19 22:19:53 +0530758 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100759 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000760
761 opal_node = of_find_node_by_path("/ibm,opal");
762 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100763 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000764 return -ENODEV;
765 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000766
767 /* Register OPAL consoles if any ports */
Stewart Smith7261aaf2015-12-09 17:18:19 +1100768 consoles = of_find_node_by_path("/ibm,opal/consoles");
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000769 if (consoles) {
770 for_each_child_of_node(consoles, np) {
771 if (strcmp(np->name, "serial"))
772 continue;
773 of_platform_device_create(np, NULL, NULL);
774 }
775 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000776 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000777
Alistair Popple96e023e2015-05-15 14:06:36 +1000778 /* Initialise OPAL messaging system */
779 opal_message_init();
780
781 /* Initialise OPAL asynchronous completion interface */
782 opal_async_comp_init();
783
784 /* Initialise OPAL sensor interface */
785 opal_sensor_init();
786
787 /* Initialise OPAL hypervisor maintainence interrupt handling */
788 opal_hmi_handler_init();
789
Neelesh Gupta47083452014-12-13 23:31:05 +0530790 /* Create i2c platform devices */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500791 opal_pdev_init("ibm,opal-i2c");
Neelesh Gupta47083452014-12-13 23:31:05 +0530792
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100793 /* Setup a heatbeat thread if requested by OPAL */
794 opal_init_heartbeat();
795
Vasant Hegdec159b592015-08-19 22:19:53 +0530796 /* Create leds platform devices */
797 leds = of_find_node_by_path("/ibm,opal/leds");
798 if (leds) {
799 of_platform_device_create(leds, "opal_leds", NULL);
800 of_node_put(leds);
801 }
802
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100803 /* Initialise OPAL message log interface */
804 opal_msglog_init();
805
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530806 /* Create "opal" kobject under /sys/firmware */
807 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530808 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100809 /* Export symbol map to userspace */
810 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530811 /* Setup dump region interface */
812 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100813 /* Setup error log interface */
814 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530815 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800816 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100817 /* Setup platform dump extract interface */
818 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530819 /* Setup system parameters interface */
820 opal_sys_param_init();
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100821 /* Setup message log sysfs interface. */
822 opal_msglog_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530823 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530824
Matt Brown11fe9092017-03-30 10:28:01 +1100825 /* Export all properties */
826 opal_export_attrs();
827
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800828 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500829 opal_pdev_init("ibm,opal-ipmi");
830 opal_pdev_init("ibm,opal-flash");
831 opal_pdev_init("ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800832
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000833 /* Initialise platform device: oppanel interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500834 opal_pdev_init("ibm,opal-oppanel");
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000835
Russell Curreyaffddff2015-11-27 17:23:07 +1100836 /* Initialise OPAL kmsg dumper for flushing console on panic */
837 opal_kmsg_init();
838
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000839 return 0;
840}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000841machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000842
843void opal_shutdown(void)
844{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100845 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000846
Alistair Popple9f0fd042015-05-15 14:06:37 +1000847 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100848
849 /*
850 * Then sync with OPAL which ensure anything that can
851 * potentially write to our memory has completed such
852 * as an ongoing dump retrieval
853 */
854 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
855 rc = opal_sync_host_reboot();
856 if (rc == OPAL_BUSY)
857 opal_poll_events(NULL);
858 else
859 mdelay(10);
860 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530861
862 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100863 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
864 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000865}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030866
867/* Export this so that test modules can use it */
868EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800869EXPORT_SYMBOL_GPL(opal_xscom_read);
870EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800871EXPORT_SYMBOL_GPL(opal_ipmi_send);
872EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800873EXPORT_SYMBOL_GPL(opal_flash_read);
874EXPORT_SYMBOL_GPL(opal_flash_write);
875EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800876EXPORT_SYMBOL_GPL(opal_prd_msg);
Anton Blanchard3441f042014-04-22 15:01:26 +1000877
878/* Convert a region of vmalloc memory to an opal sg list */
879struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
880 unsigned long vmalloc_size)
881{
882 struct opal_sg_list *sg, *first = NULL;
883 unsigned long i = 0;
884
885 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
886 if (!sg)
887 goto nomem;
888
889 first = sg;
890
891 while (vmalloc_size > 0) {
892 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
893 uint64_t length = min(vmalloc_size, PAGE_SIZE);
894
895 sg->entry[i].data = cpu_to_be64(data);
896 sg->entry[i].length = cpu_to_be64(length);
897 i++;
898
899 if (i >= SG_ENTRIES_PER_NODE) {
900 struct opal_sg_list *next;
901
902 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
903 if (!next)
904 goto nomem;
905
906 sg->length = cpu_to_be64(
907 i * sizeof(struct opal_sg_entry) + 16);
908 i = 0;
909 sg->next = cpu_to_be64(__pa(next));
910 sg = next;
911 }
912
913 vmalloc_addr += length;
914 vmalloc_size -= length;
915 }
916
917 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
918
919 return first;
920
921nomem:
922 pr_err("%s : Failed to allocate memory\n", __func__);
923 opal_free_sg_list(first);
924 return NULL;
925}
926
927void opal_free_sg_list(struct opal_sg_list *sg)
928{
929 while (sg) {
930 uint64_t next = be64_to_cpu(sg->next);
931
932 kfree(sg);
933
934 if (next)
935 sg = __va(next);
936 else
937 sg = NULL;
938 }
939}
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530940
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200941int opal_error_code(int rc)
942{
943 switch (rc) {
944 case OPAL_SUCCESS: return 0;
945
946 case OPAL_PARAMETER: return -EINVAL;
947 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
948 case OPAL_BUSY_EVENT: return -EBUSY;
949 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +0200950 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200951
952 case OPAL_UNSUPPORTED: return -EIO;
953 case OPAL_HARDWARE: return -EIO;
954 case OPAL_INTERNAL_ERROR: return -EIO;
955 default:
956 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
957 return -EIO;
958 }
959}
960
Alistair Popple1d0761d2016-12-14 13:36:51 +1100961void powernv_set_nmmu_ptcr(unsigned long ptcr)
962{
963 int rc;
964
965 if (firmware_has_feature(FW_FEATURE_OPAL)) {
966 rc = opal_nmmu_set_ptcr(-1UL, ptcr);
967 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
968 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__);
969 }
970}
971
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530972EXPORT_SYMBOL_GPL(opal_poll_events);
973EXPORT_SYMBOL_GPL(opal_rtc_read);
974EXPORT_SYMBOL_GPL(opal_rtc_write);
975EXPORT_SYMBOL_GPL(opal_tpo_read);
976EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +0530977EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +0530978/* Export these symbols for PowerNV LED class driver */
979EXPORT_SYMBOL_GPL(opal_leds_get_ind);
980EXPORT_SYMBOL_GPL(opal_leds_set_ind);
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000981/* Export this symbol for PowerNV Operator Panel class driver */
982EXPORT_SYMBOL_GPL(opal_write_oppanel_async);
Paul Mackerrasffe6d812016-11-21 16:01:36 +1100983/* Export this for KVM */
984EXPORT_SYMBOL_GPL(opal_int_set_mfrr);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +1000985EXPORT_SYMBOL_GPL(opal_int_eoi);