Lines 218-224
acpi_table_print_madt_entry (
Link Here
|
218 |
} |
218 |
} |
219 |
|
219 |
|
220 |
|
220 |
|
221 |
static int |
221 |
int |
222 |
acpi_table_compute_checksum ( |
222 |
acpi_table_compute_checksum ( |
223 |
void *table_pointer, |
223 |
void *table_pointer, |
224 |
unsigned long length) |
224 |
unsigned long length) |
Lines 571-580
acpi_table_init (void)
Link Here
|
571 |
{ |
571 |
{ |
572 |
struct acpi_table_rsdp *rsdp = NULL; |
572 |
struct acpi_table_rsdp *rsdp = NULL; |
573 |
unsigned long rsdp_phys = 0; |
573 |
unsigned long rsdp_phys = 0; |
574 |
int result = 0; |
|
|
575 |
|
574 |
|
576 |
/* Locate and map the Root System Description Table (RSDP) */ |
575 |
/* Locate and map the Root System Description Table (RSDP) */ |
577 |
|
576 |
/* Search until first one that is sane*/ |
578 |
rsdp_phys = acpi_find_rsdp(); |
577 |
rsdp_phys = acpi_find_rsdp(); |
579 |
if (!rsdp_phys) { |
578 |
if (!rsdp_phys) { |
580 |
printk(KERN_ERR PREFIX "Unable to locate RSDP\n"); |
579 |
printk(KERN_ERR PREFIX "Unable to locate RSDP\n"); |
Lines 590-605
acpi_table_init (void)
Link Here
|
590 |
printk(KERN_INFO PREFIX "RSDP (v%3.3d %6.6s ) @ 0x%p\n", |
589 |
printk(KERN_INFO PREFIX "RSDP (v%3.3d %6.6s ) @ 0x%p\n", |
591 |
rsdp->revision, rsdp->oem_id, (void *) rsdp_phys); |
590 |
rsdp->revision, rsdp->oem_id, (void *) rsdp_phys); |
592 |
|
591 |
|
593 |
if (rsdp->revision < 2) |
|
|
594 |
result = acpi_table_compute_checksum(rsdp, sizeof(struct acpi_table_rsdp)); |
595 |
else |
596 |
result = acpi_table_compute_checksum(rsdp, ((struct acpi20_table_rsdp *)rsdp)->length); |
597 |
|
598 |
if (result) { |
599 |
printk(KERN_WARNING " >>> ERROR: Invalid checksum\n"); |
600 |
return -ENODEV; |
601 |
} |
602 |
|
603 |
/* Locate and map the System Description table (RSDT/XSDT) */ |
592 |
/* Locate and map the System Description table (RSDT/XSDT) */ |
604 |
|
593 |
|
605 |
if (acpi_table_get_sdt(rsdp)) |
594 |
if (acpi_table_get_sdt(rsdp)) |