ACPICA: Emit warning if two FACS or DSDT tables found in the FADT
[linux-2.6/mini2440.git] / drivers / acpi / tables / tbfadt.c
blob14661a861c5881100e2914318d4395a7e5c98b8d
1 /******************************************************************************
3 * Module Name: tbfadt - FADT table utilities
5 *****************************************************************************/
7 /*
8 * Copyright (C) 2000 - 2008, Intel Corp.
9 * All rights reserved.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
30 * NO WARRANTY
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.
44 #include <acpi/acpi.h>
45 #include <acpi/actables.h>
47 #define _COMPONENT ACPI_TABLES
48 ACPI_MODULE_NAME("tbfadt")
50 /* Local prototypes */
51 static inline void
52 acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
53 u8 byte_width, u64 address);
55 static void acpi_tb_convert_fadt(void);
57 static void acpi_tb_validate_fadt(void);
59 /* Table for conversion of FADT to common internal format and FADT validation */
61 typedef struct acpi_fadt_info {
62 char *name;
63 u8 target;
64 u8 source;
65 u8 length;
66 u8 type;
68 } acpi_fadt_info;
70 #define ACPI_FADT_REQUIRED 1
71 #define ACPI_FADT_SEPARATE_LENGTH 2
73 static struct acpi_fadt_info fadt_info_table[] = {
74 {"Pm1aEventBlock", ACPI_FADT_OFFSET(xpm1a_event_block),
75 ACPI_FADT_OFFSET(pm1a_event_block),
76 ACPI_FADT_OFFSET(pm1_event_length), ACPI_FADT_REQUIRED},
78 {"Pm1bEventBlock", ACPI_FADT_OFFSET(xpm1b_event_block),
79 ACPI_FADT_OFFSET(pm1b_event_block),
80 ACPI_FADT_OFFSET(pm1_event_length), 0},
82 {"Pm1aControlBlock", ACPI_FADT_OFFSET(xpm1a_control_block),
83 ACPI_FADT_OFFSET(pm1a_control_block),
84 ACPI_FADT_OFFSET(pm1_control_length), ACPI_FADT_REQUIRED},
86 {"Pm1bControlBlock", ACPI_FADT_OFFSET(xpm1b_control_block),
87 ACPI_FADT_OFFSET(pm1b_control_block),
88 ACPI_FADT_OFFSET(pm1_control_length), 0},
90 {"Pm2ControlBlock", ACPI_FADT_OFFSET(xpm2_control_block),
91 ACPI_FADT_OFFSET(pm2_control_block),
92 ACPI_FADT_OFFSET(pm2_control_length), ACPI_FADT_SEPARATE_LENGTH},
94 {"PmTimerBlock", ACPI_FADT_OFFSET(xpm_timer_block),
95 ACPI_FADT_OFFSET(pm_timer_block),
96 ACPI_FADT_OFFSET(pm_timer_length), ACPI_FADT_REQUIRED},
98 {"Gpe0Block", ACPI_FADT_OFFSET(xgpe0_block),
99 ACPI_FADT_OFFSET(gpe0_block),
100 ACPI_FADT_OFFSET(gpe0_block_length), ACPI_FADT_SEPARATE_LENGTH},
102 {"Gpe1Block", ACPI_FADT_OFFSET(xgpe1_block),
103 ACPI_FADT_OFFSET(gpe1_block),
104 ACPI_FADT_OFFSET(gpe1_block_length), ACPI_FADT_SEPARATE_LENGTH}
107 #define ACPI_FADT_INFO_ENTRIES (sizeof (fadt_info_table) / sizeof (struct acpi_fadt_info))
109 /*******************************************************************************
111 * FUNCTION: acpi_tb_init_generic_address
113 * PARAMETERS: generic_address - GAS struct to be initialized
114 * byte_width - Width of this register
115 * Address - Address of the register
117 * RETURN: None
119 * DESCRIPTION: Initialize a Generic Address Structure (GAS)
120 * See the ACPI specification for a full description and
121 * definition of this structure.
123 ******************************************************************************/
125 static inline void
126 acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
127 u8 byte_width, u64 address)
131 * The 64-bit Address field is non-aligned in the byte packed
132 * GAS struct.
134 ACPI_MOVE_64_TO_64(&generic_address->address, &address);
136 /* All other fields are byte-wide */
138 generic_address->space_id = ACPI_ADR_SPACE_SYSTEM_IO;
139 generic_address->bit_width = byte_width << 3;
140 generic_address->bit_offset = 0;
141 generic_address->access_width = 0;
144 /*******************************************************************************
146 * FUNCTION: acpi_tb_parse_fadt
148 * PARAMETERS: table_index - Index for the FADT
149 * Flags - Flags
151 * RETURN: None
153 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
154 * (FADT contains the addresses of the DSDT and FACS)
156 ******************************************************************************/
158 void acpi_tb_parse_fadt(u32 table_index, u8 flags)
160 u32 length;
161 struct acpi_table_header *table;
164 * The FADT has multiple versions with different lengths,
165 * and it contains pointers to both the DSDT and FACS tables.
167 * Get a local copy of the FADT and convert it to a common format
168 * Map entire FADT, assumed to be smaller than one page.
170 length = acpi_gbl_root_table_list.tables[table_index].length;
172 table =
173 acpi_os_map_memory(acpi_gbl_root_table_list.tables[table_index].
174 address, length);
175 if (!table) {
176 return;
180 * Validate the FADT checksum before we copy the table. Ignore
181 * checksum error as we want to try to get the DSDT and FACS.
183 (void)acpi_tb_verify_checksum(table, length);
185 /* Obtain a local copy of the FADT in common ACPI 2.0+ format */
187 acpi_tb_create_local_fadt(table, length);
189 /* All done with the real FADT, unmap it */
191 acpi_os_unmap_memory(table, length);
193 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
195 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xdsdt,
196 flags, ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT);
198 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xfacs,
199 flags, ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS);
202 /*******************************************************************************
204 * FUNCTION: acpi_tb_create_local_fadt
206 * PARAMETERS: Table - Pointer to BIOS FADT
207 * Length - Length of the table
209 * RETURN: None
211 * DESCRIPTION: Get a local copy of the FADT and convert it to a common format.
212 * Performs validation on some important FADT fields.
214 * NOTE: We create a local copy of the FADT regardless of the version.
216 ******************************************************************************/
218 void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length)
222 * Check if the FADT is larger than the largest table that we expect
223 * (the ACPI 2.0/3.0 version). If so, truncate the table, and issue
224 * a warning.
226 if (length > sizeof(struct acpi_table_fadt)) {
227 ACPI_WARNING((AE_INFO,
228 "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX",
229 table->revision, (unsigned)length,
230 sizeof(struct acpi_table_fadt)));
233 /* Clear the entire local FADT */
235 ACPI_MEMSET(&acpi_gbl_FADT, 0, sizeof(struct acpi_table_fadt));
237 /* Copy the original FADT, up to sizeof (struct acpi_table_fadt) */
239 ACPI_MEMCPY(&acpi_gbl_FADT, table,
240 ACPI_MIN(length, sizeof(struct acpi_table_fadt)));
243 * 1) Convert the local copy of the FADT to the common internal format
244 * 2) Validate some of the important values within the FADT
246 acpi_tb_convert_fadt();
247 acpi_tb_validate_fadt();
250 /*******************************************************************************
252 * FUNCTION: acpi_tb_convert_fadt
254 * PARAMETERS: None, uses acpi_gbl_FADT
256 * RETURN: None
258 * DESCRIPTION: Converts all versions of the FADT to a common internal format.
259 * Expand all 32-bit addresses to 64-bit.
261 * NOTE: acpi_gbl_FADT must be of size (struct acpi_table_fadt),
262 * and must contain a copy of the actual FADT.
264 * ACPICA will use the "X" fields of the FADT for all addresses.
266 * "X" fields are optional extensions to the original V1.0 fields. Even if
267 * they are present in the structure, they can be optionally not used by
268 * setting them to zero. Therefore, we must selectively expand V1.0 fields
269 * if the corresponding X field is zero.
271 * For ACPI 1.0 FADTs, all address fields are expanded to the corresponding
272 * "X" fields.
274 * For ACPI 2.0 FADTs, any "X" fields that are NULL are filled in by
275 * expanding the corresponding ACPI 1.0 field.
277 ******************************************************************************/
279 static void acpi_tb_convert_fadt(void)
281 u8 pm1_register_length;
282 struct acpi_generic_address *target;
283 u32 i;
285 /* Update the local FADT table header length */
287 acpi_gbl_FADT.header.length = sizeof(struct acpi_table_fadt);
290 * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary.
291 * Later code will always use the X 64-bit field. Also, check for an
292 * address mismatch between the 32-bit and 64-bit address fields
293 * (FIRMWARE_CTRL/X_FIRMWARE_CTRL, DSDT/X_DSDT) which would indicate
294 * the presence of two FACS or two DSDT tables.
296 if (!acpi_gbl_FADT.Xfacs) {
297 acpi_gbl_FADT.Xfacs = (u64) acpi_gbl_FADT.facs;
298 } else if (acpi_gbl_FADT.facs &&
299 (acpi_gbl_FADT.Xfacs != (u64) acpi_gbl_FADT.facs)) {
300 ACPI_WARNING((AE_INFO,
301 "32/64 FACS address mismatch in FADT - two FACS tables!"));
304 if (!acpi_gbl_FADT.Xdsdt) {
305 acpi_gbl_FADT.Xdsdt = (u64) acpi_gbl_FADT.dsdt;
306 } else if (acpi_gbl_FADT.dsdt &&
307 (acpi_gbl_FADT.Xdsdt != (u64) acpi_gbl_FADT.dsdt)) {
308 ACPI_WARNING((AE_INFO,
309 "32/64 DSDT address mismatch in FADT - two DSDT tables!"));
313 * For ACPI 1.0 FADTs (revision 1 or 2), ensure that reserved fields which
314 * should be zero are indeed zero. This will workaround BIOSs that
315 * inadvertently place values in these fields.
317 * The ACPI 1.0 reserved fields that will be zeroed are the bytes located at
318 * offset 45, 55, 95, and the word located at offset 109, 110.
320 if (acpi_gbl_FADT.header.revision < FADT2_REVISION_ID) {
321 acpi_gbl_FADT.preferred_profile = 0;
322 acpi_gbl_FADT.pstate_control = 0;
323 acpi_gbl_FADT.cst_control = 0;
324 acpi_gbl_FADT.boot_flags = 0;
328 * Expand the ACPI 1.0 32-bit V1.0 addresses to the ACPI 2.0 64-bit "X"
329 * generic address structures as necessary.
331 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
332 target =
333 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
334 fadt_info_table[i].target);
336 /* Expand only if the X target is null */
338 if (!target->address) {
339 acpi_tb_init_generic_address(target,
340 *ACPI_ADD_PTR(u8,
341 &acpi_gbl_FADT,
342 fadt_info_table
343 [i].length),
344 (u64) * ACPI_ADD_PTR(u32,
345 &acpi_gbl_FADT,
346 fadt_info_table
347 [i].
348 source));
353 * Calculate separate GAS structs for the PM1 Enable registers.
354 * These addresses do not appear (directly) in the FADT, so it is
355 * useful to calculate them once, here.
357 * The PM event blocks are split into two register blocks, first is the
358 * PM Status Register block, followed immediately by the PM Enable
359 * Register block. Each is of length (xpm1x_event_block.bit_width/2).
361 * On various systems the v2 fields (and particularly the bit widths)
362 * cannot be relied upon, though. Hence resort to using the v1 length
363 * here (and warn about the inconsistency).
365 if (acpi_gbl_FADT.xpm1a_event_block.bit_width
366 != acpi_gbl_FADT.pm1_event_length * 8)
367 printk(KERN_WARNING "FADT: "
368 "X_PM1a_EVT_BLK.bit_width (%u) does not match"
369 " PM1_EVT_LEN (%u)\n",
370 acpi_gbl_FADT.xpm1a_event_block.bit_width,
371 acpi_gbl_FADT.pm1_event_length);
372 pm1_register_length = (u8) ACPI_DIV_2(acpi_gbl_FADT.pm1_event_length);
374 /* The PM1A register block is required */
376 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable,
377 pm1_register_length,
378 (acpi_gbl_FADT.xpm1a_event_block.address +
379 pm1_register_length));
380 /* Don't forget to copy space_id of the GAS */
381 acpi_gbl_xpm1a_enable.space_id =
382 acpi_gbl_FADT.xpm1a_event_block.space_id;
384 /* The PM1B register block is optional, ignore if not present */
386 if (acpi_gbl_FADT.xpm1b_event_block.address) {
387 if (acpi_gbl_FADT.xpm1b_event_block.bit_width
388 != acpi_gbl_FADT.pm1_event_length * 8)
389 printk(KERN_WARNING "FADT: "
390 "X_PM1b_EVT_BLK.bit_width (%u) does not match"
391 " PM1_EVT_LEN (%u)\n",
392 acpi_gbl_FADT.xpm1b_event_block.bit_width,
393 acpi_gbl_FADT.pm1_event_length);
394 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable,
395 pm1_register_length,
396 (acpi_gbl_FADT.xpm1b_event_block.
397 address + pm1_register_length));
398 /* Don't forget to copy space_id of the GAS */
399 acpi_gbl_xpm1b_enable.space_id =
400 acpi_gbl_FADT.xpm1b_event_block.space_id;
405 /******************************************************************************
407 * FUNCTION: acpi_tb_validate_fadt
409 * PARAMETERS: Table - Pointer to the FADT to be validated
411 * RETURN: None
413 * DESCRIPTION: Validate various important fields within the FADT. If a problem
414 * is found, issue a message, but no status is returned.
415 * Used by both the table manager and the disassembler.
417 * Possible additional checks:
418 * (acpi_gbl_FADT.pm1_event_length >= 4)
419 * (acpi_gbl_FADT.pm1_control_length >= 2)
420 * (acpi_gbl_FADT.pm_timer_length >= 4)
421 * Gpe block lengths must be multiple of 2
423 ******************************************************************************/
425 static void acpi_tb_validate_fadt(void)
427 u32 *address32;
428 struct acpi_generic_address *address64;
429 u8 length;
430 u32 i;
432 /* Examine all of the 64-bit extended address fields (X fields) */
434 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
436 /* Generate pointers to the 32-bit and 64-bit addresses and get the length */
438 address64 =
439 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
440 fadt_info_table[i].target);
441 address32 =
442 ACPI_ADD_PTR(u32, &acpi_gbl_FADT,
443 fadt_info_table[i].source);
444 length =
445 *ACPI_ADD_PTR(u8, &acpi_gbl_FADT,
446 fadt_info_table[i].length);
448 if (fadt_info_table[i].type & ACPI_FADT_REQUIRED) {
450 * Field is required (Pm1a_event, Pm1a_control, pm_timer).
451 * Both the address and length must be non-zero.
453 if (!address64->address || !length) {
454 ACPI_ERROR((AE_INFO,
455 "Required field \"%s\" has zero address and/or length: %8.8X%8.8X/%X",
456 fadt_info_table[i].name,
457 ACPI_FORMAT_UINT64(address64->
458 address),
459 length));
461 } else if (fadt_info_table[i].type & ACPI_FADT_SEPARATE_LENGTH) {
463 * Field is optional (PM2Control, GPE0, GPE1) AND has its own
464 * length field. If present, both the address and length must be valid.
466 if ((address64->address && !length)
467 || (!address64->address && length)) {
468 ACPI_WARNING((AE_INFO,
469 "Optional field \"%s\" has zero address or length: %8.8X%8.8X/%X",
470 fadt_info_table[i].name,
471 ACPI_FORMAT_UINT64(address64->
472 address),
473 length));
477 /* If both 32- and 64-bit addresses are valid (non-zero), they must match */
479 if (address64->address && *address32 &&
480 (address64->address != (u64) * address32)) {
481 ACPI_ERROR((AE_INFO,
482 "32/64X address mismatch in \"%s\": [%8.8X] [%8.8X%8.8X], using 64X",
483 fadt_info_table[i].name, *address32,
484 ACPI_FORMAT_UINT64(address64->address)));