blob: 09336f0c54c56e12954b454f6d562aac64508c50 [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
12#undef DEBUG
13
14#include <linux/types.h>
15#include <linux/of.h>
16#include <linux/of_platform.h>
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +000017#include <linux/interrupt.h>
Gavin Shan1bc98de2013-06-20 18:13:22 +080018#include <linux/notifier.h>
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100019#include <linux/slab.h>
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000020#include <asm/opal.h>
21#include <asm/firmware.h>
22
23#include "powernv.h"
24
25struct opal {
26 u64 base;
27 u64 entry;
28} opal;
29
30static struct device_node *opal_node;
31static DEFINE_SPINLOCK(opal_write_lock);
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +000032extern u64 opal_mc_secondary_handler[];
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +100033static unsigned int *opal_irqs;
34static unsigned int opal_irq_count;
Gavin Shan1bc98de2013-06-20 18:13:22 +080035static ATOMIC_NOTIFIER_HEAD(opal_notifier_head);
36static DEFINE_SPINLOCK(opal_notifier_lock);
37static uint64_t last_notified_mask = 0x0ul;
38static atomic_t opal_notifier_hold = ATOMIC_INIT(0);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000039
40int __init early_init_dt_scan_opal(unsigned long node,
41 const char *uname, int depth, void *data)
42{
43 const void *basep, *entryp;
44 unsigned long basesz, entrysz;
45
46 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
47 return 0;
48
49 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
50 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
51
52 if (!basep || !entryp)
53 return 1;
54
55 opal.base = of_read_number(basep, basesz/4);
56 opal.entry = of_read_number(entryp, entrysz/4);
57
58 pr_debug("OPAL Base = 0x%llx (basep=%p basesz=%ld)\n",
59 opal.base, basep, basesz);
60 pr_debug("OPAL Entry = 0x%llx (entryp=%p basesz=%ld)\n",
61 opal.entry, entryp, entrysz);
62
63 powerpc_firmware_features |= FW_FEATURE_OPAL;
Benjamin Herrenschmidt75b93da2013-05-14 15:10:02 +100064 if (of_flat_dt_is_compatible(node, "ibm,opal-v3")) {
65 powerpc_firmware_features |= FW_FEATURE_OPALv2;
66 powerpc_firmware_features |= FW_FEATURE_OPALv3;
67 printk("OPAL V3 detected !\n");
68 } else if (of_flat_dt_is_compatible(node, "ibm,opal-v2")) {
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +000069 powerpc_firmware_features |= FW_FEATURE_OPALv2;
70 printk("OPAL V2 detected !\n");
71 } else {
72 printk("OPAL V1 detected !\n");
73 }
74
Jeremy Kerrc4463b32013-05-01 22:31:50 +000075 return 1;
76}
77
78static int __init opal_register_exception_handlers(void)
79{
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +100080#ifdef __BIG_ENDIAN__
Jeremy Kerrc4463b32013-05-01 22:31:50 +000081 u64 glue;
82
83 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
84 return -ENODEV;
85
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +000086 /* Hookup some exception handlers. We use the fwnmi area at 0x7000
87 * to provide the glue space to OPAL
88 */
89 glue = 0x7000;
90 opal_register_exception_handler(OPAL_MACHINE_CHECK_HANDLER,
91 __pa(opal_mc_secondary_handler[0]),
92 glue);
93 glue += 128;
94 opal_register_exception_handler(OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
95 0, glue);
96 glue += 128;
97 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
Benjamin Herrenschmidt29186092013-09-23 12:05:04 +100098#endif
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +000099
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000100 return 0;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000101}
102
Jeremy Kerrc4463b32013-05-01 22:31:50 +0000103early_initcall(opal_register_exception_handlers);
104
Gavin Shan1bc98de2013-06-20 18:13:22 +0800105int opal_notifier_register(struct notifier_block *nb)
106{
107 if (!nb) {
108 pr_warning("%s: Invalid argument (%p)\n",
109 __func__, nb);
110 return -EINVAL;
111 }
112
113 atomic_notifier_chain_register(&opal_notifier_head, nb);
114 return 0;
115}
116
117static void opal_do_notifier(uint64_t events)
118{
119 unsigned long flags;
120 uint64_t changed_mask;
121
122 if (atomic_read(&opal_notifier_hold))
123 return;
124
125 spin_lock_irqsave(&opal_notifier_lock, flags);
126 changed_mask = last_notified_mask ^ events;
127 last_notified_mask = events;
128 spin_unlock_irqrestore(&opal_notifier_lock, flags);
129
130 /*
131 * We feed with the event bits and changed bits for
132 * enough information to the callback.
133 */
134 atomic_notifier_call_chain(&opal_notifier_head,
135 events, (void *)changed_mask);
136}
137
138void opal_notifier_update_evt(uint64_t evt_mask,
139 uint64_t evt_val)
140{
141 unsigned long flags;
142
143 spin_lock_irqsave(&opal_notifier_lock, flags);
144 last_notified_mask &= ~evt_mask;
145 last_notified_mask |= evt_val;
146 spin_unlock_irqrestore(&opal_notifier_lock, flags);
147}
148
149void opal_notifier_enable(void)
150{
151 int64_t rc;
152 uint64_t evt = 0;
153
154 atomic_set(&opal_notifier_hold, 0);
155
156 /* Process pending events */
157 rc = opal_poll_events(&evt);
158 if (rc == OPAL_SUCCESS && evt)
159 opal_do_notifier(evt);
160}
161
162void opal_notifier_disable(void)
163{
164 atomic_set(&opal_notifier_hold, 1);
165}
166
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000167int opal_get_chars(uint32_t vtermno, char *buf, int count)
168{
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000169 s64 rc;
170 __be64 evt, len;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000171
172 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000173 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000174 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000175 if ((be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_INPUT) == 0)
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000176 return 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000177 len = cpu_to_be64(count);
178 rc = opal_console_read(vtermno, &len, buf);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000179 if (rc == OPAL_SUCCESS)
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000180 return be64_to_cpu(len);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000181 return 0;
182}
183
184int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
185{
186 int written = 0;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000187 __be64 olen;
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000188 s64 len, rc;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000189 unsigned long flags;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000190 __be64 evt;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000191
192 if (!opal.entry)
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000193 return -ENODEV;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000194
195 /* We want put_chars to be atomic to avoid mangling of hvsi
196 * packets. To do that, we first test for room and return
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000197 * -EAGAIN if there isn't enough.
198 *
199 * Unfortunately, opal_console_write_buffer_space() doesn't
200 * appear to work on opal v1, so we just assume there is
201 * enough room and be done with it
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000202 */
203 spin_lock_irqsave(&opal_write_lock, flags);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000204 if (firmware_has_feature(FW_FEATURE_OPALv2)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000205 rc = opal_console_write_buffer_space(vtermno, &olen);
206 len = be64_to_cpu(olen);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000207 if (rc || len < total_len) {
208 spin_unlock_irqrestore(&opal_write_lock, flags);
209 /* Closed -> drop characters */
210 if (rc)
211 return total_len;
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000212 opal_poll_events(NULL);
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000213 return -EAGAIN;
214 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000215 }
216
217 /* We still try to handle partial completions, though they
218 * should no longer happen.
219 */
Benjamin Herrenschmidtdaea1172011-09-19 17:44:59 +0000220 rc = OPAL_BUSY;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000221 while(total_len > 0 && (rc == OPAL_BUSY ||
222 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000223 olen = cpu_to_be64(total_len);
224 rc = opal_console_write(vtermno, &olen, data);
225 len = be64_to_cpu(olen);
Benjamin Herrenschmidt1de14552013-05-08 14:14:26 +1000226
227 /* Closed or other error drop */
228 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
229 rc != OPAL_BUSY_EVENT) {
230 written = total_len;
231 break;
232 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000233 if (rc == OPAL_SUCCESS) {
234 total_len -= len;
235 data += len;
236 written += len;
237 }
238 /* This is a bit nasty but we need that for the console to
239 * flush when there aren't any interrupts. We will clean
240 * things a bit later to limit that to synchronous path
241 * such as the kernel console and xmon/udbg
242 */
243 do
244 opal_poll_events(&evt);
Benjamin Herrenschmidt4f893632013-09-23 12:05:02 +1000245 while(rc == OPAL_SUCCESS &&
246 (be64_to_cpu(evt) & OPAL_EVENT_CONSOLE_OUTPUT));
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000247 }
248 spin_unlock_irqrestore(&opal_write_lock, flags);
249 return written;
250}
251
Benjamin Herrenschmidted79ba92011-09-19 17:45:04 +0000252int opal_machine_check(struct pt_regs *regs)
253{
254 struct opal_machine_check_event *opal_evt = get_paca()->opal_mc_evt;
255 struct opal_machine_check_event evt;
256 const char *level, *sevstr, *subtype;
257 static const char *opal_mc_ue_types[] = {
258 "Indeterminate",
259 "Instruction fetch",
260 "Page table walk ifetch",
261 "Load/Store",
262 "Page table walk Load/Store",
263 };
264 static const char *opal_mc_slb_types[] = {
265 "Indeterminate",
266 "Parity",
267 "Multihit",
268 };
269 static const char *opal_mc_erat_types[] = {
270 "Indeterminate",
271 "Parity",
272 "Multihit",
273 };
274 static const char *opal_mc_tlb_types[] = {
275 "Indeterminate",
276 "Parity",
277 "Multihit",
278 };
279
280 /* Copy the event structure and release the original */
281 evt = *opal_evt;
282 opal_evt->in_use = 0;
283
284 /* Print things out */
285 if (evt.version != OpalMCE_V1) {
286 pr_err("Machine Check Exception, Unknown event version %d !\n",
287 evt.version);
288 return 0;
289 }
290 switch(evt.severity) {
291 case OpalMCE_SEV_NO_ERROR:
292 level = KERN_INFO;
293 sevstr = "Harmless";
294 break;
295 case OpalMCE_SEV_WARNING:
296 level = KERN_WARNING;
297 sevstr = "";
298 break;
299 case OpalMCE_SEV_ERROR_SYNC:
300 level = KERN_ERR;
301 sevstr = "Severe";
302 break;
303 case OpalMCE_SEV_FATAL:
304 default:
305 level = KERN_ERR;
306 sevstr = "Fatal";
307 break;
308 }
309
310 printk("%s%s Machine check interrupt [%s]\n", level, sevstr,
311 evt.disposition == OpalMCE_DISPOSITION_RECOVERED ?
312 "Recovered" : "[Not recovered");
313 printk("%s Initiator: %s\n", level,
314 evt.initiator == OpalMCE_INITIATOR_CPU ? "CPU" : "Unknown");
315 switch(evt.error_type) {
316 case OpalMCE_ERROR_TYPE_UE:
317 subtype = evt.u.ue_error.ue_error_type <
318 ARRAY_SIZE(opal_mc_ue_types) ?
319 opal_mc_ue_types[evt.u.ue_error.ue_error_type]
320 : "Unknown";
321 printk("%s Error type: UE [%s]\n", level, subtype);
322 if (evt.u.ue_error.effective_address_provided)
323 printk("%s Effective address: %016llx\n",
324 level, evt.u.ue_error.effective_address);
325 if (evt.u.ue_error.physical_address_provided)
326 printk("%s Physial address: %016llx\n",
327 level, evt.u.ue_error.physical_address);
328 break;
329 case OpalMCE_ERROR_TYPE_SLB:
330 subtype = evt.u.slb_error.slb_error_type <
331 ARRAY_SIZE(opal_mc_slb_types) ?
332 opal_mc_slb_types[evt.u.slb_error.slb_error_type]
333 : "Unknown";
334 printk("%s Error type: SLB [%s]\n", level, subtype);
335 if (evt.u.slb_error.effective_address_provided)
336 printk("%s Effective address: %016llx\n",
337 level, evt.u.slb_error.effective_address);
338 break;
339 case OpalMCE_ERROR_TYPE_ERAT:
340 subtype = evt.u.erat_error.erat_error_type <
341 ARRAY_SIZE(opal_mc_erat_types) ?
342 opal_mc_erat_types[evt.u.erat_error.erat_error_type]
343 : "Unknown";
344 printk("%s Error type: ERAT [%s]\n", level, subtype);
345 if (evt.u.erat_error.effective_address_provided)
346 printk("%s Effective address: %016llx\n",
347 level, evt.u.erat_error.effective_address);
348 break;
349 case OpalMCE_ERROR_TYPE_TLB:
350 subtype = evt.u.tlb_error.tlb_error_type <
351 ARRAY_SIZE(opal_mc_tlb_types) ?
352 opal_mc_tlb_types[evt.u.tlb_error.tlb_error_type]
353 : "Unknown";
354 printk("%s Error type: TLB [%s]\n", level, subtype);
355 if (evt.u.tlb_error.effective_address_provided)
356 printk("%s Effective address: %016llx\n",
357 level, evt.u.tlb_error.effective_address);
358 break;
359 default:
360 case OpalMCE_ERROR_TYPE_UNKNOWN:
361 printk("%s Error type: Unknown\n", level);
362 break;
363 }
364 return evt.severity == OpalMCE_SEV_FATAL ? 0 : 1;
365}
366
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000367static irqreturn_t opal_interrupt(int irq, void *data)
368{
Anton Blanchard5e4da532013-09-23 12:05:06 +1000369 __be64 events;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000370
371 opal_handle_interrupt(virq_to_hw(irq), &events);
372
Gavin Shan1bc98de2013-06-20 18:13:22 +0800373 opal_do_notifier(events);
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000374
375 return IRQ_HANDLED;
376}
377
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000378static int __init opal_init(void)
379{
380 struct device_node *np, *consoles;
Alistair Popple1cc79bc2013-09-23 12:04:54 +1000381 const __be32 *irqs;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000382 int rc, i, irqlen;
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000383
384 opal_node = of_find_node_by_path("/ibm,opal");
385 if (!opal_node) {
386 pr_warn("opal: Node not found\n");
387 return -ENODEV;
388 }
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000389
390 /* Register OPAL consoles if any ports */
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000391 if (firmware_has_feature(FW_FEATURE_OPALv2))
392 consoles = of_find_node_by_path("/ibm,opal/consoles");
393 else
394 consoles = of_node_get(opal_node);
Benjamin Herrenschmidt2db29d22013-07-15 13:03:14 +1000395 if (consoles) {
396 for_each_child_of_node(consoles, np) {
397 if (strcmp(np->name, "serial"))
398 continue;
399 of_platform_device_create(np, NULL, NULL);
400 }
401 of_node_put(consoles);
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000402 }
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000403
404 /* Find all OPAL interrupts and request them */
405 irqs = of_get_property(opal_node, "opal-interrupts", &irqlen);
406 pr_debug("opal: Found %d interrupts reserved for OPAL\n",
407 irqs ? (irqlen / 4) : 0);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000408 opal_irq_count = irqlen / 4;
409 opal_irqs = kzalloc(opal_irq_count * sizeof(unsigned int), GFP_KERNEL);
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000410 for (i = 0; irqs && i < (irqlen / 4); i++, irqs++) {
411 unsigned int hwirq = be32_to_cpup(irqs);
412 unsigned int irq = irq_create_mapping(NULL, hwirq);
413 if (irq == NO_IRQ) {
414 pr_warning("opal: Failed to map irq 0x%x\n", hwirq);
415 continue;
416 }
417 rc = request_irq(irq, opal_interrupt, 0, "opal", NULL);
418 if (rc)
419 pr_warning("opal: Error %d requesting irq %d"
420 " (0x%x)\n", rc, irq, hwirq);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000421 opal_irqs[i] = irq;
Benjamin Herrenschmidta125e092011-09-19 17:45:03 +0000422 }
Benjamin Herrenschmidt14a43e62011-09-19 17:44:57 +0000423 return 0;
424}
425subsys_initcall(opal_init);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000426
427void opal_shutdown(void)
428{
429 unsigned int i;
430
431 for (i = 0; i < opal_irq_count; i++) {
432 if (opal_irqs[i])
Anton Blanchardb0d436c2013-08-07 02:01:24 +1000433 free_irq(opal_irqs[i], NULL);
Benjamin Herrenschmidt73ed1482013-05-10 16:59:18 +1000434 opal_irqs[i] = 0;
435 }
436}