ras.c 12.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2
/*
 * Copyright (C) 2001 Dave Engebretsen IBM Corporation
3
 *
L
Linus Torvalds 已提交
4 5 6 7
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
8
 *
L
Linus Torvalds 已提交
9 10 11 12
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
13
 *
L
Linus Torvalds 已提交
14 15 16 17 18 19 20 21
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */

#include <linux/sched.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
22
#include <linux/of.h>
23 24
#include <linux/fs.h>
#include <linux/reboot.h>
L
Linus Torvalds 已提交
25 26 27

#include <asm/machdep.h>
#include <asm/rtas.h>
28
#include <asm/firmware.h>
L
Linus Torvalds 已提交
29

30
#include "pseries.h"
31

L
Linus Torvalds 已提交
32 33 34
static unsigned char ras_log_buf[RTAS_ERROR_LOG_MAX];
static DEFINE_SPINLOCK(ras_log_buf_lock);

35 36
static char global_mce_data_buf[RTAS_ERROR_LOG_MAX];
static DEFINE_PER_CPU(__u64, mce_data_buf);
L
Linus Torvalds 已提交
37 38 39 40 41 42

static int ras_check_exception_token;

#define EPOW_SENSOR_TOKEN	9
#define EPOW_SENSOR_INDEX	0

43 44 45
/* EPOW events counter variable */
static int num_epow_events;

46
static irqreturn_t ras_hotplug_interrupt(int irq, void *dev_id);
47 48
static irqreturn_t ras_epow_interrupt(int irq, void *dev_id);
static irqreturn_t ras_error_interrupt(int irq, void *dev_id);
L
Linus Torvalds 已提交
49

50

L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63
/*
 * Initialize handlers for the set of interrupts caused by hardware errors
 * and power system events.
 */
static int __init init_ras_IRQ(void)
{
	struct device_node *np;

	ras_check_exception_token = rtas_token("check-exception");

	/* Internal Errors */
	np = of_find_node_by_path("/event-sources/internal-errors");
	if (np != NULL) {
64 65
		request_event_sources_irqs(np, ras_error_interrupt,
					   "RAS_ERROR");
L
Linus Torvalds 已提交
66 67 68
		of_node_put(np);
	}

69 70 71 72 73 74 75 76
	/* Hotplug Events */
	np = of_find_node_by_path("/event-sources/hot-plug-events");
	if (np != NULL) {
		request_event_sources_irqs(np, ras_hotplug_interrupt,
					   "RAS_HOTPLUG");
		of_node_put(np);
	}

L
Linus Torvalds 已提交
77 78 79
	/* EPOW Events */
	np = of_find_node_by_path("/event-sources/epow-events");
	if (np != NULL) {
80
		request_event_sources_irqs(np, ras_epow_interrupt, "RAS_EPOW");
L
Linus Torvalds 已提交
81 82 83
		of_node_put(np);
	}

84
	return 0;
L
Linus Torvalds 已提交
85
}
86
machine_subsys_initcall(pseries, init_ras_IRQ);
L
Linus Torvalds 已提交
87

88 89 90 91 92 93 94 95 96
#define EPOW_SHUTDOWN_NORMAL				1
#define EPOW_SHUTDOWN_ON_UPS				2
#define EPOW_SHUTDOWN_LOSS_OF_CRITICAL_FUNCTIONS	3
#define EPOW_SHUTDOWN_AMBIENT_TEMPERATURE_TOO_HIGH	4

static void handle_system_shutdown(char event_modifier)
{
	switch (event_modifier) {
	case EPOW_SHUTDOWN_NORMAL:
97
		pr_emerg("Power off requested\n");
98
		orderly_poweroff(true);
99 100 101
		break;

	case EPOW_SHUTDOWN_ON_UPS:
102 103
		pr_emerg("Loss of system power detected. System is running on"
			 " UPS/battery. Check RTAS error log for details\n");
104
		orderly_poweroff(true);
105 106 107
		break;

	case EPOW_SHUTDOWN_LOSS_OF_CRITICAL_FUNCTIONS:
108 109
		pr_emerg("Loss of system critical functions detected. Check"
			 " RTAS error log for details\n");
110
		orderly_poweroff(true);
111 112 113
		break;

	case EPOW_SHUTDOWN_AMBIENT_TEMPERATURE_TOO_HIGH:
114 115
		pr_emerg("High ambient temperature detected. Check RTAS"
			 " error log for details\n");
116
		orderly_poweroff(true);
117 118 119
		break;

	default:
120
		pr_err("Unknown power/cooling shutdown event (modifier = %d)\n",
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
			event_modifier);
	}
}

struct epow_errorlog {
	unsigned char sensor_value;
	unsigned char event_modifier;
	unsigned char extended_modifier;
	unsigned char reserved;
	unsigned char platform_reason;
};

#define EPOW_RESET			0
#define EPOW_WARN_COOLING		1
#define EPOW_WARN_POWER			2
#define EPOW_SYSTEM_SHUTDOWN		3
#define EPOW_SYSTEM_HALT		4
#define EPOW_MAIN_ENCLOSURE		5
#define EPOW_POWER_OFF			7

141
static void rtas_parse_epow_errlog(struct rtas_error_log *log)
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157
{
	struct pseries_errorlog *pseries_log;
	struct epow_errorlog *epow_log;
	char action_code;
	char modifier;

	pseries_log = get_pseries_errorlog(log, PSERIES_ELOG_SECT_ID_EPOW);
	if (pseries_log == NULL)
		return;

	epow_log = (struct epow_errorlog *)pseries_log->data;
	action_code = epow_log->sensor_value & 0xF;	/* bottom 4 bits */
	modifier = epow_log->event_modifier & 0xF;	/* bottom 4 bits */

	switch (action_code) {
	case EPOW_RESET:
158 159 160 161
		if (num_epow_events) {
			pr_info("Non critical power/cooling issue cleared\n");
			num_epow_events--;
		}
162 163 164
		break;

	case EPOW_WARN_COOLING:
165 166
		pr_info("Non-critical cooling issue detected. Check RTAS error"
			" log for details\n");
167 168 169
		break;

	case EPOW_WARN_POWER:
170 171
		pr_info("Non-critical power issue detected. Check RTAS error"
			" log for details\n");
172 173 174 175 176 177 178
		break;

	case EPOW_SYSTEM_SHUTDOWN:
		handle_system_shutdown(epow_log->event_modifier);
		break;

	case EPOW_SYSTEM_HALT:
179 180
		pr_emerg("Critical power/cooling issue detected. Check RTAS"
			 " error log for details. Powering off.\n");
181
		orderly_poweroff(true);
182 183 184 185
		break;

	case EPOW_MAIN_ENCLOSURE:
	case EPOW_POWER_OFF:
186 187
		pr_emerg("System about to lose power. Check RTAS error log "
			 " for details. Powering off immediately.\n");
188 189 190 191 192
		emergency_sync();
		kernel_power_off();
		break;

	default:
193
		pr_err("Unknown power/cooling event (action code  = %d)\n",
194 195
			action_code);
	}
196 197 198 199

	/* Increment epow events counter variable */
	if (action_code != EPOW_RESET)
		num_epow_events++;
200 201
}

202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
static irqreturn_t ras_hotplug_interrupt(int irq, void *dev_id)
{
	struct pseries_errorlog *pseries_log;
	struct pseries_hp_errorlog *hp_elog;

	spin_lock(&ras_log_buf_lock);

	rtas_call(ras_check_exception_token, 6, 1, NULL,
		  RTAS_VECTOR_EXTERNAL_INTERRUPT, virq_to_hw(irq),
		  RTAS_HOTPLUG_EVENTS, 0, __pa(&ras_log_buf),
		  rtas_get_error_log_max());

	pseries_log = get_pseries_errorlog((struct rtas_error_log *)ras_log_buf,
					   PSERIES_ELOG_SECT_ID_HOTPLUG);
	hp_elog = (struct pseries_hp_errorlog *)pseries_log->data;

	/*
	 * Since PCI hotplug is not currently supported on pseries, put PCI
	 * hotplug events on the ras_log_buf to be handled by rtas_errd.
	 */
	if (hp_elog->resource == PSERIES_HP_ELOG_RESOURCE_MEM ||
	    hp_elog->resource == PSERIES_HP_ELOG_RESOURCE_CPU)
		queue_hotplug_event(hp_elog, NULL, NULL);
	else
		log_error(ras_log_buf, ERR_TYPE_RTAS_LOG, 0);

	spin_unlock(&ras_log_buf_lock);
	return IRQ_HANDLED;
}

232
/* Handle environmental and power warning (EPOW) interrupts. */
233
static irqreturn_t ras_epow_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
234
{
235 236
	int status;
	int state;
L
Linus Torvalds 已提交
237 238
	int critical;

239 240
	status = rtas_get_sensor_fast(EPOW_SENSOR_TOKEN, EPOW_SENSOR_INDEX,
				      &state);
L
Linus Torvalds 已提交
241 242

	if (state > 3)
243
		critical = 1;		/* Time Critical */
L
Linus Torvalds 已提交
244 245 246 247 248 249
	else
		critical = 0;

	spin_lock(&ras_log_buf_lock);

	status = rtas_call(ras_check_exception_token, 6, 1, NULL,
250
			   RTAS_VECTOR_EXTERNAL_INTERRUPT,
251
			   virq_to_hw(irq),
252
			   RTAS_EPOW_WARNING,
L
Linus Torvalds 已提交
253 254 255 256 257
			   critical, __pa(&ras_log_buf),
				rtas_get_error_log_max());

	log_error(ras_log_buf, ERR_TYPE_RTAS_LOG, 0);

258 259
	rtas_parse_epow_errlog((struct rtas_error_log *)ras_log_buf);

L
Linus Torvalds 已提交
260 261 262 263 264 265 266 267 268 269 270 271
	spin_unlock(&ras_log_buf_lock);
	return IRQ_HANDLED;
}

/*
 * Handle hardware error interrupts.
 *
 * RTAS check-exception is called to collect data on the exception.  If
 * the error is deemed recoverable, we log a warning and return.
 * For nonrecoverable errors, an error is logged and we stop all processing
 * as quickly as possible in order to prevent propagation of the failure.
 */
272
static irqreturn_t ras_error_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
273 274
{
	struct rtas_error_log *rtas_elog;
275
	int status;
L
Linus Torvalds 已提交
276 277 278 279 280
	int fatal;

	spin_lock(&ras_log_buf_lock);

	status = rtas_call(ras_check_exception_token, 6, 1, NULL,
281
			   RTAS_VECTOR_EXTERNAL_INTERRUPT,
282
			   virq_to_hw(irq),
283
			   RTAS_INTERNAL_ERROR, 1 /* Time Critical */,
L
Linus Torvalds 已提交
284 285 286 287 288
			   __pa(&ras_log_buf),
				rtas_get_error_log_max());

	rtas_elog = (struct rtas_error_log *)ras_log_buf;

289 290
	if (status == 0 &&
	    rtas_error_severity(rtas_elog) >= RTAS_SEVERITY_ERROR_SYNC)
L
Linus Torvalds 已提交
291 292 293 294 295 296 297 298
		fatal = 1;
	else
		fatal = 0;

	/* format and print the extended information */
	log_error(ras_log_buf, ERR_TYPE_RTAS_LOG, fatal);

	if (fatal) {
299 300
		pr_emerg("Fatal hardware error detected. Check RTAS error"
			 " log for details. Powering off immediately\n");
301 302
		emergency_sync();
		kernel_power_off();
L
Linus Torvalds 已提交
303
	} else {
304
		pr_err("Recoverable hardware error detected\n");
L
Linus Torvalds 已提交
305 306 307 308 309 310
	}

	spin_unlock(&ras_log_buf_lock);
	return IRQ_HANDLED;
}

311 312 313 314 315 316 317 318 319 320
/*
 * Some versions of FWNMI place the buffer inside the 4kB page starting at
 * 0x7000. Other versions place it inside the rtas buffer. We check both.
 */
#define VALID_FWNMI_BUFFER(A) \
	((((A) >= 0x7000) && ((A) < 0x7ff0)) || \
	(((A) >= rtas.base) && ((A) < (rtas.base + rtas.size - 16))))

/*
 * Get the error information for errors coming through the
L
Linus Torvalds 已提交
321 322 323 324
 * FWNMI vectors.  The pt_regs' r3 will be updated to reflect
 * the actual r3 if possible, and a ptr to the error log entry
 * will be returned if found.
 *
325 326 327 328
 * If the RTAS error is not of the extended type, then we put it in a per
 * cpu 64bit buffer. If it is the extended type we use global_mce_data_buf.
 *
 * The global_mce_data_buf does not have any locks or protection around it,
L
Linus Torvalds 已提交
329 330 331 332 333 334 335 336 337
 * if a second machine check comes in, or a system reset is done
 * before we have logged the error, then we will get corruption in the
 * error log.  This is preferable over holding off on calling
 * ibm,nmi-interlock which would result in us checkstopping if a
 * second machine check did come in.
 */
static struct rtas_error_log *fwnmi_get_errinfo(struct pt_regs *regs)
{
	unsigned long *savep;
338
	struct rtas_error_log *h, *errhdr = NULL;
L
Linus Torvalds 已提交
339

340 341 342
	/* Mask top two bits */
	regs->gpr[3] &= ~(0x3UL << 62);

343
	if (!VALID_FWNMI_BUFFER(regs->gpr[3])) {
344
		printk(KERN_ERR "FWNMI: corrupt r3 0x%016lx\n", regs->gpr[3]);
345 346 347 348 349 350 351 352
		return NULL;
	}

	savep = __va(regs->gpr[3]);
	regs->gpr[3] = savep[0];	/* restore original r3 */

	/* If it isn't an extended log we can use the per cpu 64bit buffer */
	h = (struct rtas_error_log *)&savep[1];
353
	if (!rtas_error_extended(h)) {
354 355
		memcpy(this_cpu_ptr(&mce_data_buf), h, sizeof(__u64));
		errhdr = (struct rtas_error_log *)this_cpu_ptr(&mce_data_buf);
L
Linus Torvalds 已提交
356
	} else {
357
		int len, error_log_length;
358

359 360
		error_log_length = 8 + rtas_error_extended_log_length(h);
		len = max_t(int, error_log_length, RTAS_ERROR_LOG_MAX);
361 362 363
		memset(global_mce_data_buf, 0, RTAS_ERROR_LOG_MAX);
		memcpy(global_mce_data_buf, h, len);
		errhdr = (struct rtas_error_log *)global_mce_data_buf;
L
Linus Torvalds 已提交
364
	}
365

L
Linus Torvalds 已提交
366 367 368 369 370 371 372 373 374 375 376
	return errhdr;
}

/* Call this when done with the data returned by FWNMI_get_errinfo.
 * It will release the saved data area for other CPUs in the
 * partition to receive FWNMI errors.
 */
static void fwnmi_release_errinfo(void)
{
	int ret = rtas_call(rtas_token("ibm,nmi-interlock"), 0, 1, NULL);
	if (ret != 0)
377
		printk(KERN_ERR "FWNMI: nmi-interlock failed: %d\n", ret);
L
Linus Torvalds 已提交
378 379
}

380
int pSeries_system_reset_exception(struct pt_regs *regs)
L
Linus Torvalds 已提交
381 382 383 384 385 386 387 388
{
	if (fwnmi_active) {
		struct rtas_error_log *errhdr = fwnmi_get_errinfo(regs);
		if (errhdr) {
			/* XXX Should look at FWNMI information */
		}
		fwnmi_release_errinfo();
	}
389
	return 0; /* need to perform reset */
L
Linus Torvalds 已提交
390 391 392 393 394 395 396 397 398 399 400
}

/*
 * See if we can recover from a machine check exception.
 * This is only called on power4 (or above) and only via
 * the Firmware Non-Maskable Interrupts (fwnmi) handler
 * which provides the error analysis for us.
 *
 * Return 1 if corrected (or delivered a signal).
 * Return 0 if there is nothing we can do.
 */
401
static int recover_mce(struct pt_regs *regs, struct rtas_error_log *err)
L
Linus Torvalds 已提交
402
{
403
	int recovered = 0;
404
	int disposition = rtas_error_disposition(err);
L
Linus Torvalds 已提交
405

406 407 408 409
	if (!(regs->msr & MSR_RI)) {
		/* If MSR_RI isn't set, we cannot recover */
		recovered = 0;

410
	} else if (disposition == RTAS_DISP_FULLY_RECOVERED) {
L
Linus Torvalds 已提交
411
		/* Platform corrected itself */
412 413
		recovered = 1;

414
	} else if (disposition == RTAS_DISP_LIMITED_RECOVERY) {
415 416 417 418 419 420
		/* Platform corrected itself but could be degraded */
		printk(KERN_ERR "MCE: limited recovery, system may "
		       "be degraded\n");
		recovered = 1;

	} else if (user_mode(regs) && !is_global_init(current) &&
421
		   rtas_error_severity(err) == RTAS_SEVERITY_ERROR_SYNC) {
422 423 424 425 426 427 428 429 430 431 432 433

		/*
		 * If we received a synchronous error when in userspace
		 * kill the task. Firmware may report details of the fail
		 * asynchronously, so we can't rely on the target and type
		 * fields being valid here.
		 */
		printk(KERN_ERR "MCE: uncorrectable error, killing task "
		       "%s:%d\n", current->comm, current->pid);

		_exception(SIGBUS, regs, BUS_MCEERR_AR, regs->nip);
		recovered = 1;
L
Linus Torvalds 已提交
434 435
	}

436
	log_error((char *)err, ERR_TYPE_RTAS_LOG, 0);
L
Linus Torvalds 已提交
437

438
	return recovered;
L
Linus Torvalds 已提交
439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
}

/*
 * Handle a machine check.
 *
 * Note that on Power 4 and beyond Firmware Non-Maskable Interrupts (fwnmi)
 * should be present.  If so the handler which called us tells us if the
 * error was recovered (never true if RI=0).
 *
 * On hardware prior to Power 4 these exceptions were asynchronous which
 * means we can't tell exactly where it occurred and so we can't recover.
 */
int pSeries_machine_check_exception(struct pt_regs *regs)
{
	struct rtas_error_log *errp;

	if (fwnmi_active) {
		errp = fwnmi_get_errinfo(regs);
		fwnmi_release_errinfo();
		if (errp && recover_mce(regs, errp))
			return 1;
	}

	return 0;
}