Matt DeVillier (matt.devillier(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17851
-gerrit
commit 66c3644cefffde9f866645f80a35aa0dd2401fe1
Author: Matt DeVillier <matt.devillier(a)gmail.com>
Date: Thu Sep 1 00:55:40 2016 -0500
smbios.h: add missing SKU field to type3 table
The type3 SMBIOS table has a non-optional SKU field at the end,
which causes a parsing error when missing. Add but do not populate it.
Change-Id: I988d0626b8680740697e1db58eb6d0b87874bfde
Signed-off-by: Matt DeVillier <matt.devillier(a)gmail.com>
---
src/include/smbios.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/include/smbios.h b/src/include/smbios.h
index 758a9cd..785ceec 100644
--- a/src/include/smbios.h
+++ b/src/include/smbios.h
@@ -300,6 +300,7 @@ struct smbios_type3 {
u8 number_of_power_cords;
u8 element_count;
u8 element_record_length;
+ u8 sku_number;
char eos[2];
} __attribute__((packed));
Marshall Dawson (marshalldawson3rd(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17846
-gerrit
commit a39c2795528f4df5e14e563985d12dbe4c786f7b
Author: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Date: Thu Oct 20 12:43:15 2016 -0400
amd/gardenia: Clean up GPIO ASL
Remove the unused Name field. Its previous design generates an FWTS
error and a recommendation for changing it to Serialized.
Original-Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Original-Reviewed-by: Marc Jones <marcj303(a)gmail.com>
(cherry picked from commit 1d970f1aa16c647e56a08c83f5719041882a2fc0)
Change-Id: I27748a4f84286e80043f516564ef64350ef3fef9
Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
---
src/mainboard/amd/gardenia/acpi/carrizo_fch.asl | 30 +++++--------------------
1 file changed, 6 insertions(+), 24 deletions(-)
diff --git a/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl b/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
index 79f5420..a177306 100644
--- a/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
+++ b/src/mainboard/amd/gardenia/acpi/carrizo_fch.asl
@@ -1,7 +1,7 @@
/*
* This file is part of the coreboot project.
*
- * Copyright (C) 2015 Advanced Micro Devices, Inc.
+ * Copyright (C) 2015-2016 Advanced Micro Devices, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -18,31 +18,13 @@ Device(GPIO) {
Name (_CID, "AMD0030")
Name(_UID, 0)
- Method (_CRS, 0x0, NotSerialized) {
- Name (RBUF, ResourceTemplate () {
- //
- // Interrupt resource. In this example, banks 0 & 1 share the same
- // interrupt to the parent controller and similarly banks 2 & 3.
- //
- // N.B. The definition below is chosen for an arbitrary
- // test platform. It needs to be changed to reflect the hardware
- // configuration of the actual platform
- //
- Interrupt(ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
-
- //
- // Memory resource. The definition below is chosen for an arbitrary
- // test platform. It needs to be changed to reflect the hardware
- // configuration of the actual platform.
- //
- Memory32Fixed(ReadWrite, 0xFED81500, 0x300)
- })
-
- Return (RBUF)
- }
+ Name(_CRS, ResourceTemplate() {
+ Interrupt(ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Memory32Fixed(ReadWrite, 0xFED81500, 0x300)
+ })
Method (_STA, 0x0, NotSerialized) {
- Return (0x0F)
+ Return (0x0F)
}
}