1 /******************************************************************************
3 * Module Name: tbconvrt - ACPI Table conversion utilities
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2006, R. Byron Moore
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
45 #include <acpi/actables.h>
47 #define _COMPONENT ACPI_TABLES
48 ACPI_MODULE_NAME("tbconvrt")
50 /* Local prototypes */
52 acpi_tb_init_generic_address(struct acpi_generic_address
*new_gas_struct
,
53 u8 register_bit_width
,
54 acpi_physical_address address
);
57 acpi_tb_convert_fadt1(struct fadt_descriptor
*local_fadt
,
58 struct fadt_descriptor_rev1
*original_fadt
);
61 acpi_tb_convert_fadt2(struct fadt_descriptor
*local_fadt
,
62 struct fadt_descriptor
*original_fadt
);
65 ACPI_EXPORT_SYMBOL(acpi_fadt_is_v1
)
67 /*******************************************************************************
69 * FUNCTION: acpi_tb_get_table_count
71 * PARAMETERS: RSDP - Pointer to the RSDP
72 * RSDT - Pointer to the RSDT/XSDT
74 * RETURN: The number of tables pointed to by the RSDT or XSDT.
76 * DESCRIPTION: Calculate the number of tables. Automatically handles either
79 ******************************************************************************/
82 acpi_tb_get_table_count(struct rsdp_descriptor
*RSDP
,
83 struct acpi_table_header
*RSDT
)
87 ACPI_FUNCTION_ENTRY();
89 /* RSDT pointers are 32 bits, XSDT pointers are 64 bits */
91 if (acpi_gbl_root_table_type
== ACPI_TABLE_TYPE_RSDT
) {
92 pointer_size
= sizeof(u32
);
94 pointer_size
= sizeof(u64
);
98 * Determine the number of tables pointed to by the RSDT/XSDT.
99 * This is defined by the ACPI Specification to be the number of
100 * pointers contained within the RSDT/XSDT. The size of the pointers
101 * is architecture-dependent.
103 return ((RSDT
->length
-
104 sizeof(struct acpi_table_header
)) / pointer_size
);
107 /*******************************************************************************
109 * FUNCTION: acpi_tb_convert_to_xsdt
111 * PARAMETERS: table_info - Info about the RSDT
115 * DESCRIPTION: Convert an RSDT to an XSDT (internal common format)
117 ******************************************************************************/
119 acpi_status
acpi_tb_convert_to_xsdt(struct acpi_table_desc
*table_info
)
121 acpi_size table_size
;
123 struct xsdt_descriptor
*new_table
;
125 ACPI_FUNCTION_ENTRY();
127 /* Compute size of the converted XSDT */
129 table_size
= ((acpi_size
) acpi_gbl_rsdt_table_count
* sizeof(u64
)) +
130 sizeof(struct acpi_table_header
);
132 /* Allocate an XSDT */
134 new_table
= ACPI_ALLOCATE_ZEROED(table_size
);
136 return (AE_NO_MEMORY
);
139 /* Copy the header and set the length */
141 ACPI_MEMCPY(new_table
, table_info
->pointer
,
142 sizeof(struct acpi_table_header
));
143 new_table
->length
= (u32
) table_size
;
145 /* Copy the table pointers */
147 for (i
= 0; i
< acpi_gbl_rsdt_table_count
; i
++) {
149 /* RSDT pointers are 32 bits, XSDT pointers are 64 bits */
151 if (acpi_gbl_root_table_type
== ACPI_TABLE_TYPE_RSDT
) {
152 ACPI_STORE_ADDRESS(new_table
->table_offset_entry
[i
],
154 (struct rsdt_descriptor
,
155 table_info
->pointer
))->
156 table_offset_entry
[i
]);
158 new_table
->table_offset_entry
[i
] =
159 (ACPI_CAST_PTR(struct xsdt_descriptor
,
160 table_info
->pointer
))->
161 table_offset_entry
[i
];
165 /* Delete the original table (either mapped or in a buffer) */
167 acpi_tb_delete_single_table(table_info
);
169 /* Point the table descriptor to the new table */
171 table_info
->pointer
=
172 ACPI_CAST_PTR(struct acpi_table_header
, new_table
);
173 table_info
->length
= table_size
;
174 table_info
->allocation
= ACPI_MEM_ALLOCATED
;
179 /*******************************************************************************
181 * FUNCTION: acpi_tb_init_generic_address
183 * PARAMETERS: new_gas_struct - GAS struct to be initialized
184 * register_bit_width - Width of this register
185 * Address - Address of the register
189 * DESCRIPTION: Initialize a GAS structure.
191 ******************************************************************************/
194 acpi_tb_init_generic_address(struct acpi_generic_address
*new_gas_struct
,
195 u8 register_bit_width
,
196 acpi_physical_address address
)
199 ACPI_STORE_ADDRESS(new_gas_struct
->address
, address
);
201 new_gas_struct
->address_space_id
= ACPI_ADR_SPACE_SYSTEM_IO
;
202 new_gas_struct
->register_bit_width
= register_bit_width
;
203 new_gas_struct
->register_bit_offset
= 0;
204 new_gas_struct
->access_width
= 0;
207 /*******************************************************************************
209 * FUNCTION: acpi_tb_convert_fadt1
211 * PARAMETERS: local_fadt - Pointer to new FADT
212 * original_fadt - Pointer to old FADT
214 * RETURN: None, populates local_fadt
216 * DESCRIPTION: Convert an ACPI 1.0 FADT to common internal format
218 ******************************************************************************/
221 acpi_tb_convert_fadt1(struct fadt_descriptor
*local_fadt
,
222 struct fadt_descriptor_rev1
*original_fadt
)
226 /* The BIOS stored FADT should agree with Revision 1.0 */
230 * Copy the table header and the common part of the tables.
232 * The 2.0 table is an extension of the 1.0 table, so the entire 1.0
233 * table can be copied first, then expand some fields to 64 bits.
235 ACPI_MEMCPY(local_fadt
, original_fadt
,
236 sizeof(struct fadt_descriptor_rev1
));
238 /* Convert table pointers to 64-bit fields */
240 ACPI_STORE_ADDRESS(local_fadt
->xfirmware_ctrl
,
241 local_fadt
->V1_firmware_ctrl
);
242 ACPI_STORE_ADDRESS(local_fadt
->Xdsdt
, local_fadt
->V1_dsdt
);
245 * System Interrupt Model isn't used in ACPI 2.0
246 * (local_fadt->Reserved1 = 0;)
250 * This field is set by the OEM to convey the preferred power management
251 * profile to OSPM. It doesn't have any 1.0 equivalence. Since we don't
252 * know what kind of 32-bit system this is, we will use "unspecified".
254 local_fadt
->prefer_PM_profile
= PM_UNSPECIFIED
;
257 * Processor Performance State Control. This is the value OSPM writes to
258 * the SMI_CMD register to assume processor performance state control
259 * responsibility. There isn't any equivalence in 1.0, but as many 1.x
260 * ACPI tables contain _PCT and _PSS we also keep this value, unless
261 * acpi_strict is set.
264 local_fadt
->pstate_cnt
= 0;
267 * Support for the _CST object and C States change notification.
268 * This data item hasn't any 1.0 equivalence so leave it zero.
270 local_fadt
->cst_cnt
= 0;
273 * FADT Rev 2 was an interim FADT released between ACPI 1.0 and ACPI 2.0.
274 * It primarily adds the FADT reset mechanism.
276 if ((original_fadt
->revision
== 2) &&
277 (original_fadt
->length
==
278 sizeof(struct fadt_descriptor_rev2_minus
))) {
280 * Grab the entire generic address struct, plus the 1-byte reset value
281 * that immediately follows.
283 ACPI_MEMCPY(&local_fadt
->reset_register
,
284 &(ACPI_CAST_PTR(struct fadt_descriptor_rev2_minus
,
285 original_fadt
))->reset_register
,
286 sizeof(struct acpi_generic_address
) + 1);
289 * Since there isn't any equivalence in 1.0 and since it is highly
290 * likely that a 1.0 system has legacy support.
292 local_fadt
->iapc_boot_arch
= BAF_LEGACY_DEVICES
;
296 * Convert the V1.0 block addresses to V2.0 GAS structures
298 acpi_tb_init_generic_address(&local_fadt
->xpm1a_evt_blk
,
299 local_fadt
->pm1_evt_len
,
300 (acpi_physical_address
) local_fadt
->
302 acpi_tb_init_generic_address(&local_fadt
->xpm1b_evt_blk
,
303 local_fadt
->pm1_evt_len
,
304 (acpi_physical_address
) local_fadt
->
306 acpi_tb_init_generic_address(&local_fadt
->xpm1a_cnt_blk
,
307 local_fadt
->pm1_cnt_len
,
308 (acpi_physical_address
) local_fadt
->
310 acpi_tb_init_generic_address(&local_fadt
->xpm1b_cnt_blk
,
311 local_fadt
->pm1_cnt_len
,
312 (acpi_physical_address
) local_fadt
->
314 acpi_tb_init_generic_address(&local_fadt
->xpm2_cnt_blk
,
315 local_fadt
->pm2_cnt_len
,
316 (acpi_physical_address
) local_fadt
->
318 acpi_tb_init_generic_address(&local_fadt
->xpm_tmr_blk
,
319 local_fadt
->pm_tm_len
,
320 (acpi_physical_address
) local_fadt
->
322 acpi_tb_init_generic_address(&local_fadt
->xgpe0_blk
, 0,
323 (acpi_physical_address
) local_fadt
->
325 acpi_tb_init_generic_address(&local_fadt
->xgpe1_blk
, 0,
326 (acpi_physical_address
) local_fadt
->
329 /* Create separate GAS structs for the PM1 Enable registers */
331 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable
,
332 (u8
) ACPI_DIV_2(acpi_gbl_FADT
->
334 (acpi_physical_address
)
335 (local_fadt
->xpm1a_evt_blk
.address
+
336 ACPI_DIV_2(acpi_gbl_FADT
->pm1_evt_len
)));
338 /* PM1B is optional; leave null if not present */
340 if (local_fadt
->xpm1b_evt_blk
.address
) {
341 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable
,
342 (u8
) ACPI_DIV_2(acpi_gbl_FADT
->
344 (acpi_physical_address
)
345 (local_fadt
->xpm1b_evt_blk
.
347 ACPI_DIV_2(acpi_gbl_FADT
->
352 /*******************************************************************************
354 * FUNCTION: acpi_tb_convert_fadt2
356 * PARAMETERS: local_fadt - Pointer to new FADT
357 * original_fadt - Pointer to old FADT
359 * RETURN: None, populates local_fadt
361 * DESCRIPTION: Convert an ACPI 2.0 FADT to common internal format.
362 * Handles optional "X" fields.
364 ******************************************************************************/
367 acpi_tb_convert_fadt2(struct fadt_descriptor
*local_fadt
,
368 struct fadt_descriptor
*original_fadt
)
371 /* We have an ACPI 2.0 FADT but we must copy it to our local buffer */
373 ACPI_MEMCPY(local_fadt
, original_fadt
, sizeof(struct fadt_descriptor
));
376 * "X" fields are optional extensions to the original V1.0 fields, so
377 * we must selectively expand V1.0 fields if the corresponding X field
380 if (!(local_fadt
->xfirmware_ctrl
)) {
381 ACPI_STORE_ADDRESS(local_fadt
->xfirmware_ctrl
,
382 local_fadt
->V1_firmware_ctrl
);
385 if (!(local_fadt
->Xdsdt
)) {
386 ACPI_STORE_ADDRESS(local_fadt
->Xdsdt
, local_fadt
->V1_dsdt
);
389 if (!(local_fadt
->xpm1a_evt_blk
.address
)) {
390 acpi_tb_init_generic_address(&local_fadt
->xpm1a_evt_blk
,
391 local_fadt
->pm1_evt_len
,
392 (acpi_physical_address
)
393 local_fadt
->V1_pm1a_evt_blk
);
396 if (!(local_fadt
->xpm1b_evt_blk
.address
)) {
397 acpi_tb_init_generic_address(&local_fadt
->xpm1b_evt_blk
,
398 local_fadt
->pm1_evt_len
,
399 (acpi_physical_address
)
400 local_fadt
->V1_pm1b_evt_blk
);
403 if (!(local_fadt
->xpm1a_cnt_blk
.address
)) {
404 acpi_tb_init_generic_address(&local_fadt
->xpm1a_cnt_blk
,
405 local_fadt
->pm1_cnt_len
,
406 (acpi_physical_address
)
407 local_fadt
->V1_pm1a_cnt_blk
);
410 if (!(local_fadt
->xpm1b_cnt_blk
.address
)) {
411 acpi_tb_init_generic_address(&local_fadt
->xpm1b_cnt_blk
,
412 local_fadt
->pm1_cnt_len
,
413 (acpi_physical_address
)
414 local_fadt
->V1_pm1b_cnt_blk
);
417 if (!(local_fadt
->xpm2_cnt_blk
.address
)) {
418 acpi_tb_init_generic_address(&local_fadt
->xpm2_cnt_blk
,
419 local_fadt
->pm2_cnt_len
,
420 (acpi_physical_address
)
421 local_fadt
->V1_pm2_cnt_blk
);
424 if (!(local_fadt
->xpm_tmr_blk
.address
)) {
425 acpi_tb_init_generic_address(&local_fadt
->xpm_tmr_blk
,
426 local_fadt
->pm_tm_len
,
427 (acpi_physical_address
)
428 local_fadt
->V1_pm_tmr_blk
);
431 if (!(local_fadt
->xgpe0_blk
.address
)) {
432 acpi_tb_init_generic_address(&local_fadt
->xgpe0_blk
,
434 (acpi_physical_address
)
435 local_fadt
->V1_gpe0_blk
);
438 if (!(local_fadt
->xgpe1_blk
.address
)) {
439 acpi_tb_init_generic_address(&local_fadt
->xgpe1_blk
,
441 (acpi_physical_address
)
442 local_fadt
->V1_gpe1_blk
);
445 /* Create separate GAS structs for the PM1 Enable registers */
447 acpi_tb_init_generic_address(&acpi_gbl_xpm1a_enable
,
448 (u8
) ACPI_DIV_2(acpi_gbl_FADT
->
450 (acpi_physical_address
)
451 (local_fadt
->xpm1a_evt_blk
.address
+
452 ACPI_DIV_2(acpi_gbl_FADT
->pm1_evt_len
)));
454 acpi_gbl_xpm1a_enable
.address_space_id
=
455 local_fadt
->xpm1a_evt_blk
.address_space_id
;
457 /* PM1B is optional; leave null if not present */
459 if (local_fadt
->xpm1b_evt_blk
.address
) {
460 acpi_tb_init_generic_address(&acpi_gbl_xpm1b_enable
,
461 (u8
) ACPI_DIV_2(acpi_gbl_FADT
->
463 (acpi_physical_address
)
464 (local_fadt
->xpm1b_evt_blk
.
466 ACPI_DIV_2(acpi_gbl_FADT
->
469 acpi_gbl_xpm1b_enable
.address_space_id
=
470 local_fadt
->xpm1b_evt_blk
.address_space_id
;
474 /*******************************************************************************
476 * FUNCTION: acpi_tb_convert_table_fadt
482 * DESCRIPTION: Converts a BIOS supplied ACPI 1.0 FADT to a local
483 * ACPI 2.0 FADT. If the BIOS supplied a 2.0 FADT then it is simply
484 * copied to the local FADT. The ACPI CA software uses this
485 * local FADT. Thus a significant amount of special #ifdef
486 * type codeing is saved.
488 ******************************************************************************/
490 acpi_status
acpi_tb_convert_table_fadt(void)
492 struct fadt_descriptor
*local_fadt
;
493 struct acpi_table_desc
*table_desc
;
495 ACPI_FUNCTION_TRACE(tb_convert_table_fadt
);
498 * acpi_gbl_FADT is valid. Validate the FADT length. The table must be
499 * at least as long as the version 1.0 FADT
501 if (acpi_gbl_FADT
->length
< sizeof(struct fadt_descriptor_rev1
)) {
502 ACPI_ERROR((AE_INFO
, "FADT is invalid, too short: 0x%X",
503 acpi_gbl_FADT
->length
));
504 return_ACPI_STATUS(AE_INVALID_TABLE_LENGTH
);
507 /* Allocate buffer for the ACPI 2.0(+) FADT */
509 local_fadt
= ACPI_ALLOCATE_ZEROED(sizeof(struct fadt_descriptor
));
511 return_ACPI_STATUS(AE_NO_MEMORY
);
514 if (acpi_gbl_FADT
->revision
>= FADT2_REVISION_ID
) {
515 if (acpi_gbl_FADT
->length
< sizeof(struct fadt_descriptor
)) {
517 /* Length is too short to be a V2.0 table */
519 ACPI_WARNING((AE_INFO
,
520 "Inconsistent FADT length (0x%X) and revision (0x%X), using FADT V1.0 portion of table",
521 acpi_gbl_FADT
->length
,
522 acpi_gbl_FADT
->revision
));
524 acpi_tb_convert_fadt1(local_fadt
,
525 (void *)acpi_gbl_FADT
);
527 /* Valid V2.0 table */
529 acpi_tb_convert_fadt2(local_fadt
, acpi_gbl_FADT
);
532 /* Valid V1.0 table */
534 acpi_tb_convert_fadt1(local_fadt
, (void *)acpi_gbl_FADT
);
537 /* Global FADT pointer will point to the new common V2.0 FADT */
539 acpi_gbl_FADT
= local_fadt
;
540 acpi_gbl_FADT
->length
= sizeof(struct fadt_descriptor
);
542 /* Free the original table */
544 table_desc
= acpi_gbl_table_lists
[ACPI_TABLE_ID_FADT
].next
;
545 acpi_tb_delete_single_table(table_desc
);
547 /* Install the new table */
549 table_desc
->pointer
=
550 ACPI_CAST_PTR(struct acpi_table_header
, acpi_gbl_FADT
);
551 table_desc
->allocation
= ACPI_MEM_ALLOCATED
;
552 table_desc
->length
= sizeof(struct fadt_descriptor
);
554 /* Dump the entire FADT */
556 ACPI_DEBUG_PRINT((ACPI_DB_TABLES
,
557 "Hex dump of common internal FADT, size %d (%X)\n",
558 acpi_gbl_FADT
->length
, acpi_gbl_FADT
->length
));
560 ACPI_DUMP_BUFFER(ACPI_CAST_PTR(u8
, acpi_gbl_FADT
),
561 acpi_gbl_FADT
->length
);
563 return_ACPI_STATUS(AE_OK
);
566 /*******************************************************************************
568 * FUNCTION: acpi_tb_build_common_facs
570 * PARAMETERS: table_info - Info for currently installed FACS
574 * DESCRIPTION: Convert ACPI 1.0 and ACPI 2.0 FACS to a common internal
577 ******************************************************************************/
579 acpi_status
acpi_tb_build_common_facs(struct acpi_table_desc
*table_info
)
582 ACPI_FUNCTION_TRACE(tb_build_common_facs
);
584 /* Absolute minimum length is 24, but the ACPI spec says 64 */
586 if (acpi_gbl_FACS
->length
< 24) {
587 ACPI_ERROR((AE_INFO
, "Invalid FACS table length: 0x%X",
588 acpi_gbl_FACS
->length
));
589 return_ACPI_STATUS(AE_INVALID_TABLE_LENGTH
);
592 if (acpi_gbl_FACS
->length
< 64) {
593 ACPI_WARNING((AE_INFO
,
594 "FACS is shorter than the ACPI specification allows: 0x%X, using anyway",
595 acpi_gbl_FACS
->length
));
598 /* Copy fields to the new FACS */
600 acpi_gbl_common_fACS
.global_lock
= &(acpi_gbl_FACS
->global_lock
);
602 if ((acpi_gbl_RSDP
->revision
< 2) ||
603 (acpi_gbl_FACS
->length
< 32) ||
604 (!(acpi_gbl_FACS
->xfirmware_waking_vector
))) {
606 /* ACPI 1.0 FACS or short table or optional X_ field is zero */
608 acpi_gbl_common_fACS
.firmware_waking_vector
= ACPI_CAST_PTR(u64
,
611 firmware_waking_vector
));
612 acpi_gbl_common_fACS
.vector_width
= 32;
614 /* ACPI 2.0 FACS with valid X_ field */
616 acpi_gbl_common_fACS
.firmware_waking_vector
=
617 &acpi_gbl_FACS
->xfirmware_waking_vector
;
618 acpi_gbl_common_fACS
.vector_width
= 64;
621 return_ACPI_STATUS(AE_OK
);