hest.c 7.0 KB
Newer Older
H
Huang Ying 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * APEI Hardware Error Souce Table support
 *
 * HEST describes error sources in detail; communicates operational
 * parameters (i.e. severity levels, masking bits, and threshold
 * values) to Linux as necessary. It also allows the BIOS to report
 * non-standard error sources to Linux (for example, chipset-specific
 * error registers).
 *
 * For more information about HEST, please refer to ACPI Specification
 * version 4.0, section 17.3.2.
 *
 * Copyright 2009 Intel Corp.
 *   Author: Huang Ying <ying.huang@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation;
 *
 * 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.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/acpi.h>
#include <linux/kdebug.h>
#include <linux/highmem.h>
#include <linux/io.h>
33
#include <linux/platform_device.h>
H
Huang Ying 已提交
34 35 36 37 38 39
#include <acpi/apei.h>

#include "apei-internal.h"

#define HEST_PFX "HEST: "

40
int hest_disable;
H
Huang Ying 已提交
41 42 43 44
EXPORT_SYMBOL_GPL(hest_disable);

/* HEST table parsing */

J
Jan Beulich 已提交
45
static struct acpi_table_hest *__read_mostly hest_tab;
H
Huang Ying 已提交
46

J
Jan Beulich 已提交
47
static const int hest_esrc_len_tab[ACPI_HEST_TYPE_RESERVED] = {
H
Huang Ying 已提交
48 49 50 51 52 53 54
	[ACPI_HEST_TYPE_IA32_CHECK] = -1,	/* need further calculation */
	[ACPI_HEST_TYPE_IA32_CORRECTED_CHECK] = -1,
	[ACPI_HEST_TYPE_IA32_NMI] = sizeof(struct acpi_hest_ia_nmi),
	[ACPI_HEST_TYPE_AER_ROOT_PORT] = sizeof(struct acpi_hest_aer_root),
	[ACPI_HEST_TYPE_AER_ENDPOINT] = sizeof(struct acpi_hest_aer),
	[ACPI_HEST_TYPE_AER_BRIDGE] = sizeof(struct acpi_hest_aer_bridge),
	[ACPI_HEST_TYPE_GENERIC_ERROR] = sizeof(struct acpi_hest_generic),
55
	[ACPI_HEST_TYPE_GENERIC_ERROR_V2] = sizeof(struct acpi_hest_generic_v2),
56
	[ACPI_HEST_TYPE_IA32_DEFERRED_CHECK] = -1,
H
Huang Ying 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
};

static int hest_esrc_len(struct acpi_hest_header *hest_hdr)
{
	u16 hest_type = hest_hdr->type;
	int len;

	if (hest_type >= ACPI_HEST_TYPE_RESERVED)
		return 0;

	len = hest_esrc_len_tab[hest_type];

	if (hest_type == ACPI_HEST_TYPE_IA32_CORRECTED_CHECK) {
		struct acpi_hest_ia_corrected *cmc;
		cmc = (struct acpi_hest_ia_corrected *)hest_hdr;
		len = sizeof(*cmc) + cmc->num_hardware_banks *
			sizeof(struct acpi_hest_ia_error_bank);
	} else if (hest_type == ACPI_HEST_TYPE_IA32_CHECK) {
		struct acpi_hest_ia_machine_check *mc;
		mc = (struct acpi_hest_ia_machine_check *)hest_hdr;
		len = sizeof(*mc) + mc->num_hardware_banks *
			sizeof(struct acpi_hest_ia_error_bank);
79 80 81 82 83
	} else if (hest_type == ACPI_HEST_TYPE_IA32_DEFERRED_CHECK) {
		struct acpi_hest_ia_deferred_check *mc;
		mc = (struct acpi_hest_ia_deferred_check *)hest_hdr;
		len = sizeof(*mc) + mc->num_hardware_banks *
			sizeof(struct acpi_hest_ia_error_bank);
H
Huang Ying 已提交
84 85 86 87 88 89 90 91 92 93 94
	}
	BUG_ON(len == -1);

	return len;
};

int apei_hest_parse(apei_hest_func_t func, void *data)
{
	struct acpi_hest_header *hest_hdr;
	int i, rc, len;

95
	if (hest_disable || !hest_tab)
H
Huang Ying 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
		return -EINVAL;

	hest_hdr = (struct acpi_hest_header *)(hest_tab + 1);
	for (i = 0; i < hest_tab->error_source_count; i++) {
		len = hest_esrc_len(hest_hdr);
		if (!len) {
			pr_warning(FW_WARN HEST_PFX
				   "Unknown or unused hardware error source "
				   "type: %d for hardware error source: %d.\n",
				   hest_hdr->type, hest_hdr->source_id);
			return -EINVAL;
		}
		if ((void *)hest_hdr + len >
		    (void *)hest_tab + hest_tab->header.length) {
			pr_warning(FW_BUG HEST_PFX
		"Table contents overflow for hardware error source: %d.\n",
				hest_hdr->source_id);
			return -EINVAL;
		}

		rc = func(hest_hdr, data);
		if (rc)
			return rc;

		hest_hdr = (void *)hest_hdr + len;
	}

	return 0;
}
EXPORT_SYMBOL_GPL(apei_hest_parse);

127 128 129 130 131 132
/*
 * Check if firmware advertises firmware first mode. We need FF bit to be set
 * along with a set of MC banks which work in FF mode.
 */
static int __init hest_parse_cmc(struct acpi_hest_header *hest_hdr, void *data)
{
133 134 135 136 137 138 139
	if (hest_hdr->type != ACPI_HEST_TYPE_IA32_CORRECTED_CHECK)
		return 0;

	if (!acpi_disable_cmcff)
		return !arch_apei_enable_cmcff(hest_hdr, data);

	return 0;
140 141
}

142 143 144 145 146
struct ghes_arr {
	struct platform_device **ghes_devs;
	unsigned int count;
};

J
Jan Beulich 已提交
147
static int __init hest_parse_ghes_count(struct acpi_hest_header *hest_hdr, void *data)
148 149 150
{
	int *count = data;

151 152
	if (hest_hdr->type == ACPI_HEST_TYPE_GENERIC_ERROR ||
	    hest_hdr->type == ACPI_HEST_TYPE_GENERIC_ERROR_V2)
153 154 155 156
		(*count)++;
	return 0;
}

J
Jan Beulich 已提交
157
static int __init hest_parse_ghes(struct acpi_hest_header *hest_hdr, void *data)
158 159 160
{
	struct platform_device *ghes_dev;
	struct ghes_arr *ghes_arr = data;
161
	int rc, i;
162

163 164
	if (hest_hdr->type != ACPI_HEST_TYPE_GENERIC_ERROR &&
	    hest_hdr->type != ACPI_HEST_TYPE_GENERIC_ERROR_V2)
165
		return 0;
166 167

	if (!((struct acpi_hest_generic *)hest_hdr)->enabled)
168
		return 0;
169 170 171 172 173 174 175 176 177 178
	for (i = 0; i < ghes_arr->count; i++) {
		struct acpi_hest_header *hdr;
		ghes_dev = ghes_arr->ghes_devs[i];
		hdr = *(struct acpi_hest_header **)ghes_dev->dev.platform_data;
		if (hdr->source_id == hest_hdr->source_id) {
			pr_warning(FW_WARN HEST_PFX "Duplicated hardware error source ID: %d.\n",
				   hdr->source_id);
			return -EIO;
		}
	}
179 180 181
	ghes_dev = platform_device_alloc("GHES", hest_hdr->source_id);
	if (!ghes_dev)
		return -ENOMEM;
182 183 184 185 186

	rc = platform_device_add_data(ghes_dev, &hest_hdr, sizeof(void *));
	if (rc)
		goto err;

187 188 189 190 191 192 193 194 195 196 197
	rc = platform_device_add(ghes_dev);
	if (rc)
		goto err;
	ghes_arr->ghes_devs[ghes_arr->count++] = ghes_dev;

	return 0;
err:
	platform_device_put(ghes_dev);
	return rc;
}

J
Jan Beulich 已提交
198
static int __init hest_ghes_dev_register(unsigned int ghes_count)
199 200 201 202 203
{
	int rc, i;
	struct ghes_arr ghes_arr;

	ghes_arr.count = 0;
204 205
	ghes_arr.ghes_devs = kmalloc_array(ghes_count, sizeof(void *),
					   GFP_KERNEL);
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
	if (!ghes_arr.ghes_devs)
		return -ENOMEM;

	rc = apei_hest_parse(hest_parse_ghes, &ghes_arr);
	if (rc)
		goto err;
out:
	kfree(ghes_arr.ghes_devs);
	return rc;
err:
	for (i = 0; i < ghes_arr.count; i++)
		platform_device_unregister(ghes_arr.ghes_devs[i]);
	goto out;
}

H
Huang Ying 已提交
221 222
static int __init setup_hest_disable(char *str)
{
223
	hest_disable = HEST_DISABLED;
H
Huang Ying 已提交
224 225 226 227 228
	return 0;
}

__setup("hest_disable", setup_hest_disable);

229
void __init acpi_hest_init(void)
H
Huang Ying 已提交
230 231 232
{
	acpi_status status;
	int rc = -ENODEV;
233
	unsigned int ghes_count = 0;
H
Huang Ying 已提交
234 235

	if (hest_disable) {
236 237
		pr_info(HEST_PFX "Table parsing disabled.\n");
		return;
H
Huang Ying 已提交
238 239 240 241
	}

	status = acpi_get_table(ACPI_SIG_HEST, 0,
				(struct acpi_table_header **)&hest_tab);
242 243 244 245
	if (status == AE_NOT_FOUND) {
		hest_disable = HEST_NOT_FOUND;
		return;
	} else if (ACPI_FAILURE(status)) {
H
Huang Ying 已提交
246 247 248 249 250 251
		const char *msg = acpi_format_exception(status);
		pr_err(HEST_PFX "Failed to get table, %s\n", msg);
		rc = -EINVAL;
		goto err;
	}

252 253 254
	rc = apei_hest_parse(hest_parse_cmc, NULL);
	if (rc)
		goto err;
255

256 257 258 259 260 261 262
	if (!ghes_disable) {
		rc = apei_hest_parse(hest_parse_ghes_count, &ghes_count);
		if (rc)
			goto err;
		rc = hest_ghes_dev_register(ghes_count);
		if (rc)
			goto err;
263
	}
H
Huang Ying 已提交
264

265 266
	pr_info(HEST_PFX "Table parsing has been initialized.\n");
	return;
H
Huang Ying 已提交
267
err:
268
	hest_disable = HEST_DISABLED;
H
Huang Ying 已提交
269
}