[ACPI]
[reactos.git] / reactos / drivers / bus / acpi / acpica / tables / tbfadt.c
1 /******************************************************************************
2 *
3 * Module Name: tbfadt - FADT table utilities
4 *
5 *****************************************************************************/
6
7 /******************************************************************************
8 *
9 * 1. Copyright Notice
10 *
11 * Some or all of this work - Copyright (c) 1999 - 2014, Intel Corp.
12 * All rights reserved.
13 *
14 * 2. License
15 *
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
19 * property rights.
20 *
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
27 *
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
36 *
37 * The above copyright and patent license is granted only if the following
38 * conditions are met:
39 *
40 * 3. Conditions
41 *
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
53 *
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
64 * make.
65 *
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
70 * distribution.
71 *
72 * 3.4. Intel retains all right, title, and interest in and to the Original
73 * Intel Code.
74 *
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
79 *
80 * 4. Disclaimer and Export Compliance
81 *
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
88 * PARTICULAR PURPOSE.
89 *
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
97 * LIMITED REMEDY.
98 *
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
113 *
114 *****************************************************************************/
115
116 #define __TBFADT_C__
117
118 #include "acpi.h"
119 #include "accommon.h"
120 #include "actables.h"
121
122 #define _COMPONENT ACPI_TABLES
123 ACPI_MODULE_NAME ("tbfadt")
124
125 /* Local prototypes */
126
127 static void
128 AcpiTbInitGenericAddress (
129 ACPI_GENERIC_ADDRESS *GenericAddress,
130 UINT8 SpaceId,
131 UINT8 ByteWidth,
132 UINT64 Address,
133 char *RegisterName);
134
135 static void
136 AcpiTbConvertFadt (
137 void);
138
139 static void
140 AcpiTbSetupFadtRegisters (
141 void);
142
143 static UINT64
144 AcpiTbSelectAddress (
145 char *RegisterName,
146 UINT32 Address32,
147 UINT64 Address64);
148
149
150 /* Table for conversion of FADT to common internal format and FADT validation */
151
152 typedef struct acpi_fadt_info
153 {
154 char *Name;
155 UINT16 Address64;
156 UINT16 Address32;
157 UINT16 Length;
158 UINT8 DefaultLength;
159 UINT8 Type;
160
161 } ACPI_FADT_INFO;
162
163 #define ACPI_FADT_OPTIONAL 0
164 #define ACPI_FADT_REQUIRED 1
165 #define ACPI_FADT_SEPARATE_LENGTH 2
166
167 static ACPI_FADT_INFO FadtInfoTable[] =
168 {
169 {"Pm1aEventBlock",
170 ACPI_FADT_OFFSET (XPm1aEventBlock),
171 ACPI_FADT_OFFSET (Pm1aEventBlock),
172 ACPI_FADT_OFFSET (Pm1EventLength),
173 ACPI_PM1_REGISTER_WIDTH * 2, /* Enable + Status register */
174 ACPI_FADT_REQUIRED},
175
176 {"Pm1bEventBlock",
177 ACPI_FADT_OFFSET (XPm1bEventBlock),
178 ACPI_FADT_OFFSET (Pm1bEventBlock),
179 ACPI_FADT_OFFSET (Pm1EventLength),
180 ACPI_PM1_REGISTER_WIDTH * 2, /* Enable + Status register */
181 ACPI_FADT_OPTIONAL},
182
183 {"Pm1aControlBlock",
184 ACPI_FADT_OFFSET (XPm1aControlBlock),
185 ACPI_FADT_OFFSET (Pm1aControlBlock),
186 ACPI_FADT_OFFSET (Pm1ControlLength),
187 ACPI_PM1_REGISTER_WIDTH,
188 ACPI_FADT_REQUIRED},
189
190 {"Pm1bControlBlock",
191 ACPI_FADT_OFFSET (XPm1bControlBlock),
192 ACPI_FADT_OFFSET (Pm1bControlBlock),
193 ACPI_FADT_OFFSET (Pm1ControlLength),
194 ACPI_PM1_REGISTER_WIDTH,
195 ACPI_FADT_OPTIONAL},
196
197 {"Pm2ControlBlock",
198 ACPI_FADT_OFFSET (XPm2ControlBlock),
199 ACPI_FADT_OFFSET (Pm2ControlBlock),
200 ACPI_FADT_OFFSET (Pm2ControlLength),
201 ACPI_PM2_REGISTER_WIDTH,
202 ACPI_FADT_SEPARATE_LENGTH},
203
204 {"PmTimerBlock",
205 ACPI_FADT_OFFSET (XPmTimerBlock),
206 ACPI_FADT_OFFSET (PmTimerBlock),
207 ACPI_FADT_OFFSET (PmTimerLength),
208 ACPI_PM_TIMER_WIDTH,
209 ACPI_FADT_SEPARATE_LENGTH}, /* ACPI 5.0A: Timer is optional */
210
211 {"Gpe0Block",
212 ACPI_FADT_OFFSET (XGpe0Block),
213 ACPI_FADT_OFFSET (Gpe0Block),
214 ACPI_FADT_OFFSET (Gpe0BlockLength),
215 0,
216 ACPI_FADT_SEPARATE_LENGTH},
217
218 {"Gpe1Block",
219 ACPI_FADT_OFFSET (XGpe1Block),
220 ACPI_FADT_OFFSET (Gpe1Block),
221 ACPI_FADT_OFFSET (Gpe1BlockLength),
222 0,
223 ACPI_FADT_SEPARATE_LENGTH}
224 };
225
226 #define ACPI_FADT_INFO_ENTRIES \
227 (sizeof (FadtInfoTable) / sizeof (ACPI_FADT_INFO))
228
229
230 /* Table used to split Event Blocks into separate status/enable registers */
231
232 typedef struct acpi_fadt_pm_info
233 {
234 ACPI_GENERIC_ADDRESS *Target;
235 UINT16 Source;
236 UINT8 RegisterNum;
237
238 } ACPI_FADT_PM_INFO;
239
240 static ACPI_FADT_PM_INFO FadtPmInfoTable[] =
241 {
242 {&AcpiGbl_XPm1aStatus,
243 ACPI_FADT_OFFSET (XPm1aEventBlock),
244 0},
245
246 {&AcpiGbl_XPm1aEnable,
247 ACPI_FADT_OFFSET (XPm1aEventBlock),
248 1},
249
250 {&AcpiGbl_XPm1bStatus,
251 ACPI_FADT_OFFSET (XPm1bEventBlock),
252 0},
253
254 {&AcpiGbl_XPm1bEnable,
255 ACPI_FADT_OFFSET (XPm1bEventBlock),
256 1}
257 };
258
259 #define ACPI_FADT_PM_INFO_ENTRIES \
260 (sizeof (FadtPmInfoTable) / sizeof (ACPI_FADT_PM_INFO))
261
262
263 /*******************************************************************************
264 *
265 * FUNCTION: AcpiTbInitGenericAddress
266 *
267 * PARAMETERS: GenericAddress - GAS struct to be initialized
268 * SpaceId - ACPI Space ID for this register
269 * ByteWidth - Width of this register
270 * Address - Address of the register
271 * RegisterName - ASCII name of the ACPI register
272 *
273 * RETURN: None
274 *
275 * DESCRIPTION: Initialize a Generic Address Structure (GAS)
276 * See the ACPI specification for a full description and
277 * definition of this structure.
278 *
279 ******************************************************************************/
280
281 static void
282 AcpiTbInitGenericAddress (
283 ACPI_GENERIC_ADDRESS *GenericAddress,
284 UINT8 SpaceId,
285 UINT8 ByteWidth,
286 UINT64 Address,
287 char *RegisterName)
288 {
289 UINT8 BitWidth;
290
291
292 /* Bit width field in the GAS is only one byte long, 255 max */
293
294 BitWidth = (UINT8) (ByteWidth * 8);
295
296 if (ByteWidth > 31) /* (31*8)=248 */
297 {
298 ACPI_ERROR ((AE_INFO,
299 "%s - 32-bit FADT register is too long (%u bytes, %u bits) "
300 "to convert to GAS struct - 255 bits max, truncating",
301 RegisterName, ByteWidth, (ByteWidth * 8)));
302
303 BitWidth = 255;
304 }
305
306 /*
307 * The 64-bit Address field is non-aligned in the byte packed
308 * GAS struct.
309 */
310 ACPI_MOVE_64_TO_64 (&GenericAddress->Address, &Address);
311
312 /* All other fields are byte-wide */
313
314 GenericAddress->SpaceId = SpaceId;
315 GenericAddress->BitWidth = BitWidth;
316 GenericAddress->BitOffset = 0;
317 GenericAddress->AccessWidth = 0; /* Access width ANY */
318 }
319
320
321 /*******************************************************************************
322 *
323 * FUNCTION: AcpiTbSelectAddress
324 *
325 * PARAMETERS: RegisterName - ASCII name of the ACPI register
326 * Address32 - 32-bit address of the register
327 * Address64 - 64-bit address of the register
328 *
329 * RETURN: The resolved 64-bit address
330 *
331 * DESCRIPTION: Select between 32-bit and 64-bit versions of addresses within
332 * the FADT. Used for the FACS and DSDT addresses.
333 *
334 * NOTES:
335 *
336 * Check for FACS and DSDT address mismatches. An address mismatch between
337 * the 32-bit and 64-bit address fields (FIRMWARE_CTRL/X_FIRMWARE_CTRL and
338 * DSDT/X_DSDT) could be a corrupted address field or it might indicate
339 * the presence of two FACS or two DSDT tables.
340 *
341 * November 2013:
342 * By default, as per the ACPICA specification, a valid 64-bit address is
343 * used regardless of the value of the 32-bit address. However, this
344 * behavior can be overridden via the AcpiGbl_Use32BitFadtAddresses flag.
345 *
346 ******************************************************************************/
347
348 static UINT64
349 AcpiTbSelectAddress (
350 char *RegisterName,
351 UINT32 Address32,
352 UINT64 Address64)
353 {
354
355 if (!Address64)
356 {
357 /* 64-bit address is zero, use 32-bit address */
358
359 return ((UINT64) Address32);
360 }
361
362 if (Address32 &&
363 (Address64 != (UINT64) Address32))
364 {
365 /* Address mismatch between 32-bit and 64-bit versions */
366
367 ACPI_BIOS_WARNING ((AE_INFO,
368 "32/64X %s address mismatch in FADT: "
369 "0x%8.8X/0x%8.8X%8.8X, using %u-bit address",
370 RegisterName, Address32, ACPI_FORMAT_UINT64 (Address64),
371 AcpiGbl_Use32BitFadtAddresses ? 32 : 64));
372
373 /* 32-bit address override */
374
375 if (AcpiGbl_Use32BitFadtAddresses)
376 {
377 return ((UINT64) Address32);
378 }
379 }
380
381 /* Default is to use the 64-bit address */
382
383 return (Address64);
384 }
385
386
387 /*******************************************************************************
388 *
389 * FUNCTION: AcpiTbParseFadt
390 *
391 * PARAMETERS: TableIndex - Index for the FADT
392 *
393 * RETURN: None
394 *
395 * DESCRIPTION: Initialize the FADT, DSDT and FACS tables
396 * (FADT contains the addresses of the DSDT and FACS)
397 *
398 ******************************************************************************/
399
400 void
401 AcpiTbParseFadt (
402 UINT32 TableIndex)
403 {
404 UINT32 Length;
405 ACPI_TABLE_HEADER *Table;
406
407
408 /*
409 * The FADT has multiple versions with different lengths,
410 * and it contains pointers to both the DSDT and FACS tables.
411 *
412 * Get a local copy of the FADT and convert it to a common format
413 * Map entire FADT, assumed to be smaller than one page.
414 */
415 Length = AcpiGbl_RootTableList.Tables[TableIndex].Length;
416
417 Table = AcpiOsMapMemory (
418 AcpiGbl_RootTableList.Tables[TableIndex].Address, Length);
419 if (!Table)
420 {
421 return;
422 }
423
424 /*
425 * Validate the FADT checksum before we copy the table. Ignore
426 * checksum error as we want to try to get the DSDT and FACS.
427 */
428 (void) AcpiTbVerifyChecksum (Table, Length);
429
430 /* Create a local copy of the FADT in common ACPI 2.0+ format */
431
432 AcpiTbCreateLocalFadt (Table, Length);
433
434 /* All done with the real FADT, unmap it */
435
436 AcpiOsUnmapMemory (Table, Length);
437
438 /* Obtain the DSDT and FACS tables via their addresses within the FADT */
439
440 AcpiTbInstallFixedTable ((ACPI_PHYSICAL_ADDRESS) AcpiGbl_FADT.XDsdt,
441 ACPI_SIG_DSDT, ACPI_TABLE_INDEX_DSDT);
442
443 /* If Hardware Reduced flag is set, there is no FACS */
444
445 if (!AcpiGbl_ReducedHardware)
446 {
447 AcpiTbInstallFixedTable ((ACPI_PHYSICAL_ADDRESS) AcpiGbl_FADT.XFacs,
448 ACPI_SIG_FACS, ACPI_TABLE_INDEX_FACS);
449 }
450 }
451
452
453 /*******************************************************************************
454 *
455 * FUNCTION: AcpiTbCreateLocalFadt
456 *
457 * PARAMETERS: Table - Pointer to BIOS FADT
458 * Length - Length of the table
459 *
460 * RETURN: None
461 *
462 * DESCRIPTION: Get a local copy of the FADT and convert it to a common format.
463 * Performs validation on some important FADT fields.
464 *
465 * NOTE: We create a local copy of the FADT regardless of the version.
466 *
467 ******************************************************************************/
468
469 void
470 AcpiTbCreateLocalFadt (
471 ACPI_TABLE_HEADER *Table,
472 UINT32 Length)
473 {
474
475 /*
476 * Check if the FADT is larger than the largest table that we expect
477 * (the ACPI 5.0 version). If so, truncate the table, and issue
478 * a warning.
479 */
480 if (Length > sizeof (ACPI_TABLE_FADT))
481 {
482 ACPI_BIOS_WARNING ((AE_INFO,
483 "FADT (revision %u) is longer than ACPI 5.0 version, "
484 "truncating length %u to %u",
485 Table->Revision, Length, (UINT32) sizeof (ACPI_TABLE_FADT)));
486 }
487
488 /* Clear the entire local FADT */
489
490 ACPI_MEMSET (&AcpiGbl_FADT, 0, sizeof (ACPI_TABLE_FADT));
491
492 /* Copy the original FADT, up to sizeof (ACPI_TABLE_FADT) */
493
494 ACPI_MEMCPY (&AcpiGbl_FADT, Table,
495 ACPI_MIN (Length, sizeof (ACPI_TABLE_FADT)));
496
497 /* Take a copy of the Hardware Reduced flag */
498
499 AcpiGbl_ReducedHardware = FALSE;
500 if (AcpiGbl_FADT.Flags & ACPI_FADT_HW_REDUCED)
501 {
502 AcpiGbl_ReducedHardware = TRUE;
503 }
504
505 /* Convert the local copy of the FADT to the common internal format */
506
507 AcpiTbConvertFadt ();
508
509 /* Initialize the global ACPI register structures */
510
511 AcpiTbSetupFadtRegisters ();
512 }
513
514
515 /*******************************************************************************
516 *
517 * FUNCTION: AcpiTbConvertFadt
518 *
519 * PARAMETERS: None - AcpiGbl_FADT is used.
520 *
521 * RETURN: None
522 *
523 * DESCRIPTION: Converts all versions of the FADT to a common internal format.
524 * Expand 32-bit addresses to 64-bit as necessary. Also validate
525 * important fields within the FADT.
526 *
527 * NOTE: AcpiGbl_FADT must be of size (ACPI_TABLE_FADT), and must
528 * contain a copy of the actual BIOS-provided FADT.
529 *
530 * Notes on 64-bit register addresses:
531 *
532 * After this FADT conversion, later ACPICA code will only use the 64-bit "X"
533 * fields of the FADT for all ACPI register addresses.
534 *
535 * The 64-bit X fields are optional extensions to the original 32-bit FADT
536 * V1.0 fields. Even if they are present in the FADT, they are optional and
537 * are unused if the BIOS sets them to zero. Therefore, we must copy/expand
538 * 32-bit V1.0 fields to the 64-bit X fields if the the 64-bit X field is
539 * originally zero.
540 *
541 * For ACPI 1.0 FADTs (that contain no 64-bit addresses), all 32-bit address
542 * fields are expanded to the corresponding 64-bit X fields in the internal
543 * common FADT.
544 *
545 * For ACPI 2.0+ FADTs, all valid (non-zero) 32-bit address fields are expanded
546 * to the corresponding 64-bit X fields, if the 64-bit field is originally
547 * zero. Adhering to the ACPI specification, we completely ignore the 32-bit
548 * field if the 64-bit field is valid, regardless of whether the host OS is
549 * 32-bit or 64-bit.
550 *
551 * Possible additional checks:
552 * (AcpiGbl_FADT.Pm1EventLength >= 4)
553 * (AcpiGbl_FADT.Pm1ControlLength >= 2)
554 * (AcpiGbl_FADT.PmTimerLength >= 4)
555 * Gpe block lengths must be multiple of 2
556 *
557 ******************************************************************************/
558
559 static void
560 AcpiTbConvertFadt (
561 void)
562 {
563 char *Name;
564 ACPI_GENERIC_ADDRESS *Address64;
565 UINT32 Address32;
566 UINT8 Length;
567 UINT32 i;
568
569
570 /*
571 * For ACPI 1.0 FADTs (revision 1 or 2), ensure that reserved fields which
572 * should be zero are indeed zero. This will workaround BIOSs that
573 * inadvertently place values in these fields.
574 *
575 * The ACPI 1.0 reserved fields that will be zeroed are the bytes located
576 * at offset 45, 55, 95, and the word located at offset 109, 110.
577 *
578 * Note: The FADT revision value is unreliable. Only the length can be
579 * trusted.
580 */
581 if (AcpiGbl_FADT.Header.Length <= ACPI_FADT_V2_SIZE)
582 {
583 AcpiGbl_FADT.PreferredProfile = 0;
584 AcpiGbl_FADT.PstateControl = 0;
585 AcpiGbl_FADT.CstControl = 0;
586 AcpiGbl_FADT.BootFlags = 0;
587 }
588
589 /*
590 * Now we can update the local FADT length to the length of the
591 * current FADT version as defined by the ACPI specification.
592 * Thus, we will have a common FADT internally.
593 */
594 AcpiGbl_FADT.Header.Length = sizeof (ACPI_TABLE_FADT);
595
596 /*
597 * Expand the 32-bit FACS and DSDT addresses to 64-bit as necessary.
598 * Later ACPICA code will always use the X 64-bit field.
599 */
600 AcpiGbl_FADT.XFacs = AcpiTbSelectAddress ("FACS",
601 AcpiGbl_FADT.Facs, AcpiGbl_FADT.XFacs);
602
603 AcpiGbl_FADT.XDsdt = AcpiTbSelectAddress ("DSDT",
604 AcpiGbl_FADT.Dsdt, AcpiGbl_FADT.XDsdt);
605
606 /* If Hardware Reduced flag is set, we are all done */
607
608 if (AcpiGbl_ReducedHardware)
609 {
610 return;
611 }
612
613 /* Examine all of the 64-bit extended address fields (X fields) */
614
615 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++)
616 {
617 /*
618 * Get the 32-bit and 64-bit addresses, as well as the register
619 * length and register name.
620 */
621 Address32 = *ACPI_ADD_PTR (UINT32,
622 &AcpiGbl_FADT, FadtInfoTable[i].Address32);
623
624 Address64 = ACPI_ADD_PTR (ACPI_GENERIC_ADDRESS,
625 &AcpiGbl_FADT, FadtInfoTable[i].Address64);
626
627 Length = *ACPI_ADD_PTR (UINT8,
628 &AcpiGbl_FADT, FadtInfoTable[i].Length);
629
630 Name = FadtInfoTable[i].Name;
631
632 /*
633 * Expand the ACPI 1.0 32-bit addresses to the ACPI 2.0 64-bit "X"
634 * generic address structures as necessary. Later code will always use
635 * the 64-bit address structures.
636 *
637 * November 2013:
638 * Now always use the 64-bit address if it is valid (non-zero), in
639 * accordance with the ACPI specification which states that a 64-bit
640 * address supersedes the 32-bit version. This behavior can be
641 * overridden by the AcpiGbl_Use32BitFadtAddresses flag.
642 *
643 * During 64-bit address construction and verification,
644 * these cases are handled:
645 *
646 * Address32 zero, Address64 [don't care] - Use Address64
647 *
648 * Address32 non-zero, Address64 zero - Copy/use Address32
649 * Address32 non-zero == Address64 non-zero - Use Address64
650 * Address32 non-zero != Address64 non-zero - Warning, use Address64
651 *
652 * Override: if AcpiGbl_Use32BitFadtAddresses is TRUE, and:
653 * Address32 non-zero != Address64 non-zero - Warning, copy/use Address32
654 *
655 * Note: SpaceId is always I/O for 32-bit legacy address fields
656 */
657 if (Address32)
658 {
659 if (!Address64->Address)
660 {
661 /* 64-bit address is zero, use 32-bit address */
662
663 AcpiTbInitGenericAddress (Address64,
664 ACPI_ADR_SPACE_SYSTEM_IO,
665 *ACPI_ADD_PTR (UINT8, &AcpiGbl_FADT,
666 FadtInfoTable[i].Length),
667 (UINT64) Address32, Name);
668 }
669 else if (Address64->Address != (UINT64) Address32)
670 {
671 /* Address mismatch */
672
673 ACPI_BIOS_WARNING ((AE_INFO,
674 "32/64X address mismatch in FADT/%s: "
675 "0x%8.8X/0x%8.8X%8.8X, using %u-bit address",
676 Name, Address32,
677 ACPI_FORMAT_UINT64 (Address64->Address),
678 AcpiGbl_Use32BitFadtAddresses ? 32 : 64));
679
680 if (AcpiGbl_Use32BitFadtAddresses)
681 {
682 /* 32-bit address override */
683
684 AcpiTbInitGenericAddress (Address64,
685 ACPI_ADR_SPACE_SYSTEM_IO,
686 *ACPI_ADD_PTR (UINT8, &AcpiGbl_FADT,
687 FadtInfoTable[i].Length),
688 (UINT64) Address32, Name);
689 }
690 }
691 }
692
693 /*
694 * For each extended field, check for length mismatch between the
695 * legacy length field and the corresponding 64-bit X length field.
696 * Note: If the legacy length field is > 0xFF bits, ignore this
697 * check. (GPE registers can be larger than the 64-bit GAS structure
698 * can accomodate, 0xFF bits).
699 */
700 if (Address64->Address &&
701 (ACPI_MUL_8 (Length) <= ACPI_UINT8_MAX) &&
702 (Address64->BitWidth != ACPI_MUL_8 (Length)))
703 {
704 ACPI_BIOS_WARNING ((AE_INFO,
705 "32/64X length mismatch in FADT/%s: %u/%u",
706 Name, ACPI_MUL_8 (Length), Address64->BitWidth));
707 }
708
709 if (FadtInfoTable[i].Type & ACPI_FADT_REQUIRED)
710 {
711 /*
712 * Field is required (PM1aEvent, PM1aControl).
713 * Both the address and length must be non-zero.
714 */
715 if (!Address64->Address || !Length)
716 {
717 ACPI_BIOS_ERROR ((AE_INFO,
718 "Required FADT field %s has zero address and/or length: "
719 "0x%8.8X%8.8X/0x%X",
720 Name, ACPI_FORMAT_UINT64 (Address64->Address), Length));
721 }
722 }
723 else if (FadtInfoTable[i].Type & ACPI_FADT_SEPARATE_LENGTH)
724 {
725 /*
726 * Field is optional (PM2Control, GPE0, GPE1) AND has its own
727 * length field. If present, both the address and length must
728 * be valid.
729 */
730 if ((Address64->Address && !Length) ||
731 (!Address64->Address && Length))
732 {
733 ACPI_BIOS_WARNING ((AE_INFO,
734 "Optional FADT field %s has zero address or length: "
735 "0x%8.8X%8.8X/0x%X",
736 Name, ACPI_FORMAT_UINT64 (Address64->Address), Length));
737 }
738 }
739 }
740 }
741
742
743 /*******************************************************************************
744 *
745 * FUNCTION: AcpiTbSetupFadtRegisters
746 *
747 * PARAMETERS: None, uses AcpiGbl_FADT.
748 *
749 * RETURN: None
750 *
751 * DESCRIPTION: Initialize global ACPI PM1 register definitions. Optionally,
752 * force FADT register definitions to their default lengths.
753 *
754 ******************************************************************************/
755
756 static void
757 AcpiTbSetupFadtRegisters (
758 void)
759 {
760 ACPI_GENERIC_ADDRESS *Target64;
761 ACPI_GENERIC_ADDRESS *Source64;
762 UINT8 Pm1RegisterByteWidth;
763 UINT32 i;
764
765
766 /*
767 * Optionally check all register lengths against the default values and
768 * update them if they are incorrect.
769 */
770 if (AcpiGbl_UseDefaultRegisterWidths)
771 {
772 for (i = 0; i < ACPI_FADT_INFO_ENTRIES; i++)
773 {
774 Target64 = ACPI_ADD_PTR (ACPI_GENERIC_ADDRESS, &AcpiGbl_FADT,
775 FadtInfoTable[i].Address64);
776
777 /*
778 * If a valid register (Address != 0) and the (DefaultLength > 0)
779 * (Not a GPE register), then check the width against the default.
780 */
781 if ((Target64->Address) &&
782 (FadtInfoTable[i].DefaultLength > 0) &&
783 (FadtInfoTable[i].DefaultLength != Target64->BitWidth))
784 {
785 ACPI_BIOS_WARNING ((AE_INFO,
786 "Invalid length for FADT/%s: %u, using default %u",
787 FadtInfoTable[i].Name, Target64->BitWidth,
788 FadtInfoTable[i].DefaultLength));
789
790 /* Incorrect size, set width to the default */
791
792 Target64->BitWidth = FadtInfoTable[i].DefaultLength;
793 }
794 }
795 }
796
797 /*
798 * Get the length of the individual PM1 registers (enable and status).
799 * Each register is defined to be (event block length / 2). Extra divide
800 * by 8 converts bits to bytes.
801 */
802 Pm1RegisterByteWidth = (UINT8)
803 ACPI_DIV_16 (AcpiGbl_FADT.XPm1aEventBlock.BitWidth);
804
805 /*
806 * Calculate separate GAS structs for the PM1x (A/B) Status and Enable
807 * registers. These addresses do not appear (directly) in the FADT, so it
808 * is useful to pre-calculate them from the PM1 Event Block definitions.
809 *
810 * The PM event blocks are split into two register blocks, first is the
811 * PM Status Register block, followed immediately by the PM Enable
812 * Register block. Each is of length (Pm1EventLength/2)
813 *
814 * Note: The PM1A event block is required by the ACPI specification.
815 * However, the PM1B event block is optional and is rarely, if ever,
816 * used.
817 */
818
819 for (i = 0; i < ACPI_FADT_PM_INFO_ENTRIES; i++)
820 {
821 Source64 = ACPI_ADD_PTR (ACPI_GENERIC_ADDRESS, &AcpiGbl_FADT,
822 FadtPmInfoTable[i].Source);
823
824 if (Source64->Address)
825 {
826 AcpiTbInitGenericAddress (FadtPmInfoTable[i].Target,
827 Source64->SpaceId, Pm1RegisterByteWidth,
828 Source64->Address +
829 (FadtPmInfoTable[i].RegisterNum * Pm1RegisterByteWidth),
830 "PmRegisters");
831 }
832 }
833 }