blob: 404c379db168cf614036293c8787c75b6b656d58 [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;
Benjamin Herrenschmidt5138b312017-11-22 17:01:06 +1100130 pr_debug("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
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000347static int __opal_put_chars(uint32_t vtermno, const char *data, int total_len, bool atomic)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000348{
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000349 unsigned long flags = 0 /* shut up gcc */;
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000350 int written;
351 __be64 olen;
352 s64 rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000353
354 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000355 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000356
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000357 if (atomic)
358 spin_lock_irqsave(&opal_write_lock, flags);
Stewart Smithe4d54f72015-12-09 17:18:20 +1100359 rc = opal_console_write_buffer_space(vtermno, &olen);
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000360 if (rc || be64_to_cpu(olen) < total_len) {
Stewart Smithe4d54f72015-12-09 17:18:20 +1100361 /* Closed -> drop characters */
362 if (rc)
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000363 written = total_len;
364 else
365 written = -EAGAIN;
366 goto out;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000367 }
368
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000369 /* Should not get a partial write here because space is available. */
370 olen = cpu_to_be64(total_len);
371 rc = opal_console_write(vtermno, &olen, data);
372 if (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
373 if (rc == OPAL_BUSY_EVENT) {
374 mdelay(OPAL_BUSY_DELAY_MS);
375 opal_poll_events(NULL);
376 } else if (rc == OPAL_BUSY_EVENT) {
377 mdelay(OPAL_BUSY_DELAY_MS);
Nicholas Piggin36d2dab2018-05-01 00:55:45 +1000378 }
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000379 written = -EAGAIN;
380 goto out;
Nicholas Piggind2a22622018-05-01 00:55:48 +1000381 }
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000382
383 /* Closed or other error drop */
384 if (rc != OPAL_SUCCESS) {
385 written = opal_error_code(rc);
386 goto out;
387 }
388
389 written = be64_to_cpu(olen);
390 if (written < total_len) {
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000391 if (atomic) {
392 /* Should not happen */
393 pr_warn("atomic console write returned partial "
394 "len=%d written=%d\n", total_len, written);
395 }
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000396 if (!written)
397 written = -EAGAIN;
398 }
399
400out:
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000401 if (atomic)
402 spin_unlock_irqrestore(&opal_write_lock, flags);
Nicholas Piggind2a22622018-05-01 00:55:48 +1000403
Nicholas Pigginac4ac782018-05-01 00:55:50 +1000404 /* In the -EAGAIN case, callers loop, so we have to flush the console
405 * here in case they have interrupts off (and we don't want to wait
406 * for async flushing if we can make immediate progress here). If
407 * necessary the API could be made entirely non-flushing if the
408 * callers had a ->flush API to use.
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000409 */
Nicholas Pigginac4ac782018-05-01 00:55:50 +1000410 if (written == -EAGAIN)
411 opal_flush_console(vtermno);
Nicholas Pigginb74d2802018-05-01 00:55:49 +1000412
Nicholas Piggind2a22622018-05-01 00:55:48 +1000413 return written;
414}
415
Nicholas Piggin17cc1dd2018-05-01 00:55:51 +1000416int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
417{
418 return __opal_put_chars(vtermno, data, total_len, false);
419}
420
421/*
422 * opal_put_chars_atomic will not perform partial-writes. Data will be
423 * atomically written to the terminal or not at all. This is not strictly
424 * true at the moment because console space can race with OPAL's console
425 * writes.
426 */
427int opal_put_chars_atomic(uint32_t vtermno, const char *data, int total_len)
428{
429 return __opal_put_chars(vtermno, data, total_len, true);
430}
431
Nicholas Piggind2a22622018-05-01 00:55:48 +1000432int opal_flush_console(uint32_t vtermno)
433{
434 s64 rc;
435
436 if (!opal_check_token(OPAL_CONSOLE_FLUSH)) {
437 __be64 evt;
438
439 WARN_ONCE(1, "opal: OPAL_CONSOLE_FLUSH missing.\n");
440 /*
441 * If OPAL_CONSOLE_FLUSH is not implemented in the firmware,
442 * the console can still be flushed by calling the polling
443 * function while it has OPAL_EVENT_CONSOLE_OUTPUT events.
444 */
Nicholas Piggin36d2dab2018-05-01 00:55:45 +1000445 do {
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000446 opal_poll_events(&evt);
Nicholas Piggin36d2dab2018-05-01 00:55:45 +1000447 } while (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT);
Nicholas Piggind2a22622018-05-01 00:55:48 +1000448
449 return OPAL_SUCCESS;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000450 }
Nicholas Piggind2a22622018-05-01 00:55:48 +1000451
452 do {
453 rc = OPAL_BUSY;
454 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
455 rc = opal_console_flush(vtermno);
456 if (rc == OPAL_BUSY_EVENT) {
457 mdelay(OPAL_BUSY_DELAY_MS);
458 opal_poll_events(NULL);
459 } else if (rc == OPAL_BUSY) {
460 mdelay(OPAL_BUSY_DELAY_MS);
461 }
462 }
463 } while (rc == OPAL_PARTIAL); /* More to flush */
464
465 return opal_error_code(rc);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000466}
467
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530468static int opal_recover_mce(struct pt_regs *regs,
469 struct machine_check_event *evt)
470{
471 int recovered = 0;
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530472
473 if (!(regs->msr & MSR_RI)) {
474 /* If MSR_RI isn't set, we cannot recover */
Mahesh Salgaonkarc74dd882016-08-09 10:39:13 +0530475 pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n");
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530476 recovered = 0;
477 } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) {
478 /* Platform corrected itself */
479 recovered = 1;
Nicholas Piggin13638752017-02-28 12:00:46 +1000480 } else if (evt->severity == MCE_SEV_FATAL) {
481 /* Fatal machine check */
482 pr_err("Machine check interrupt is fatal\n");
483 recovered = 0;
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000484 }
485
486 if (!recovered && evt->severity == MCE_SEV_ERROR_SYNC) {
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530487 /*
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000488 * Try to kill processes if we get a synchronous machine check
489 * (e.g., one caused by execution of this instruction). This
490 * will devolve into a panic if we try to kill init or are in
491 * an interrupt etc.
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530492 *
493 * TODO: Queue up this address for hwpoisioning later.
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000494 * TODO: This is not quite right for d-side machine
495 * checks ->nip is not necessarily the important
496 * address.
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530497 */
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000498 if ((user_mode(regs))) {
499 _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
500 recovered = 1;
501 } else if (die_will_crash()) {
502 /*
503 * die() would kill the kernel, so better to go via
504 * the platform reboot code that will log the
505 * machine check.
506 */
507 recovered = 0;
508 } else {
509 die("Machine check", regs, SIGBUS);
510 recovered = 1;
511 }
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530512 }
Nicholas Piggin6fcd6ba2017-07-19 16:59:11 +1000513
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530514 return recovered;
515}
516
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000517void pnv_platform_error_reboot(struct pt_regs *regs, const char *msg)
518{
Nicholas Piggin35adacd2017-12-24 02:49:23 +1000519 panic_flush_kmsg_start();
520
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000521 pr_emerg("Hardware platform error: %s\n", msg);
522 if (regs)
523 show_regs(regs);
524 smp_send_stop();
Nicholas Piggin35adacd2017-12-24 02:49:23 +1000525
526 panic_flush_kmsg_end();
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000527
528 /*
529 * Don't bother to shut things down because this will
530 * xstop the system.
531 */
532 if (opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR, msg)
533 == OPAL_UNSUPPORTED) {
534 pr_emerg("Reboot type %d not supported for %s\n",
535 OPAL_REBOOT_PLATFORM_ERROR, msg);
536 }
537
538 /*
539 * We reached here. There can be three possibilities:
540 * 1. We are running on a firmware level that do not support
541 * opal_cec_reboot2()
542 * 2. We are running on a firmware level that do not support
543 * OPAL_REBOOT_PLATFORM_ERROR reboot type.
544 * 3. We are running on FSP based system that does not need
545 * opal to trigger checkstop explicitly for error analysis.
546 * The FSP PRD component would have already got notified
547 * about this error through other channels.
Balbir Singh5ee573e2018-03-08 11:36:06 +1100548 * 4. We are running on a newer skiboot that by default does
549 * not cause a checkstop, drops us back to the kernel to
550 * extract context and state at the time of the error.
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000551 */
552
Balbir Singh5ee573e2018-03-08 11:36:06 +1100553 panic(msg);
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000554}
555
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000556int opal_machine_check(struct pt_regs *regs)
557{
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530558 struct machine_check_event evt;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000559
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530560 if (!get_mce_event(&evt, MCE_EVENT_RELEASE))
561 return 0;
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000562
563 /* Print things out */
Mahesh Salgaonkar36df96f2013-10-30 20:05:40 +0530564 if (evt.version != MCE_V1) {
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000565 pr_err("Machine Check Exception, Unknown event version %d !\n",
566 evt.version);
567 return 0;
568 }
Michael Ellerman63f44d62017-04-03 15:29:34 +1000569 machine_check_print_event_info(&evt, user_mode(regs));
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000570
Mahesh Salgaonkarb63a0ff2013-10-30 20:06:13 +0530571 if (opal_recover_mce(regs, &evt))
572 return 1;
Mahesh Salgaonkare784b642015-07-31 21:24:38 +0530573
Nicholas Pigginb746e3e2017-07-19 16:59:10 +1000574 pnv_platform_error_reboot(regs, "Unrecoverable Machine Check exception");
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000575}
576
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530577/* Early hmi handler called in real mode. */
578int opal_hmi_exception_early(struct pt_regs *regs)
579{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530580 s64 rc;
581
582 /*
583 * call opal hmi handler. Pass paca address as token.
584 * The return value OPAL_SUCCESS is an indication that there is
585 * an HMI event generated waiting to pull by Linux.
586 */
587 rc = opal_handle_hmi();
588 if (rc == OPAL_SUCCESS) {
589 local_paca->hmi_event_available = 1;
590 return 1;
591 }
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530592 return 0;
593}
594
595/* HMI exception handler called in virtual mode during check_irq_replay. */
596int opal_handle_hmi_exception(struct pt_regs *regs)
597{
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530598 /*
599 * Check if HMI event is available.
Nicholas Piggin56c0b482018-05-11 03:20:05 +1000600 * if Yes, then wake kopald to process them.
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530601 */
602 if (!local_paca->hmi_event_available)
603 return 0;
604
605 local_paca->hmi_event_available = 0;
Nicholas Piggin56c0b482018-05-11 03:20:05 +1000606 opal_wake_poller();
Mahesh Salgaonkar0ef95b42014-07-29 18:40:07 +0530607
608 return 1;
Mahesh Salgaonkar0869b6f2014-07-29 18:40:01 +0530609}
610
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530611static uint64_t find_recovery_address(uint64_t nip)
612{
613 int i;
614
615 for (i = 0; i < mc_recoverable_range_len; i++)
616 if ((nip >= mc_recoverable_range[i].start_addr) &&
617 (nip < mc_recoverable_range[i].end_addr))
618 return mc_recoverable_range[i].recover_addr;
619 return 0;
620}
621
622bool opal_mce_check_early_recovery(struct pt_regs *regs)
623{
624 uint64_t recover_addr = 0;
625
626 if (!opal.base || !opal.size)
627 goto out;
628
629 if ((regs->nip >= opal.base) &&
Andrew Donnellandc3799b2015-12-21 18:28:37 +1100630 (regs->nip < (opal.base + opal.size)))
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +0530631 recover_addr = find_recovery_address(regs->nip);
632
633 /*
634 * Setup regs->nip to rfi into fixup address.
635 */
636 if (recover_addr)
637 regs->nip = recover_addr;
638
639out:
640 return !!recover_addr;
641}
642
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530643static int opal_sysfs_init(void)
644{
645 opal_kobj = kobject_create_and_add("opal", firmware_kobj);
646 if (!opal_kobj) {
647 pr_warn("kobject_create_and_add opal failed\n");
648 return -ENOMEM;
649 }
650
651 return 0;
652}
653
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100654static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj,
655 struct bin_attribute *bin_attr,
656 char *buf, loff_t off, size_t count)
657{
658 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
659 bin_attr->size);
660}
661
662static BIN_ATTR_RO(symbol_map, 0);
663
664static void opal_export_symmap(void)
665{
666 const __be64 *syms;
667 unsigned int size;
668 struct device_node *fw;
669 int rc;
670
671 fw = of_find_node_by_path("/ibm,opal/firmware");
672 if (!fw)
673 return;
674 syms = of_get_property(fw, "symbol-map", &size);
675 if (!syms || size != 2 * sizeof(__be64))
676 return;
677
678 /* Setup attributes */
679 bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0]));
680 bin_attr_symbol_map.size = be64_to_cpu(syms[1]);
681
682 rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map);
683 if (rc)
684 pr_warn("Error %d creating OPAL symbols file\n", rc);
685}
686
Matt Brown11fe9092017-03-30 10:28:01 +1100687static ssize_t export_attr_read(struct file *fp, struct kobject *kobj,
688 struct bin_attribute *bin_attr, char *buf,
689 loff_t off, size_t count)
690{
691 return memory_read_from_buffer(buf, count, &off, bin_attr->private,
692 bin_attr->size);
693}
694
695/*
696 * opal_export_attrs: creates a sysfs node for each property listed in
697 * the device-tree under /ibm,opal/firmware/exports/
698 * All new sysfs nodes are created under /opal/exports/.
699 * This allows for reserved memory regions (e.g. HDAT) to be read.
700 * The new sysfs nodes are only readable by root.
701 */
702static void opal_export_attrs(void)
703{
704 struct bin_attribute *attr;
705 struct device_node *np;
706 struct property *prop;
707 struct kobject *kobj;
708 u64 vals[2];
709 int rc;
710
711 np = of_find_node_by_path("/ibm,opal/firmware/exports");
712 if (!np)
713 return;
714
715 /* Create new 'exports' directory - /sys/firmware/opal/exports */
716 kobj = kobject_create_and_add("exports", opal_kobj);
717 if (!kobj) {
718 pr_warn("kobject_create_and_add() of exports failed\n");
719 return;
720 }
721
722 for_each_property_of_node(np, prop) {
723 if (!strcmp(prop->name, "name") || !strcmp(prop->name, "phandle"))
724 continue;
725
726 if (of_property_read_u64_array(np, prop->name, &vals[0], 2))
727 continue;
728
Michael Ellerman83c49192017-04-26 15:57:19 +1000729 attr = kzalloc(sizeof(*attr), GFP_KERNEL);
Matt Brown11fe9092017-03-30 10:28:01 +1100730
731 if (attr == NULL) {
732 pr_warn("Failed kmalloc for bin_attribute!");
733 continue;
734 }
735
Michael Ellerman83c49192017-04-26 15:57:19 +1000736 sysfs_bin_attr_init(attr);
Matt Brown11fe9092017-03-30 10:28:01 +1100737 attr->attr.name = kstrdup(prop->name, GFP_KERNEL);
738 attr->attr.mode = 0400;
739 attr->read = export_attr_read;
740 attr->private = __va(vals[0]);
741 attr->size = vals[1];
742
743 if (attr->attr.name == NULL) {
744 pr_warn("Failed kstrdup for bin_attribute attr.name");
745 kfree(attr);
746 continue;
747 }
748
749 rc = sysfs_create_bin_file(kobj, attr);
750 if (rc) {
751 pr_warn("Error %d creating OPAL sysfs exports/%s file\n",
752 rc, prop->name);
753 kfree(attr->attr.name);
754 kfree(attr);
755 }
756 }
757
758 of_node_put(np);
759}
760
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530761static void __init opal_dump_region_init(void)
762{
763 void *addr;
764 uint64_t size;
765 int rc;
766
Stewart Smithb962f5a2015-02-12 16:25:27 +1100767 if (!opal_check_token(OPAL_REGISTER_DUMP_REGION))
768 return;
769
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530770 /* Register kernel log buffer */
771 addr = log_buf_addr_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500772 if (addr == NULL)
773 return;
774
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530775 size = log_buf_len_get();
Pranith Kumar6501ab5e32015-01-21 21:26:09 -0500776 if (size == 0)
777 return;
778
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530779 rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF,
780 __pa(addr), size);
781 /* Don't warn if this is just an older OPAL that doesn't
782 * know about that call
783 */
784 if (rc && rc != OPAL_UNSUPPORTED)
785 pr_warn("DUMP: Failed to register kernel log buffer. "
786 "rc = %d\n", rc);
787}
Jeremy Kerr608b2862014-11-06 11:38:27 +0800788
Jack Miller9e4f51b2016-08-10 19:32:40 -0500789static void opal_pdev_init(const char *compatible)
Cyril Bured591902015-04-01 14:05:30 +0800790{
791 struct device_node *np;
792
Jack Miller9e4f51b2016-08-10 19:32:40 -0500793 for_each_compatible_node(np, NULL, compatible)
Neelesh Gupta47083452014-12-13 23:31:05 +0530794 of_platform_device_create(np, NULL, NULL);
795}
796
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530797static void __init opal_imc_init_dev(void)
798{
799 struct device_node *np;
800
801 np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT);
802 if (np)
803 of_platform_device_create(np, NULL, NULL);
804}
805
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100806static int kopald(void *unused)
807{
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000808 unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1;
Alistair Popple9f0fd042015-05-15 14:06:37 +1000809
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100810 set_freezable();
811 do {
812 try_to_freeze();
Nicholas Piggin56c0b482018-05-11 03:20:05 +1000813
814 opal_handle_events();
815
816 set_current_state(TASK_INTERRUPTIBLE);
817 if (opal_have_pending_events())
818 __set_current_state(TASK_RUNNING);
819 else
820 schedule_timeout(timeout);
821
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100822 } while (!kthread_should_stop());
823
824 return 0;
825}
826
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000827void opal_wake_poller(void)
828{
829 if (kopald_tsk)
830 wake_up_process(kopald_tsk);
831}
832
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100833static void opal_init_heartbeat(void)
834{
835 /* Old firwmware, we assume the HVC heartbeat is sufficient */
836 if (of_property_read_u32(opal_node, "ibm,heartbeat-ms",
837 &opal_heartbeat) != 0)
838 opal_heartbeat = 0;
839
840 if (opal_heartbeat)
Benjamin Herrenschmidta2036582016-07-04 14:51:44 +1000841 kopald_tsk = kthread_run(kopald, NULL, "kopald");
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100842}
843
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000844static int __init opal_init(void)
845{
Vasant Hegdec159b592015-08-19 22:19:53 +0530846 struct device_node *np, *consoles, *leds;
Gavin Shanc1c3a522015-01-23 14:25:05 +1100847 int rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000848
849 opal_node = of_find_node_by_path("/ibm,opal");
850 if (!opal_node) {
Michael Ellerman08135132015-01-28 15:10:33 +1100851 pr_warn("Device node not found\n");
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000852 return -ENODEV;
853 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000854
855 /* Register OPAL consoles if any ports */
Stewart Smith7261aaf2015-12-09 17:18:19 +1100856 consoles = of_find_node_by_path("/ibm,opal/consoles");
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000857 if (consoles) {
858 for_each_child_of_node(consoles, np) {
859 if (strcmp(np->name, "serial"))
860 continue;
861 of_platform_device_create(np, NULL, NULL);
862 }
863 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000864 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000865
Alistair Popple96e023e2015-05-15 14:06:36 +1000866 /* Initialise OPAL messaging system */
867 opal_message_init();
868
869 /* Initialise OPAL asynchronous completion interface */
870 opal_async_comp_init();
871
872 /* Initialise OPAL sensor interface */
873 opal_sensor_init();
874
875 /* Initialise OPAL hypervisor maintainence interrupt handling */
876 opal_hmi_handler_init();
877
Neelesh Gupta47083452014-12-13 23:31:05 +0530878 /* Create i2c platform devices */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500879 opal_pdev_init("ibm,opal-i2c");
Neelesh Gupta47083452014-12-13 23:31:05 +0530880
Oliver O'Halloran3013e172018-04-06 15:21:16 +1000881 /* Handle non-volatile memory devices */
882 opal_pdev_init("pmem-region");
883
Benjamin Herrenschmidt3bf57562014-11-14 16:13:50 +1100884 /* Setup a heatbeat thread if requested by OPAL */
885 opal_init_heartbeat();
886
Madhavan Srinivasan8f95faa2017-07-19 03:06:33 +0530887 /* Detect In-Memory Collection counters and create devices*/
888 opal_imc_init_dev();
889
Vasant Hegdec159b592015-08-19 22:19:53 +0530890 /* Create leds platform devices */
891 leds = of_find_node_by_path("/ibm,opal/leds");
892 if (leds) {
893 of_platform_device_create(leds, "opal_leds", NULL);
894 of_node_put(leds);
895 }
896
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100897 /* Initialise OPAL message log interface */
898 opal_msglog_init();
899
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530900 /* Create "opal" kobject under /sys/firmware */
901 rc = opal_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530902 if (rc == 0) {
Benjamin Herrenschmidtc8742f82014-12-11 12:39:49 +1100903 /* Export symbol map to userspace */
904 opal_export_symmap();
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530905 /* Setup dump region interface */
906 opal_dump_region_init();
Stewart Smith774fea12014-02-28 11:58:32 +1100907 /* Setup error log interface */
908 rc = opal_elog_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530909 /* Setup code update interface */
Cyril Bured591902015-04-01 14:05:30 +0800910 opal_flash_update_init();
Stewart Smithc7e64b92014-03-03 10:25:42 +1100911 /* Setup platform dump extract interface */
912 opal_platform_dump_init();
Neelesh Gupta4029cd62014-03-07 11:02:09 +0530913 /* Setup system parameters interface */
914 opal_sys_param_init();
Andrew Donnellan9b4fffa2016-02-09 18:17:48 +1100915 /* Setup message log sysfs interface. */
916 opal_msglog_sysfs_init();
Vasant Hegde50bd6152013-10-24 16:04:58 +0530917 }
Vasant Hegde6f68b5e2013-08-27 15:09:52 +0530918
Matt Brown11fe9092017-03-30 10:28:01 +1100919 /* Export all properties */
920 opal_export_attrs();
921
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800922 /* Initialize platform devices: IPMI backend, PRD & flash interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500923 opal_pdev_init("ibm,opal-ipmi");
924 opal_pdev_init("ibm,opal-flash");
925 opal_pdev_init("ibm,opal-prd");
Cyril Bured591902015-04-01 14:05:30 +0800926
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000927 /* Initialise platform device: oppanel interface */
Jack Miller9e4f51b2016-08-10 19:32:40 -0500928 opal_pdev_init("ibm,opal-oppanel");
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +1000929
Russell Curreyaffddff2015-11-27 17:23:07 +1100930 /* Initialise OPAL kmsg dumper for flushing console on panic */
931 opal_kmsg_init();
932
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +0530933 /* Initialise OPAL powercap interface */
934 opal_powercap_init();
935
Shilpasri G Bhat8e84b2d2017-08-10 09:01:19 +0530936 /* Initialise OPAL Power-Shifting-Ratio interface */
937 opal_psr_init();
938
Shilpasri G Bhatbf957152017-08-10 09:01:20 +0530939 /* Initialise OPAL sensor groups */
940 opal_sensor_groups_init();
941
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000942 return 0;
943}
Michael Ellermanb14726c2014-07-15 22:22:24 +1000944machine_subsys_initcall(powernv, opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000945
946void opal_shutdown(void)
947{
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100948 long rc = OPAL_BUSY;
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000949
Alistair Popple9f0fd042015-05-15 14:06:37 +1000950 opal_event_shutdown();
Vasant Hegdef7d98d12014-01-15 17:02:04 +1100951
952 /*
953 * Then sync with OPAL which ensure anything that can
954 * potentially write to our memory has completed such
955 * as an ongoing dump retrieval
956 */
957 while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) {
958 rc = opal_sync_host_reboot();
959 if (rc == OPAL_BUSY)
960 opal_poll_events(NULL);
961 else
962 mdelay(10);
963 }
Vasant Hegdeb09c2ec2014-08-09 11:15:45 +0530964
965 /* Unregister memory dump region */
Stewart Smithb962f5a2015-02-12 16:25:27 +1100966 if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION))
967 opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000968}
Joel Stanleye28b05e2014-04-01 14:28:20 +1030969
970/* Export this so that test modules can use it */
971EXPORT_SYMBOL_GPL(opal_invalid_call);
Jeremy Kerr594fcb92015-05-20 11:23:33 +0800972EXPORT_SYMBOL_GPL(opal_xscom_read);
973EXPORT_SYMBOL_GPL(opal_xscom_write);
Jeremy Kerr608b2862014-11-06 11:38:27 +0800974EXPORT_SYMBOL_GPL(opal_ipmi_send);
975EXPORT_SYMBOL_GPL(opal_ipmi_recv);
Cyril Bured591902015-04-01 14:05:30 +0800976EXPORT_SYMBOL_GPL(opal_flash_read);
977EXPORT_SYMBOL_GPL(opal_flash_write);
978EXPORT_SYMBOL_GPL(opal_flash_erase);
Jeremy Kerr0d7cd852015-06-04 21:51:47 +0800979EXPORT_SYMBOL_GPL(opal_prd_msg);
Haren Myneni6e708002018-06-13 00:28:57 -0700980EXPORT_SYMBOL_GPL(opal_check_token);
Anton Blanchard3441f042014-04-22 15:01:26 +1000981
982/* Convert a region of vmalloc memory to an opal sg list */
983struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr,
984 unsigned long vmalloc_size)
985{
986 struct opal_sg_list *sg, *first = NULL;
987 unsigned long i = 0;
988
989 sg = kzalloc(PAGE_SIZE, GFP_KERNEL);
990 if (!sg)
991 goto nomem;
992
993 first = sg;
994
995 while (vmalloc_size > 0) {
996 uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT;
997 uint64_t length = min(vmalloc_size, PAGE_SIZE);
998
999 sg->entry[i].data = cpu_to_be64(data);
1000 sg->entry[i].length = cpu_to_be64(length);
1001 i++;
1002
1003 if (i >= SG_ENTRIES_PER_NODE) {
1004 struct opal_sg_list *next;
1005
1006 next = kzalloc(PAGE_SIZE, GFP_KERNEL);
1007 if (!next)
1008 goto nomem;
1009
1010 sg->length = cpu_to_be64(
1011 i * sizeof(struct opal_sg_entry) + 16);
1012 i = 0;
1013 sg->next = cpu_to_be64(__pa(next));
1014 sg = next;
1015 }
1016
1017 vmalloc_addr += length;
1018 vmalloc_size -= length;
1019 }
1020
1021 sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16);
1022
1023 return first;
1024
1025nomem:
1026 pr_err("%s : Failed to allocate memory\n", __func__);
1027 opal_free_sg_list(first);
1028 return NULL;
1029}
1030
1031void opal_free_sg_list(struct opal_sg_list *sg)
1032{
1033 while (sg) {
1034 uint64_t next = be64_to_cpu(sg->next);
1035
1036 kfree(sg);
1037
1038 if (next)
1039 sg = __va(next);
1040 else
1041 sg = NULL;
1042 }
1043}
Neelesh Gupta16b1d262014-10-14 14:08:36 +05301044
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001045int opal_error_code(int rc)
1046{
1047 switch (rc) {
1048 case OPAL_SUCCESS: return 0;
1049
1050 case OPAL_PARAMETER: return -EINVAL;
1051 case OPAL_ASYNC_COMPLETION: return -EINPROGRESS;
Cyril Bur77adbd22017-11-03 13:41:45 +11001052 case OPAL_BUSY:
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001053 case OPAL_BUSY_EVENT: return -EBUSY;
1054 case OPAL_NO_MEM: return -ENOMEM;
Cédric Le Goater14aae782015-04-08 09:31:10 +02001055 case OPAL_PERMISSION: return -EPERM;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001056
1057 case OPAL_UNSUPPORTED: return -EIO;
1058 case OPAL_HARDWARE: return -EIO;
1059 case OPAL_INTERNAL_ERROR: return -EIO;
Shilpasri G Bhatcb8b3402017-08-10 09:01:18 +05301060 case OPAL_TIMEOUT: return -ETIMEDOUT;
Cédric Le Goatere3c5c2e2015-03-30 12:06:09 +02001061 default:
1062 pr_err("%s: unexpected OPAL error %d\n", __func__, rc);
1063 return -EIO;
1064 }
1065}
1066
Alistair Popple1d0761d2016-12-14 13:36:51 +11001067void powernv_set_nmmu_ptcr(unsigned long ptcr)
1068{
1069 int rc;
1070
1071 if (firmware_has_feature(FW_FEATURE_OPAL)) {
1072 rc = opal_nmmu_set_ptcr(-1UL, ptcr);
1073 if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED)
1074 pr_warn("%s: Unable to set nest mmu ptcr\n", __func__);
1075 }
1076}
1077
Neelesh Gupta16b1d262014-10-14 14:08:36 +05301078EXPORT_SYMBOL_GPL(opal_poll_events);
1079EXPORT_SYMBOL_GPL(opal_rtc_read);
1080EXPORT_SYMBOL_GPL(opal_rtc_write);
1081EXPORT_SYMBOL_GPL(opal_tpo_read);
1082EXPORT_SYMBOL_GPL(opal_tpo_write);
Neelesh Gupta47083452014-12-13 23:31:05 +05301083EXPORT_SYMBOL_GPL(opal_i2c_request);
Vasant Hegdec159b592015-08-19 22:19:53 +05301084/* Export these symbols for PowerNV LED class driver */
1085EXPORT_SYMBOL_GPL(opal_leds_get_ind);
1086EXPORT_SYMBOL_GPL(opal_leds_set_ind);
Suraj Jitindar Singh43a1dd92016-06-29 13:38:39 +10001087/* Export this symbol for PowerNV Operator Panel class driver */
1088EXPORT_SYMBOL_GPL(opal_write_oppanel_async);
Paul Mackerrasffe6d812016-11-21 16:01:36 +11001089/* Export this for KVM */
1090EXPORT_SYMBOL_GPL(opal_int_set_mfrr);
Benjamin Herrenschmidt5af50992017-04-05 17:54:56 +10001091EXPORT_SYMBOL_GPL(opal_int_eoi);
Cyril Bur77adbd22017-11-03 13:41:45 +11001092EXPORT_SYMBOL_GPL(opal_error_code);
Haren Myneni656ecc12018-06-13 00:32:40 -07001093/* Export the below symbol for NX compression */
1094EXPORT_SYMBOL(opal_nx_coproc_init);