blob: b4ce2074c91f0ad6d17ecb14c9c7d03cc61943cf [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,
Bob Moore06f55412008-12-31 03:06:06 +080054 u8 space_id, 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,
Bob Moore06f55412008-12-31 03:06:06 +0800128 u8 space_id, 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
Bob Moore06f55412008-12-31 03:06:06 +0800139 generic_address->space_id = space_id;
140 generic_address->bit_width = (u8)ACPI_MUL_8(byte_width);
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300141 generic_address->bit_offset = 0;
Bob Moore06f55412008-12-31 03:06:06 +0800142 generic_address->access_width = 0; /* Access width ANY */
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,
Bob Moore06f55412008-12-31 03:06:06 +0800229 "FADT (revision %u) is longer than ACPI 2.0 version, "
230 "truncating length 0x%X to 0x%zX",
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -0500231 table->revision, (unsigned)length,
Bob Moore71392842007-02-02 19:48:20 +0300232 sizeof(struct acpi_table_fadt)));
233 }
234
Bob Moore55f8f3c2007-05-02 15:51:37 -0400235 /* Clear the entire local FADT */
Bob Moore71392842007-02-02 19:48:20 +0300236
237 ACPI_MEMSET(&acpi_gbl_FADT, 0, sizeof(struct acpi_table_fadt));
238
Bob Moore55f8f3c2007-05-02 15:51:37 -0400239 /* Copy the original FADT, up to sizeof (struct acpi_table_fadt) */
240
Bob Moore71392842007-02-02 19:48:20 +0300241 ACPI_MEMCPY(&acpi_gbl_FADT, table,
242 ACPI_MIN(length, sizeof(struct acpi_table_fadt)));
243
244 /*
245 * 1) Convert the local copy of the FADT to the common internal format
246 * 2) Validate some of the important values within the FADT
247 */
248 acpi_tb_convert_fadt();
Bob Moore71392842007-02-02 19:48:20 +0300249}
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) {
Bob Moore06f55412008-12-31 03:06:06 +0800340
341 /* The space_id is always I/O for the legacy address fields */
342
Bob Moore95befdb2007-02-02 19:48:20 +0300343 acpi_tb_init_generic_address(target,
Bob Moore06f55412008-12-31 03:06:06 +0800344 ACPI_ADR_SPACE_SYSTEM_IO,
Bob Moore95befdb2007-02-02 19:48:20 +0300345 *ACPI_ADD_PTR(u8,
346 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300347 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300348 [i].length),
349 (u64) * ACPI_ADD_PTR(u32,
350 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300351 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300352 [i].
353 source));
354 }
355 }
356
Bob Moore06f55412008-12-31 03:06:06 +0800357 /* Validate FADT values now, before we make any changes */
358
359 acpi_tb_validate_fadt();
360
361 /*
362 * Get the length of the individual PM1 registers. Each register is
363 * defined to be the event block length / 2.
364 */
365 pm1_register_length = (u8)ACPI_DIV_2(acpi_gbl_FADT.pm1_event_length);
366
367 /*
368 * Adjust the lengths of the PM1 Event Blocks so that they can be used to
369 * access the PM1 status register(s).
370 */
371 acpi_gbl_FADT.xpm1a_event_block.bit_width =
372 (u8)ACPI_MUL_8(pm1_register_length);
373 acpi_gbl_FADT.xpm1b_event_block.bit_width =
374 (u8)ACPI_MUL_8(pm1_register_length);
375
Bob Moore95befdb2007-02-02 19:48:20 +0300376 /*
377 * Calculate separate GAS structs for the PM1 Enable registers.
378 * These addresses do not appear (directly) in the FADT, so it is
379 * useful to calculate them once, here.
380 *
381 * The PM event blocks are split into two register blocks, first is the
Jan Beulichfcea94b2008-09-19 15:50:32 -0700382 * PM Status Register block, followed immediately by the PM Enable
383 * Register block. Each is of length (xpm1x_event_block.bit_width/2).
384 *
385 * On various systems the v2 fields (and particularly the bit widths)
386 * cannot be relied upon, though. Hence resort to using the v1 length
387 * here (and warn about the inconsistency).
Bob Moore95befdb2007-02-02 19:48:20 +0300388 */
Jan Beulichfcea94b2008-09-19 15:50:32 -0700389 if (acpi_gbl_FADT.xpm1a_event_block.bit_width
390 != acpi_gbl_FADT.pm1_event_length * 8)
391 printk(KERN_WARNING "FADT: "
392 "X_PM1a_EVT_BLK.bit_width (%u) does not match"
393 " PM1_EVT_LEN (%u)\n",
394 acpi_gbl_FADT.xpm1a_event_block.bit_width,
395 acpi_gbl_FADT.pm1_event_length);
Bob Moore95befdb2007-02-02 19:48:20 +0300396
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300397 /* The PM1A register block is required */
Bob Moore95befdb2007-02-02 19:48:20 +0300398
399 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable,
Bob Moore06f55412008-12-31 03:06:06 +0800400 acpi_gbl_FADT.xpm1a_event_block.space_id,
Bob Moore95befdb2007-02-02 19:48:20 +0300401 pm1_register_length,
402 (acpi_gbl_FADT.xpm1a_event_block.address +
403 pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500404 /* Don't forget to copy space_id of the GAS */
Len Brownfd350942007-05-09 23:34:35 -0400405 acpi_gbl_xpm1a_enable.space_id =
406 acpi_gbl_FADT.xpm1a_event_block.space_id;
Bob Moore95befdb2007-02-02 19:48:20 +0300407
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300408 /* The PM1B register block is optional, ignore if not present */
Bob Moore95befdb2007-02-02 19:48:20 +0300409
410 if (acpi_gbl_FADT.xpm1b_event_block.address) {
Jan Beulichfcea94b2008-09-19 15:50:32 -0700411 if (acpi_gbl_FADT.xpm1b_event_block.bit_width
412 != acpi_gbl_FADT.pm1_event_length * 8)
413 printk(KERN_WARNING "FADT: "
414 "X_PM1b_EVT_BLK.bit_width (%u) does not match"
415 " PM1_EVT_LEN (%u)\n",
416 acpi_gbl_FADT.xpm1b_event_block.bit_width,
417 acpi_gbl_FADT.pm1_event_length);
Bob Moore95befdb2007-02-02 19:48:20 +0300418 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable,
Bob Moore06f55412008-12-31 03:06:06 +0800419 acpi_gbl_FADT.xpm1b_event_block.space_id,
Bob Moore95befdb2007-02-02 19:48:20 +0300420 pm1_register_length,
421 (acpi_gbl_FADT.xpm1b_event_block.
422 address + pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500423 /* Don't forget to copy space_id of the GAS */
Len Brownfd350942007-05-09 23:34:35 -0400424 acpi_gbl_xpm1b_enable.space_id =
Jan Beulichfcea94b2008-09-19 15:50:32 -0700425 acpi_gbl_FADT.xpm1b_event_block.space_id;
Andi Kleenb1d77fa2008-07-18 01:42:20 +0200426
Bob Moore95befdb2007-02-02 19:48:20 +0300427 }
Bob Moore06f55412008-12-31 03:06:06 +0800428
429 if (acpi_gbl_use_default_register_widths) {
430 /*
431 * Optionally, use the default sizes for the ACPI registers.
432 * Some FADTs do not have the correct length(s).
433 *
434 * Note: Xpm1a_event_block and Xpm1b_event_block are used to access the PM1
435 * status registers. The PM1 enable registers are created above.
436 */
437 acpi_gbl_xpm1a_enable.bit_width = ACPI_PM1_REGISTER_WIDTH;
438 acpi_gbl_xpm1b_enable.bit_width = ACPI_PM1_REGISTER_WIDTH;
439
440 acpi_gbl_FADT.xpm1a_event_block.bit_width =
441 ACPI_PM1_REGISTER_WIDTH;
442 acpi_gbl_FADT.xpm1b_event_block.bit_width =
443 ACPI_PM1_REGISTER_WIDTH;
444 acpi_gbl_FADT.xpm1a_control_block.bit_width =
445 ACPI_PM1_REGISTER_WIDTH;
446 acpi_gbl_FADT.xpm1b_control_block.bit_width =
447 ACPI_PM1_REGISTER_WIDTH;
448 acpi_gbl_FADT.xpm2_control_block.bit_width =
449 ACPI_PM2_REGISTER_WIDTH;
450 acpi_gbl_FADT.xpm_timer_block.bit_width = ACPI_PM_TIMER_WIDTH;
451 }
Bob Moore95befdb2007-02-02 19:48:20 +0300452}
453
454/******************************************************************************
455 *
456 * FUNCTION: acpi_tb_validate_fadt
457 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300458 * PARAMETERS: Table - Pointer to the FADT to be validated
Bob Moore95befdb2007-02-02 19:48:20 +0300459 *
Bob Mooree56b6382007-02-02 19:48:20 +0300460 * RETURN: None
Bob Moore95befdb2007-02-02 19:48:20 +0300461 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300462 * DESCRIPTION: Validate various important fields within the FADT. If a problem
463 * is found, issue a message, but no status is returned.
464 * Used by both the table manager and the disassembler.
465 *
466 * Possible additional checks:
467 * (acpi_gbl_FADT.pm1_event_length >= 4)
468 * (acpi_gbl_FADT.pm1_control_length >= 2)
469 * (acpi_gbl_FADT.pm_timer_length >= 4)
470 * Gpe block lengths must be multiple of 2
Bob Moore95befdb2007-02-02 19:48:20 +0300471 *
472 ******************************************************************************/
473
Bob Moore71392842007-02-02 19:48:20 +0300474static void acpi_tb_validate_fadt(void)
Bob Moore95befdb2007-02-02 19:48:20 +0300475{
Bob Moore06f55412008-12-31 03:06:06 +0800476 char *name;
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300477 u32 *address32;
478 struct acpi_generic_address *address64;
479 u8 length;
Bob Moore67a119f2008-06-10 13:42:13 +0800480 u32 i;
Bob Moore95befdb2007-02-02 19:48:20 +0300481
Bob Moore06f55412008-12-31 03:06:06 +0800482 /*
483 * Check for FACS and DSDT address mismatches. An address mismatch between
484 * the 32-bit and 64-bit address fields (FIRMWARE_CTRL/X_FIRMWARE_CTRL and
485 * DSDT/X_DSDT) would indicate the presence of two FACS or two DSDT tables.
486 */
487 if (acpi_gbl_FADT.facs &&
488 (acpi_gbl_FADT.Xfacs != (u64) acpi_gbl_FADT.facs)) {
489 ACPI_WARNING((AE_INFO,
490 "32/64 FACS address mismatch in FADT - "
491 "two FACS tables! %8.8X/%8.8X%8.8X",
492 acpi_gbl_FADT.facs,
493 ACPI_FORMAT_UINT64(acpi_gbl_FADT.Xfacs)));
494 }
495
496 if (acpi_gbl_FADT.dsdt &&
497 (acpi_gbl_FADT.Xdsdt != (u64) acpi_gbl_FADT.dsdt)) {
498 ACPI_WARNING((AE_INFO,
499 "32/64 DSDT address mismatch in FADT - "
500 "two DSDT tables! %8.8X/%8.8X%8.8X",
501 acpi_gbl_FADT.dsdt,
502 ACPI_FORMAT_UINT64(acpi_gbl_FADT.Xdsdt)));
503 }
504
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300505 /* Examine all of the 64-bit extended address fields (X fields) */
Bob Moore95befdb2007-02-02 19:48:20 +0300506
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300507 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
Bob Moore06f55412008-12-31 03:06:06 +0800508 /*
509 * Generate pointers to the 32-bit and 64-bit addresses, get the
510 * register length (width), and the register name
511 */
512 address64 = ACPI_ADD_PTR(struct acpi_generic_address,
513 &acpi_gbl_FADT,
514 fadt_info_table[i].target);
Bob Moore71392842007-02-02 19:48:20 +0300515 address32 =
516 ACPI_ADD_PTR(u32, &acpi_gbl_FADT,
517 fadt_info_table[i].source);
518 length =
519 *ACPI_ADD_PTR(u8, &acpi_gbl_FADT,
520 fadt_info_table[i].length);
Bob Moore06f55412008-12-31 03:06:06 +0800521 name = fadt_info_table[i].name;
522
523 /*
524 * For each extended field, check for length mismatch between the
525 * legacy length field and the corresonding 64-bit X length field.
526 */
527 if (address64 && (address64->bit_width != ACPI_MUL_8(length))) {
528 ACPI_WARNING((AE_INFO,
529 "32/64X bit length mismatch in %s: %d/%d",
530 name, ACPI_MUL_8(length),
531 address64->bit_width));
532 }
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300533
534 if (fadt_info_table[i].type & ACPI_FADT_REQUIRED) {
535 /*
536 * Field is required (Pm1a_event, Pm1a_control, pm_timer).
537 * Both the address and length must be non-zero.
538 */
539 if (!address64->address || !length) {
540 ACPI_ERROR((AE_INFO,
Bob Moore06f55412008-12-31 03:06:06 +0800541 "Required field %s has zero address and/or length: %8.8X%8.8X/%X",
542 name,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300543 ACPI_FORMAT_UINT64(address64->
544 address),
545 length));
546 }
547 } else if (fadt_info_table[i].type & ACPI_FADT_SEPARATE_LENGTH) {
548 /*
549 * Field is optional (PM2Control, GPE0, GPE1) AND has its own
550 * length field. If present, both the address and length must be valid.
551 */
552 if ((address64->address && !length)
553 || (!address64->address && length)) {
554 ACPI_WARNING((AE_INFO,
Bob Moore06f55412008-12-31 03:06:06 +0800555 "Optional field %s has zero address or length: %8.8X%8.8X/%X",
556 name,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300557 ACPI_FORMAT_UINT64(address64->
558 address),
559 length));
560 }
561 }
562
563 /* If both 32- and 64-bit addresses are valid (non-zero), they must match */
564
565 if (address64->address && *address32 &&
566 (address64->address != (u64) * address32)) {
567 ACPI_ERROR((AE_INFO,
Bob Moore06f55412008-12-31 03:06:06 +0800568 "32/64X address mismatch in %s: [%8.8X] [%8.8X%8.8X], using 64X",
569 name, *address32,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300570 ACPI_FORMAT_UINT64(address64->address)));
571 }
Bob Moore95befdb2007-02-02 19:48:20 +0300572 }
Bob Moore95befdb2007-02-02 19:48:20 +0300573}