2 * PowerNV OPAL high level interfaces
4 * Copyright 2011 IBM Corp.
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.
14 #include <linux/types.h>
16 #include <linux/of_platform.h>
17 #include <linux/interrupt.h>
18 #include <linux/notifier.h>
19 #include <linux/slab.h>
21 #include <asm/firmware.h>
30 static struct device_node *opal_node;
31 static DEFINE_SPINLOCK(opal_write_lock);
32 extern u64 opal_mc_secondary_handler[];
33 static unsigned int *opal_irqs;
34 static unsigned int opal_irq_count;
35 static ATOMIC_NOTIFIER_HEAD(opal_notifier_head);
36 static DEFINE_SPINLOCK(opal_notifier_lock);
37 static uint64_t last_notified_mask = 0x0ul;
38 static atomic_t opal_notifier_hold = ATOMIC_INIT(0);
40 int __init early_init_dt_scan_opal(unsigned long node,
41 const char *uname, int depth, void *data)
43 const void *basep, *entryp;
44 unsigned long basesz, entrysz;
46 if (depth != 1 || strcmp(uname, "ibm,opal") != 0)
49 basep = of_get_flat_dt_prop(node, "opal-base-address", &basesz);
50 entryp = of_get_flat_dt_prop(node, "opal-entry-address", &entrysz);
52 if (!basep || !entryp)
55 opal.base = of_read_number(basep, basesz/4);
56 opal.entry = of_read_number(entryp, entrysz/4);
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);
63 powerpc_firmware_features |= FW_FEATURE_OPAL;
64 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")) {
69 powerpc_firmware_features |= FW_FEATURE_OPALv2;
70 printk("OPAL V2 detected !\n");
72 printk("OPAL V1 detected !\n");
78 static int __init opal_register_exception_handlers(void)
82 if (!(powerpc_firmware_features & FW_FEATURE_OPAL))
85 /* Hookup some exception handlers. We use the fwnmi area at 0x7000
86 * to provide the glue space to OPAL
89 opal_register_exception_handler(OPAL_MACHINE_CHECK_HANDLER,
90 __pa(opal_mc_secondary_handler[0]),
93 opal_register_exception_handler(OPAL_HYPERVISOR_MAINTENANCE_HANDLER,
96 opal_register_exception_handler(OPAL_SOFTPATCH_HANDLER, 0, glue);
101 early_initcall(opal_register_exception_handlers);
103 int opal_notifier_register(struct notifier_block *nb)
106 pr_warning("%s: Invalid argument (%p)\n",
111 atomic_notifier_chain_register(&opal_notifier_head, nb);
115 static void opal_do_notifier(uint64_t events)
118 uint64_t changed_mask;
120 if (atomic_read(&opal_notifier_hold))
123 spin_lock_irqsave(&opal_notifier_lock, flags);
124 changed_mask = last_notified_mask ^ events;
125 last_notified_mask = events;
126 spin_unlock_irqrestore(&opal_notifier_lock, flags);
129 * We feed with the event bits and changed bits for
130 * enough information to the callback.
132 atomic_notifier_call_chain(&opal_notifier_head,
133 events, (void *)changed_mask);
136 void opal_notifier_update_evt(uint64_t evt_mask,
141 spin_lock_irqsave(&opal_notifier_lock, flags);
142 last_notified_mask &= ~evt_mask;
143 last_notified_mask |= evt_val;
144 spin_unlock_irqrestore(&opal_notifier_lock, flags);
147 void opal_notifier_enable(void)
152 atomic_set(&opal_notifier_hold, 0);
154 /* Process pending events */
155 rc = opal_poll_events(&evt);
156 if (rc == OPAL_SUCCESS && evt)
157 opal_do_notifier(evt);
160 void opal_notifier_disable(void)
162 atomic_set(&opal_notifier_hold, 1);
165 int opal_get_chars(uint32_t vtermno, char *buf, int count)
172 opal_poll_events(&evt);
173 if ((evt & OPAL_EVENT_CONSOLE_INPUT) == 0)
176 rc = opal_console_read(vtermno, &len, buf);
177 if (rc == OPAL_SUCCESS)
182 int opal_put_chars(uint32_t vtermno, const char *data, int total_len)
192 /* We want put_chars to be atomic to avoid mangling of hvsi
193 * packets. To do that, we first test for room and return
194 * -EAGAIN if there isn't enough.
196 * Unfortunately, opal_console_write_buffer_space() doesn't
197 * appear to work on opal v1, so we just assume there is
198 * enough room and be done with it
200 spin_lock_irqsave(&opal_write_lock, flags);
201 if (firmware_has_feature(FW_FEATURE_OPALv2)) {
202 rc = opal_console_write_buffer_space(vtermno, &len);
203 if (rc || len < total_len) {
204 spin_unlock_irqrestore(&opal_write_lock, flags);
205 /* Closed -> drop characters */
208 opal_poll_events(&evt);
213 /* We still try to handle partial completions, though they
214 * should no longer happen.
217 while(total_len > 0 && (rc == OPAL_BUSY ||
218 rc == OPAL_BUSY_EVENT || rc == OPAL_SUCCESS)) {
220 rc = opal_console_write(vtermno, &len, data);
222 /* Closed or other error drop */
223 if (rc != OPAL_SUCCESS && rc != OPAL_BUSY &&
224 rc != OPAL_BUSY_EVENT) {
228 if (rc == OPAL_SUCCESS) {
233 /* This is a bit nasty but we need that for the console to
234 * flush when there aren't any interrupts. We will clean
235 * things a bit later to limit that to synchronous path
236 * such as the kernel console and xmon/udbg
239 opal_poll_events(&evt);
240 while(rc == OPAL_SUCCESS && (evt & OPAL_EVENT_CONSOLE_OUTPUT));
242 spin_unlock_irqrestore(&opal_write_lock, flags);
246 int opal_machine_check(struct pt_regs *regs)
248 struct opal_machine_check_event *opal_evt = get_paca()->opal_mc_evt;
249 struct opal_machine_check_event evt;
250 const char *level, *sevstr, *subtype;
251 static const char *opal_mc_ue_types[] = {
254 "Page table walk ifetch",
256 "Page table walk Load/Store",
258 static const char *opal_mc_slb_types[] = {
263 static const char *opal_mc_erat_types[] = {
268 static const char *opal_mc_tlb_types[] = {
274 /* Copy the event structure and release the original */
276 opal_evt->in_use = 0;
278 /* Print things out */
279 if (evt.version != OpalMCE_V1) {
280 pr_err("Machine Check Exception, Unknown event version %d !\n",
284 switch(evt.severity) {
285 case OpalMCE_SEV_NO_ERROR:
289 case OpalMCE_SEV_WARNING:
290 level = KERN_WARNING;
293 case OpalMCE_SEV_ERROR_SYNC:
297 case OpalMCE_SEV_FATAL:
304 printk("%s%s Machine check interrupt [%s]\n", level, sevstr,
305 evt.disposition == OpalMCE_DISPOSITION_RECOVERED ?
306 "Recovered" : "[Not recovered");
307 printk("%s Initiator: %s\n", level,
308 evt.initiator == OpalMCE_INITIATOR_CPU ? "CPU" : "Unknown");
309 switch(evt.error_type) {
310 case OpalMCE_ERROR_TYPE_UE:
311 subtype = evt.u.ue_error.ue_error_type <
312 ARRAY_SIZE(opal_mc_ue_types) ?
313 opal_mc_ue_types[evt.u.ue_error.ue_error_type]
315 printk("%s Error type: UE [%s]\n", level, subtype);
316 if (evt.u.ue_error.effective_address_provided)
317 printk("%s Effective address: %016llx\n",
318 level, evt.u.ue_error.effective_address);
319 if (evt.u.ue_error.physical_address_provided)
320 printk("%s Physial address: %016llx\n",
321 level, evt.u.ue_error.physical_address);
323 case OpalMCE_ERROR_TYPE_SLB:
324 subtype = evt.u.slb_error.slb_error_type <
325 ARRAY_SIZE(opal_mc_slb_types) ?
326 opal_mc_slb_types[evt.u.slb_error.slb_error_type]
328 printk("%s Error type: SLB [%s]\n", level, subtype);
329 if (evt.u.slb_error.effective_address_provided)
330 printk("%s Effective address: %016llx\n",
331 level, evt.u.slb_error.effective_address);
333 case OpalMCE_ERROR_TYPE_ERAT:
334 subtype = evt.u.erat_error.erat_error_type <
335 ARRAY_SIZE(opal_mc_erat_types) ?
336 opal_mc_erat_types[evt.u.erat_error.erat_error_type]
338 printk("%s Error type: ERAT [%s]\n", level, subtype);
339 if (evt.u.erat_error.effective_address_provided)
340 printk("%s Effective address: %016llx\n",
341 level, evt.u.erat_error.effective_address);
343 case OpalMCE_ERROR_TYPE_TLB:
344 subtype = evt.u.tlb_error.tlb_error_type <
345 ARRAY_SIZE(opal_mc_tlb_types) ?
346 opal_mc_tlb_types[evt.u.tlb_error.tlb_error_type]
348 printk("%s Error type: TLB [%s]\n", level, subtype);
349 if (evt.u.tlb_error.effective_address_provided)
350 printk("%s Effective address: %016llx\n",
351 level, evt.u.tlb_error.effective_address);
354 case OpalMCE_ERROR_TYPE_UNKNOWN:
355 printk("%s Error type: Unknown\n", level);
358 return evt.severity == OpalMCE_SEV_FATAL ? 0 : 1;
361 static irqreturn_t opal_interrupt(int irq, void *data)
365 opal_handle_interrupt(virq_to_hw(irq), &events);
367 opal_do_notifier(events);
372 static int __init opal_init(void)
374 struct device_node *np, *consoles;
378 opal_node = of_find_node_by_path("/ibm,opal");
380 pr_warn("opal: Node not found\n");
384 /* Register OPAL consoles if any ports */
385 if (firmware_has_feature(FW_FEATURE_OPALv2))
386 consoles = of_find_node_by_path("/ibm,opal/consoles");
388 consoles = of_node_get(opal_node);
390 for_each_child_of_node(consoles, np) {
391 if (strcmp(np->name, "serial"))
393 of_platform_device_create(np, NULL, NULL);
395 of_node_put(consoles);
398 /* Find all OPAL interrupts and request them */
399 irqs = of_get_property(opal_node, "opal-interrupts", &irqlen);
400 pr_debug("opal: Found %d interrupts reserved for OPAL\n",
401 irqs ? (irqlen / 4) : 0);
402 opal_irq_count = irqlen / 4;
403 opal_irqs = kzalloc(opal_irq_count * sizeof(unsigned int), GFP_KERNEL);
404 for (i = 0; irqs && i < (irqlen / 4); i++, irqs++) {
405 unsigned int hwirq = be32_to_cpup(irqs);
406 unsigned int irq = irq_create_mapping(NULL, hwirq);
408 pr_warning("opal: Failed to map irq 0x%x\n", hwirq);
411 rc = request_irq(irq, opal_interrupt, 0, "opal", NULL);
413 pr_warning("opal: Error %d requesting irq %d"
414 " (0x%x)\n", rc, irq, hwirq);
419 subsys_initcall(opal_init);
421 void opal_shutdown(void)
425 for (i = 0; i < opal_irq_count; i++) {
427 free_irq(opal_irqs[i], NULL);