Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 1 | /* |
| 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 Herrenschmidt | c8742f8 | 2014-12-11 12:39:49 +1100 | [diff] [blame] | 12 | #define pr_fmt(fmt) "opal: " fmt |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 13 | |
Benjamin Herrenschmidt | c8742f8 | 2014-12-11 12:39:49 +1100 | [diff] [blame] | 14 | #include <linux/printk.h> |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 15 | #include <linux/types.h> |
| 16 | #include <linux/of.h> |
Rob Herring | 26a2056 | 2013-09-26 07:40:04 -0500 | [diff] [blame] | 17 | #include <linux/of_fdt.h> |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 18 | #include <linux/of_platform.h> |
Madhavan Srinivasan | 8f95faa | 2017-07-19 03:06:33 +0530 | [diff] [blame] | 19 | #include <linux/of_address.h> |
Benjamin Herrenschmidt | a125e09 | 2011-09-19 17:45:03 +0000 | [diff] [blame] | 20 | #include <linux/interrupt.h> |
Gavin Shan | 1bc98de | 2013-06-20 18:13:22 +0800 | [diff] [blame] | 21 | #include <linux/notifier.h> |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 22 | #include <linux/slab.h> |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 23 | #include <linux/sched.h> |
Vasant Hegde | 6f68b5e | 2013-08-27 15:09:52 +0530 | [diff] [blame] | 24 | #include <linux/kobject.h> |
Vasant Hegde | f7d98d1 | 2014-01-15 17:02:04 +1100 | [diff] [blame] | 25 | #include <linux/delay.h> |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 26 | #include <linux/memblock.h> |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 27 | #include <linux/kthread.h> |
| 28 | #include <linux/freezer.h> |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 29 | #include <linux/printk.h> |
| 30 | #include <linux/kmsg_dump.h> |
| 31 | #include <linux/console.h> |
| 32 | #include <linux/sched/debug.h> |
Michael Ellerman | b14726c | 2014-07-15 22:22:24 +1000 | [diff] [blame] | 33 | |
| 34 | #include <asm/machdep.h> |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 35 | #include <asm/opal.h> |
| 36 | #include <asm/firmware.h> |
Mahesh Salgaonkar | 36df96f | 2013-10-30 20:05:40 +0530 | [diff] [blame] | 37 | #include <asm/mce.h> |
Madhavan Srinivasan | 8f95faa | 2017-07-19 03:06:33 +0530 | [diff] [blame] | 38 | #include <asm/imc-pmu.h> |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 39 | #include <asm/bug.h> |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 40 | |
| 41 | #include "powernv.h" |
| 42 | |
Vasant Hegde | 6f68b5e | 2013-08-27 15:09:52 +0530 | [diff] [blame] | 43 | /* /sys/firmware/opal */ |
| 44 | struct kobject *opal_kobj; |
| 45 | |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 46 | struct opal { |
| 47 | u64 base; |
| 48 | u64 entry; |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 49 | u64 size; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 50 | } opal; |
| 51 | |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 52 | struct mcheck_recoverable_range { |
| 53 | u64 start_addr; |
| 54 | u64 end_addr; |
| 55 | u64 recover_addr; |
| 56 | }; |
| 57 | |
| 58 | static struct mcheck_recoverable_range *mc_recoverable_range; |
| 59 | static int mc_recoverable_range_len; |
| 60 | |
Joel Stanley | bfc3689 | 2014-04-01 14:28:19 +1030 | [diff] [blame] | 61 | struct device_node *opal_node; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 62 | static DEFINE_SPINLOCK(opal_write_lock); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 63 | static struct atomic_notifier_head opal_msg_notifier_head[OPAL_MSG_TYPE_MAX]; |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 64 | static uint32_t opal_heartbeat; |
Benjamin Herrenschmidt | a203658 | 2016-07-04 14:51:44 +1000 | [diff] [blame] | 65 | static struct task_struct *kopald_tsk; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 66 | |
Benjamin Herrenschmidt | d3cbff1 | 2016-07-05 15:03:49 +1000 | [diff] [blame] | 67 | void opal_configure_cores(void) |
Benjamin Herrenschmidt | 4926616 | 2014-05-20 11:01:28 +1000 | [diff] [blame] | 68 | { |
Benjamin Herrenschmidt | 1c0eaf0 | 2017-06-30 17:37:32 -0500 | [diff] [blame] | 69 | u64 reinit_flags = 0; |
| 70 | |
Benjamin Herrenschmidt | 4926616 | 2014-05-20 11:01:28 +1000 | [diff] [blame] | 71 | /* 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 Herrenschmidt | 1c0eaf0 | 2017-06-30 17:37:32 -0500 | [diff] [blame] | 78 | reinit_flags |= OPAL_REINIT_CPUS_HILE_BE; |
Benjamin Herrenschmidt | 4926616 | 2014-05-20 11:01:28 +1000 | [diff] [blame] | 79 | #else |
Benjamin Herrenschmidt | 1c0eaf0 | 2017-06-30 17:37:32 -0500 | [diff] [blame] | 80 | reinit_flags |= OPAL_REINIT_CPUS_HILE_LE; |
Benjamin Herrenschmidt | 4926616 | 2014-05-20 11:01:28 +1000 | [diff] [blame] | 81 | #endif |
Benjamin Herrenschmidt | d3cbff1 | 2016-07-05 15:03:49 +1000 | [diff] [blame] | 82 | |
Benjamin Herrenschmidt | 1c0eaf0 | 2017-06-30 17:37:32 -0500 | [diff] [blame] | 83 | /* |
| 84 | * POWER9 always support running hash: |
| 85 | * ie. Host hash supports hash guests |
| 86 | * Host radix supports hash/radix guests |
| 87 | */ |
Michael Ellerman | a70b487 | 2017-07-17 21:19:01 +1000 | [diff] [blame] | 88 | if (early_cpu_has_feature(CPU_FTR_ARCH_300)) { |
Benjamin Herrenschmidt | 1c0eaf0 | 2017-06-30 17:37:32 -0500 | [diff] [blame] | 89 | 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 Herrenschmidt | d3cbff1 | 2016-07-05 15:03:49 +1000 | [diff] [blame] | 96 | /* Restore some bits */ |
| 97 | if (cur_cpu_spec->cpu_restore) |
| 98 | cur_cpu_spec->cpu_restore(); |
Benjamin Herrenschmidt | 4926616 | 2014-05-20 11:01:28 +1000 | [diff] [blame] | 99 | } |
| 100 | |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 101 | int __init early_init_dt_scan_opal(unsigned long node, |
| 102 | const char *uname, int depth, void *data) |
| 103 | { |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 104 | const void *basep, *entryp, *sizep; |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 105 | int basesz, entrysz, runtimesz; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 106 | |
| 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 Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 112 | sizep = of_get_flat_dt_prop(node, "opal-runtime-size", &runtimesz); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 113 | |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 114 | if (!basep || !entryp || !sizep) |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 115 | return 1; |
| 116 | |
| 117 | opal.base = of_read_number(basep, basesz/4); |
| 118 | opal.entry = of_read_number(entryp, entrysz/4); |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 119 | opal.size = of_read_number(sizep, runtimesz/4); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 120 | |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 121 | pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%d)\n", |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 122 | opal.base, basep, basesz); |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 123 | pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%d)\n", |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 124 | opal.entry, entryp, entrysz); |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 125 | pr_debug("OPAL Entry = 0x%llx (sizep=%p runtimesz=%d)\n", |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 126 | opal.size, sizep, runtimesz); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 127 | |
Benjamin Herrenschmidt | 75b93da | 2013-05-14 15:10:02 +1000 | [diff] [blame] | 128 | if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) { |
Stewart Smith | e4d54f7 | 2015-12-09 17:18:20 +1100 | [diff] [blame] | 129 | powerpc_firmware_features |= FW_FEATURE_OPAL; |
Benjamin Herrenschmidt | 5138b31 | 2017-11-22 17:01:06 +1100 | [diff] [blame] | 130 | pr_debug("OPAL detected !\n"); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 131 | } else { |
Stewart Smith | 786842b | 2015-12-09 17:18:18 +1100 | [diff] [blame] | 132 | panic("OPAL != V3 detected, no longer supported.\n"); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Jeremy Kerr | c4463b3 | 2013-05-01 22:31:50 +0000 | [diff] [blame] | 135 | return 1; |
| 136 | } |
| 137 | |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 138 | int __init early_init_dt_scan_recoverable_ranges(unsigned long node, |
| 139 | const char *uname, int depth, void *data) |
| 140 | { |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 141 | int i, psize, size; |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 142 | const __be32 *prop; |
| 143 | |
| 144 | if (depth != 1 || strcmp(uname, "ibm,opal") != 0) |
| 145 | return 0; |
| 146 | |
Mahesh Salgaonkar | 6e556b4 | 2014-03-30 11:03:23 +0530 | [diff] [blame] | 147 | prop = of_get_flat_dt_prop(node, "mcheck-recoverable-ranges", &psize); |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 148 | |
| 149 | if (!prop) |
| 150 | return 1; |
| 151 | |
| 152 | pr_debug("Found machine check recoverable ranges.\n"); |
| 153 | |
| 154 | /* |
Mahesh Salgaonkar | 6e556b4 | 2014-03-30 11:03:23 +0530 | [diff] [blame] | 155 | * 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 Piggin | 76b42e2 | 2017-08-13 11:33:39 +1000 | [diff] [blame] | 172 | * Allocate a buffer to hold the MC recoverable ranges. |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 173 | */ |
Nicholas Piggin | 76b42e2 | 2017-08-13 11:33:39 +1000 | [diff] [blame] | 174 | mc_recoverable_range =__va(memblock_alloc(size, __alignof__(u64))); |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 175 | memset(mc_recoverable_range, 0, size); |
| 176 | |
Mahesh Salgaonkar | 6e556b4 | 2014-03-30 11:03:23 +0530 | [diff] [blame] | 177 | for (i = 0; i < mc_recoverable_range_len; i++) { |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 178 | 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 Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 191 | return 1; |
| 192 | } |
| 193 | |
Jeremy Kerr | c4463b3 | 2013-05-01 22:31:50 +0000 | [diff] [blame] | 194 | static int __init opal_register_exception_handlers(void) |
| 195 | { |
Benjamin Herrenschmidt | 2918609 | 2013-09-23 12:05:04 +1000 | [diff] [blame] | 196 | #ifdef __BIG_ENDIAN__ |
Jeremy Kerr | c4463b3 | 2013-05-01 22:31:50 +0000 | [diff] [blame] | 197 | u64 glue; |
| 198 | |
| 199 | if (!(powerpc_firmware_features & FW_FEATURE_OPAL)) |
| 200 | return -ENODEV; |
| 201 | |
Mahesh Salgaonkar | 28446de | 2013-10-30 20:05:58 +0530 | [diff] [blame] | 202 | /* Hookup some exception handlers except machine check. We use the |
| 203 | * fwnmi area at 0x7000 to provide the glue space to OPAL |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 204 | */ |
| 205 | glue = 0x7000; |
Mahesh Salgaonkar | 6507955c | 2014-10-10 21:28:26 +0530 | [diff] [blame] | 206 | |
| 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 Ellerman | 0813513 | 2015-01-28 15:10:33 +1100 | [diff] [blame] | 220 | pr_info("Old firmware detected, OPAL handles HMIs.\n"); |
Mahesh Salgaonkar | 6507955c | 2014-10-10 21:28:26 +0530 | [diff] [blame] | 221 | opal_register_exception_handler( |
| 222 | OPAL_HYPERVISOR_MAINTENANCE_HANDLER, |
| 223 | 0, glue); |
| 224 | glue += 128; |
| 225 | } |
| 226 | |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 227 | opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue); |
Benjamin Herrenschmidt | 2918609 | 2013-09-23 12:05:04 +1000 | [diff] [blame] | 228 | #endif |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 229 | |
Jeremy Kerr | c4463b3 | 2013-05-01 22:31:50 +0000 | [diff] [blame] | 230 | return 0; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 231 | } |
Michael Ellerman | b14726c | 2014-07-15 22:22:24 +1000 | [diff] [blame] | 232 | machine_early_initcall(powernv, opal_register_exception_handlers); |
Jeremy Kerr | c4463b3 | 2013-05-01 22:31:50 +0000 | [diff] [blame] | 233 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 234 | /* |
| 235 | * Opal message notifier based on message type. Allow subscribers to get |
| 236 | * notified for specific messgae type. |
| 237 | */ |
Michael Ellerman | d7cf83f | 2015-02-17 20:01:54 +1100 | [diff] [blame] | 238 | int opal_message_notifier_register(enum opal_msg_type msg_type, |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 239 | struct notifier_block *nb) |
| 240 | { |
Neelesh Gupta | 792f96e | 2015-02-11 11:57:06 +0530 | [diff] [blame] | 241 | if (!nb || msg_type >= OPAL_MSG_TYPE_MAX) { |
Joe Perches | f2c2cbc | 2016-10-24 21:00:08 -0700 | [diff] [blame] | 242 | pr_warn("%s: Invalid arguments, msg_type:%d\n", |
| 243 | __func__, msg_type); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 244 | return -EINVAL; |
| 245 | } |
Neelesh Gupta | 792f96e | 2015-02-11 11:57:06 +0530 | [diff] [blame] | 246 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 247 | return atomic_notifier_chain_register( |
| 248 | &opal_msg_notifier_head[msg_type], nb); |
| 249 | } |
Jeremy Kerr | 594fcb9 | 2015-05-20 11:23:33 +0800 | [diff] [blame] | 250 | EXPORT_SYMBOL_GPL(opal_message_notifier_register); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 251 | |
Michael Ellerman | df60f57 | 2015-03-26 20:03:16 +1100 | [diff] [blame] | 252 | int opal_message_notifier_unregister(enum opal_msg_type msg_type, |
Neelesh Gupta | b921e90 | 2015-02-11 11:57:23 +0530 | [diff] [blame] | 253 | struct notifier_block *nb) |
| 254 | { |
| 255 | return atomic_notifier_chain_unregister( |
| 256 | &opal_msg_notifier_head[msg_type], nb); |
| 257 | } |
Jeremy Kerr | 594fcb9 | 2015-05-20 11:23:33 +0800 | [diff] [blame] | 258 | EXPORT_SYMBOL_GPL(opal_message_notifier_unregister); |
Neelesh Gupta | b921e90 | 2015-02-11 11:57:23 +0530 | [diff] [blame] | 259 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 260 | static 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 | |
| 267 | static 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 Blanchard | bb4398e | 2014-03-28 16:33:33 +1100 | [diff] [blame] | 275 | u32 type; |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 276 | |
| 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 Perches | f2c2cbc | 2016-10-24 21:00:08 -0700 | [diff] [blame] | 284 | pr_warn("%s: Failed to retrieve opal message, err=%lld\n", |
| 285 | __func__, ret); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 286 | return; |
| 287 | } |
| 288 | |
Anton Blanchard | bb4398e | 2014-03-28 16:33:33 +1100 | [diff] [blame] | 289 | type = be32_to_cpu(msg.msg_type); |
| 290 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 291 | /* Sanity check */ |
Neelesh Gupta | 792f96e | 2015-02-11 11:57:06 +0530 | [diff] [blame] | 292 | if (type >= OPAL_MSG_TYPE_MAX) { |
Stewart Smith | 98da62b | 2015-12-11 12:08:23 +1100 | [diff] [blame] | 293 | pr_warn_once("%s: Unknown message type: %u\n", __func__, type); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 294 | return; |
| 295 | } |
Anton Blanchard | bb4398e | 2014-03-28 16:33:33 +1100 | [diff] [blame] | 296 | opal_message_do_notify(type, (void *)&msg); |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 297 | } |
| 298 | |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 299 | static irqreturn_t opal_message_notify(int irq, void *data) |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 300 | { |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 301 | opal_handle_message(); |
| 302 | return IRQ_HANDLED; |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 303 | } |
| 304 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 305 | static int __init opal_message_init(void) |
| 306 | { |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 307 | int ret, i, irq; |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 308 | |
| 309 | for (i = 0; i < OPAL_MSG_TYPE_MAX; i++) |
| 310 | ATOMIC_INIT_NOTIFIER_HEAD(&opal_msg_notifier_head[i]); |
| 311 | |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 312 | 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 Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 321 | if (ret) { |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 322 | pr_err("%s: Can't request OPAL event irq (%d)\n", |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 323 | __func__, ret); |
| 324 | return ret; |
| 325 | } |
Alistair Popple | a295af2 | 2015-05-15 14:06:41 +1000 | [diff] [blame] | 326 | |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 327 | return 0; |
| 328 | } |
Mahesh Salgaonkar | 2436636 | 2013-11-18 15:35:58 +0530 | [diff] [blame] | 329 | |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 330 | int opal_get_chars(uint32_t vtermno, char *buf, int count) |
| 331 | { |
Benjamin Herrenschmidt | 4f89363 | 2013-09-23 12:05:02 +1000 | [diff] [blame] | 332 | s64 rc; |
| 333 | __be64 evt, len; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 334 | |
| 335 | if (!opal.entry) |
Benjamin Herrenschmidt | daea117 | 2011-09-19 17:44:59 +0000 | [diff] [blame] | 336 | return -ENODEV; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 337 | opal_poll_events(&evt); |
Benjamin Herrenschmidt | 4f89363 | 2013-09-23 12:05:02 +1000 | [diff] [blame] | 338 | if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0) |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 339 | return 0; |
Benjamin Herrenschmidt | 4f89363 | 2013-09-23 12:05:02 +1000 | [diff] [blame] | 340 | len = cpu_to_be64(count); |
Rob Herring | 9d0c4df | 2014-04-01 23:49:03 -0500 | [diff] [blame] | 341 | rc = opal_console_read(vtermno, &len, buf); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 342 | if (rc == OPAL_SUCCESS) |
Benjamin Herrenschmidt | 4f89363 | 2013-09-23 12:05:02 +1000 | [diff] [blame] | 343 | return be64_to_cpu(len); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 344 | return 0; |
| 345 | } |
| 346 | |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 347 | static int __opal_put_chars(uint32_t vtermno, const char *data, int total_len, bool atomic) |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 348 | { |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 349 | unsigned long flags = 0 /* shut up gcc */; |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 350 | int written; |
| 351 | __be64 olen; |
| 352 | s64 rc; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 353 | |
| 354 | if (!opal.entry) |
Benjamin Herrenschmidt | daea117 | 2011-09-19 17:44:59 +0000 | [diff] [blame] | 355 | return -ENODEV; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 356 | |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 357 | if (atomic) |
| 358 | spin_lock_irqsave(&opal_write_lock, flags); |
Stewart Smith | e4d54f7 | 2015-12-09 17:18:20 +1100 | [diff] [blame] | 359 | rc = opal_console_write_buffer_space(vtermno, &olen); |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 360 | if (rc || be64_to_cpu(olen) < total_len) { |
Stewart Smith | e4d54f7 | 2015-12-09 17:18:20 +1100 | [diff] [blame] | 361 | /* Closed -> drop characters */ |
| 362 | if (rc) |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 363 | written = total_len; |
| 364 | else |
| 365 | written = -EAGAIN; |
| 366 | goto out; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 367 | } |
| 368 | |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 369 | /* 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) { |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 373 | if (rc == OPAL_BUSY_EVENT) |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 374 | opal_poll_events(NULL); |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 375 | written = -EAGAIN; |
| 376 | goto out; |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 377 | } |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 378 | |
| 379 | /* Closed or other error drop */ |
| 380 | if (rc != OPAL_SUCCESS) { |
| 381 | written = opal_error_code(rc); |
| 382 | goto out; |
| 383 | } |
| 384 | |
| 385 | written = be64_to_cpu(olen); |
| 386 | if (written < total_len) { |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 387 | if (atomic) { |
| 388 | /* Should not happen */ |
| 389 | pr_warn("atomic console write returned partial " |
| 390 | "len=%d written=%d\n", total_len, written); |
| 391 | } |
Nicholas Piggin | b74d280 | 2018-05-01 00:55:49 +1000 | [diff] [blame] | 392 | if (!written) |
| 393 | written = -EAGAIN; |
| 394 | } |
| 395 | |
| 396 | out: |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 397 | if (atomic) |
| 398 | spin_unlock_irqrestore(&opal_write_lock, flags); |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 399 | |
| 400 | return written; |
| 401 | } |
| 402 | |
Nicholas Piggin | 17cc1dd | 2018-05-01 00:55:51 +1000 | [diff] [blame] | 403 | int opal_put_chars(uint32_t vtermno, const char *data, int total_len) |
| 404 | { |
| 405 | return __opal_put_chars(vtermno, data, total_len, false); |
| 406 | } |
| 407 | |
| 408 | /* |
| 409 | * opal_put_chars_atomic will not perform partial-writes. Data will be |
| 410 | * atomically written to the terminal or not at all. This is not strictly |
| 411 | * true at the moment because console space can race with OPAL's console |
| 412 | * writes. |
| 413 | */ |
| 414 | int opal_put_chars_atomic(uint32_t vtermno, const char *data, int total_len) |
| 415 | { |
| 416 | return __opal_put_chars(vtermno, data, total_len, true); |
| 417 | } |
| 418 | |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 419 | static s64 __opal_flush_console(uint32_t vtermno) |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 420 | { |
| 421 | s64 rc; |
| 422 | |
| 423 | if (!opal_check_token(OPAL_CONSOLE_FLUSH)) { |
| 424 | __be64 evt; |
| 425 | |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 426 | /* |
| 427 | * If OPAL_CONSOLE_FLUSH is not implemented in the firmware, |
| 428 | * the console can still be flushed by calling the polling |
| 429 | * function while it has OPAL_EVENT_CONSOLE_OUTPUT events. |
| 430 | */ |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 431 | WARN_ONCE(1, "opal: OPAL_CONSOLE_FLUSH missing.\n"); |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 432 | |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 433 | opal_poll_events(&evt); |
| 434 | if (!(be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT)) |
| 435 | return OPAL_SUCCESS; |
| 436 | return OPAL_BUSY; |
| 437 | |
| 438 | } else { |
| 439 | rc = opal_console_flush(vtermno); |
| 440 | if (rc == OPAL_BUSY_EVENT) { |
| 441 | opal_poll_events(NULL); |
| 442 | rc = OPAL_BUSY; |
| 443 | } |
| 444 | return rc; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 445 | } |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 446 | |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 447 | } |
Nicholas Piggin | d2a2262 | 2018-05-01 00:55:48 +1000 | [diff] [blame] | 448 | |
Nicholas Piggin | 95b861a | 2018-05-01 00:55:58 +1000 | [diff] [blame] | 449 | /* |
| 450 | * opal_flush_console spins until the console is flushed |
| 451 | */ |
| 452 | int opal_flush_console(uint32_t vtermno) |
| 453 | { |
| 454 | for (;;) { |
| 455 | s64 rc = __opal_flush_console(vtermno); |
| 456 | |
| 457 | if (rc == OPAL_BUSY || rc == OPAL_PARTIAL) { |
| 458 | mdelay(1); |
| 459 | continue; |
| 460 | } |
| 461 | |
| 462 | return opal_error_code(rc); |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | /* |
| 467 | * opal_flush_chars is an hvc interface that sleeps until the console is |
| 468 | * flushed if wait, otherwise it will return -EBUSY if the console has data, |
| 469 | * -EAGAIN if it has data and some of it was flushed. |
| 470 | */ |
| 471 | int opal_flush_chars(uint32_t vtermno, bool wait) |
| 472 | { |
| 473 | for (;;) { |
| 474 | s64 rc = __opal_flush_console(vtermno); |
| 475 | |
| 476 | if (rc == OPAL_BUSY || rc == OPAL_PARTIAL) { |
| 477 | if (wait) { |
| 478 | msleep(OPAL_BUSY_DELAY_MS); |
| 479 | continue; |
| 480 | } |
| 481 | if (rc == OPAL_PARTIAL) |
| 482 | return -EAGAIN; |
| 483 | } |
| 484 | |
| 485 | return opal_error_code(rc); |
| 486 | } |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 489 | static int opal_recover_mce(struct pt_regs *regs, |
| 490 | struct machine_check_event *evt) |
| 491 | { |
| 492 | int recovered = 0; |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 493 | |
| 494 | if (!(regs->msr & MSR_RI)) { |
| 495 | /* If MSR_RI isn't set, we cannot recover */ |
Mahesh Salgaonkar | c74dd88 | 2016-08-09 10:39:13 +0530 | [diff] [blame] | 496 | pr_err("Machine check interrupt unrecoverable: MSR(RI=0)\n"); |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 497 | recovered = 0; |
| 498 | } else if (evt->disposition == MCE_DISPOSITION_RECOVERED) { |
| 499 | /* Platform corrected itself */ |
| 500 | recovered = 1; |
Nicholas Piggin | 1363875 | 2017-02-28 12:00:46 +1000 | [diff] [blame] | 501 | } else if (evt->severity == MCE_SEV_FATAL) { |
| 502 | /* Fatal machine check */ |
| 503 | pr_err("Machine check interrupt is fatal\n"); |
| 504 | recovered = 0; |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | if (!recovered && evt->severity == MCE_SEV_ERROR_SYNC) { |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 508 | /* |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 509 | * Try to kill processes if we get a synchronous machine check |
| 510 | * (e.g., one caused by execution of this instruction). This |
| 511 | * will devolve into a panic if we try to kill init or are in |
| 512 | * an interrupt etc. |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 513 | * |
| 514 | * TODO: Queue up this address for hwpoisioning later. |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 515 | * TODO: This is not quite right for d-side machine |
| 516 | * checks ->nip is not necessarily the important |
| 517 | * address. |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 518 | */ |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 519 | if ((user_mode(regs))) { |
| 520 | _exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip); |
| 521 | recovered = 1; |
| 522 | } else if (die_will_crash()) { |
| 523 | /* |
| 524 | * die() would kill the kernel, so better to go via |
| 525 | * the platform reboot code that will log the |
| 526 | * machine check. |
| 527 | */ |
| 528 | recovered = 0; |
| 529 | } else { |
| 530 | die("Machine check", regs, SIGBUS); |
| 531 | recovered = 1; |
| 532 | } |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 533 | } |
Nicholas Piggin | 6fcd6ba | 2017-07-19 16:59:11 +1000 | [diff] [blame] | 534 | |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 535 | return recovered; |
| 536 | } |
| 537 | |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 538 | void pnv_platform_error_reboot(struct pt_regs *regs, const char *msg) |
| 539 | { |
Nicholas Piggin | 35adacd | 2017-12-24 02:49:23 +1000 | [diff] [blame] | 540 | panic_flush_kmsg_start(); |
| 541 | |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 542 | pr_emerg("Hardware platform error: %s\n", msg); |
| 543 | if (regs) |
| 544 | show_regs(regs); |
| 545 | smp_send_stop(); |
Nicholas Piggin | 35adacd | 2017-12-24 02:49:23 +1000 | [diff] [blame] | 546 | |
| 547 | panic_flush_kmsg_end(); |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 548 | |
| 549 | /* |
| 550 | * Don't bother to shut things down because this will |
| 551 | * xstop the system. |
| 552 | */ |
| 553 | if (opal_cec_reboot2(OPAL_REBOOT_PLATFORM_ERROR, msg) |
| 554 | == OPAL_UNSUPPORTED) { |
| 555 | pr_emerg("Reboot type %d not supported for %s\n", |
| 556 | OPAL_REBOOT_PLATFORM_ERROR, msg); |
| 557 | } |
| 558 | |
| 559 | /* |
| 560 | * We reached here. There can be three possibilities: |
| 561 | * 1. We are running on a firmware level that do not support |
| 562 | * opal_cec_reboot2() |
| 563 | * 2. We are running on a firmware level that do not support |
| 564 | * OPAL_REBOOT_PLATFORM_ERROR reboot type. |
| 565 | * 3. We are running on FSP based system that does not need |
| 566 | * opal to trigger checkstop explicitly for error analysis. |
| 567 | * The FSP PRD component would have already got notified |
| 568 | * about this error through other channels. |
Balbir Singh | 5ee573e | 2018-03-08 11:36:06 +1100 | [diff] [blame] | 569 | * 4. We are running on a newer skiboot that by default does |
| 570 | * not cause a checkstop, drops us back to the kernel to |
| 571 | * extract context and state at the time of the error. |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 572 | */ |
| 573 | |
Balbir Singh | 5ee573e | 2018-03-08 11:36:06 +1100 | [diff] [blame] | 574 | panic(msg); |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 575 | } |
| 576 | |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 577 | int opal_machine_check(struct pt_regs *regs) |
| 578 | { |
Mahesh Salgaonkar | 36df96f | 2013-10-30 20:05:40 +0530 | [diff] [blame] | 579 | struct machine_check_event evt; |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 580 | |
Mahesh Salgaonkar | 36df96f | 2013-10-30 20:05:40 +0530 | [diff] [blame] | 581 | if (!get_mce_event(&evt, MCE_EVENT_RELEASE)) |
| 582 | return 0; |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 583 | |
| 584 | /* Print things out */ |
Mahesh Salgaonkar | 36df96f | 2013-10-30 20:05:40 +0530 | [diff] [blame] | 585 | if (evt.version != MCE_V1) { |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 586 | pr_err("Machine Check Exception, Unknown event version %d !\n", |
| 587 | evt.version); |
| 588 | return 0; |
| 589 | } |
Michael Ellerman | 63f44d6 | 2017-04-03 15:29:34 +1000 | [diff] [blame] | 590 | machine_check_print_event_info(&evt, user_mode(regs)); |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 591 | |
Mahesh Salgaonkar | b63a0ff | 2013-10-30 20:06:13 +0530 | [diff] [blame] | 592 | if (opal_recover_mce(regs, &evt)) |
| 593 | return 1; |
Mahesh Salgaonkar | e784b64 | 2015-07-31 21:24:38 +0530 | [diff] [blame] | 594 | |
Nicholas Piggin | b746e3e | 2017-07-19 16:59:10 +1000 | [diff] [blame] | 595 | pnv_platform_error_reboot(regs, "Unrecoverable Machine Check exception"); |
Benjamin Herrenschmidt | ed79ba9 | 2011-09-19 17:45:04 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Mahesh Salgaonkar | 0869b6f | 2014-07-29 18:40:01 +0530 | [diff] [blame] | 598 | /* Early hmi handler called in real mode. */ |
| 599 | int opal_hmi_exception_early(struct pt_regs *regs) |
| 600 | { |
Mahesh Salgaonkar | 0ef95b4 | 2014-07-29 18:40:07 +0530 | [diff] [blame] | 601 | s64 rc; |
| 602 | |
| 603 | /* |
| 604 | * call opal hmi handler. Pass paca address as token. |
| 605 | * The return value OPAL_SUCCESS is an indication that there is |
| 606 | * an HMI event generated waiting to pull by Linux. |
| 607 | */ |
| 608 | rc = opal_handle_hmi(); |
| 609 | if (rc == OPAL_SUCCESS) { |
| 610 | local_paca->hmi_event_available = 1; |
| 611 | return 1; |
| 612 | } |
Mahesh Salgaonkar | 0869b6f | 2014-07-29 18:40:01 +0530 | [diff] [blame] | 613 | return 0; |
| 614 | } |
| 615 | |
| 616 | /* HMI exception handler called in virtual mode during check_irq_replay. */ |
| 617 | int opal_handle_hmi_exception(struct pt_regs *regs) |
| 618 | { |
Mahesh Salgaonkar | 0ef95b4 | 2014-07-29 18:40:07 +0530 | [diff] [blame] | 619 | /* |
| 620 | * Check if HMI event is available. |
Nicholas Piggin | 56c0b48 | 2018-05-11 03:20:05 +1000 | [diff] [blame] | 621 | * if Yes, then wake kopald to process them. |
Mahesh Salgaonkar | 0ef95b4 | 2014-07-29 18:40:07 +0530 | [diff] [blame] | 622 | */ |
| 623 | if (!local_paca->hmi_event_available) |
| 624 | return 0; |
| 625 | |
| 626 | local_paca->hmi_event_available = 0; |
Nicholas Piggin | 56c0b48 | 2018-05-11 03:20:05 +1000 | [diff] [blame] | 627 | opal_wake_poller(); |
Mahesh Salgaonkar | 0ef95b4 | 2014-07-29 18:40:07 +0530 | [diff] [blame] | 628 | |
| 629 | return 1; |
Mahesh Salgaonkar | 0869b6f | 2014-07-29 18:40:01 +0530 | [diff] [blame] | 630 | } |
| 631 | |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 632 | static uint64_t find_recovery_address(uint64_t nip) |
| 633 | { |
| 634 | int i; |
| 635 | |
| 636 | for (i = 0; i < mc_recoverable_range_len; i++) |
| 637 | if ((nip >= mc_recoverable_range[i].start_addr) && |
| 638 | (nip < mc_recoverable_range[i].end_addr)) |
| 639 | return mc_recoverable_range[i].recover_addr; |
| 640 | return 0; |
| 641 | } |
| 642 | |
| 643 | bool opal_mce_check_early_recovery(struct pt_regs *regs) |
| 644 | { |
| 645 | uint64_t recover_addr = 0; |
| 646 | |
| 647 | if (!opal.base || !opal.size) |
| 648 | goto out; |
| 649 | |
| 650 | if ((regs->nip >= opal.base) && |
Andrew Donnellan | dc3799b | 2015-12-21 18:28:37 +1100 | [diff] [blame] | 651 | (regs->nip < (opal.base + opal.size))) |
Mahesh Salgaonkar | 55672ec | 2013-12-16 10:46:24 +0530 | [diff] [blame] | 652 | recover_addr = find_recovery_address(regs->nip); |
| 653 | |
| 654 | /* |
| 655 | * Setup regs->nip to rfi into fixup address. |
| 656 | */ |
| 657 | if (recover_addr) |
| 658 | regs->nip = recover_addr; |
| 659 | |
| 660 | out: |
| 661 | return !!recover_addr; |
| 662 | } |
| 663 | |
Vasant Hegde | 6f68b5e | 2013-08-27 15:09:52 +0530 | [diff] [blame] | 664 | static int opal_sysfs_init(void) |
| 665 | { |
| 666 | opal_kobj = kobject_create_and_add("opal", firmware_kobj); |
| 667 | if (!opal_kobj) { |
| 668 | pr_warn("kobject_create_and_add opal failed\n"); |
| 669 | return -ENOMEM; |
| 670 | } |
| 671 | |
| 672 | return 0; |
| 673 | } |
| 674 | |
Benjamin Herrenschmidt | c8742f8 | 2014-12-11 12:39:49 +1100 | [diff] [blame] | 675 | static ssize_t symbol_map_read(struct file *fp, struct kobject *kobj, |
| 676 | struct bin_attribute *bin_attr, |
| 677 | char *buf, loff_t off, size_t count) |
| 678 | { |
| 679 | return memory_read_from_buffer(buf, count, &off, bin_attr->private, |
| 680 | bin_attr->size); |
| 681 | } |
| 682 | |
| 683 | static BIN_ATTR_RO(symbol_map, 0); |
| 684 | |
| 685 | static void opal_export_symmap(void) |
| 686 | { |
| 687 | const __be64 *syms; |
| 688 | unsigned int size; |
| 689 | struct device_node *fw; |
| 690 | int rc; |
| 691 | |
| 692 | fw = of_find_node_by_path("/ibm,opal/firmware"); |
| 693 | if (!fw) |
| 694 | return; |
| 695 | syms = of_get_property(fw, "symbol-map", &size); |
| 696 | if (!syms || size != 2 * sizeof(__be64)) |
| 697 | return; |
| 698 | |
| 699 | /* Setup attributes */ |
| 700 | bin_attr_symbol_map.private = __va(be64_to_cpu(syms[0])); |
| 701 | bin_attr_symbol_map.size = be64_to_cpu(syms[1]); |
| 702 | |
| 703 | rc = sysfs_create_bin_file(opal_kobj, &bin_attr_symbol_map); |
| 704 | if (rc) |
| 705 | pr_warn("Error %d creating OPAL symbols file\n", rc); |
| 706 | } |
| 707 | |
Matt Brown | 11fe909 | 2017-03-30 10:28:01 +1100 | [diff] [blame] | 708 | static ssize_t export_attr_read(struct file *fp, struct kobject *kobj, |
| 709 | struct bin_attribute *bin_attr, char *buf, |
| 710 | loff_t off, size_t count) |
| 711 | { |
| 712 | return memory_read_from_buffer(buf, count, &off, bin_attr->private, |
| 713 | bin_attr->size); |
| 714 | } |
| 715 | |
| 716 | /* |
| 717 | * opal_export_attrs: creates a sysfs node for each property listed in |
| 718 | * the device-tree under /ibm,opal/firmware/exports/ |
| 719 | * All new sysfs nodes are created under /opal/exports/. |
| 720 | * This allows for reserved memory regions (e.g. HDAT) to be read. |
| 721 | * The new sysfs nodes are only readable by root. |
| 722 | */ |
| 723 | static void opal_export_attrs(void) |
| 724 | { |
| 725 | struct bin_attribute *attr; |
| 726 | struct device_node *np; |
| 727 | struct property *prop; |
| 728 | struct kobject *kobj; |
| 729 | u64 vals[2]; |
| 730 | int rc; |
| 731 | |
| 732 | np = of_find_node_by_path("/ibm,opal/firmware/exports"); |
| 733 | if (!np) |
| 734 | return; |
| 735 | |
| 736 | /* Create new 'exports' directory - /sys/firmware/opal/exports */ |
| 737 | kobj = kobject_create_and_add("exports", opal_kobj); |
| 738 | if (!kobj) { |
| 739 | pr_warn("kobject_create_and_add() of exports failed\n"); |
| 740 | return; |
| 741 | } |
| 742 | |
| 743 | for_each_property_of_node(np, prop) { |
| 744 | if (!strcmp(prop->name, "name") || !strcmp(prop->name, "phandle")) |
| 745 | continue; |
| 746 | |
| 747 | if (of_property_read_u64_array(np, prop->name, &vals[0], 2)) |
| 748 | continue; |
| 749 | |
Michael Ellerman | 83c4919 | 2017-04-26 15:57:19 +1000 | [diff] [blame] | 750 | attr = kzalloc(sizeof(*attr), GFP_KERNEL); |
Matt Brown | 11fe909 | 2017-03-30 10:28:01 +1100 | [diff] [blame] | 751 | |
| 752 | if (attr == NULL) { |
| 753 | pr_warn("Failed kmalloc for bin_attribute!"); |
| 754 | continue; |
| 755 | } |
| 756 | |
Michael Ellerman | 83c4919 | 2017-04-26 15:57:19 +1000 | [diff] [blame] | 757 | sysfs_bin_attr_init(attr); |
Matt Brown | 11fe909 | 2017-03-30 10:28:01 +1100 | [diff] [blame] | 758 | attr->attr.name = kstrdup(prop->name, GFP_KERNEL); |
| 759 | attr->attr.mode = 0400; |
| 760 | attr->read = export_attr_read; |
| 761 | attr->private = __va(vals[0]); |
| 762 | attr->size = vals[1]; |
| 763 | |
| 764 | if (attr->attr.name == NULL) { |
| 765 | pr_warn("Failed kstrdup for bin_attribute attr.name"); |
| 766 | kfree(attr); |
| 767 | continue; |
| 768 | } |
| 769 | |
| 770 | rc = sysfs_create_bin_file(kobj, attr); |
| 771 | if (rc) { |
| 772 | pr_warn("Error %d creating OPAL sysfs exports/%s file\n", |
| 773 | rc, prop->name); |
| 774 | kfree(attr->attr.name); |
| 775 | kfree(attr); |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | of_node_put(np); |
| 780 | } |
| 781 | |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 782 | static void __init opal_dump_region_init(void) |
| 783 | { |
| 784 | void *addr; |
| 785 | uint64_t size; |
| 786 | int rc; |
| 787 | |
Stewart Smith | b962f5a | 2015-02-12 16:25:27 +1100 | [diff] [blame] | 788 | if (!opal_check_token(OPAL_REGISTER_DUMP_REGION)) |
| 789 | return; |
| 790 | |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 791 | /* Register kernel log buffer */ |
| 792 | addr = log_buf_addr_get(); |
Pranith Kumar | 6501ab5 | 2015-01-21 21:26:09 -0500 | [diff] [blame] | 793 | if (addr == NULL) |
| 794 | return; |
| 795 | |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 796 | size = log_buf_len_get(); |
Pranith Kumar | 6501ab5 | 2015-01-21 21:26:09 -0500 | [diff] [blame] | 797 | if (size == 0) |
| 798 | return; |
| 799 | |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 800 | rc = opal_register_dump_region(OPAL_DUMP_REGION_LOG_BUF, |
| 801 | __pa(addr), size); |
| 802 | /* Don't warn if this is just an older OPAL that doesn't |
| 803 | * know about that call |
| 804 | */ |
| 805 | if (rc && rc != OPAL_UNSUPPORTED) |
| 806 | pr_warn("DUMP: Failed to register kernel log buffer. " |
| 807 | "rc = %d\n", rc); |
| 808 | } |
Jeremy Kerr | 608b286 | 2014-11-06 11:38:27 +0800 | [diff] [blame] | 809 | |
Jack Miller | 9e4f51b | 2016-08-10 19:32:40 -0500 | [diff] [blame] | 810 | static void opal_pdev_init(const char *compatible) |
Cyril Bur | ed59190 | 2015-04-01 14:05:30 +0800 | [diff] [blame] | 811 | { |
| 812 | struct device_node *np; |
| 813 | |
Jack Miller | 9e4f51b | 2016-08-10 19:32:40 -0500 | [diff] [blame] | 814 | for_each_compatible_node(np, NULL, compatible) |
Neelesh Gupta | 4708345 | 2014-12-13 23:31:05 +0530 | [diff] [blame] | 815 | of_platform_device_create(np, NULL, NULL); |
| 816 | } |
| 817 | |
Madhavan Srinivasan | 8f95faa | 2017-07-19 03:06:33 +0530 | [diff] [blame] | 818 | static void __init opal_imc_init_dev(void) |
| 819 | { |
| 820 | struct device_node *np; |
| 821 | |
| 822 | np = of_find_compatible_node(NULL, NULL, IMC_DTB_COMPAT); |
| 823 | if (np) |
| 824 | of_platform_device_create(np, NULL, NULL); |
| 825 | } |
| 826 | |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 827 | static int kopald(void *unused) |
| 828 | { |
Benjamin Herrenschmidt | a203658 | 2016-07-04 14:51:44 +1000 | [diff] [blame] | 829 | unsigned long timeout = msecs_to_jiffies(opal_heartbeat) + 1; |
Alistair Popple | 9f0fd04 | 2015-05-15 14:06:37 +1000 | [diff] [blame] | 830 | |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 831 | set_freezable(); |
| 832 | do { |
| 833 | try_to_freeze(); |
Nicholas Piggin | 56c0b48 | 2018-05-11 03:20:05 +1000 | [diff] [blame] | 834 | |
| 835 | opal_handle_events(); |
| 836 | |
| 837 | set_current_state(TASK_INTERRUPTIBLE); |
| 838 | if (opal_have_pending_events()) |
| 839 | __set_current_state(TASK_RUNNING); |
| 840 | else |
| 841 | schedule_timeout(timeout); |
| 842 | |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 843 | } while (!kthread_should_stop()); |
| 844 | |
| 845 | return 0; |
| 846 | } |
| 847 | |
Benjamin Herrenschmidt | a203658 | 2016-07-04 14:51:44 +1000 | [diff] [blame] | 848 | void opal_wake_poller(void) |
| 849 | { |
| 850 | if (kopald_tsk) |
| 851 | wake_up_process(kopald_tsk); |
| 852 | } |
| 853 | |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 854 | static void opal_init_heartbeat(void) |
| 855 | { |
| 856 | /* Old firwmware, we assume the HVC heartbeat is sufficient */ |
| 857 | if (of_property_read_u32(opal_node, "ibm,heartbeat-ms", |
| 858 | &opal_heartbeat) != 0) |
| 859 | opal_heartbeat = 0; |
| 860 | |
| 861 | if (opal_heartbeat) |
Benjamin Herrenschmidt | a203658 | 2016-07-04 14:51:44 +1000 | [diff] [blame] | 862 | kopald_tsk = kthread_run(kopald, NULL, "kopald"); |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 863 | } |
| 864 | |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 865 | static int __init opal_init(void) |
| 866 | { |
Vasant Hegde | c159b59 | 2015-08-19 22:19:53 +0530 | [diff] [blame] | 867 | struct device_node *np, *consoles, *leds; |
Gavin Shan | c1c3a52 | 2015-01-23 14:25:05 +1100 | [diff] [blame] | 868 | int rc; |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 869 | |
| 870 | opal_node = of_find_node_by_path("/ibm,opal"); |
| 871 | if (!opal_node) { |
Michael Ellerman | 0813513 | 2015-01-28 15:10:33 +1100 | [diff] [blame] | 872 | pr_warn("Device node not found\n"); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 873 | return -ENODEV; |
| 874 | } |
Benjamin Herrenschmidt | 2db29d2 | 2013-07-15 13:03:14 +1000 | [diff] [blame] | 875 | |
| 876 | /* Register OPAL consoles if any ports */ |
Stewart Smith | 7261aaf | 2015-12-09 17:18:19 +1100 | [diff] [blame] | 877 | consoles = of_find_node_by_path("/ibm,opal/consoles"); |
Benjamin Herrenschmidt | 2db29d2 | 2013-07-15 13:03:14 +1000 | [diff] [blame] | 878 | if (consoles) { |
| 879 | for_each_child_of_node(consoles, np) { |
| 880 | if (strcmp(np->name, "serial")) |
| 881 | continue; |
| 882 | of_platform_device_create(np, NULL, NULL); |
| 883 | } |
| 884 | of_node_put(consoles); |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 885 | } |
Benjamin Herrenschmidt | a125e09 | 2011-09-19 17:45:03 +0000 | [diff] [blame] | 886 | |
Alistair Popple | 96e023e | 2015-05-15 14:06:36 +1000 | [diff] [blame] | 887 | /* Initialise OPAL messaging system */ |
| 888 | opal_message_init(); |
| 889 | |
| 890 | /* Initialise OPAL asynchronous completion interface */ |
| 891 | opal_async_comp_init(); |
| 892 | |
| 893 | /* Initialise OPAL sensor interface */ |
| 894 | opal_sensor_init(); |
| 895 | |
| 896 | /* Initialise OPAL hypervisor maintainence interrupt handling */ |
| 897 | opal_hmi_handler_init(); |
| 898 | |
Neelesh Gupta | 4708345 | 2014-12-13 23:31:05 +0530 | [diff] [blame] | 899 | /* Create i2c platform devices */ |
Jack Miller | 9e4f51b | 2016-08-10 19:32:40 -0500 | [diff] [blame] | 900 | opal_pdev_init("ibm,opal-i2c"); |
Neelesh Gupta | 4708345 | 2014-12-13 23:31:05 +0530 | [diff] [blame] | 901 | |
Oliver O'Halloran | 3013e17 | 2018-04-06 15:21:16 +1000 | [diff] [blame] | 902 | /* Handle non-volatile memory devices */ |
| 903 | opal_pdev_init("pmem-region"); |
| 904 | |
Benjamin Herrenschmidt | 3bf5756 | 2014-11-14 16:13:50 +1100 | [diff] [blame] | 905 | /* Setup a heatbeat thread if requested by OPAL */ |
| 906 | opal_init_heartbeat(); |
| 907 | |
Madhavan Srinivasan | 8f95faa | 2017-07-19 03:06:33 +0530 | [diff] [blame] | 908 | /* Detect In-Memory Collection counters and create devices*/ |
| 909 | opal_imc_init_dev(); |
| 910 | |
Vasant Hegde | c159b59 | 2015-08-19 22:19:53 +0530 | [diff] [blame] | 911 | /* Create leds platform devices */ |
| 912 | leds = of_find_node_by_path("/ibm,opal/leds"); |
| 913 | if (leds) { |
| 914 | of_platform_device_create(leds, "opal_leds", NULL); |
| 915 | of_node_put(leds); |
| 916 | } |
| 917 | |
Andrew Donnellan | 9b4fffa | 2016-02-09 18:17:48 +1100 | [diff] [blame] | 918 | /* Initialise OPAL message log interface */ |
| 919 | opal_msglog_init(); |
| 920 | |
Vasant Hegde | 6f68b5e | 2013-08-27 15:09:52 +0530 | [diff] [blame] | 921 | /* Create "opal" kobject under /sys/firmware */ |
| 922 | rc = opal_sysfs_init(); |
Vasant Hegde | 50bd615 | 2013-10-24 16:04:58 +0530 | [diff] [blame] | 923 | if (rc == 0) { |
Benjamin Herrenschmidt | c8742f8 | 2014-12-11 12:39:49 +1100 | [diff] [blame] | 924 | /* Export symbol map to userspace */ |
| 925 | opal_export_symmap(); |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 926 | /* Setup dump region interface */ |
| 927 | opal_dump_region_init(); |
Stewart Smith | 774fea1 | 2014-02-28 11:58:32 +1100 | [diff] [blame] | 928 | /* Setup error log interface */ |
| 929 | rc = opal_elog_init(); |
Vasant Hegde | 50bd615 | 2013-10-24 16:04:58 +0530 | [diff] [blame] | 930 | /* Setup code update interface */ |
Cyril Bur | ed59190 | 2015-04-01 14:05:30 +0800 | [diff] [blame] | 931 | opal_flash_update_init(); |
Stewart Smith | c7e64b9 | 2014-03-03 10:25:42 +1100 | [diff] [blame] | 932 | /* Setup platform dump extract interface */ |
| 933 | opal_platform_dump_init(); |
Neelesh Gupta | 4029cd6 | 2014-03-07 11:02:09 +0530 | [diff] [blame] | 934 | /* Setup system parameters interface */ |
| 935 | opal_sys_param_init(); |
Andrew Donnellan | 9b4fffa | 2016-02-09 18:17:48 +1100 | [diff] [blame] | 936 | /* Setup message log sysfs interface. */ |
| 937 | opal_msglog_sysfs_init(); |
Vasant Hegde | 50bd615 | 2013-10-24 16:04:58 +0530 | [diff] [blame] | 938 | } |
Vasant Hegde | 6f68b5e | 2013-08-27 15:09:52 +0530 | [diff] [blame] | 939 | |
Matt Brown | 11fe909 | 2017-03-30 10:28:01 +1100 | [diff] [blame] | 940 | /* Export all properties */ |
| 941 | opal_export_attrs(); |
| 942 | |
Jeremy Kerr | 0d7cd85 | 2015-06-04 21:51:47 +0800 | [diff] [blame] | 943 | /* Initialize platform devices: IPMI backend, PRD & flash interface */ |
Jack Miller | 9e4f51b | 2016-08-10 19:32:40 -0500 | [diff] [blame] | 944 | opal_pdev_init("ibm,opal-ipmi"); |
| 945 | opal_pdev_init("ibm,opal-flash"); |
| 946 | opal_pdev_init("ibm,opal-prd"); |
Cyril Bur | ed59190 | 2015-04-01 14:05:30 +0800 | [diff] [blame] | 947 | |
Suraj Jitindar Singh | 43a1dd9 | 2016-06-29 13:38:39 +1000 | [diff] [blame] | 948 | /* Initialise platform device: oppanel interface */ |
Jack Miller | 9e4f51b | 2016-08-10 19:32:40 -0500 | [diff] [blame] | 949 | opal_pdev_init("ibm,opal-oppanel"); |
Suraj Jitindar Singh | 43a1dd9 | 2016-06-29 13:38:39 +1000 | [diff] [blame] | 950 | |
Russell Currey | affddff | 2015-11-27 17:23:07 +1100 | [diff] [blame] | 951 | /* Initialise OPAL kmsg dumper for flushing console on panic */ |
| 952 | opal_kmsg_init(); |
| 953 | |
Shilpasri G Bhat | cb8b340 | 2017-08-10 09:01:18 +0530 | [diff] [blame] | 954 | /* Initialise OPAL powercap interface */ |
| 955 | opal_powercap_init(); |
| 956 | |
Shilpasri G Bhat | 8e84b2d | 2017-08-10 09:01:19 +0530 | [diff] [blame] | 957 | /* Initialise OPAL Power-Shifting-Ratio interface */ |
| 958 | opal_psr_init(); |
| 959 | |
Shilpasri G Bhat | bf95715 | 2017-08-10 09:01:20 +0530 | [diff] [blame] | 960 | /* Initialise OPAL sensor groups */ |
| 961 | opal_sensor_groups_init(); |
| 962 | |
Benjamin Herrenschmidt | 14a43e6 | 2011-09-19 17:44:57 +0000 | [diff] [blame] | 963 | return 0; |
| 964 | } |
Michael Ellerman | b14726c | 2014-07-15 22:22:24 +1000 | [diff] [blame] | 965 | machine_subsys_initcall(powernv, opal_init); |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 966 | |
| 967 | void opal_shutdown(void) |
| 968 | { |
Vasant Hegde | f7d98d1 | 2014-01-15 17:02:04 +1100 | [diff] [blame] | 969 | long rc = OPAL_BUSY; |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 970 | |
Alistair Popple | 9f0fd04 | 2015-05-15 14:06:37 +1000 | [diff] [blame] | 971 | opal_event_shutdown(); |
Vasant Hegde | f7d98d1 | 2014-01-15 17:02:04 +1100 | [diff] [blame] | 972 | |
| 973 | /* |
| 974 | * Then sync with OPAL which ensure anything that can |
| 975 | * potentially write to our memory has completed such |
| 976 | * as an ongoing dump retrieval |
| 977 | */ |
| 978 | while (rc == OPAL_BUSY || rc == OPAL_BUSY_EVENT) { |
| 979 | rc = opal_sync_host_reboot(); |
| 980 | if (rc == OPAL_BUSY) |
| 981 | opal_poll_events(NULL); |
| 982 | else |
| 983 | mdelay(10); |
| 984 | } |
Vasant Hegde | b09c2ec | 2014-08-09 11:15:45 +0530 | [diff] [blame] | 985 | |
| 986 | /* Unregister memory dump region */ |
Stewart Smith | b962f5a | 2015-02-12 16:25:27 +1100 | [diff] [blame] | 987 | if (opal_check_token(OPAL_UNREGISTER_DUMP_REGION)) |
| 988 | opal_unregister_dump_region(OPAL_DUMP_REGION_LOG_BUF); |
Benjamin Herrenschmidt | 73ed148 | 2013-05-10 16:59:18 +1000 | [diff] [blame] | 989 | } |
Joel Stanley | e28b05e | 2014-04-01 14:28:20 +1030 | [diff] [blame] | 990 | |
| 991 | /* Export this so that test modules can use it */ |
| 992 | EXPORT_SYMBOL_GPL(opal_invalid_call); |
Jeremy Kerr | 594fcb9 | 2015-05-20 11:23:33 +0800 | [diff] [blame] | 993 | EXPORT_SYMBOL_GPL(opal_xscom_read); |
| 994 | EXPORT_SYMBOL_GPL(opal_xscom_write); |
Jeremy Kerr | 608b286 | 2014-11-06 11:38:27 +0800 | [diff] [blame] | 995 | EXPORT_SYMBOL_GPL(opal_ipmi_send); |
| 996 | EXPORT_SYMBOL_GPL(opal_ipmi_recv); |
Cyril Bur | ed59190 | 2015-04-01 14:05:30 +0800 | [diff] [blame] | 997 | EXPORT_SYMBOL_GPL(opal_flash_read); |
| 998 | EXPORT_SYMBOL_GPL(opal_flash_write); |
| 999 | EXPORT_SYMBOL_GPL(opal_flash_erase); |
Jeremy Kerr | 0d7cd85 | 2015-06-04 21:51:47 +0800 | [diff] [blame] | 1000 | EXPORT_SYMBOL_GPL(opal_prd_msg); |
Haren Myneni | 6e70800 | 2018-06-13 00:28:57 -0700 | [diff] [blame] | 1001 | EXPORT_SYMBOL_GPL(opal_check_token); |
Anton Blanchard | 3441f04 | 2014-04-22 15:01:26 +1000 | [diff] [blame] | 1002 | |
| 1003 | /* Convert a region of vmalloc memory to an opal sg list */ |
| 1004 | struct opal_sg_list *opal_vmalloc_to_sg_list(void *vmalloc_addr, |
| 1005 | unsigned long vmalloc_size) |
| 1006 | { |
| 1007 | struct opal_sg_list *sg, *first = NULL; |
| 1008 | unsigned long i = 0; |
| 1009 | |
| 1010 | sg = kzalloc(PAGE_SIZE, GFP_KERNEL); |
| 1011 | if (!sg) |
| 1012 | goto nomem; |
| 1013 | |
| 1014 | first = sg; |
| 1015 | |
| 1016 | while (vmalloc_size > 0) { |
| 1017 | uint64_t data = vmalloc_to_pfn(vmalloc_addr) << PAGE_SHIFT; |
| 1018 | uint64_t length = min(vmalloc_size, PAGE_SIZE); |
| 1019 | |
| 1020 | sg->entry[i].data = cpu_to_be64(data); |
| 1021 | sg->entry[i].length = cpu_to_be64(length); |
| 1022 | i++; |
| 1023 | |
| 1024 | if (i >= SG_ENTRIES_PER_NODE) { |
| 1025 | struct opal_sg_list *next; |
| 1026 | |
| 1027 | next = kzalloc(PAGE_SIZE, GFP_KERNEL); |
| 1028 | if (!next) |
| 1029 | goto nomem; |
| 1030 | |
| 1031 | sg->length = cpu_to_be64( |
| 1032 | i * sizeof(struct opal_sg_entry) + 16); |
| 1033 | i = 0; |
| 1034 | sg->next = cpu_to_be64(__pa(next)); |
| 1035 | sg = next; |
| 1036 | } |
| 1037 | |
| 1038 | vmalloc_addr += length; |
| 1039 | vmalloc_size -= length; |
| 1040 | } |
| 1041 | |
| 1042 | sg->length = cpu_to_be64(i * sizeof(struct opal_sg_entry) + 16); |
| 1043 | |
| 1044 | return first; |
| 1045 | |
| 1046 | nomem: |
| 1047 | pr_err("%s : Failed to allocate memory\n", __func__); |
| 1048 | opal_free_sg_list(first); |
| 1049 | return NULL; |
| 1050 | } |
| 1051 | |
| 1052 | void opal_free_sg_list(struct opal_sg_list *sg) |
| 1053 | { |
| 1054 | while (sg) { |
| 1055 | uint64_t next = be64_to_cpu(sg->next); |
| 1056 | |
| 1057 | kfree(sg); |
| 1058 | |
| 1059 | if (next) |
| 1060 | sg = __va(next); |
| 1061 | else |
| 1062 | sg = NULL; |
| 1063 | } |
| 1064 | } |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 1065 | |
Cédric Le Goater | e3c5c2e | 2015-03-30 12:06:09 +0200 | [diff] [blame] | 1066 | int opal_error_code(int rc) |
| 1067 | { |
| 1068 | switch (rc) { |
| 1069 | case OPAL_SUCCESS: return 0; |
| 1070 | |
| 1071 | case OPAL_PARAMETER: return -EINVAL; |
| 1072 | case OPAL_ASYNC_COMPLETION: return -EINPROGRESS; |
Cyril Bur | 77adbd2 | 2017-11-03 13:41:45 +1100 | [diff] [blame] | 1073 | case OPAL_BUSY: |
Cédric Le Goater | e3c5c2e | 2015-03-30 12:06:09 +0200 | [diff] [blame] | 1074 | case OPAL_BUSY_EVENT: return -EBUSY; |
| 1075 | case OPAL_NO_MEM: return -ENOMEM; |
Cédric Le Goater | 14aae78 | 2015-04-08 09:31:10 +0200 | [diff] [blame] | 1076 | case OPAL_PERMISSION: return -EPERM; |
Cédric Le Goater | e3c5c2e | 2015-03-30 12:06:09 +0200 | [diff] [blame] | 1077 | |
| 1078 | case OPAL_UNSUPPORTED: return -EIO; |
| 1079 | case OPAL_HARDWARE: return -EIO; |
| 1080 | case OPAL_INTERNAL_ERROR: return -EIO; |
Shilpasri G Bhat | cb8b340 | 2017-08-10 09:01:18 +0530 | [diff] [blame] | 1081 | case OPAL_TIMEOUT: return -ETIMEDOUT; |
Cédric Le Goater | e3c5c2e | 2015-03-30 12:06:09 +0200 | [diff] [blame] | 1082 | default: |
| 1083 | pr_err("%s: unexpected OPAL error %d\n", __func__, rc); |
| 1084 | return -EIO; |
| 1085 | } |
| 1086 | } |
| 1087 | |
Alistair Popple | 1d0761d | 2016-12-14 13:36:51 +1100 | [diff] [blame] | 1088 | void powernv_set_nmmu_ptcr(unsigned long ptcr) |
| 1089 | { |
| 1090 | int rc; |
| 1091 | |
| 1092 | if (firmware_has_feature(FW_FEATURE_OPAL)) { |
| 1093 | rc = opal_nmmu_set_ptcr(-1UL, ptcr); |
| 1094 | if (rc != OPAL_SUCCESS && rc != OPAL_UNSUPPORTED) |
| 1095 | pr_warn("%s: Unable to set nest mmu ptcr\n", __func__); |
| 1096 | } |
| 1097 | } |
| 1098 | |
Neelesh Gupta | 16b1d26 | 2014-10-14 14:08:36 +0530 | [diff] [blame] | 1099 | EXPORT_SYMBOL_GPL(opal_poll_events); |
| 1100 | EXPORT_SYMBOL_GPL(opal_rtc_read); |
| 1101 | EXPORT_SYMBOL_GPL(opal_rtc_write); |
| 1102 | EXPORT_SYMBOL_GPL(opal_tpo_read); |
| 1103 | EXPORT_SYMBOL_GPL(opal_tpo_write); |
Neelesh Gupta | 4708345 | 2014-12-13 23:31:05 +0530 | [diff] [blame] | 1104 | EXPORT_SYMBOL_GPL(opal_i2c_request); |
Vasant Hegde | c159b59 | 2015-08-19 22:19:53 +0530 | [diff] [blame] | 1105 | /* Export these symbols for PowerNV LED class driver */ |
| 1106 | EXPORT_SYMBOL_GPL(opal_leds_get_ind); |
| 1107 | EXPORT_SYMBOL_GPL(opal_leds_set_ind); |
Suraj Jitindar Singh | 43a1dd9 | 2016-06-29 13:38:39 +1000 | [diff] [blame] | 1108 | /* Export this symbol for PowerNV Operator Panel class driver */ |
| 1109 | EXPORT_SYMBOL_GPL(opal_write_oppanel_async); |
Paul Mackerras | ffe6d81 | 2016-11-21 16:01:36 +1100 | [diff] [blame] | 1110 | /* Export this for KVM */ |
| 1111 | EXPORT_SYMBOL_GPL(opal_int_set_mfrr); |
Benjamin Herrenschmidt | 5af5099 | 2017-04-05 17:54:56 +1000 | [diff] [blame] | 1112 | EXPORT_SYMBOL_GPL(opal_int_eoi); |
Cyril Bur | 77adbd2 | 2017-11-03 13:41:45 +1100 | [diff] [blame] | 1113 | EXPORT_SYMBOL_GPL(opal_error_code); |
Haren Myneni | 656ecc1 | 2018-06-13 00:32:40 -0700 | [diff] [blame] | 1114 | /* Export the below symbol for NX compression */ |
| 1115 | EXPORT_SYMBOL(opal_nx_coproc_init); |