1 /******************************************************************************
3 * Module Name: tbutils - ACPI Table utilities
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
50 #define _COMPONENT ACPI_TABLES
51 ACPI_MODULE_NAME ("tbutils")
54 /* Local prototypes */
56 static ACPI_PHYSICAL_ADDRESS
57 AcpiTbGetRootTableEntry (
59 UINT32 TableEntrySize
);
62 #if (!ACPI_REDUCED_HARDWARE)
63 /*******************************************************************************
65 * FUNCTION: AcpiTbInitializeFacs
71 * DESCRIPTION: Create a permanent mapping for the FADT and save it in a global
72 * for accessing the Global Lock and Firmware Waking Vector
74 ******************************************************************************/
77 AcpiTbInitializeFacs (
83 /* If Hardware Reduced flag is set, there is no FACS */
85 if (AcpiGbl_ReducedHardware
)
91 Status
= AcpiGetTableByIndex (ACPI_TABLE_INDEX_FACS
,
92 ACPI_CAST_INDIRECT_PTR (ACPI_TABLE_HEADER
, &AcpiGbl_FACS
));
95 #endif /* !ACPI_REDUCED_HARDWARE */
98 /*******************************************************************************
100 * FUNCTION: AcpiTbTablesLoaded
104 * RETURN: TRUE if required ACPI tables are loaded
106 * DESCRIPTION: Determine if the minimum required ACPI tables are present
109 ******************************************************************************/
116 if (AcpiGbl_RootTableList
.CurrentTableCount
>= 3)
125 /*******************************************************************************
127 * FUNCTION: AcpiTbCheckDsdtHeader
133 * DESCRIPTION: Quick compare to check validity of the DSDT. This will detect
134 * if the DSDT has been replaced from outside the OS and/or if
135 * the DSDT header has been corrupted.
137 ******************************************************************************/
140 AcpiTbCheckDsdtHeader (
144 /* Compare original length and checksum to current values */
146 if (AcpiGbl_OriginalDsdtHeader
.Length
!= AcpiGbl_DSDT
->Length
||
147 AcpiGbl_OriginalDsdtHeader
.Checksum
!= AcpiGbl_DSDT
->Checksum
)
149 ACPI_BIOS_ERROR ((AE_INFO
,
150 "The DSDT has been corrupted or replaced - "
151 "old, new headers below"));
152 AcpiTbPrintTableHeader (0, &AcpiGbl_OriginalDsdtHeader
);
153 AcpiTbPrintTableHeader (0, AcpiGbl_DSDT
);
155 /* Disable further error messages */
157 AcpiGbl_OriginalDsdtHeader
.Length
= AcpiGbl_DSDT
->Length
;
158 AcpiGbl_OriginalDsdtHeader
.Checksum
= AcpiGbl_DSDT
->Checksum
;
163 /*******************************************************************************
165 * FUNCTION: AcpiTbCopyDsdt
167 * PARAMETERS: TableDesc - Installed table to copy
171 * DESCRIPTION: Implements a subsystem option to copy the DSDT to local memory.
172 * Some very bad BIOSs are known to either corrupt the DSDT or
173 * install a new, bad DSDT. This copy works around the problem.
175 ******************************************************************************/
181 ACPI_TABLE_HEADER
*NewTable
;
182 ACPI_TABLE_DESC
*TableDesc
;
185 TableDesc
= &AcpiGbl_RootTableList
.Tables
[TableIndex
];
187 NewTable
= ACPI_ALLOCATE (TableDesc
->Length
);
190 ACPI_ERROR ((AE_INFO
, "Could not copy DSDT of length 0x%X",
195 ACPI_MEMCPY (NewTable
, TableDesc
->Pointer
, TableDesc
->Length
);
196 AcpiTbDeleteTable (TableDesc
);
197 TableDesc
->Pointer
= NewTable
;
198 TableDesc
->Flags
= ACPI_TABLE_ORIGIN_ALLOCATED
;
201 "Forced DSDT copy: length 0x%05X copied locally, original unmapped",
208 /*******************************************************************************
210 * FUNCTION: AcpiTbInstallTable
212 * PARAMETERS: Address - Physical address of DSDT or FACS
213 * Signature - Table signature, NULL if no need to
215 * TableIndex - Index into root table array
219 * DESCRIPTION: Install an ACPI table into the global data structure. The
220 * table override mechanism is called to allow the host
221 * OS to replace any table before it is installed in the root
224 ******************************************************************************/
228 ACPI_PHYSICAL_ADDRESS Address
,
232 ACPI_TABLE_HEADER
*Table
;
233 ACPI_TABLE_HEADER
*FinalTable
;
234 ACPI_TABLE_DESC
*TableDesc
;
239 ACPI_ERROR ((AE_INFO
, "Null physical address for ACPI table [%s]",
244 /* Map just the table header */
246 Table
= AcpiOsMapMemory (Address
, sizeof (ACPI_TABLE_HEADER
));
249 ACPI_ERROR ((AE_INFO
, "Could not map memory for table [%s] at %p",
250 Signature
, ACPI_CAST_PTR (void, Address
)));
254 /* If a particular signature is expected (DSDT/FACS), it must match */
257 !ACPI_COMPARE_NAME (Table
->Signature
, Signature
))
259 ACPI_BIOS_ERROR ((AE_INFO
,
260 "Invalid signature 0x%X for ACPI table, expected [%s]",
261 *ACPI_CAST_PTR (UINT32
, Table
->Signature
), Signature
));
266 * Initialize the table entry. Set the pointer to NULL, since the
267 * table is not fully mapped at this time.
269 TableDesc
= &AcpiGbl_RootTableList
.Tables
[TableIndex
];
271 TableDesc
->Address
= Address
;
272 TableDesc
->Pointer
= NULL
;
273 TableDesc
->Length
= Table
->Length
;
274 TableDesc
->Flags
= ACPI_TABLE_ORIGIN_MAPPED
;
275 ACPI_MOVE_32_TO_32 (TableDesc
->Signature
.Ascii
, Table
->Signature
);
278 * ACPI Table Override:
280 * Before we install the table, let the host OS override it with a new
281 * one if desired. Any table within the RSDT/XSDT can be replaced,
282 * including the DSDT which is pointed to by the FADT.
284 * NOTE: If the table is overridden, then FinalTable will contain a
285 * mapped pointer to the full new table. If the table is not overridden,
286 * or if there has been a physical override, then the table will be
287 * fully mapped later (in verify table). In any case, we must
288 * unmap the header that was mapped above.
290 FinalTable
= AcpiTbTableOverride (Table
, TableDesc
);
293 FinalTable
= Table
; /* There was no override */
296 AcpiTbPrintTableHeader (TableDesc
->Address
, FinalTable
);
298 /* Set the global integer width (based upon revision of the DSDT) */
300 if (TableIndex
== ACPI_TABLE_INDEX_DSDT
)
302 AcpiUtSetIntegerWidth (FinalTable
->Revision
);
306 * If we have a physical override during this early loading of the ACPI
307 * tables, unmap the table for now. It will be mapped again later when
308 * it is actually used. This supports very early loading of ACPI tables,
309 * before virtual memory is fully initialized and running within the
310 * host OS. Note: A logical override has the ACPI_TABLE_ORIGIN_OVERRIDE
311 * flag set and will not be deleted below.
313 if (FinalTable
!= Table
)
315 AcpiTbDeleteTable (TableDesc
);
321 /* Always unmap the table header that we mapped above */
323 AcpiOsUnmapMemory (Table
, sizeof (ACPI_TABLE_HEADER
));
327 /*******************************************************************************
329 * FUNCTION: AcpiTbGetRootTableEntry
331 * PARAMETERS: TableEntry - Pointer to the RSDT/XSDT table entry
332 * TableEntrySize - sizeof 32 or 64 (RSDT or XSDT)
334 * RETURN: Physical address extracted from the root table
336 * DESCRIPTION: Get one root table entry. Handles 32-bit and 64-bit cases on
337 * both 32-bit and 64-bit platforms
339 * NOTE: ACPI_PHYSICAL_ADDRESS is 32-bit on 32-bit platforms, 64-bit on
342 ******************************************************************************/
344 static ACPI_PHYSICAL_ADDRESS
345 AcpiTbGetRootTableEntry (
347 UINT32 TableEntrySize
)
353 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT):
354 * Note: Addresses are 32-bit aligned (not 64) in both RSDT and XSDT
356 if (TableEntrySize
== sizeof (UINT32
))
359 * 32-bit platform, RSDT: Return 32-bit table entry
360 * 64-bit platform, RSDT: Expand 32-bit to 64-bit and return
362 return ((ACPI_PHYSICAL_ADDRESS
) (*ACPI_CAST_PTR (UINT32
, TableEntry
)));
367 * 32-bit platform, XSDT: Truncate 64-bit to 32-bit and return
368 * 64-bit platform, XSDT: Move (unaligned) 64-bit to local,
371 ACPI_MOVE_64_TO_64 (&Address64
, TableEntry
);
373 #if ACPI_MACHINE_WIDTH == 32
374 if (Address64
> ACPI_UINT32_MAX
)
376 /* Will truncate 64-bit address to 32 bits, issue warning */
378 ACPI_BIOS_WARNING ((AE_INFO
,
379 "64-bit Physical Address in XSDT is too large (0x%8.8X%8.8X),"
381 ACPI_FORMAT_UINT64 (Address64
)));
384 return ((ACPI_PHYSICAL_ADDRESS
) (Address64
));
389 /*******************************************************************************
391 * FUNCTION: AcpiTbParseRootTable
393 * PARAMETERS: Rsdp - Pointer to the RSDP
397 * DESCRIPTION: This function is called to parse the Root System Description
398 * Table (RSDT or XSDT)
400 * NOTE: Tables are mapped (not copied) for efficiency. The FACS must
401 * be mapped and cannot be copied because it contains the actual
402 * memory location of the ACPI Global Lock.
404 ******************************************************************************/
407 AcpiTbParseRootTable (
408 ACPI_PHYSICAL_ADDRESS RsdpAddress
)
410 ACPI_TABLE_RSDP
*Rsdp
;
411 UINT32 TableEntrySize
;
414 ACPI_TABLE_HEADER
*Table
;
415 ACPI_PHYSICAL_ADDRESS Address
;
421 ACPI_FUNCTION_TRACE (TbParseRootTable
);
425 * Map the entire RSDP and extract the address of the RSDT or XSDT
427 Rsdp
= AcpiOsMapMemory (RsdpAddress
, sizeof (ACPI_TABLE_RSDP
));
430 return_ACPI_STATUS (AE_NO_MEMORY
);
433 AcpiTbPrintTableHeader (RsdpAddress
,
434 ACPI_CAST_PTR (ACPI_TABLE_HEADER
, Rsdp
));
436 /* Differentiate between RSDT and XSDT root tables */
438 if (Rsdp
->Revision
> 1 && Rsdp
->XsdtPhysicalAddress
)
441 * Root table is an XSDT (64-bit physical addresses). We must use the
442 * XSDT if the revision is > 1 and the XSDT pointer is present, as per
443 * the ACPI specification.
445 Address
= (ACPI_PHYSICAL_ADDRESS
) Rsdp
->XsdtPhysicalAddress
;
446 TableEntrySize
= sizeof (UINT64
);
450 /* Root table is an RSDT (32-bit physical addresses) */
452 Address
= (ACPI_PHYSICAL_ADDRESS
) Rsdp
->RsdtPhysicalAddress
;
453 TableEntrySize
= sizeof (UINT32
);
457 * It is not possible to map more than one entry in some environments,
458 * so unmap the RSDP here before mapping other tables
460 AcpiOsUnmapMemory (Rsdp
, sizeof (ACPI_TABLE_RSDP
));
463 /* Map the RSDT/XSDT table header to get the full table length */
465 Table
= AcpiOsMapMemory (Address
, sizeof (ACPI_TABLE_HEADER
));
468 return_ACPI_STATUS (AE_NO_MEMORY
);
471 AcpiTbPrintTableHeader (Address
, Table
);
473 /* Get the length of the full table, verify length and map entire table */
475 Length
= Table
->Length
;
476 AcpiOsUnmapMemory (Table
, sizeof (ACPI_TABLE_HEADER
));
478 if (Length
< sizeof (ACPI_TABLE_HEADER
))
480 ACPI_BIOS_ERROR ((AE_INFO
,
481 "Invalid table length 0x%X in RSDT/XSDT", Length
));
482 return_ACPI_STATUS (AE_INVALID_TABLE_LENGTH
);
485 Table
= AcpiOsMapMemory (Address
, Length
);
488 return_ACPI_STATUS (AE_NO_MEMORY
);
491 /* Validate the root table checksum */
493 Status
= AcpiTbVerifyChecksum (Table
, Length
);
494 if (ACPI_FAILURE (Status
))
496 AcpiOsUnmapMemory (Table
, Length
);
497 return_ACPI_STATUS (Status
);
500 /* Calculate the number of tables described in the root table */
502 TableCount
= (UINT32
) ((Table
->Length
- sizeof (ACPI_TABLE_HEADER
)) /
506 * First two entries in the table array are reserved for the DSDT
507 * and FACS, which are not actually present in the RSDT/XSDT - they
510 TableEntry
= ACPI_CAST_PTR (UINT8
, Table
) + sizeof (ACPI_TABLE_HEADER
);
511 AcpiGbl_RootTableList
.CurrentTableCount
= 2;
514 * Initialize the root table array from the RSDT/XSDT
516 for (i
= 0; i
< TableCount
; i
++)
518 if (AcpiGbl_RootTableList
.CurrentTableCount
>=
519 AcpiGbl_RootTableList
.MaxTableCount
)
521 /* There is no more room in the root table array, attempt resize */
523 Status
= AcpiTbResizeRootTableList ();
524 if (ACPI_FAILURE (Status
))
526 ACPI_WARNING ((AE_INFO
, "Truncating %u table entries!",
527 (unsigned) (TableCount
-
528 (AcpiGbl_RootTableList
.CurrentTableCount
- 2))));
533 /* Get the table physical address (32-bit for RSDT, 64-bit for XSDT) */
535 AcpiGbl_RootTableList
.Tables
[AcpiGbl_RootTableList
.CurrentTableCount
].Address
=
536 AcpiTbGetRootTableEntry (TableEntry
, TableEntrySize
);
538 TableEntry
+= TableEntrySize
;
539 AcpiGbl_RootTableList
.CurrentTableCount
++;
543 * It is not possible to map more than one entry in some environments,
544 * so unmap the root table here before mapping other tables
546 AcpiOsUnmapMemory (Table
, Length
);
549 * Complete the initialization of the root table array by examining
550 * the header of each table
552 for (i
= 2; i
< AcpiGbl_RootTableList
.CurrentTableCount
; i
++)
554 AcpiTbInstallTable (AcpiGbl_RootTableList
.Tables
[i
].Address
,
557 /* Special case for FADT - get the DSDT and FACS */
559 if (ACPI_COMPARE_NAME (
560 &AcpiGbl_RootTableList
.Tables
[i
].Signature
, ACPI_SIG_FADT
))
566 return_ACPI_STATUS (AE_OK
);