blob: 57e089faff1f0f121af2437dc0dc906165386342 [file] [log] [blame]
Bob Moore95befdb2007-02-02 19:48:20 +03001/******************************************************************************
2 *
3 * Module Name: tbfadt - FADT table utilities
4 *
5 *****************************************************************************/
6
7/*
Len Brown75a44ce2008-04-23 23:00:13 -04008 * Copyright (C) 2000 - 2008, Intel Corp.
Bob Moore95befdb2007-02-02 19:48:20 +03009 * All rights reserved.
10 *
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.
25 *
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.
29 *
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.
42 */
43
44#include <acpi/acpi.h>
Bob Moore50df4d82008-12-31 03:01:23 +080045#include <acpi/accommon.h>
Bob Moore95befdb2007-02-02 19:48:20 +030046#include <acpi/actables.h>
47
48#define _COMPONENT ACPI_TABLES
49ACPI_MODULE_NAME("tbfadt")
50
51/* Local prototypes */
Bob Moore6de40482008-11-12 14:16:21 +080052static inline void
Bob Mooreea5d8eb2007-02-02 19:48:20 +030053acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
Jan Beulichfcea94b2008-09-19 15:50:32 -070054 u8 byte_width, u64 address);
Bob Moore95befdb2007-02-02 19:48:20 +030055
Bob Moore71392842007-02-02 19:48:20 +030056static void acpi_tb_convert_fadt(void);
57
58static void acpi_tb_validate_fadt(void);
59
Bob Mooreea5d8eb2007-02-02 19:48:20 +030060/* Table for conversion of FADT to common internal format and FADT validation */
Bob Moore95befdb2007-02-02 19:48:20 +030061
Bob Mooreea5d8eb2007-02-02 19:48:20 +030062typedef struct acpi_fadt_info {
63 char *name;
Bob Moore95befdb2007-02-02 19:48:20 +030064 u8 target;
65 u8 source;
66 u8 length;
Bob Mooreea5d8eb2007-02-02 19:48:20 +030067 u8 type;
Bob Moore95befdb2007-02-02 19:48:20 +030068
Bob Mooreea5d8eb2007-02-02 19:48:20 +030069} acpi_fadt_info;
Bob Moore95befdb2007-02-02 19:48:20 +030070
Bob Mooreea5d8eb2007-02-02 19:48:20 +030071#define ACPI_FADT_REQUIRED 1
72#define ACPI_FADT_SEPARATE_LENGTH 2
73
74static struct acpi_fadt_info fadt_info_table[] = {
75 {"Pm1aEventBlock", ACPI_FADT_OFFSET(xpm1a_event_block),
Bob Moore95befdb2007-02-02 19:48:20 +030076 ACPI_FADT_OFFSET(pm1a_event_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030077 ACPI_FADT_OFFSET(pm1_event_length), ACPI_FADT_REQUIRED},
78
79 {"Pm1bEventBlock", ACPI_FADT_OFFSET(xpm1b_event_block),
Bob Moore95befdb2007-02-02 19:48:20 +030080 ACPI_FADT_OFFSET(pm1b_event_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030081 ACPI_FADT_OFFSET(pm1_event_length), 0},
82
83 {"Pm1aControlBlock", ACPI_FADT_OFFSET(xpm1a_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030084 ACPI_FADT_OFFSET(pm1a_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030085 ACPI_FADT_OFFSET(pm1_control_length), ACPI_FADT_REQUIRED},
86
87 {"Pm1bControlBlock", ACPI_FADT_OFFSET(xpm1b_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030088 ACPI_FADT_OFFSET(pm1b_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030089 ACPI_FADT_OFFSET(pm1_control_length), 0},
90
91 {"Pm2ControlBlock", ACPI_FADT_OFFSET(xpm2_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030092 ACPI_FADT_OFFSET(pm2_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030093 ACPI_FADT_OFFSET(pm2_control_length), ACPI_FADT_SEPARATE_LENGTH},
94
95 {"PmTimerBlock", ACPI_FADT_OFFSET(xpm_timer_block),
96 ACPI_FADT_OFFSET(pm_timer_block),
97 ACPI_FADT_OFFSET(pm_timer_length), ACPI_FADT_REQUIRED},
98
99 {"Gpe0Block", ACPI_FADT_OFFSET(xgpe0_block),
100 ACPI_FADT_OFFSET(gpe0_block),
101 ACPI_FADT_OFFSET(gpe0_block_length), ACPI_FADT_SEPARATE_LENGTH},
102
103 {"Gpe1Block", ACPI_FADT_OFFSET(xgpe1_block),
104 ACPI_FADT_OFFSET(gpe1_block),
105 ACPI_FADT_OFFSET(gpe1_block_length), ACPI_FADT_SEPARATE_LENGTH}
Bob Moore95befdb2007-02-02 19:48:20 +0300106};
107
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300108#define ACPI_FADT_INFO_ENTRIES (sizeof (fadt_info_table) / sizeof (struct acpi_fadt_info))
Bob Moore95befdb2007-02-02 19:48:20 +0300109
110/*******************************************************************************
111 *
112 * FUNCTION: acpi_tb_init_generic_address
113 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300114 * PARAMETERS: generic_address - GAS struct to be initialized
Jan Beulichfcea94b2008-09-19 15:50:32 -0700115 * byte_width - Width of this register
Bob Moore95befdb2007-02-02 19:48:20 +0300116 * Address - Address of the register
117 *
118 * RETURN: None
119 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300120 * DESCRIPTION: Initialize a Generic Address Structure (GAS)
121 * See the ACPI specification for a full description and
122 * definition of this structure.
Bob Moore95befdb2007-02-02 19:48:20 +0300123 *
124 ******************************************************************************/
125
Bob Moore6de40482008-11-12 14:16:21 +0800126static inline void
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300127acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
Jan Beulichfcea94b2008-09-19 15:50:32 -0700128 u8 byte_width, u64 address)
Bob Moore95befdb2007-02-02 19:48:20 +0300129{
130
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300131 /*
132 * The 64-bit Address field is non-aligned in the byte packed
133 * GAS struct.
134 */
135 ACPI_MOVE_64_TO_64(&generic_address->address, &address);
136
137 /* All other fields are byte-wide */
138
139 generic_address->space_id = ACPI_ADR_SPACE_SYSTEM_IO;
Jan Beulichfcea94b2008-09-19 15:50:32 -0700140 generic_address->bit_width = byte_width << 3;
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300141 generic_address->bit_offset = 0;
142 generic_address->access_width = 0;
Bob Moore95befdb2007-02-02 19:48:20 +0300143}
144
145/*******************************************************************************
146 *
147 * FUNCTION: acpi_tb_parse_fadt
148 *
149 * PARAMETERS: table_index - Index for the FADT
150 * Flags - Flags
151 *
152 * RETURN: None
153 *
154 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
155 * (FADT contains the addresses of the DSDT and FACS)
156 *
157 ******************************************************************************/
158
Bob Moore67a119f2008-06-10 13:42:13 +0800159void acpi_tb_parse_fadt(u32 table_index, u8 flags)
Bob Moore95befdb2007-02-02 19:48:20 +0300160{
161 u32 length;
162 struct acpi_table_header *table;
163
164 /*
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300165 * The FADT has multiple versions with different lengths,
166 * and it contains pointers to both the DSDT and FACS tables.
Bob Moore95befdb2007-02-02 19:48:20 +0300167 *
168 * Get a local copy of the FADT and convert it to a common format
169 * Map entire FADT, assumed to be smaller than one page.
170 */
171 length = acpi_gbl_root_table_list.tables[table_index].length;
172
173 table =
174 acpi_os_map_memory(acpi_gbl_root_table_list.tables[table_index].
175 address, length);
176 if (!table) {
177 return;
178 }
179
180 /*
181 * Validate the FADT checksum before we copy the table. Ignore
182 * checksum error as we want to try to get the DSDT and FACS.
183 */
184 (void)acpi_tb_verify_checksum(table, length);
185
Bob Moore71392842007-02-02 19:48:20 +0300186 /* Obtain a local copy of the FADT in common ACPI 2.0+ format */
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300187
Bob Moore71392842007-02-02 19:48:20 +0300188 acpi_tb_create_local_fadt(table, length);
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300189
190 /* All done with the real FADT, unmap it */
191
Bob Moore95befdb2007-02-02 19:48:20 +0300192 acpi_os_unmap_memory(table, length);
193
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300194 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
Bob Moore95befdb2007-02-02 19:48:20 +0300195
196 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xdsdt,
197 flags, ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT);
198
199 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xfacs,
200 flags, ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS);
Bob Moore95befdb2007-02-02 19:48:20 +0300201}
202
203/*******************************************************************************
204 *
Bob Moore71392842007-02-02 19:48:20 +0300205 * FUNCTION: acpi_tb_create_local_fadt
206 *
207 * PARAMETERS: Table - Pointer to BIOS FADT
208 * Length - Length of the table
209 *
210 * RETURN: None
211 *
212 * DESCRIPTION: Get a local copy of the FADT and convert it to a common format.
213 * Performs validation on some important FADT fields.
214 *
Bob Moore55f8f3c2007-05-02 15:51:37 -0400215 * NOTE: We create a local copy of the FADT regardless of the version.
216 *
Bob Moore71392842007-02-02 19:48:20 +0300217 ******************************************************************************/
218
219void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length)
220{
221
222 /*
Bob Moore55f8f3c2007-05-02 15:51:37 -0400223 * Check if the FADT is larger than the largest table that we expect
224 * (the ACPI 2.0/3.0 version). If so, truncate the table, and issue
225 * a warning.
Bob Moore71392842007-02-02 19:48:20 +0300226 */
227 if (length > sizeof(struct acpi_table_fadt)) {
228 ACPI_WARNING((AE_INFO,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -0500229 "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX",
230 table->revision, (unsigned)length,
Bob Moore71392842007-02-02 19:48:20 +0300231 sizeof(struct acpi_table_fadt)));
232 }
233
Bob Moore55f8f3c2007-05-02 15:51:37 -0400234 /* Clear the entire local FADT */
Bob Moore71392842007-02-02 19:48:20 +0300235
236 ACPI_MEMSET(&acpi_gbl_FADT, 0, sizeof(struct acpi_table_fadt));
237
Bob Moore55f8f3c2007-05-02 15:51:37 -0400238 /* Copy the original FADT, up to sizeof (struct acpi_table_fadt) */
239
Bob Moore71392842007-02-02 19:48:20 +0300240 ACPI_MEMCPY(&acpi_gbl_FADT, table,
241 ACPI_MIN(length, sizeof(struct acpi_table_fadt)));
242
243 /*
244 * 1) Convert the local copy of the FADT to the common internal format
245 * 2) Validate some of the important values within the FADT
246 */
247 acpi_tb_convert_fadt();
248 acpi_tb_validate_fadt();
249}
250
251/*******************************************************************************
252 *
Bob Moore95befdb2007-02-02 19:48:20 +0300253 * FUNCTION: acpi_tb_convert_fadt
254 *
255 * PARAMETERS: None, uses acpi_gbl_FADT
256 *
257 * RETURN: None
258 *
259 * DESCRIPTION: Converts all versions of the FADT to a common internal format.
Bob Moore55f8f3c2007-05-02 15:51:37 -0400260 * Expand all 32-bit addresses to 64-bit.
Bob Moore95befdb2007-02-02 19:48:20 +0300261 *
Bob Mooree56b6382007-02-02 19:48:20 +0300262 * NOTE: acpi_gbl_FADT must be of size (struct acpi_table_fadt),
263 * and must contain a copy of the actual FADT.
Bob Moore95befdb2007-02-02 19:48:20 +0300264 *
265 * ACPICA will use the "X" fields of the FADT for all addresses.
266 *
267 * "X" fields are optional extensions to the original V1.0 fields. Even if
268 * they are present in the structure, they can be optionally not used by
269 * setting them to zero. Therefore, we must selectively expand V1.0 fields
270 * if the corresponding X field is zero.
271 *
272 * For ACPI 1.0 FADTs, all address fields are expanded to the corresponding
273 * "X" fields.
274 *
275 * For ACPI 2.0 FADTs, any "X" fields that are NULL are filled in by
276 * expanding the corresponding ACPI 1.0 field.
277 *
278 ******************************************************************************/
279
Bob Moore71392842007-02-02 19:48:20 +0300280static void acpi_tb_convert_fadt(void)
Bob Moore95befdb2007-02-02 19:48:20 +0300281{
282 u8 pm1_register_length;
283 struct acpi_generic_address *target;
Bob Moore67a119f2008-06-10 13:42:13 +0800284 u32 i;
Bob Moore95befdb2007-02-02 19:48:20 +0300285
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300286 /* Update the local FADT table header length */
287
288 acpi_gbl_FADT.header.length = sizeof(struct acpi_table_fadt);
289
Bob Moorec87609f2008-11-12 15:23:20 +0800290 /*
291 * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary.
292 * Later code will always use the X 64-bit field. Also, check for an
293 * address mismatch between the 32-bit and 64-bit address fields
294 * (FIRMWARE_CTRL/X_FIRMWARE_CTRL, DSDT/X_DSDT) which would indicate
295 * the presence of two FACS or two DSDT tables.
296 */
Bob Moore95befdb2007-02-02 19:48:20 +0300297 if (!acpi_gbl_FADT.Xfacs) {
298 acpi_gbl_FADT.Xfacs = (u64) acpi_gbl_FADT.facs;
Bob Moorec87609f2008-11-12 15:23:20 +0800299 } else if (acpi_gbl_FADT.facs &&
300 (acpi_gbl_FADT.Xfacs != (u64) acpi_gbl_FADT.facs)) {
301 ACPI_WARNING((AE_INFO,
302 "32/64 FACS address mismatch in FADT - two FACS tables!"));
Bob Moore95befdb2007-02-02 19:48:20 +0300303 }
304
305 if (!acpi_gbl_FADT.Xdsdt) {
306 acpi_gbl_FADT.Xdsdt = (u64) acpi_gbl_FADT.dsdt;
Bob Moorec87609f2008-11-12 15:23:20 +0800307 } else if (acpi_gbl_FADT.dsdt &&
308 (acpi_gbl_FADT.Xdsdt != (u64) acpi_gbl_FADT.dsdt)) {
309 ACPI_WARNING((AE_INFO,
310 "32/64 DSDT address mismatch in FADT - two DSDT tables!"));
Bob Moore95befdb2007-02-02 19:48:20 +0300311 }
312
313 /*
Bob Moore55f8f3c2007-05-02 15:51:37 -0400314 * For ACPI 1.0 FADTs (revision 1 or 2), ensure that reserved fields which
315 * should be zero are indeed zero. This will workaround BIOSs that
316 * inadvertently place values in these fields.
317 *
318 * The ACPI 1.0 reserved fields that will be zeroed are the bytes located at
319 * offset 45, 55, 95, and the word located at offset 109, 110.
320 */
Yinghai Lu14a63ba2008-10-29 14:13:22 -0700321 if (acpi_gbl_FADT.header.revision < FADT2_REVISION_ID) {
Bob Moore55f8f3c2007-05-02 15:51:37 -0400322 acpi_gbl_FADT.preferred_profile = 0;
323 acpi_gbl_FADT.pstate_control = 0;
324 acpi_gbl_FADT.cst_control = 0;
325 acpi_gbl_FADT.boot_flags = 0;
326 }
327
328 /*
329 * Expand the ACPI 1.0 32-bit V1.0 addresses to the ACPI 2.0 64-bit "X"
330 * generic address structures as necessary.
Bob Moore95befdb2007-02-02 19:48:20 +0300331 */
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300332 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
Bob Moore95befdb2007-02-02 19:48:20 +0300333 target =
334 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300335 fadt_info_table[i].target);
Bob Moore95befdb2007-02-02 19:48:20 +0300336
337 /* Expand only if the X target is null */
338
339 if (!target->address) {
340 acpi_tb_init_generic_address(target,
341 *ACPI_ADD_PTR(u8,
342 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300343 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300344 [i].length),
345 (u64) * ACPI_ADD_PTR(u32,
346 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300347 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300348 [i].
349 source));
350 }
351 }
352
353 /*
354 * Calculate separate GAS structs for the PM1 Enable registers.
355 * These addresses do not appear (directly) in the FADT, so it is
356 * useful to calculate them once, here.
357 *
358 * The PM event blocks are split into two register blocks, first is the
Jan Beulichfcea94b2008-09-19 15:50:32 -0700359 * PM Status Register block, followed immediately by the PM Enable
360 * Register block. Each is of length (xpm1x_event_block.bit_width/2).
361 *
362 * On various systems the v2 fields (and particularly the bit widths)
363 * cannot be relied upon, though. Hence resort to using the v1 length
364 * here (and warn about the inconsistency).
Bob Moore95befdb2007-02-02 19:48:20 +0300365 */
Jan Beulichfcea94b2008-09-19 15:50:32 -0700366 if (acpi_gbl_FADT.xpm1a_event_block.bit_width
367 != acpi_gbl_FADT.pm1_event_length * 8)
368 printk(KERN_WARNING "FADT: "
369 "X_PM1a_EVT_BLK.bit_width (%u) does not match"
370 " PM1_EVT_LEN (%u)\n",
371 acpi_gbl_FADT.xpm1a_event_block.bit_width,
372 acpi_gbl_FADT.pm1_event_length);
Andi Kleenb1d77fa2008-07-18 01:42:20 +0200373 pm1_register_length = (u8) ACPI_DIV_2(acpi_gbl_FADT.pm1_event_length);
Bob Moore95befdb2007-02-02 19:48:20 +0300374
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300375 /* The PM1A register block is required */
Bob Moore95befdb2007-02-02 19:48:20 +0300376
377 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable,
378 pm1_register_length,
379 (acpi_gbl_FADT.xpm1a_event_block.address +
380 pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500381 /* Don't forget to copy space_id of the GAS */
Len Brownfd350942007-05-09 23:34:35 -0400382 acpi_gbl_xpm1a_enable.space_id =
383 acpi_gbl_FADT.xpm1a_event_block.space_id;
Bob Moore95befdb2007-02-02 19:48:20 +0300384
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300385 /* The PM1B register block is optional, ignore if not present */
Bob Moore95befdb2007-02-02 19:48:20 +0300386
387 if (acpi_gbl_FADT.xpm1b_event_block.address) {
Jan Beulichfcea94b2008-09-19 15:50:32 -0700388 if (acpi_gbl_FADT.xpm1b_event_block.bit_width
389 != acpi_gbl_FADT.pm1_event_length * 8)
390 printk(KERN_WARNING "FADT: "
391 "X_PM1b_EVT_BLK.bit_width (%u) does not match"
392 " PM1_EVT_LEN (%u)\n",
393 acpi_gbl_FADT.xpm1b_event_block.bit_width,
394 acpi_gbl_FADT.pm1_event_length);
Bob Moore95befdb2007-02-02 19:48:20 +0300395 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable,
396 pm1_register_length,
397 (acpi_gbl_FADT.xpm1b_event_block.
398 address + pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500399 /* Don't forget to copy space_id of the GAS */
Len Brownfd350942007-05-09 23:34:35 -0400400 acpi_gbl_xpm1b_enable.space_id =
Jan Beulichfcea94b2008-09-19 15:50:32 -0700401 acpi_gbl_FADT.xpm1b_event_block.space_id;
Andi Kleenb1d77fa2008-07-18 01:42:20 +0200402
Bob Moore95befdb2007-02-02 19:48:20 +0300403 }
Bob Moore95befdb2007-02-02 19:48:20 +0300404}
405
406/******************************************************************************
407 *
408 * FUNCTION: acpi_tb_validate_fadt
409 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300410 * PARAMETERS: Table - Pointer to the FADT to be validated
Bob Moore95befdb2007-02-02 19:48:20 +0300411 *
Bob Mooree56b6382007-02-02 19:48:20 +0300412 * RETURN: None
Bob Moore95befdb2007-02-02 19:48:20 +0300413 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300414 * DESCRIPTION: Validate various important fields within the FADT. If a problem
415 * is found, issue a message, but no status is returned.
416 * Used by both the table manager and the disassembler.
417 *
418 * Possible additional checks:
419 * (acpi_gbl_FADT.pm1_event_length >= 4)
420 * (acpi_gbl_FADT.pm1_control_length >= 2)
421 * (acpi_gbl_FADT.pm_timer_length >= 4)
422 * Gpe block lengths must be multiple of 2
Bob Moore95befdb2007-02-02 19:48:20 +0300423 *
424 ******************************************************************************/
425
Bob Moore71392842007-02-02 19:48:20 +0300426static void acpi_tb_validate_fadt(void)
Bob Moore95befdb2007-02-02 19:48:20 +0300427{
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300428 u32 *address32;
429 struct acpi_generic_address *address64;
430 u8 length;
Bob Moore67a119f2008-06-10 13:42:13 +0800431 u32 i;
Bob Moore95befdb2007-02-02 19:48:20 +0300432
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300433 /* Examine all of the 64-bit extended address fields (X fields) */
Bob Moore95befdb2007-02-02 19:48:20 +0300434
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300435 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
436
437 /* Generate pointers to the 32-bit and 64-bit addresses and get the length */
438
439 address64 =
Bob Moore71392842007-02-02 19:48:20 +0300440 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300441 fadt_info_table[i].target);
Bob Moore71392842007-02-02 19:48:20 +0300442 address32 =
443 ACPI_ADD_PTR(u32, &acpi_gbl_FADT,
444 fadt_info_table[i].source);
445 length =
446 *ACPI_ADD_PTR(u8, &acpi_gbl_FADT,
447 fadt_info_table[i].length);
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300448
449 if (fadt_info_table[i].type & ACPI_FADT_REQUIRED) {
450 /*
451 * Field is required (Pm1a_event, Pm1a_control, pm_timer).
452 * Both the address and length must be non-zero.
453 */
454 if (!address64->address || !length) {
455 ACPI_ERROR((AE_INFO,
456 "Required field \"%s\" has zero address and/or length: %8.8X%8.8X/%X",
457 fadt_info_table[i].name,
458 ACPI_FORMAT_UINT64(address64->
459 address),
460 length));
461 }
462 } else if (fadt_info_table[i].type & ACPI_FADT_SEPARATE_LENGTH) {
463 /*
464 * Field is optional (PM2Control, GPE0, GPE1) AND has its own
465 * length field. If present, both the address and length must be valid.
466 */
467 if ((address64->address && !length)
468 || (!address64->address && length)) {
469 ACPI_WARNING((AE_INFO,
470 "Optional field \"%s\" has zero address or length: %8.8X%8.8X/%X",
471 fadt_info_table[i].name,
472 ACPI_FORMAT_UINT64(address64->
473 address),
474 length));
475 }
476 }
477
478 /* If both 32- and 64-bit addresses are valid (non-zero), they must match */
479
480 if (address64->address && *address32 &&
481 (address64->address != (u64) * address32)) {
482 ACPI_ERROR((AE_INFO,
483 "32/64X address mismatch in \"%s\": [%8.8X] [%8.8X%8.8X], using 64X",
484 fadt_info_table[i].name, *address32,
485 ACPI_FORMAT_UINT64(address64->address)));
486 }
Bob Moore95befdb2007-02-02 19:48:20 +0300487 }
Bob Moore95befdb2007-02-02 19:48:20 +0300488}