blob: 2c1aa9cef66da6cf1eaab7dc979dee9c5ee78094 [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>
Nicholas Pigginb746e3e2017-07-19 16:59:10 +100029#include <linux/printk.h>
30#include <linux/kmsg_dump.h>
31#include <linux/console.h>
32#include <linux/sched/debug.h>
Michael Ellermanb14726c2014-07-15 22:22:24 +100033
34#include <asm/machdep.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000035#include <asm/opal.h>
36#include <asm/firmware.h>
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +053037#include <asm/mce.h>
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +053038#include <asm/imc-pmu.h>
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +100039#include <asm/bug.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000040
41#include "powernv.h"
42
Vasant Hegde6f68b5e2013-08-27 15:09:52 +053043/* /sys/firmware/opal */
44struct kobject *opal_kobj;
45
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000046struct opal {
47 u64 base;
48 u64 entry;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053049 u64 size;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000050} opal;
51
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053052struct mcheck_recoverable_range {
53 u64 start_addr;
54 u64 end_addr;
55 u64 recover_addr;
56};
57
58static struct mcheck_recoverable_range *mc_recoverable_range;
59static int mc_recoverable_range_len;
60
Joel Stanleybfc36892014-04-01 14:28:19 +103061struct device_node *opal_node;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000062static DEFINE_SPINLOCK(opal_write_lock);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +053063static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX];
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +110064static uint32_t opal_heartbeat;
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +100065static struct task_struct *kopald_tsk;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000066
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100067void opal_configure_cores(void)
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100068{
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050069 u64 reinit_flags = 0;
70
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100071 /* Do the actual re-init, This will clobber all FPRs, VRs, etc...
72 *
73 * It will preserve non volatile GPRs and HSPRG0/1. It will
74 * also restore HIDs and other SPRs to their original value
75 * but it might clobber a bunch.
76 */
77#ifdef __BIG_ENDIAN__
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050078 reinit_flags |= OPAL_REINIT_CPUS_HILE_BE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100079#else
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050080 reinit_flags |= OPAL_REINIT_CPUS_HILE_LE;
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100081#endif
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100082
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050083 /*
84 * POWER9 always support running hash:
85 * ie. Host hash supports hash guests
86 * Host radix supports hash/radix guests
87 */
Michael Ellermana70b4872017-07-17 21:19:01 +100088 if (early_cpu_has_feature(CPU_FTR_ARCH_300)) {
Benjamin Herrenschmidt1c0eaf02017-06-30 17:37:32 -050089 reinit_flags |= OPAL_REINIT_CPUS_MMU_HASH;
90 if (early_radix_enabled())
91 reinit_flags |= OPAL_REINIT_CPUS_MMU_RADIX;
92 }
93
94 opal_reinit_cpus(reinit_flags);
95
Benjamin Herrenschmidtd3cbff12016-07-05 15:03:49 +100096 /* Restore some bits */
97 if (cur_cpu_spec->cpu_restore)
98 cur_cpu_spec->cpu_restore();
Benjamin Herrenschmidt49266162014-05-20 11:01:28 +100099}
100
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000101int __init early_init_dt_scan_opal(unsigned long node,
102 const char *uname, int depth, void *data)
103{
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530104 const void *basep, *entryp, *sizep;
Rob Herring9d0c4df2014-04-01 23:49:03 -0500105 int basesz, entrysz, runtimesz;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000106
107 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
108 return 0;
109
110 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
111 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530112 sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000113
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530114 if (!basep || !entryp || !sizep)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000115 return 1;
116
117 opal.base = of_read_number(basep, basesz/4);
118 opal.entry = of_read_number(entryp, entrysz/4);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530119 opal.size = of_read_number(sizep, runtimesz/4);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000120
Rob Herring9d0c4df2014-04-01 23:49:03 -0500121 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000122 opal.base, basep, basesz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500123 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n",
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000124 opal.entry, entryp, entrysz);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500125 pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n",
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530126 opal.size, sizep, runtimesz);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000127
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +1000128 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
Stewart Smithe4d54f72015-12-09 17:18:20 +1100129 powerpc_firmware_features |= FW_FEATURE_OPAL;
130 pr_info("OPAL detected !\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000131 } else {
Stewart Smith786842b2015-12-09 17:18:18 +1100132 panic("OPAL != V3 detected, no longer supported.\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000133 }
134
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000135 return 1;
136}
137
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530138int __init early_init_dt_scan_recoverable_ranges(unsigned long node,
139 const char *uname, int depth, void *data)
140{
Rob Herring9d0c4df2014-04-01 23:49:03 -0500141 int i, psize, size;
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530142 const __be32 *prop;
143
144 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
145 return 0;
146
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530147 prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize);
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530148
149 if (!prop)
150 return 1;
151
152 pr_debug("Found machine check recoverable ranges.\n");
153
154 /*
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530155 * Calculate number of available entries.
156 *
157 * Each recoverable address range entry is (start address, len,
158 * recovery address), 2 cells each for start and recovery address,
159 * 1 cell for len, totalling 5 cells per entry.
160 */
161 mc_recoverable_range_len = psize / (sizeof(*prop) * 5);
162
163 /* Sanity check */
164 if (!mc_recoverable_range_len)
165 return 1;
166
167 /* Size required to hold all the entries. */
168 size = mc_recoverable_range_len *
169 sizeof(struct mcheck_recoverable_range);
170
171 /*
Nicholas Piggin76b42e22017-08-13 11:33:39 +1000172 * Allocate a buffer to hold the MC recoverable ranges.
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530173 */
Nicholas Piggin76b42e22017-08-13 11:33:39 +1000174 mc_recoverable_range =__va(memblock_alloc(size, __alignof__(u64)));
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530175 memset(mc_recoverable_range, 0, size);
176
Mahesh Salgaonkar6e556b42014-03-30 11:03:23 +0530177 for (i = 0; i < mc_recoverable_range_len; i++) {
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530178 mc_recoverable_range[i].start_addr =
179 of_read_number(prop + (i * 5) + 0, 2);
180 mc_recoverable_range[i].end_addr =
181 mc_recoverable_range[i].start_addr +
182 of_read_number(prop + (i * 5) + 2, 1);
183 mc_recoverable_range[i].recover_addr =
184 of_read_number(prop + (i * 5) + 3, 2);
185
186 pr_debug("Machine check recoverable range: %llx..%llx: %llx\n",
187 mc_recoverable_range[i].start_addr,
188 mc_recoverable_range[i].end_addr,
189 mc_recoverable_range[i].recover_addr);
190 }
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530191 return 1;
192}
193
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000194static int __init opal_register_exception_handlers(void)
195{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000196#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000197 u64 glue;
198
199 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
200 return -ENODEV;
201
Mahesh Salgaonkar28446de2013-10-30 20:05:58 +0530202 /* Hookup some exception handlers except machine check. We use the
203 * fwnmi area at 0x7000 to provide the glue space to OPAL
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000204 */
205 glue = 0x7000;
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530206
207 /*
208 * Check if we are running on newer firmware that exports
209 * OPAL_HANDLE_HMI token. If yes, then don't ask OPAL to patch
210 * the HMI interrupt and we catch it directly in Linux.
211 *
212 * For older firmware (i.e currently released POWER8 System Firmware
213 * as of today <= SV810_087), we fallback to old behavior and let OPAL
214 * patch the HMI vector and handle it inside OPAL firmware.
215 *
216 * For newer firmware (in development/yet to be released) we will
217 * start catching/handling HMI directly in Linux.
218 */
219 if (!opal_check_token(OPAL_HANDLE_HMI)) {
Michael Ellerman08135132015-01-28 15:10:33 +1100220 pr_info("Old firmware detected, OPAL handles HMIs.\n");
Mahesh Salgaonkar6507955c2014-10-10 21:28:26 +0530221 opal_register_exception_handler(
222 OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
223 0, glue);
224 glue += 128;
225 }
226
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000227 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +1000228#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000229
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000230 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000231}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000232machine_early_initcall(powernv, opal_register_exception_handlers);
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000233
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530234/*
235 * Opal message notifier based on message type. Allow subscribers to get
236 * notified for specific messgae type.
237 */
Michael Ellermand7cf83f2015-02-17 20:01:54 +1100238int opal_message_notifier_register(enum opal_msg_type msg_type,
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530239 struct notifier_block *nb)
240{
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530241 if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -0700242 pr_warn("%s: Invalid arguments, msg_type:%d\n",
243 __func__, msg_type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530244 return -EINVAL;
245 }
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530246
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530247 return atomic_notifier_chain_register(
248 &opal_msg_notifier_head[msg_type], nb);
249}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800250EXPORT_SYMBOL_GPL(opal_message_notifier_register);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530251
Michael Ellermandf60f572015-03-26 20:03:16 +1100252int opal_message_notifier_unregister(enum opal_msg_type msg_type,
Neelesh Guptab921e902015-02-11 11:57:23 +0530253 struct notifier_block *nb)
254{
255 return atomic_notifier_chain_unregister(
256 &opal_msg_notifier_head[msg_type], nb);
257}
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800258EXPORT_SYMBOL_GPL(opal_message_notifier_unregister);
Neelesh Guptab921e902015-02-11 11:57:23 +0530259
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530260static void opal_message_do_notify(uint32_t msg_type, void *msg)
261{
262 /* notify subscribers */
263 atomic_notifier_call_chain(&opal_msg_notifier_head[msg_type],
264 msg_type, msg);
265}
266
267static void opal_handle_message(void)
268{
269 s64 ret;
270 /*
271 * TODO: pre-allocate a message buffer depending on opal-msg-size
272 * value in /proc/device-tree.
273 */
274 static struct opal_msg msg;
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100275 u32 type;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530276
277 ret = opal_get_msg(__pa(&msg), sizeof(msg));
278 /* No opal message pending. */
279 if (ret == OPAL_RESOURCE)
280 return;
281
282 /* check for errors. */
283 if (ret) {
Joe Perchesf2c2cbc2016-10-24 21:00:08 -0700284 pr_warn("%s: Failed to retrieve opal message, err=%lld\n",
285 __func__, ret);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530286 return;
287 }
288
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100289 type = be32_to_cpu(msg.msg_type);
290
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530291 /* Sanity check */
Neelesh Gupta792f96e2015-02-11 11:57:06 +0530292 if (type >= OPAL_MSG_TYPE_MAX) {
Stewart Smith98da62b2015-12-11 12:08:23 +1100293 pr_warn_once("%s: Unknown message type: %u\n", __func__, type);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530294 return;
295 }
Anton Blanchardbb4398e2014-03-28 16:33:33 +1100296 opal_message_do_notify(type, (void *)&msg);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530297}
298
Alistair Popplea295af22015-05-15 14:06:41 +1000299static irqreturn_t opal_message_notify(int irq, void *data)
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530300{
Alistair Popplea295af22015-05-15 14:06:41 +1000301 opal_handle_message();
302 return IRQ_HANDLED;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530303}
304
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530305static int __init opal_message_init(void)
306{
Alistair Popplea295af22015-05-15 14:06:41 +1000307 int ret, i, irq;
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530308
309 for (i = 0; i < OPAL_MSG_TYPE_MAX; i++)
310 ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]);
311
Alistair Popplea295af22015-05-15 14:06:41 +1000312 irq = opal_event_request(ilog2(OPAL_EVENT_MSG_PENDING));
313 if (!irq) {
314 pr_err("%s: Can't register OPAL event irq (%d)\n",
315 __func__, irq);
316 return irq;
317 }
318
319 ret = request_irq(irq, opal_message_notify,
320 IRQ_TYPE_LEVEL_HIGH, "opal-msg", NULL);
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530321 if (ret) {
Alistair Popplea295af22015-05-15 14:06:41 +1000322 pr_err("%s: Can't request OPAL event irq (%d)\n",
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530323 __func__, ret);
324 return ret;
325 }
Alistair Popplea295af22015-05-15 14:06:41 +1000326
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530327 return 0;
328}
Mahesh Salgaonkar24366362013-11-18 15:35:58 +0530329
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000330int opal_get_chars(uint32_t vtermno, char *buf, int count)
331{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000332 s64 rc;
333 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000334
335 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000336 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000337 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000338 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000339 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000340 len = cpu_to_be64(count);
Rob Herring9d0c4df2014-04-01 23:49:03 -0500341 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000342 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000343 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000344 return 0;
345}
346
347int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
348{
349 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000350 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000351 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000352 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000353 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000354
355 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000356 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000357
358 /* We want put_chars to be atomic to avoid mangling of hvsi
359 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000360 * -EAGAIN if there isn't enough.
361 *
362 * Unfortunately, opal_console_write_buffer_space() doesn't
363 * appear to work on opal v1, so we just assume there is
364 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000365 */
366 spin_lock_irqsave(&opal_write_lock, flags);
Stewart Smithe4d54f72015-12-09 17:18:20 +1100367 rc = opal_console_write_buffer_space(vtermno, &olen);
368 len = be64_to_cpu(olen);
369 if (rc || len < total_len) {
370 spin_unlock_irqrestore(&opal_write_lock, flags);
371 /* Closed -> drop characters */
372 if (rc)
373 return total_len;
374 opal_poll_events(NULL);
375 return -EAGAIN;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000376 }
377
378 /* We still try to handle partial completions, though they
379 * should no longer happen.
380 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000381 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000382 while(total_len > 0 && (rc == OPAL_BUSY ||
383 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000384 olen = cpu_to_be64(total_len);
385 rc = opal_console_write(vtermno, &olen, data);
386 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000387
388 /* Closed or other error drop */
389 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
390 rc != OPAL_BUSY_EVENT) {
391 written = total_len;
392 break;
393 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000394 if (rc == OPAL_SUCCESS) {
395 total_len -= len;
396 data += len;
397 written += len;
398 }
399 /* This is a bit nasty but we need that for the console to
400 * flush when there aren't any interrupts. We will clean
401 * things a bit later to limit that to synchronous path
402 * such as the kernel console and xmon/udbg
403 */
404 do
405 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000406 while(rc == OPAL_SUCCESS &&
407 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000408 }
409 spin_unlock_irqrestore(&opal_write_lock, flags);
410 return written;
411}
412
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530413static int opal_recover_mce(struct pt_regs *regs,
414 struct machine_check_event *evt)
415{
416 int recovered = 0;
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530417
418 if (!(regs->msr & MSR_RI)) {
419 /* If MSR_RI isn't set, we cannot recover */
Mahesh Salgaonkarc74dd882016-08-09 10:39:13 +0530420 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530421 recovered = 0;
422 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
423 /* Platform corrected itself */
424 recovered = 1;
Nicholas Piggin13638752017-02-28 12:00:46 +1000425 } else if (evt->severity == MCE_SEV_FATAL) {
426 /* Fatal machine check */
427 pr_err("Machine check interrupt is fatal\n");
428 recovered = 0;
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000429 }
430
431 if (!recovered && evt->severity == MCE_SEV_ERROR_SYNC) {
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530432 /*
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000433 * Try to kill processes if we get a synchronous machine check
434 * (e.g., one caused by execution of this instruction). This
435 * will devolve into a panic if we try to kill init or are in
436 * an interrupt etc.
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530437 *
438 * TODO: Queue up this address for hwpoisioning later.
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000439 * TODO: This is not quite right for d-side machine
440 * checks ->nip is not necessarily the important
441 * address.
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530442 */
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000443 if ((user_mode(regs))) {
444 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
445 recovered = 1;
446 } else if (die_will_crash()) {
447 /*
448 * die() would kill the kernel, so better to go via
449 * the platform reboot code that will log the
450 * machine check.
451 */
452 recovered = 0;
453 } else {
454 die("Machine check", regs, SIGBUS);
455 recovered = 1;
456 }
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530457 }
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000458
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530459 return recovered;
460}
461
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000462void pnv_platform_error_reboot(struct pt_regs *regs, const char *msg)
463{
464 /*
465 * This is mostly taken from kernel/panic.c, but tries to do
466 * relatively minimal work. Don't use delay functions (TB may
467 * be broken), don't crash dump (need to set a firmware log),
468 * don't run notifiers. We do want to get some information to
469 * Linux console.
470 */
471 console_verbose();
472 bust_spinlocks(1);
473 pr_emerg("Hardware platform error: %s\n", msg);
474 if (regs)
475 show_regs(regs);
476 smp_send_stop();
477 printk_safe_flush_on_panic();
478 kmsg_dump(KMSG_DUMP_PANIC);
479 bust_spinlocks(0);
480 debug_locks_off();
481 console_flush_on_panic();
482
483 /*
484 * Don't bother to shut things down because this will
485 * xstop the system.
486 */
487 if (opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR, msg)
488 == OPAL_UNSUPPORTED) {
489 pr_emerg("Reboot type %d not supported for %s\n",
490 OPAL_REBOOT_PLATFORM_ERROR, msg);
491 }
492
493 /*
494 * We reached here. There can be three possibilities:
495 * 1. We are running on a firmware level that do not support
496 * opal_cec_reboot2()
497 * 2. We are running on a firmware level that do not support
498 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
499 * 3. We are running on FSP based system that does not need
500 * opal to trigger checkstop explicitly for error analysis.
501 * The FSP PRD component would have already got notified
502 * about this error through other channels.
503 */
504
505 ppc_md.restart(NULL);
506}
507
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000508int opal_machine_check(struct pt_regs *regs)
509{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530510 struct machine_check_event evt;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000511
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530512 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
513 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000514
515 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530516 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000517 pr_err("Machine Check Exception, Unknown event version %d !\n",
518 evt.version);
519 return 0;
520 }
Michael Ellerman63f44d62017-04-03 15:29:34 +1000521 machine_check_print_event_info(&evt, user_mode(regs));
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000522
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530523 if (opal_recover_mce(regs, &evt))
524 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530525
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000526 pnv_platform_error_reboot(regs, "Unrecoverable Machine Check exception");
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000527}
528
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530529/* Early hmi handler called in real mode. */
530int opal_hmi_exception_early(struct pt_regs *regs)
531{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530532 s64 rc;
533
534 /*
535 * call opal hmi handler. Pass paca address as token.
536 * The return value OPAL_SUCCESS is an indication that there is
537 * an HMI event generated waiting to pull by Linux.
538 */
539 rc = opal_handle_hmi();
540 if (rc == OPAL_SUCCESS) {
541 local_paca->hmi_event_available = 1;
542 return 1;
543 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530544 return 0;
545}
546
547/* HMI exception handler called in virtual mode during check_irq_replay. */
548int opal_handle_hmi_exception(struct pt_regs *regs)
549{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530550 s64 rc;
551 __be64 evt = 0;
552
553 /*
554 * Check if HMI event is available.
555 * if Yes, then call opal_poll_events to pull opal messages and
556 * process them.
557 */
558 if (!local_paca->hmi_event_available)
559 return 0;
560
561 local_paca->hmi_event_available = 0;
562 rc = opal_poll_events(&evt);
Alistair Popple81f2f7c2015-05-15 14:06:44 +1000563 if (rc == OPAL_SUCCESS && evt)
Alistair Popple9f0fd042015-05-15 14:06:37 +1000564 opal_handle_events(be64_to_cpu(evt));
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530565
566 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530567}
568
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530569static uint64_t find_recovery_address(uint64_t nip)
570{
571 int i;
572
573 for (i = 0; i < mc_recoverable_range_len; i++)
574 if ((nip >= mc_recoverable_range[i].start_addr) &&
575 (nip < mc_recoverable_range[i].end_addr))
576 return mc_recoverable_range[i].recover_addr;
577 return 0;
578}
579
580bool opal_mce_check_early_recovery(struct pt_regs *regs)
581{
582 uint64_t recover_addr = 0;
583
584 if (!opal.base || !opal.size)
585 goto out;
586
587 if ((regs->nip >= opal.base) &&
Andrew Donnellandc3799b2015-12-21 18:28:37 +1100588 (regs->nip < (opal.base + opal.size)))
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530589 recover_addr = find_recovery_address(regs->nip);
590
591 /*
592 * Setup regs->nip to rfi into fixup address.
593 */
594 if (recover_addr)
595 regs->nip = recover_addr;
596
597out:
598 return !!recover_addr;
599}
600
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530601static int opal_sysfs_init(void)
602{
603 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
604 if (!opal_kobj) {
605 pr_warn("kobject_create_and_add opal failed\n");
606 return -ENOMEM;
607 }
608
609 return 0;
610}
611
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100612static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
613 struct bin_attribute *bin_attr,
614 char *buf, loff_t off, size_t count)
615{
616 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
617 bin_attr->size);
618}
619
620static BIN_ATTR_RO(symbol_map, 0);
621
622static void opal_export_symmap(void)
623{
624 const __be64 *syms;
625 unsigned int size;
626 struct device_node *fw;
627 int rc;
628
629 fw = of_find_node_by_path("/ibm,opal/firmware");
630 if (!fw)
631 return;
632 syms = of_get_property(fw, "symbol-map", &size);
633 if (!syms || size != 2 * sizeof(__be64))
634 return;
635
636 /* Setup attributes */
637 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
638 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
639
640 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
641 if (rc)
642 pr_warn("Error %d creating OPAL symbols file\n", rc);
643}
644
Matt Brown11fe9092017-03-30 10:28:01 +1100645static ssize_t export_attr_read(struct file *fp, struct kobject *kobj,
646 struct bin_attribute *bin_attr, char *buf,
647 loff_t off, size_t count)
648{
649 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
650 bin_attr->size);
651}
652
653/*
654 * opal_export_attrs: creates a sysfs node for each property listed in
655 * the device-tree under /ibm,opal/firmware/exports/
656 * All new sysfs nodes are created under /opal/exports/.
657 * This allows for reserved memory regions (e.g. HDAT) to be read.
658 * The new sysfs nodes are only readable by root.
659 */
660static void opal_export_attrs(void)
661{
662 struct bin_attribute *attr;
663 struct device_node *np;
664 struct property *prop;
665 struct kobject *kobj;
666 u64 vals[2];
667 int rc;
668
669 np = of_find_node_by_path("/ibm,opal/firmware/exports");
670 if (!np)
671 return;
672
673 /* Create new 'exports' directory - /sys/firmware/opal/exports */
674 kobj = kobject_create_and_add("exports", opal_kobj);
675 if (!kobj) {
676 pr_warn("kobject_create_and_add() of exports failed\n");
677 return;
678 }
679
680 for_each_property_of_node(np, prop) {
681 if (!strcmp(prop->name, "name") || !strcmp(prop->name, "phandle"))
682 continue;
683
684 if (of_property_read_u64_array(np, prop->name, &vals[0], 2))
685 continue;
686
Michael Ellerman83c49192017-04-26 15:57:19 +1000687 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
Matt Brown11fe9092017-03-30 10:28:01 +1100688
689 if (attr == NULL) {
690 pr_warn("Failed kmalloc for bin_attribute!");
691 continue;
692 }
693
Michael Ellerman83c49192017-04-26 15:57:19 +1000694 sysfs_bin_attr_init(attr);
Matt Brown11fe9092017-03-30 10:28:01 +1100695 attr->attr.name = kstrdup(prop->name, GFP_KERNEL);
696 attr->attr.mode = 0400;
697 attr->read = export_attr_read;
698 attr->private = __va(vals[0]);
699 attr->size = vals[1];
700
701 if (attr->attr.name == NULL) {
702 pr_warn("Failed kstrdup for bin_attribute attr.name");
703 kfree(attr);
704 continue;
705 }
706
707 rc = sysfs_create_bin_file(kobj, attr);
708 if (rc) {
709 pr_warn("Error %d creating OPAL sysfs exports/%s file\n",
710 rc, prop->name);
711 kfree(attr->attr.name);
712 kfree(attr);
713 }
714 }
715
716 of_node_put(np);
717}
718
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530719static void __init opal_dump_region_init(void)
720{
721 void *addr;
722 uint64_t size;
723 int rc;
724
Stewart Smithb962f5a2015-02-12 16:25:27 +1100725 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
726 return;
727
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530728 /* Register kernel log buffer */
729 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500730 if (addr == NULL)
731 return;
732
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530733 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500734 if (size == 0)
735 return;
736
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530737 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
738 __pa(addr), size);
739 /* Don't warn if this is just an older OPAL that doesn't
740 * know about that call
741 */
742 if (rc && rc != OPAL_UNSUPPORTED)
743 pr_warn("DUMP: Failed to register kernel log buffer. "
744 "rc = %d\n", rc);
745}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800746
Jack Miller9e4f51b2016-08-10 19:32:40 -0500747static void opal_pdev_init(const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800748{
749 struct device_node *np;
750
Jack Miller9e4f51b2016-08-10 19:32:40 -0500751 for_each_compatible_node(np, NULL, compatible)
Neelesh Gupta47083452014-12-13 23:31:05 +0530752 of_platform_device_create(np, NULL, NULL);
753}
754
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530755static void __init opal_imc_init_dev(void)
756{
757 struct device_node *np;
758
759 np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT);
760 if (np)
761 of_platform_device_create(np, NULL, NULL);
762}
763
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100764static int kopald(void *unused)
765{
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000766 unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1;
Alistair Popple9f0fd042015-05-15 14:06:37 +1000767 __be64 events;
768
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100769 set_freezable();
770 do {
771 try_to_freeze();
Alistair Popple9f0fd042015-05-15 14:06:37 +1000772 opal_poll_events(&events);
773 opal_handle_events(be64_to_cpu(events));
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000774 schedule_timeout_interruptible(timeout);
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100775 } while (!kthread_should_stop());
776
777 return 0;
778}
779
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000780void opal_wake_poller(void)
781{
782 if (kopald_tsk)
783 wake_up_process(kopald_tsk);
784}
785
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100786static void opal_init_heartbeat(void)
787{
788 /* Old firwmware, we assume the HVC heartbeat is sufficient */
789 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
790 &opal_heartbeat) != 0)
791 opal_heartbeat = 0;
792
793 if (opal_heartbeat)
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000794 kopald_tsk = kthread_run(kopald, NULL, "kopald");
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100795}
796
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000797static int __init opal_init(void)
798{
Vasant Hegdec159b592015-08-19 22:19:53 +0530799 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100800 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000801
802 opal_node = of_find_node_by_path("/ibm,opal");
803 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100804 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000805 return -ENODEV;
806 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000807
808 /* Register OPAL consoles if any ports */
Stewart Smith7261aaf2015-12-09 17:18:19 +1100809 consoles = of_find_node_by_path("/ibm,opal/consoles");
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000810 if (consoles) {
811 for_each_child_of_node(consoles, np) {
812 if (strcmp(np->name, "serial"))
813 continue;
814 of_platform_device_create(np, NULL, NULL);
815 }
816 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000817 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000818
Alistair Popple96e023e2015-05-15 14:06:36 +1000819 /* Initialise OPAL messaging system */
820 opal_message_init();
821
822 /* Initialise OPAL asynchronous completion interface */
823 opal_async_comp_init();
824
825 /* Initialise OPAL sensor interface */
826 opal_sensor_init();
827
828 /* Initialise OPAL hypervisor maintainence interrupt handling */
829 opal_hmi_handler_init();
830
Neelesh Gupta47083452014-12-13 23:31:05 +0530831 /* Create i2c platform devices */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500832 opal_pdev_init("ibm,opal-i2c");
Neelesh Gupta47083452014-12-13 23:31:05 +0530833
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100834 /* Setup a heatbeat thread if requested by OPAL */
835 opal_init_heartbeat();
836
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530837 /* Detect In-Memory Collection counters and create devices*/
838 opal_imc_init_dev();
839
Vasant Hegdec159b592015-08-19 22:19:53 +0530840 /* Create leds platform devices */
841 leds = of_find_node_by_path("/ibm,opal/leds");
842 if (leds) {
843 of_platform_device_create(leds, "opal_leds", NULL);
844 of_node_put(leds);
845 }
846
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100847 /* Initialise OPAL message log interface */
848 opal_msglog_init();
849
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530850 /* Create "opal" kobject under /sys/firmware */
851 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530852 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100853 /* Export symbol map to userspace */
854 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530855 /* Setup dump region interface */
856 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100857 /* Setup error log interface */
858 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530859 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800860 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100861 /* Setup platform dump extract interface */
862 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530863 /* Setup system parameters interface */
864 opal_sys_param_init();
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100865 /* Setup message log sysfs interface. */
866 opal_msglog_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530867 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530868
Matt Brown11fe9092017-03-30 10:28:01 +1100869 /* Export all properties */
870 opal_export_attrs();
871
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800872 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500873 opal_pdev_init("ibm,opal-ipmi");
874 opal_pdev_init("ibm,opal-flash");
875 opal_pdev_init("ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800876
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000877 /* Initialise platform device: oppanel interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500878 opal_pdev_init("ibm,opal-oppanel");
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000879
Russell Curreyaffddff2015-11-27 17:23:07 +1100880 /* Initialise OPAL kmsg dumper for flushing console on panic */
881 opal_kmsg_init();
882
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +0530883 /* Initialise OPAL powercap interface */
884 opal_powercap_init();
885
Shilpasri G Bhat8e84b2d2017-08-10 09:01:19 +0530886 /* Initialise OPAL Power-Shifting-Ratio interface */
887 opal_psr_init();
888
Shilpasri G Bhatbf957152017-08-10 09:01:20 +0530889 /* Initialise OPAL sensor groups */
890 opal_sensor_groups_init();
891
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000892 return 0;
893}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000894machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000895
896void opal_shutdown(void)
897{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100898 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000899
Alistair Popple9f0fd042015-05-15 14:06:37 +1000900 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100901
902 /*
903 * Then sync with OPAL which ensure anything that can
904 * potentially write to our memory has completed such
905 * as an ongoing dump retrieval
906 */
907 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
908 rc = opal_sync_host_reboot();
909 if (rc == OPAL_BUSY)
910 opal_poll_events(NULL);
911 else
912 mdelay(10);
913 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530914
915 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100916 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
917 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000918}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030919
920/* Export this so that test modules can use it */
921EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800922EXPORT_SYMBOL_GPL(opal_xscom_read);
923EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800924EXPORT_SYMBOL_GPL(opal_ipmi_send);
925EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800926EXPORT_SYMBOL_GPL(opal_flash_read);
927EXPORT_SYMBOL_GPL(opal_flash_write);
928EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800929EXPORT_SYMBOL_GPL(opal_prd_msg);
Anton Blanchard3441f042014-04-22 15:01:26 +1000930
931/* Convert a region of vmalloc memory to an opal sg list */
932struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
933 unsigned long vmalloc_size)
934{
935 struct opal_sg_list *sg, *first = NULL;
936 unsigned long i = 0;
937
938 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
939 if (!sg)
940 goto nomem;
941
942 first = sg;
943
944 while (vmalloc_size > 0) {
945 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
946 uint64_t length = min(vmalloc_size, PAGE_SIZE);
947
948 sg->entry[i].data = cpu_to_be64(data);
949 sg->entry[i].length = cpu_to_be64(length);
950 i++;
951
952 if (i >= SG_ENTRIES_PER_NODE) {
953 struct opal_sg_list *next;
954
955 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
956 if (!next)
957 goto nomem;
958
959 sg->length = cpu_to_be64(
960 i * sizeof(struct opal_sg_entry) + 16);
961 i = 0;
962 sg->next = cpu_to_be64(__pa(next));
963 sg = next;
964 }
965
966 vmalloc_addr += length;
967 vmalloc_size -= length;
968 }
969
970 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
971
972 return first;
973
974nomem:
975 pr_err("%s : Failed to allocate memory\n", __func__);
976 opal_free_sg_list(first);
977 return NULL;
978}
979
980void opal_free_sg_list(struct opal_sg_list *sg)
981{
982 while (sg) {
983 uint64_t next = be64_to_cpu(sg->next);
984
985 kfree(sg);
986
987 if (next)
988 sg = __va(next);
989 else
990 sg = NULL;
991 }
992}
Neelesh Gupta16b1d262014-10-14 14:08:36 +0530993
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +0200994int opal_error_code(int rc)
995{
996 switch (rc) {
997 case OPAL_SUCCESS: return 0;
998
999 case OPAL_PARAMETER: return -EINVAL;
1000 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
Cyril Bur77adbd22017-11-03 13:41:45 +11001001 case OPAL_BUSY:
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001002 case OPAL_BUSY_EVENT: return -EBUSY;
1003 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +02001004 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001005
1006 case OPAL_UNSUPPORTED: return -EIO;
1007 case OPAL_HARDWARE: return -EIO;
1008 case OPAL_INTERNAL_ERROR: return -EIO;
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +05301009 case OPAL_TIMEOUT: return -ETIMEDOUT;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001010 default:
1011 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
1012 return -EIO;
1013 }
1014}
1015
Alistair Popple1d0761d2016-12-14 13:36:51 +11001016void powernv_set_nmmu_ptcr(unsigned long ptcr)
1017{
1018 int rc;
1019
1020 if (firmware_has_feature(FW_FEATURE_OPAL)) {
1021 rc = opal_nmmu_set_ptcr(-1UL, ptcr);
1022 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
1023 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__);
1024 }
1025}
1026
Neelesh Gupta16b1d262014-10-14 14:08:36 +05301027EXPORT_SYMBOL_GPL(opal_poll_events);
1028EXPORT_SYMBOL_GPL(opal_rtc_read);
1029EXPORT_SYMBOL_GPL(opal_rtc_write);
1030EXPORT_SYMBOL_GPL(opal_tpo_read);
1031EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +05301032EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +05301033/* Export these symbols for PowerNV LED class driver */
1034EXPORT_SYMBOL_GPL(opal_leds_get_ind);
1035EXPORT_SYMBOL_GPL(opal_leds_set_ind);
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +10001036/* Export this symbol for PowerNV Operator Panel class driver */
1037EXPORT_SYMBOL_GPL(opal_write_oppanel_async);
Paul Mackerrasffe6d812016-11-21 16:01:36 +11001038/* Export this for KVM */
1039EXPORT_SYMBOL_GPL(opal_int_set_mfrr);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001040EXPORT_SYMBOL_GPL(opal_int_eoi);
Cyril Bur77adbd22017-11-03 13:41:45 +11001041EXPORT_SYMBOL_GPL(opal_error_code);