blob: 1db833eb2417c5988890dc8ce4b62bed764e0d45 [file] [log] [blame]
Bob Moore95befdb2007-02-02 19:48:20 +03001/******************************************************************************
2 *
3 * Module Name: tbfadt - FADT table utilities
4 *
5 *****************************************************************************/
6
7/*
Bob Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, R. Byron Moore
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>
45#include <acpi/actables.h>
46
47#define _COMPONENT ACPI_TABLES
48ACPI_MODULE_NAME("tbfadt")
49
50/* Local prototypes */
51static void inline
Bob Mooreea5d8eb2007-02-02 19:48:20 +030052acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
Bob Moore95befdb2007-02-02 19:48:20 +030053 u8 bit_width, u64 address);
54
Bob Moore71392842007-02-02 19:48:20 +030055static void acpi_tb_convert_fadt(void);
56
57static void acpi_tb_validate_fadt(void);
58
Bob Mooreea5d8eb2007-02-02 19:48:20 +030059/* Table for conversion of FADT to common internal format and FADT validation */
Bob Moore95befdb2007-02-02 19:48:20 +030060
Bob Mooreea5d8eb2007-02-02 19:48:20 +030061typedef struct acpi_fadt_info {
62 char *name;
Bob Moore95befdb2007-02-02 19:48:20 +030063 u8 target;
64 u8 source;
65 u8 length;
Bob Mooreea5d8eb2007-02-02 19:48:20 +030066 u8 type;
Bob Moore95befdb2007-02-02 19:48:20 +030067
Bob Mooreea5d8eb2007-02-02 19:48:20 +030068} acpi_fadt_info;
Bob Moore95befdb2007-02-02 19:48:20 +030069
Bob Mooreea5d8eb2007-02-02 19:48:20 +030070#define ACPI_FADT_REQUIRED 1
71#define ACPI_FADT_SEPARATE_LENGTH 2
72
73static struct acpi_fadt_info fadt_info_table[] = {
74 {"Pm1aEventBlock", ACPI_FADT_OFFSET(xpm1a_event_block),
Bob Moore95befdb2007-02-02 19:48:20 +030075 ACPI_FADT_OFFSET(pm1a_event_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030076 ACPI_FADT_OFFSET(pm1_event_length), ACPI_FADT_REQUIRED},
77
78 {"Pm1bEventBlock", ACPI_FADT_OFFSET(xpm1b_event_block),
Bob Moore95befdb2007-02-02 19:48:20 +030079 ACPI_FADT_OFFSET(pm1b_event_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030080 ACPI_FADT_OFFSET(pm1_event_length), 0},
81
82 {"Pm1aControlBlock", ACPI_FADT_OFFSET(xpm1a_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030083 ACPI_FADT_OFFSET(pm1a_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030084 ACPI_FADT_OFFSET(pm1_control_length), ACPI_FADT_REQUIRED},
85
86 {"Pm1bControlBlock", ACPI_FADT_OFFSET(xpm1b_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030087 ACPI_FADT_OFFSET(pm1b_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030088 ACPI_FADT_OFFSET(pm1_control_length), 0},
89
90 {"Pm2ControlBlock", ACPI_FADT_OFFSET(xpm2_control_block),
Bob Moore95befdb2007-02-02 19:48:20 +030091 ACPI_FADT_OFFSET(pm2_control_block),
Bob Mooreea5d8eb2007-02-02 19:48:20 +030092 ACPI_FADT_OFFSET(pm2_control_length), ACPI_FADT_SEPARATE_LENGTH},
93
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},
97
98 {"Gpe0Block", ACPI_FADT_OFFSET(xgpe0_block),
99 ACPI_FADT_OFFSET(gpe0_block),
100 ACPI_FADT_OFFSET(gpe0_block_length), ACPI_FADT_SEPARATE_LENGTH},
101
102 {"Gpe1Block", ACPI_FADT_OFFSET(xgpe1_block),
103 ACPI_FADT_OFFSET(gpe1_block),
104 ACPI_FADT_OFFSET(gpe1_block_length), ACPI_FADT_SEPARATE_LENGTH}
Bob Moore95befdb2007-02-02 19:48:20 +0300105};
106
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300107#define ACPI_FADT_INFO_ENTRIES (sizeof (fadt_info_table) / sizeof (struct acpi_fadt_info))
Bob Moore95befdb2007-02-02 19:48:20 +0300108
109/*******************************************************************************
110 *
111 * FUNCTION: acpi_tb_init_generic_address
112 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300113 * PARAMETERS: generic_address - GAS struct to be initialized
Bob Moore95befdb2007-02-02 19:48:20 +0300114 * bit_width - Width of this register
115 * Address - Address of the register
116 *
117 * RETURN: None
118 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300119 * DESCRIPTION: Initialize a Generic Address Structure (GAS)
120 * See the ACPI specification for a full description and
121 * definition of this structure.
Bob Moore95befdb2007-02-02 19:48:20 +0300122 *
123 ******************************************************************************/
124
125static void inline
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300126acpi_tb_init_generic_address(struct acpi_generic_address *generic_address,
Bob Moore95befdb2007-02-02 19:48:20 +0300127 u8 bit_width, u64 address)
128{
129
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300130 /*
131 * The 64-bit Address field is non-aligned in the byte packed
132 * GAS struct.
133 */
134 ACPI_MOVE_64_TO_64(&generic_address->address, &address);
135
136 /* All other fields are byte-wide */
137
138 generic_address->space_id = ACPI_ADR_SPACE_SYSTEM_IO;
139 generic_address->bit_width = bit_width;
140 generic_address->bit_offset = 0;
141 generic_address->access_width = 0;
Bob Moore95befdb2007-02-02 19:48:20 +0300142}
143
144/*******************************************************************************
145 *
146 * FUNCTION: acpi_tb_parse_fadt
147 *
148 * PARAMETERS: table_index - Index for the FADT
149 * Flags - Flags
150 *
151 * RETURN: None
152 *
153 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
154 * (FADT contains the addresses of the DSDT and FACS)
155 *
156 ******************************************************************************/
157
158void acpi_tb_parse_fadt(acpi_native_uint table_index, u8 flags)
159{
160 u32 length;
161 struct acpi_table_header *table;
162
163 /*
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300164 * The FADT has multiple versions with different lengths,
165 * and it contains pointers to both the DSDT and FACS tables.
Bob Moore95befdb2007-02-02 19:48:20 +0300166 *
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.
169 */
170 length = acpi_gbl_root_table_list.tables[table_index].length;
171
172 table =
173 acpi_os_map_memory(acpi_gbl_root_table_list.tables[table_index].
174 address, length);
175 if (!table) {
176 return;
177 }
178
179 /*
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.
182 */
183 (void)acpi_tb_verify_checksum(table, length);
184
Bob Moore71392842007-02-02 19:48:20 +0300185 /* Obtain a local copy of the FADT in common ACPI 2.0+ format */
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300186
Bob Moore71392842007-02-02 19:48:20 +0300187 acpi_tb_create_local_fadt(table, length);
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300188
189 /* All done with the real FADT, unmap it */
190
Bob Moore95befdb2007-02-02 19:48:20 +0300191 acpi_os_unmap_memory(table, length);
192
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300193 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
Bob Moore95befdb2007-02-02 19:48:20 +0300194
195 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xdsdt,
196 flags, ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT);
197
198 acpi_tb_install_table((acpi_physical_address) acpi_gbl_FADT.Xfacs,
199 flags, ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS);
Bob Moore95befdb2007-02-02 19:48:20 +0300200}
201
202/*******************************************************************************
203 *
Bob Moore71392842007-02-02 19:48:20 +0300204 * FUNCTION: acpi_tb_create_local_fadt
205 *
206 * PARAMETERS: Table - Pointer to BIOS FADT
207 * Length - Length of the table
208 *
209 * RETURN: None
210 *
211 * DESCRIPTION: Get a local copy of the FADT and convert it to a common format.
212 * Performs validation on some important FADT fields.
213 *
214 ******************************************************************************/
215
216void acpi_tb_create_local_fadt(struct acpi_table_header *table, u32 length)
217{
218
219 /*
220 * Check if the FADT is larger than what we know about (ACPI 2.0 version).
221 * Truncate the table, but make some noise.
222 */
223 if (length > sizeof(struct acpi_table_fadt)) {
224 ACPI_WARNING((AE_INFO,
Alexey Starikovskiyb0b7eaa2007-01-25 22:39:44 -0500225 "FADT (revision %u) is longer than ACPI 2.0 version, truncating length 0x%X to 0x%zX",
226 table->revision, (unsigned)length,
Bob Moore71392842007-02-02 19:48:20 +0300227 sizeof(struct acpi_table_fadt)));
228 }
229
230 /* Copy the entire FADT locally. Zero first for tb_convert_fadt */
231
232 ACPI_MEMSET(&acpi_gbl_FADT, 0, sizeof(struct acpi_table_fadt));
233
234 ACPI_MEMCPY(&acpi_gbl_FADT, table,
235 ACPI_MIN(length, sizeof(struct acpi_table_fadt)));
236
237 /*
238 * 1) Convert the local copy of the FADT to the common internal format
239 * 2) Validate some of the important values within the FADT
240 */
241 acpi_tb_convert_fadt();
242 acpi_tb_validate_fadt();
243}
244
245/*******************************************************************************
246 *
Bob Moore95befdb2007-02-02 19:48:20 +0300247 * FUNCTION: acpi_tb_convert_fadt
248 *
249 * PARAMETERS: None, uses acpi_gbl_FADT
250 *
251 * RETURN: None
252 *
253 * DESCRIPTION: Converts all versions of the FADT to a common internal format.
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300254 * -> Expand all 32-bit addresses to 64-bit.
Bob Moore95befdb2007-02-02 19:48:20 +0300255 *
Bob Mooree56b6382007-02-02 19:48:20 +0300256 * NOTE: acpi_gbl_FADT must be of size (struct acpi_table_fadt),
257 * and must contain a copy of the actual FADT.
Bob Moore95befdb2007-02-02 19:48:20 +0300258 *
259 * ACPICA will use the "X" fields of the FADT for all addresses.
260 *
261 * "X" fields are optional extensions to the original V1.0 fields. Even if
262 * they are present in the structure, they can be optionally not used by
263 * setting them to zero. Therefore, we must selectively expand V1.0 fields
264 * if the corresponding X field is zero.
265 *
266 * For ACPI 1.0 FADTs, all address fields are expanded to the corresponding
267 * "X" fields.
268 *
269 * For ACPI 2.0 FADTs, any "X" fields that are NULL are filled in by
270 * expanding the corresponding ACPI 1.0 field.
271 *
272 ******************************************************************************/
273
Bob Moore71392842007-02-02 19:48:20 +0300274static void acpi_tb_convert_fadt(void)
Bob Moore95befdb2007-02-02 19:48:20 +0300275{
276 u8 pm1_register_length;
277 struct acpi_generic_address *target;
278 acpi_native_uint i;
279
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300280 /* Update the local FADT table header length */
281
282 acpi_gbl_FADT.header.length = sizeof(struct acpi_table_fadt);
283
284 /* Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary */
Bob Moore95befdb2007-02-02 19:48:20 +0300285
286 if (!acpi_gbl_FADT.Xfacs) {
287 acpi_gbl_FADT.Xfacs = (u64) acpi_gbl_FADT.facs;
288 }
289
290 if (!acpi_gbl_FADT.Xdsdt) {
291 acpi_gbl_FADT.Xdsdt = (u64) acpi_gbl_FADT.dsdt;
292 }
293
294 /*
295 * Expand the 32-bit V1.0 addresses to the 64-bit "X" generic address
296 * structures as necessary.
297 */
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300298 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
Bob Moore95befdb2007-02-02 19:48:20 +0300299 target =
300 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300301 fadt_info_table[i].target);
Bob Moore95befdb2007-02-02 19:48:20 +0300302
303 /* Expand only if the X target is null */
304
305 if (!target->address) {
306 acpi_tb_init_generic_address(target,
307 *ACPI_ADD_PTR(u8,
308 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300309 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300310 [i].length),
311 (u64) * ACPI_ADD_PTR(u32,
312 &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300313 fadt_info_table
Bob Moore95befdb2007-02-02 19:48:20 +0300314 [i].
315 source));
316 }
317 }
318
319 /*
320 * Calculate separate GAS structs for the PM1 Enable registers.
321 * These addresses do not appear (directly) in the FADT, so it is
322 * useful to calculate them once, here.
323 *
324 * The PM event blocks are split into two register blocks, first is the
325 * PM Status Register block, followed immediately by the PM Enable Register
326 * block. Each is of length (pm1_event_length/2)
327 */
328 pm1_register_length = (u8) ACPI_DIV_2(acpi_gbl_FADT.pm1_event_length);
329
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300330 /* The PM1A register block is required */
Bob Moore95befdb2007-02-02 19:48:20 +0300331
332 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable,
333 pm1_register_length,
334 (acpi_gbl_FADT.xpm1a_event_block.address +
335 pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500336 /* Don't forget to copy space_id of the GAS */
337 acpi_gbl_xpm1a_enable.space_id = acpi_gbl_FADT.xpm1a_event_block.space_id;
Bob Moore95befdb2007-02-02 19:48:20 +0300338
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300339 /* The PM1B register block is optional, ignore if not present */
Bob Moore95befdb2007-02-02 19:48:20 +0300340
341 if (acpi_gbl_FADT.xpm1b_event_block.address) {
342 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable,
343 pm1_register_length,
344 (acpi_gbl_FADT.xpm1b_event_block.
345 address + pm1_register_length));
Alexey Starikovskiy45eded82007-02-02 21:48:40 -0500346 /* Don't forget to copy space_id of the GAS */
347 acpi_gbl_xpm1b_enable.space_id = acpi_gbl_FADT.xpm1a_event_block.space_id;
348
Bob Moore95befdb2007-02-02 19:48:20 +0300349 }
Bob Moore79fff272007-04-28 20:53:50 -0400350
351 /*
352 * For ACPI 1.0 FADTs, ensure that reserved fields (which should be zero)
353 * are indeed zero. This will workaround BIOSs that inadvertently placed
354 * values in these fields.
355 */
356 if (acpi_gbl_FADT.header.revision < 3) {
357 acpi_gbl_FADT.preferred_profile = 0;
358 acpi_gbl_FADT.pstate_control = 0;
359 acpi_gbl_FADT.cst_control = 0;
360 acpi_gbl_FADT.boot_flags = 0;
361 }
Bob Moore95befdb2007-02-02 19:48:20 +0300362}
363
364/******************************************************************************
365 *
366 * FUNCTION: acpi_tb_validate_fadt
367 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300368 * PARAMETERS: Table - Pointer to the FADT to be validated
Bob Moore95befdb2007-02-02 19:48:20 +0300369 *
Bob Mooree56b6382007-02-02 19:48:20 +0300370 * RETURN: None
Bob Moore95befdb2007-02-02 19:48:20 +0300371 *
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300372 * DESCRIPTION: Validate various important fields within the FADT. If a problem
373 * is found, issue a message, but no status is returned.
374 * Used by both the table manager and the disassembler.
375 *
376 * Possible additional checks:
377 * (acpi_gbl_FADT.pm1_event_length >= 4)
378 * (acpi_gbl_FADT.pm1_control_length >= 2)
379 * (acpi_gbl_FADT.pm_timer_length >= 4)
380 * Gpe block lengths must be multiple of 2
Bob Moore95befdb2007-02-02 19:48:20 +0300381 *
382 ******************************************************************************/
383
Bob Moore71392842007-02-02 19:48:20 +0300384static void acpi_tb_validate_fadt(void)
Bob Moore95befdb2007-02-02 19:48:20 +0300385{
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300386 u32 *address32;
387 struct acpi_generic_address *address64;
388 u8 length;
389 acpi_native_uint i;
Bob Moore95befdb2007-02-02 19:48:20 +0300390
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300391 /* Examine all of the 64-bit extended address fields (X fields) */
Bob Moore95befdb2007-02-02 19:48:20 +0300392
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300393 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++) {
394
395 /* Generate pointers to the 32-bit and 64-bit addresses and get the length */
396
397 address64 =
Bob Moore71392842007-02-02 19:48:20 +0300398 ACPI_ADD_PTR(struct acpi_generic_address, &acpi_gbl_FADT,
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300399 fadt_info_table[i].target);
Bob Moore71392842007-02-02 19:48:20 +0300400 address32 =
401 ACPI_ADD_PTR(u32, &acpi_gbl_FADT,
402 fadt_info_table[i].source);
403 length =
404 *ACPI_ADD_PTR(u8, &acpi_gbl_FADT,
405 fadt_info_table[i].length);
Bob Mooreea5d8eb2007-02-02 19:48:20 +0300406
407 if (fadt_info_table[i].type & ACPI_FADT_REQUIRED) {
408 /*
409 * Field is required (Pm1a_event, Pm1a_control, pm_timer).
410 * Both the address and length must be non-zero.
411 */
412 if (!address64->address || !length) {
413 ACPI_ERROR((AE_INFO,
414 "Required field \"%s\" has zero address and/or length: %8.8X%8.8X/%X",
415 fadt_info_table[i].name,
416 ACPI_FORMAT_UINT64(address64->
417 address),
418 length));
419 }
420 } else if (fadt_info_table[i].type & ACPI_FADT_SEPARATE_LENGTH) {
421 /*
422 * Field is optional (PM2Control, GPE0, GPE1) AND has its own
423 * length field. If present, both the address and length must be valid.
424 */
425 if ((address64->address && !length)
426 || (!address64->address && length)) {
427 ACPI_WARNING((AE_INFO,
428 "Optional field \"%s\" has zero address or length: %8.8X%8.8X/%X",
429 fadt_info_table[i].name,
430 ACPI_FORMAT_UINT64(address64->
431 address),
432 length));
433 }
434 }
435
436 /* If both 32- and 64-bit addresses are valid (non-zero), they must match */
437
438 if (address64->address && *address32 &&
439 (address64->address != (u64) * address32)) {
440 ACPI_ERROR((AE_INFO,
441 "32/64X address mismatch in \"%s\": [%8.8X] [%8.8X%8.8X], using 64X",
442 fadt_info_table[i].name, *address32,
443 ACPI_FORMAT_UINT64(address64->address)));
444 }
Bob Moore95befdb2007-02-02 19:48:20 +0300445 }
Bob Moore95befdb2007-02-02 19:48:20 +0300446}