UPSTREAM: acpi: Update the ACPI ID for coreboot
The newly assigned ACPI ID for coreboot is 'BOOT'
http://www.uefi.org/acpi_id_list
Use this new range of ACPI IDs of "BOOTxxxx" for coreboot specific
ACPI objects instead of the placeholder range of "GOOGCBxx".
BUG=none
BRANCH=none
TEST=none
Change-Id: Ia3bfdec7652d4cf7c8647a7e3b0a1a324666b0af
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 59eddac6ad
Original-Change-Id: I10b30b5a35be055c220c85b14a06b88939739a31
Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org>
Original-Reviewed-on: https://review.coreboot.org/18521
Original-Tested-by: build bot (Jenkins)
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://chromium-review.googlesource.com/449826
This commit is contained in:
parent
7e172ca4fd
commit
41e99b845a
1 changed files with 7 additions and 4 deletions
|
|
@ -53,13 +53,16 @@
|
|||
#define OEM_ID "CORE " /* Must be exactly 6 bytes long! */
|
||||
#define ASLC "CORE" /* Must be exactly 4 bytes long! */
|
||||
|
||||
/* Use GOOGCBxx range until coreboot ID is official */
|
||||
#define COREBOOT_ACPI_ID "GOOG" /* ACPI ID for coreboot HIDs */
|
||||
/*
|
||||
* The assigned ACPI ID for the coreboot project is 'BOOT'
|
||||
* http://www.uefi.org/acpi_id_list
|
||||
*/
|
||||
#define COREBOOT_ACPI_ID "BOOT" /* ACPI ID for coreboot HIDs */
|
||||
|
||||
/* List of ACPI HID that use the coreboot ACPI ID */
|
||||
enum coreboot_acpi_ids {
|
||||
COREBOOT_ACPI_ID_CBTABLE = 0xCB00, /* GOOGCB00 */
|
||||
COREBOOT_ACPI_ID_MAX = 0xCBFF, /* GOOGCBFF */
|
||||
COREBOOT_ACPI_ID_CBTABLE = 0x0000, /* BOOT0000 */
|
||||
COREBOOT_ACPI_ID_MAX = 0xFFFF, /* BOOTFFFF */
|
||||
};
|
||||
|
||||
/* RSDP (Root System Description Pointer) */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue