HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/31565
Change subject: src/arch/x86/acpi.c: Update SRAT revision number ......................................................................
src/arch/x86/acpi.c: Update SRAT revision number
We currently use ACPI v3.0, so the SRAT revision number is "2".
Change-Id: I14311029c887a2260c3a93d0b7fca6e8d546edd0 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/x86/acpi.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/31565/1
diff --git a/src/arch/x86/acpi.c b/src/arch/x86/acpi.c index 6396877..fc9dfe1 100644 --- a/src/arch/x86/acpi.c +++ b/src/arch/x86/acpi.c @@ -1383,8 +1383,8 @@ return 4; case SSDT: /* ACPI 3.0 upto 6.3: 2 */ return 2; - case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */ - return 1; /* TODO Should probably be upgraded to 2 */ + case SRAT: /* ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */ + return 2; case DMAR: return 1; case SLIT: /* ACPI 2.0 upto 6.3: 1 */
HAOUAS Elyes has uploaded a new patch set (#2). ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
src/arch/x86/acpi.c: Upgrade SRAT revision number
We currently use ACPI v3.0, so the SRAT revision number is "2".
Change-Id: I14311029c887a2260c3a93d0b7fca6e8d546edd0 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/arch/x86/acpi.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/65/31565/2
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2: Code-Review+1
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
you must update the corresponding structs as well:
struct acpi_srat_lapic struct acpi_srat_mem
Some fields are now reserved, and some where added.
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
you must update the corresponding structs as well:
struct acpi_srat_lapic struct acpi_srat_mem
Some fields are now reserved, and some where added.
Maybe I'm wrong, but I've checked 6.3 specs, and they are upto date.
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
You must check the spec that implements SRAT revision "2". That is ACPI 3.0.
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
You must check the spec that implements SRAT revision "2". That is ACPI 3.0.
Seems the same... maybe the version I have ( V3.0 from http://www.acpi.info/ ) is wrong.
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
I misread it. The only change I see now:
acpi_srat_lapic.clock_domain is reserved in revision 2, wasn't in revision 1
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 2:
I misread it. The only change I see now:
acpi_srat_lapic.clock_domain is reserved in revision 2, wasn't in revision 1
indeed, I've changed 'u32 resv' to 'u32 clock_domain' at Change-Id: I91291c8
Patrick Rudolph has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 3: Code-Review-1
acpi_srat_lapic.clock_domain is reserved in revision 2, wasn't in revision 1
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Abandoned
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 3:
I think that clock_domain is reserved in version 1 not 2.
anyway, this change is not a big deal as we still using old acpi version.
HAOUAS Elyes has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/31565 )
Change subject: src/arch/x86/acpi.c: Upgrade SRAT revision number ......................................................................
Patch Set 3:
I think that clock_domain is reserved in version 1 not 2.
oops, reserved in 2
it was added since version 3
anyway, this change is not a big deal as we still using old acpi version.