blob: 505f9b9bdf0c8bb8932594c4419bff6a6bb29653 [file] [log] [blame]
Michael Ellermanbdb226b2008-02-14 13:34:17 +11001/*
2 * Copyright 2006-2008, IBM Corporation.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
10#undef DEBUG
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020011
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020012#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/smp.h>
Jeremy Kerr150f7e32007-04-23 21:35:47 +020015#include <linux/reboot.h>
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020016
17#include <asm/reg.h>
18#include <asm/io.h>
19#include <asm/prom.h>
Arnd Bergmann5acb0802008-06-12 19:14:36 +100020#include <asm/kexec.h>
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020021#include <asm/machdep.h>
Jeremy Kerr150f7e32007-04-23 21:35:47 +020022#include <asm/rtas.h>
Benjamin Herrenschmidteef686a02007-10-04 15:40:42 +100023#include <asm/cell-regs.h>
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020024
25#include "ras.h"
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +020026
27
28static void dump_fir(int cpu)
29{
30 struct cbe_pmd_regs __iomem *pregs = cbe_get_cpu_pmd_regs(cpu);
31 struct cbe_iic_regs __iomem *iregs = cbe_get_cpu_iic_regs(cpu);
32
33 if (pregs == NULL)
34 return;
35
36 /* Todo: do some nicer parsing of bits and based on them go down
37 * to other sub-units FIRs and not only IIC
38 */
39 printk(KERN_ERR "Global Checkstop FIR : 0x%016lx\n",
40 in_be64(&pregs->checkstop_fir));
41 printk(KERN_ERR "Global Recoverable FIR : 0x%016lx\n",
42 in_be64(&pregs->checkstop_fir));
43 printk(KERN_ERR "Global MachineCheck FIR : 0x%016lx\n",
44 in_be64(&pregs->spec_att_mchk_fir));
45
46 if (iregs == NULL)
47 return;
48 printk(KERN_ERR "IOC FIR : 0x%016lx\n",
49 in_be64(&iregs->ioc_fir));
50
51}
52
53void cbe_system_error_exception(struct pt_regs *regs)
54{
55 int cpu = smp_processor_id();
56
57 printk(KERN_ERR "System Error Interrupt on CPU %d !\n", cpu);
58 dump_fir(cpu);
59 dump_stack();
60}
61
62void cbe_maintenance_exception(struct pt_regs *regs)
63{
64 int cpu = smp_processor_id();
65
66 /*
67 * Nothing implemented for the maintenance interrupt at this point
68 */
69
70 printk(KERN_ERR "Unhandled Maintenance interrupt on CPU %d !\n", cpu);
71 dump_stack();
72}
73
74void cbe_thermal_exception(struct pt_regs *regs)
75{
76 int cpu = smp_processor_id();
77
78 /*
79 * Nothing implemented for the thermal interrupt at this point
80 */
81
82 printk(KERN_ERR "Unhandled Thermal interrupt on CPU %d !\n", cpu);
83 dump_stack();
84}
85
86static int cbe_machine_check_handler(struct pt_regs *regs)
87{
88 int cpu = smp_processor_id();
89
90 printk(KERN_ERR "Machine Check Interrupt on CPU %d !\n", cpu);
91 dump_fir(cpu);
92
93 /* No recovery from this code now, lets continue */
94 return 0;
95}
96
Jeremy Kerr150f7e32007-04-23 21:35:47 +020097struct ptcal_area {
98 struct list_head list;
99 int nid;
100 int order;
101 struct page *pages;
102};
103
104static LIST_HEAD(ptcal_list);
105
106static int ptcal_start_tok, ptcal_stop_tok;
107
108static int __init cbe_ptcal_enable_on_node(int nid, int order)
109{
110 struct ptcal_area *area;
111 int ret = -ENOMEM;
112 unsigned long addr;
113
114#ifdef CONFIG_CRASH_DUMP
115 rtas_call(ptcal_stop_tok, 1, 1, NULL, nid);
116#endif
117
118 area = kmalloc(sizeof(*area), GFP_KERNEL);
119 if (!area)
120 goto out_err;
121
122 area->nid = nid;
123 area->order = order;
124 area->pages = alloc_pages_node(area->nid, GFP_KERNEL, area->order);
125
126 if (!area->pages)
127 goto out_free_area;
128
129 addr = __pa(page_address(area->pages));
130
131 ret = -EIO;
132 if (rtas_call(ptcal_start_tok, 3, 1, NULL, area->nid,
133 (unsigned int)(addr >> 32),
134 (unsigned int)(addr & 0xffffffff))) {
135 printk(KERN_ERR "%s: error enabling PTCAL on node %d!\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100136 __func__, nid);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200137 goto out_free_pages;
138 }
139
140 list_add(&area->list, &ptcal_list);
141
142 return 0;
143
144out_free_pages:
145 __free_pages(area->pages, area->order);
146out_free_area:
147 kfree(area);
148out_err:
149 return ret;
150}
151
152static int __init cbe_ptcal_enable(void)
153{
154 const u32 *size;
155 struct device_node *np;
156 int order, found_mic = 0;
157
158 np = of_find_node_by_path("/rtas");
159 if (!np)
160 return -ENODEV;
161
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000162 size = of_get_property(np, "ibm,cbe-ptcal-size", NULL);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200163 if (!size)
164 return -ENODEV;
165
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100166 pr_debug("%s: enabling PTCAL, size = 0x%x\n", __func__, *size);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200167 order = get_order(*size);
168 of_node_put(np);
169
170 /* support for malta device trees, with be@/mic@ nodes */
171 for_each_node_by_type(np, "mic-tm") {
172 cbe_ptcal_enable_on_node(of_node_to_nid(np), order);
173 found_mic = 1;
174 }
175
176 if (found_mic)
177 return 0;
178
179 /* support for older device tree - use cpu nodes */
180 for_each_node_by_type(np, "cpu") {
Stephen Rothwell12d371a2007-04-29 16:29:08 +1000181 const u32 *nid = of_get_property(np, "node-id", NULL);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200182 if (!nid) {
183 printk(KERN_ERR "%s: node %s is missing node-id?\n",
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100184 __func__, np->full_name);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200185 continue;
186 }
187 cbe_ptcal_enable_on_node(*nid, order);
188 found_mic = 1;
189 }
190
191 return found_mic ? 0 : -ENODEV;
192}
193
194static int cbe_ptcal_disable(void)
195{
196 struct ptcal_area *area, *tmp;
197 int ret = 0;
198
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100199 pr_debug("%s: disabling PTCAL\n", __func__);
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200200
201 list_for_each_entry_safe(area, tmp, &ptcal_list, list) {
202 /* disable ptcal on this node */
203 if (rtas_call(ptcal_stop_tok, 1, 1, NULL, area->nid)) {
204 printk(KERN_ERR "%s: error disabling PTCAL "
Harvey Harrisone48b1b42008-03-29 08:21:07 +1100205 "on node %d!\n", __func__,
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200206 area->nid);
207 ret = -EIO;
208 continue;
209 }
210
211 /* ensure we can access the PTCAL area */
212 memset(page_address(area->pages), 0,
213 1 << (area->order + PAGE_SHIFT));
214
215 /* clean up */
216 list_del(&area->list);
217 __free_pages(area->pages, area->order);
218 kfree(area);
219 }
220
221 return ret;
222}
223
224static int cbe_ptcal_notify_reboot(struct notifier_block *nb,
225 unsigned long code, void *data)
226{
227 return cbe_ptcal_disable();
228}
229
Arnd Bergmann5acb0802008-06-12 19:14:36 +1000230static void cbe_ptcal_crash_shutdown(void)
231{
232 cbe_ptcal_disable();
233}
234
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200235static struct notifier_block cbe_ptcal_reboot_notifier = {
236 .notifier_call = cbe_ptcal_notify_reboot
237};
238
239int __init cbe_ptcal_init(void)
240{
241 int ret;
242 ptcal_start_tok = rtas_token("ibm,cbe-start-ptcal");
243 ptcal_stop_tok = rtas_token("ibm,cbe-stop-ptcal");
244
245 if (ptcal_start_tok == RTAS_UNKNOWN_SERVICE
246 || ptcal_stop_tok == RTAS_UNKNOWN_SERVICE)
247 return -ENODEV;
248
249 ret = register_reboot_notifier(&cbe_ptcal_reboot_notifier);
Arnd Bergmann5acb0802008-06-12 19:14:36 +1000250 if (ret)
251 goto out1;
252
253 ret = crash_shutdown_register(&cbe_ptcal_crash_shutdown);
254 if (ret)
255 goto out2;
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200256
257 return cbe_ptcal_enable();
Arnd Bergmann5acb0802008-06-12 19:14:36 +1000258
259out2:
260 unregister_reboot_notifier(&cbe_ptcal_reboot_notifier);
261out1:
262 printk(KERN_ERR "Can't disable PTCAL, so not enabling\n");
263 return ret;
Jeremy Kerr150f7e32007-04-23 21:35:47 +0200264}
265
266arch_initcall(cbe_ptcal_init);
267
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200268void __init cbe_ras_init(void)
269{
270 unsigned long hid0;
271
272 /*
273 * Enable System Error & thermal interrupts and wakeup conditions
274 */
275
276 hid0 = mfspr(SPRN_HID0);
277 hid0 |= HID0_CBE_THERM_INT_EN | HID0_CBE_THERM_WAKEUP |
278 HID0_CBE_SYSERR_INT_EN | HID0_CBE_SYSERR_WAKEUP;
279 mtspr(SPRN_HID0, hid0);
280 mb();
281
282 /*
283 * Install machine check handler. Leave setting of precise mode to
284 * what the firmware did for now
285 */
286 ppc_md.machine_check_exception = cbe_machine_check_handler;
287 mb();
288
289 /*
290 * For now, we assume that IOC_FIR is already set to forward some
291 * error conditions to the System Error handler. If that is not true
292 * then it will have to be fixed up here.
293 */
294}