tables.c 15.6 KB
Newer Older
L
Linus Torvalds 已提交
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 33 34 35 36 37 38
/*
 *  acpi_tables.c - ACPI Boot-Time Table Parsing
 *
 *  Copyright (C) 2001 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 *  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.
 *
 *  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.
 *
 *  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/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/smp.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/irq.h>
#include <linux/errno.h>
#include <linux/acpi.h>
#include <linux/bootmem.h>

#define PREFIX			"ACPI: "

39
#define ACPI_MAX_TABLES		128
L
Linus Torvalds 已提交
40 41

static char *acpi_table_signatures[ACPI_TABLE_COUNT] = {
L
Len Brown 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	[ACPI_TABLE_UNKNOWN] = "????",
	[ACPI_APIC] = "APIC",
	[ACPI_BOOT] = "BOOT",
	[ACPI_DBGP] = "DBGP",
	[ACPI_DSDT] = "DSDT",
	[ACPI_ECDT] = "ECDT",
	[ACPI_ETDT] = "ETDT",
	[ACPI_FADT] = "FACP",
	[ACPI_FACS] = "FACS",
	[ACPI_OEMX] = "OEM",
	[ACPI_PSDT] = "PSDT",
	[ACPI_SBST] = "SBST",
	[ACPI_SLIT] = "SLIT",
	[ACPI_SPCR] = "SPCR",
	[ACPI_SRAT] = "SRAT",
	[ACPI_SSDT] = "SSDT",
	[ACPI_SPMI] = "SPMI",
	[ACPI_HPET] = "HPET",
	[ACPI_MCFG] = "MCFG",
L
Linus Torvalds 已提交
61 62 63 64 65 66 67
};

static char *mps_inti_flags_polarity[] = { "dfl", "high", "res", "low" };
static char *mps_inti_flags_trigger[] = { "dfl", "edge", "res", "level" };

/* System Description Table (RSDT/XSDT) */
struct acpi_table_sdt {
L
Len Brown 已提交
68 69 70
	unsigned long pa;
	enum acpi_table_id id;
	unsigned long size;
L
Linus Torvalds 已提交
71 72
} __attribute__ ((packed));

L
Len Brown 已提交
73 74
static unsigned long sdt_pa;	/* Physical Address */
static unsigned long sdt_count;	/* Table count */
L
Linus Torvalds 已提交
75

76
static struct acpi_table_sdt sdt_entry[ACPI_MAX_TABLES] __initdata;
77
static struct acpi_table_desc initial_tables[ACPI_MAX_TABLES] __initdata;
L
Linus Torvalds 已提交
78

L
Len Brown 已提交
79
void acpi_table_print(struct acpi_table_header *header, unsigned long phys_addr)
L
Linus Torvalds 已提交
80
{
L
Len Brown 已提交
81
	char *name = NULL;
L
Linus Torvalds 已提交
82 83 84 85 86 87

	if (!header)
		return;

	/* Some table signatures aren't good table names */

L
Len Brown 已提交
88 89 90
	if (!strncmp((char *)&header->signature,
		     acpi_table_signatures[ACPI_APIC],
		     sizeof(header->signature))) {
L
Linus Torvalds 已提交
91
		name = "MADT";
L
Len Brown 已提交
92 93 94
	} else if (!strncmp((char *)&header->signature,
			    acpi_table_signatures[ACPI_FADT],
			    sizeof(header->signature))) {
L
Linus Torvalds 已提交
95
		name = "FADT";
L
Len Brown 已提交
96
	} else
L
Linus Torvalds 已提交
97 98
		name = header->signature;

L
Len Brown 已提交
99 100 101 102 103
	printk(KERN_DEBUG PREFIX
	       "%.4s (v%3.3d %6.6s %8.8s 0x%08x %.4s 0x%08x) @ 0x%p\n", name,
	       header->revision, header->oem_id, header->oem_table_id,
	       header->oem_revision, header->asl_compiler_id,
	       header->asl_compiler_revision, (void *)phys_addr);
L
Linus Torvalds 已提交
104 105
}

L
Len Brown 已提交
106
void acpi_table_print_madt_entry(acpi_table_entry_header * header)
L
Linus Torvalds 已提交
107 108 109 110 111 112 113
{
	if (!header)
		return;

	switch (header->type) {

	case ACPI_MADT_LAPIC:
L
Len Brown 已提交
114 115 116 117 118 119 120 121
		{
			struct acpi_table_lapic *p =
			    (struct acpi_table_lapic *)header;
			printk(KERN_INFO PREFIX
			       "LAPIC (acpi_id[0x%02x] lapic_id[0x%02x] %s)\n",
			       p->acpi_id, p->id,
			       p->flags.enabled ? "enabled" : "disabled");
		}
L
Linus Torvalds 已提交
122 123 124
		break;

	case ACPI_MADT_IOAPIC:
L
Len Brown 已提交
125 126 127 128 129 130 131
		{
			struct acpi_table_ioapic *p =
			    (struct acpi_table_ioapic *)header;
			printk(KERN_INFO PREFIX
			       "IOAPIC (id[0x%02x] address[0x%08x] gsi_base[%d])\n",
			       p->id, p->address, p->global_irq_base);
		}
L
Linus Torvalds 已提交
132 133 134
		break;

	case ACPI_MADT_INT_SRC_OVR:
L
Len Brown 已提交
135 136 137 138 139 140 141 142 143 144 145 146
		{
			struct acpi_table_int_src_ovr *p =
			    (struct acpi_table_int_src_ovr *)header;
			printk(KERN_INFO PREFIX
			       "INT_SRC_OVR (bus %d bus_irq %d global_irq %d %s %s)\n",
			       p->bus, p->bus_irq, p->global_irq,
			       mps_inti_flags_polarity[p->flags.polarity],
			       mps_inti_flags_trigger[p->flags.trigger]);
			if (p->flags.reserved)
				printk(KERN_INFO PREFIX
				       "INT_SRC_OVR unexpected reserved flags: 0x%x\n",
				       p->flags.reserved);
L
Linus Torvalds 已提交
147

L
Len Brown 已提交
148
		}
L
Linus Torvalds 已提交
149 150 151
		break;

	case ACPI_MADT_NMI_SRC:
L
Len Brown 已提交
152 153 154 155 156 157 158 159 160
		{
			struct acpi_table_nmi_src *p =
			    (struct acpi_table_nmi_src *)header;
			printk(KERN_INFO PREFIX
			       "NMI_SRC (%s %s global_irq %d)\n",
			       mps_inti_flags_polarity[p->flags.polarity],
			       mps_inti_flags_trigger[p->flags.trigger],
			       p->global_irq);
		}
L
Linus Torvalds 已提交
161 162 163
		break;

	case ACPI_MADT_LAPIC_NMI:
L
Len Brown 已提交
164 165 166 167 168 169 170 171 172 173
		{
			struct acpi_table_lapic_nmi *p =
			    (struct acpi_table_lapic_nmi *)header;
			printk(KERN_INFO PREFIX
			       "LAPIC_NMI (acpi_id[0x%02x] %s %s lint[0x%x])\n",
			       p->acpi_id,
			       mps_inti_flags_polarity[p->flags.polarity],
			       mps_inti_flags_trigger[p->flags.trigger],
			       p->lint);
		}
L
Linus Torvalds 已提交
174 175 176
		break;

	case ACPI_MADT_LAPIC_ADDR_OVR:
L
Len Brown 已提交
177 178 179 180 181 182 183
		{
			struct acpi_table_lapic_addr_ovr *p =
			    (struct acpi_table_lapic_addr_ovr *)header;
			printk(KERN_INFO PREFIX
			       "LAPIC_ADDR_OVR (address[%p])\n",
			       (void *)(unsigned long)p->address);
		}
L
Linus Torvalds 已提交
184 185 186
		break;

	case ACPI_MADT_IOSAPIC:
L
Len Brown 已提交
187 188 189 190 191 192 193 194
		{
			struct acpi_table_iosapic *p =
			    (struct acpi_table_iosapic *)header;
			printk(KERN_INFO PREFIX
			       "IOSAPIC (id[0x%x] address[%p] gsi_base[%d])\n",
			       p->id, (void *)(unsigned long)p->address,
			       p->global_irq_base);
		}
L
Linus Torvalds 已提交
195 196 197
		break;

	case ACPI_MADT_LSAPIC:
L
Len Brown 已提交
198 199 200 201 202 203 204 205
		{
			struct acpi_table_lsapic *p =
			    (struct acpi_table_lsapic *)header;
			printk(KERN_INFO PREFIX
			       "LSAPIC (acpi_id[0x%02x] lsapic_id[0x%02x] lsapic_eid[0x%02x] %s)\n",
			       p->acpi_id, p->id, p->eid,
			       p->flags.enabled ? "enabled" : "disabled");
		}
L
Linus Torvalds 已提交
206 207 208
		break;

	case ACPI_MADT_PLAT_INT_SRC:
L
Len Brown 已提交
209 210 211 212 213 214 215 216 217 218
		{
			struct acpi_table_plat_int_src *p =
			    (struct acpi_table_plat_int_src *)header;
			printk(KERN_INFO PREFIX
			       "PLAT_INT_SRC (%s %s type[0x%x] id[0x%04x] eid[0x%x] iosapic_vector[0x%x] global_irq[0x%x]\n",
			       mps_inti_flags_polarity[p->flags.polarity],
			       mps_inti_flags_trigger[p->flags.trigger],
			       p->type, p->id, p->eid, p->iosapic_vector,
			       p->global_irq);
		}
L
Linus Torvalds 已提交
219 220 221
		break;

	default:
L
Len Brown 已提交
222 223 224
		printk(KERN_WARNING PREFIX
		       "Found unsupported MADT entry (type = 0x%x)\n",
		       header->type);
L
Linus Torvalds 已提交
225 226 227 228 229
		break;
	}
}

static int
L
Len Brown 已提交
230
acpi_table_compute_checksum(void *table_pointer, unsigned long length)
L
Linus Torvalds 已提交
231
{
232
	u8 *p = table_pointer;
L
Len Brown 已提交
233 234
	unsigned long remains = length;
	unsigned long sum = 0;
L
Linus Torvalds 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

	if (!p || !length)
		return -EINVAL;

	while (remains--)
		sum += *p++;

	return (sum & 0xFF);
}

/*
 * acpi_get_table_header_early()
 * for acpi_blacklisted(), acpi_table_get_sdt()
 */
int __init
L
Len Brown 已提交
250 251
acpi_get_table_header_early(enum acpi_table_id id,
			    struct acpi_table_header **header)
L
Linus Torvalds 已提交
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
{
	unsigned int i;
	enum acpi_table_id temp_id;

	/* DSDT is different from the rest */
	if (id == ACPI_DSDT)
		temp_id = ACPI_FADT;
	else
		temp_id = id;

	/* Locate the table. */

	for (i = 0; i < sdt_count; i++) {
		if (sdt_entry[i].id != temp_id)
			continue;
		*header = (void *)
L
Len Brown 已提交
268
		    __acpi_map_table(sdt_entry[i].pa, sdt_entry[i].size);
L
Linus Torvalds 已提交
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
		if (!*header) {
			printk(KERN_WARNING PREFIX "Unable to map %s\n",
			       acpi_table_signatures[temp_id]);
			return -ENODEV;
		}
		break;
	}

	if (!*header) {
		printk(KERN_WARNING PREFIX "%s not present\n",
		       acpi_table_signatures[id]);
		return -ENODEV;
	}

	/* Map the DSDT header via the pointer in the FADT */
	if (id == ACPI_DSDT) {
B
Bob Moore 已提交
285 286
		struct fadt_descriptor *fadt =
		    (struct fadt_descriptor *)*header;
L
Linus Torvalds 已提交
287

288
		if (fadt->header.revision == 3 && fadt->Xdsdt) {
L
Len Brown 已提交
289 290 291
			*header = (void *)__acpi_map_table(fadt->Xdsdt,
							   sizeof(struct
								  acpi_table_header));
292 293
		} else if (fadt->dsdt) {
			*header = (void *)__acpi_map_table(fadt->dsdt,
L
Len Brown 已提交
294 295
							   sizeof(struct
								  acpi_table_header));
L
Linus Torvalds 已提交
296 297 298 299 300 301 302 303 304 305 306 307 308
		} else
			*header = NULL;

		if (!*header) {
			printk(KERN_WARNING PREFIX "Unable to map DSDT\n");
			return -ENODEV;
		}
	}

	return 0;
}

int __init
L
Len Brown 已提交
309 310 311 312 313
acpi_table_parse_madt_family(enum acpi_table_id id,
			     unsigned long madt_size,
			     int entry_id,
			     acpi_madt_entry_handler handler,
			     unsigned int max_entries)
L
Linus Torvalds 已提交
314
{
L
Len Brown 已提交
315 316 317 318 319
	void *madt = NULL;
	acpi_table_entry_header *entry;
	unsigned int count = 0;
	unsigned long madt_end;
	unsigned int i;
L
Linus Torvalds 已提交
320 321 322 323 324 325 326 327 328 329

	if (!handler)
		return -EINVAL;

	/* Locate the MADT (if exists). There should only be one. */

	for (i = 0; i < sdt_count; i++) {
		if (sdt_entry[i].id != id)
			continue;
		madt = (void *)
L
Len Brown 已提交
330
		    __acpi_map_table(sdt_entry[i].pa, sdt_entry[i].size);
L
Linus Torvalds 已提交
331 332 333 334 335 336 337 338 339 340 341 342 343 344
		if (!madt) {
			printk(KERN_WARNING PREFIX "Unable to map %s\n",
			       acpi_table_signatures[id]);
			return -ENODEV;
		}
		break;
	}

	if (!madt) {
		printk(KERN_WARNING PREFIX "%s not present\n",
		       acpi_table_signatures[id]);
		return -ENODEV;
	}

L
Len Brown 已提交
345
	madt_end = (unsigned long)madt + sdt_entry[i].size;
L
Linus Torvalds 已提交
346 347 348 349

	/* Parse all entries looking for a match. */

	entry = (acpi_table_entry_header *)
L
Len Brown 已提交
350
	    ((unsigned long)madt + madt_size);
L
Linus Torvalds 已提交
351

L
Len Brown 已提交
352 353 354 355
	while (((unsigned long)entry) + sizeof(acpi_table_entry_header) <
	       madt_end) {
		if (entry->type == entry_id
		    && (!max_entries || count++ < max_entries))
L
Linus Torvalds 已提交
356 357 358 359
			if (handler(entry, madt_end))
				return -EINVAL;

		entry = (acpi_table_entry_header *)
L
Len Brown 已提交
360
		    ((unsigned long)entry + entry->length);
L
Linus Torvalds 已提交
361 362 363 364 365 366 367 368 369 370 371
	}
	if (max_entries && count > max_entries) {
		printk(KERN_WARNING PREFIX "[%s:0x%02x] ignored %i entries of "
		       "%i found\n", acpi_table_signatures[id], entry_id,
		       count - max_entries, count);
	}

	return count;
}

int __init
L
Len Brown 已提交
372 373
acpi_table_parse_madt(enum acpi_madt_entry_id id,
		      acpi_madt_entry_handler handler, unsigned int max_entries)
L
Linus Torvalds 已提交
374
{
L
Len Brown 已提交
375 376 377
	return acpi_table_parse_madt_family(ACPI_APIC,
					    sizeof(struct acpi_table_madt), id,
					    handler, max_entries);
L
Linus Torvalds 已提交
378 379
}

L
Len Brown 已提交
380
int __init acpi_table_parse(enum acpi_table_id id, acpi_table_handler handler)
L
Linus Torvalds 已提交
381
{
L
Len Brown 已提交
382 383
	int count = 0;
	unsigned int i = 0;
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391 392 393 394 395

	if (!handler)
		return -EINVAL;

	for (i = 0; i < sdt_count; i++) {
		if (sdt_entry[i].id != id)
			continue;
		count++;
		if (count == 1)
			handler(sdt_entry[i].pa, sdt_entry[i].size);

		else
L
Len Brown 已提交
396 397 398
			printk(KERN_WARNING PREFIX
			       "%d duplicate %s table ignored.\n", count,
			       acpi_table_signatures[id]);
L
Linus Torvalds 已提交
399 400 401 402 403
	}

	return count;
}

L
Len Brown 已提交
404
static int __init acpi_table_get_sdt(struct acpi_table_rsdp *rsdp)
L
Linus Torvalds 已提交
405 406
{
	struct acpi_table_header *header = NULL;
L
Len Brown 已提交
407
	unsigned int i, id = 0;
L
Linus Torvalds 已提交
408 409 410 411 412 413

	if (!rsdp)
		return -EINVAL;

	/* First check XSDT (but only on ACPI 2.0-compatible systems) */

414
	if ((rsdp->revision >= 2) && rsdp->xsdt_physical_address) {
L
Len Brown 已提交
415 416

		struct acpi_table_xsdt *mapped_xsdt = NULL;
L
Linus Torvalds 已提交
417

418
		sdt_pa = rsdp->xsdt_physical_address;
L
Linus Torvalds 已提交
419 420 421

		/* map in just the header */
		header = (struct acpi_table_header *)
L
Len Brown 已提交
422
		    __acpi_map_table(sdt_pa, sizeof(struct acpi_table_header));
L
Linus Torvalds 已提交
423 424

		if (!header) {
L
Len Brown 已提交
425 426
			printk(KERN_WARNING PREFIX
			       "Unable to map XSDT header\n");
L
Linus Torvalds 已提交
427 428 429 430 431
			return -ENODEV;
		}

		/* remap in the entire table before processing */
		mapped_xsdt = (struct acpi_table_xsdt *)
L
Len Brown 已提交
432
		    __acpi_map_table(sdt_pa, header->length);
L
Linus Torvalds 已提交
433 434 435 436 437 438 439
		if (!mapped_xsdt) {
			printk(KERN_WARNING PREFIX "Unable to map XSDT\n");
			return -ENODEV;
		}
		header = &mapped_xsdt->header;

		if (strncmp(header->signature, "XSDT", 4)) {
L
Len Brown 已提交
440 441
			printk(KERN_WARNING PREFIX
			       "XSDT signature incorrect\n");
L
Linus Torvalds 已提交
442 443 444 445 446 447 448 449
			return -ENODEV;
		}

		if (acpi_table_compute_checksum(header, header->length)) {
			printk(KERN_WARNING PREFIX "Invalid XSDT checksum\n");
			return -ENODEV;
		}

L
Len Brown 已提交
450 451
		sdt_count =
		    (header->length - sizeof(struct acpi_table_header)) >> 3;
L
Linus Torvalds 已提交
452
		if (sdt_count > ACPI_MAX_TABLES) {
L
Len Brown 已提交
453 454 455
			printk(KERN_WARNING PREFIX
			       "Truncated %lu XSDT entries\n",
			       (sdt_count - ACPI_MAX_TABLES));
L
Linus Torvalds 已提交
456 457 458 459
			sdt_count = ACPI_MAX_TABLES;
		}

		for (i = 0; i < sdt_count; i++)
460
			sdt_entry[i].pa = (unsigned long)mapped_xsdt->table_offset_entry[i];
L
Linus Torvalds 已提交
461 462 463 464
	}

	/* Then check RSDT */

465
	else if (rsdp->rsdt_physical_address) {
L
Linus Torvalds 已提交
466

L
Len Brown 已提交
467
		struct acpi_table_rsdt *mapped_rsdt = NULL;
L
Linus Torvalds 已提交
468

469
		sdt_pa = rsdp->rsdt_physical_address;
L
Linus Torvalds 已提交
470 471 472

		/* map in just the header */
		header = (struct acpi_table_header *)
L
Len Brown 已提交
473
		    __acpi_map_table(sdt_pa, sizeof(struct acpi_table_header));
L
Linus Torvalds 已提交
474
		if (!header) {
L
Len Brown 已提交
475 476
			printk(KERN_WARNING PREFIX
			       "Unable to map RSDT header\n");
L
Linus Torvalds 已提交
477 478 479 480 481
			return -ENODEV;
		}

		/* remap in the entire table before processing */
		mapped_rsdt = (struct acpi_table_rsdt *)
L
Len Brown 已提交
482
		    __acpi_map_table(sdt_pa, header->length);
L
Linus Torvalds 已提交
483 484 485 486 487 488 489
		if (!mapped_rsdt) {
			printk(KERN_WARNING PREFIX "Unable to map RSDT\n");
			return -ENODEV;
		}
		header = &mapped_rsdt->header;

		if (strncmp(header->signature, "RSDT", 4)) {
L
Len Brown 已提交
490 491
			printk(KERN_WARNING PREFIX
			       "RSDT signature incorrect\n");
L
Linus Torvalds 已提交
492 493 494 495 496 497 498 499
			return -ENODEV;
		}

		if (acpi_table_compute_checksum(header, header->length)) {
			printk(KERN_WARNING PREFIX "Invalid RSDT checksum\n");
			return -ENODEV;
		}

L
Len Brown 已提交
500 501
		sdt_count =
		    (header->length - sizeof(struct acpi_table_header)) >> 2;
L
Linus Torvalds 已提交
502
		if (sdt_count > ACPI_MAX_TABLES) {
L
Len Brown 已提交
503 504 505
			printk(KERN_WARNING PREFIX
			       "Truncated %lu RSDT entries\n",
			       (sdt_count - ACPI_MAX_TABLES));
L
Linus Torvalds 已提交
506 507 508 509
			sdt_count = ACPI_MAX_TABLES;
		}

		for (i = 0; i < sdt_count; i++)
510
			sdt_entry[i].pa = (unsigned long)mapped_rsdt->table_offset_entry[i];
L
Linus Torvalds 已提交
511 512 513
	}

	else {
L
Len Brown 已提交
514 515
		printk(KERN_WARNING PREFIX
		       "No System Description Table (RSDT/XSDT) specified in RSDP\n");
L
Linus Torvalds 已提交
516 517 518 519 520 521 522 523 524
		return -ENODEV;
	}

	acpi_table_print(header, sdt_pa);

	for (i = 0; i < sdt_count; i++) {

		/* map in just the header */
		header = (struct acpi_table_header *)
L
Len Brown 已提交
525 526
		    __acpi_map_table(sdt_entry[i].pa,
				     sizeof(struct acpi_table_header));
L
Linus Torvalds 已提交
527 528 529 530 531
		if (!header)
			continue;

		/* remap in the entire table before processing */
		header = (struct acpi_table_header *)
L
Len Brown 已提交
532
		    __acpi_map_table(sdt_entry[i].pa, header->length);
L
Linus Torvalds 已提交
533 534
		if (!header)
			continue;
L
Len Brown 已提交
535

L
Linus Torvalds 已提交
536 537 538 539 540 541 542 543 544 545
		acpi_table_print(header, sdt_entry[i].pa);

		if (acpi_table_compute_checksum(header, header->length)) {
			printk(KERN_WARNING "  >>> ERROR: Invalid checksum\n");
			continue;
		}

		sdt_entry[i].size = header->length;

		for (id = 0; id < ACPI_TABLE_COUNT; id++) {
L
Len Brown 已提交
546 547 548
			if (!strncmp((char *)&header->signature,
				     acpi_table_signatures[id],
				     sizeof(header->signature))) {
L
Linus Torvalds 已提交
549 550 551 552 553 554 555 556 557 558 559
				sdt_entry[i].id = id;
			}
		}
	}

	/* 
	 * The DSDT is *not* in the RSDT (why not? no idea.) but we want
	 * to print its info, because this is what people usually blacklist
	 * against. Unfortunately, we don't know the phys_addr, so just
	 * print 0. Maybe no one will notice.
	 */
L
Len Brown 已提交
560
	if (!acpi_get_table_header_early(ACPI_DSDT, &header))
L
Linus Torvalds 已提交
561 562 563 564 565 566 567 568 569 570 571 572 573 574
		acpi_table_print(header, 0);

	return 0;
}

/*
 * acpi_table_init()
 *
 * find RSDP, find and checksum SDT/XSDT.
 * checksum all tables, print SDT/XSDT
 * 
 * result: sdt_entry[] is initialized
 */

L
Len Brown 已提交
575
int __init acpi_table_init(void)
L
Linus Torvalds 已提交
576
{
L
Len Brown 已提交
577 578 579
	struct acpi_table_rsdp *rsdp = NULL;
	unsigned long rsdp_phys = 0;
	int result = 0;
L
Linus Torvalds 已提交
580 581 582 583 584 585 586 587 588

	/* Locate and map the Root System Description Table (RSDP) */

	rsdp_phys = acpi_find_rsdp();
	if (!rsdp_phys) {
		printk(KERN_ERR PREFIX "Unable to locate RSDP\n");
		return -ENODEV;
	}

T
Tolentino, Matthew E 已提交
589 590
	rsdp = (struct acpi_table_rsdp *)__acpi_map_table(rsdp_phys,
		sizeof(struct acpi_table_rsdp));
L
Linus Torvalds 已提交
591 592 593 594 595
	if (!rsdp) {
		printk(KERN_WARNING PREFIX "Unable to map RSDP\n");
		return -ENODEV;
	}

L
Len Brown 已提交
596 597 598
	printk(KERN_DEBUG PREFIX
	       "RSDP (v%3.3d %6.6s                                ) @ 0x%p\n",
	       rsdp->revision, rsdp->oem_id, (void *)rsdp_phys);
L
Linus Torvalds 已提交
599 600

	if (rsdp->revision < 2)
L
Len Brown 已提交
601
		result =
602
		    acpi_table_compute_checksum(rsdp, ACPI_RSDP_REV0_SIZE);
L
Linus Torvalds 已提交
603
	else
L
Len Brown 已提交
604
		result =
605
		    acpi_table_compute_checksum(rsdp, rsdp->length);
L
Linus Torvalds 已提交
606 607 608 609 610 611 612 613 614 615 616

	if (result) {
		printk(KERN_WARNING "  >>> ERROR: Invalid checksum\n");
		return -ENODEV;
	}

	/* Locate and map the System Description table (RSDT/XSDT) */

	if (acpi_table_get_sdt(rsdp))
		return -ENODEV;

617 618
	acpi_initialize_tables(initial_tables, ACPI_MAX_TABLES, 0);

L
Linus Torvalds 已提交
619 620
	return 0;
}