[coreboot-gerrit] New patch to review for coreboot: cpu/amd: Update files for 00670F00

Marc Jones (marc@marcjonesconsulting.com) gerrit at coreboot.org
Wed Oct 26 05:14:29 CEST 2016


Marc Jones (marc at marcjonesconsulting.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17140

-gerrit

commit 8daf9f1bc9f62b20209c03b2ddd496ddede16256
Author: Marc Jones <marcj303 at gmail.com>
Date:   Tue Sep 20 20:27:46 2016 -0600

    cpu/amd: Update files for 00670F00
    
    Add Stoney specific IDs, code, and fix Makefles and Kconfig files.
    
    Original-Signed-off-by: Marc Jones <marcj303 at gmail.com>
    Original-Reviewed-by: Marshall Dawson <marshalldawson3rd at gmail.com>
    Original-Tested-by: Marshall Dawson <marshalldawson3rd at gmail.com>
    (cherry picked from commit 0bd1dc834792453d8e66216fa9a70afe2f7537d7)
    
    Change-Id: Id79f316a89b3baeae95e221fb872dc8a86e7b0f1
    Signed-off-by: Marc Jones <marcj303 at gmail.com>
---
 src/cpu/amd/pi/00670F00/Kconfig         | 4 ++--
 src/cpu/amd/pi/00670F00/chip_name.c     | 2 +-
 src/cpu/amd/pi/00670F00/model_15_init.c | 3 +--
 src/cpu/amd/pi/Kconfig                  | 2 ++
 src/cpu/amd/pi/Makefile.inc             | 1 +
 5 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/src/cpu/amd/pi/00670F00/Kconfig b/src/cpu/amd/pi/00670F00/Kconfig
index de74d3c..456bf4b 100644
--- a/src/cpu/amd/pi/00670F00/Kconfig
+++ b/src/cpu/amd/pi/00670F00/Kconfig
@@ -13,12 +13,12 @@
 # GNU General Public License for more details.
 #
 
-config CPU_AMD_PI_00660F01
+config CPU_AMD_PI_00670F00
 	bool
 	select PCI_IO_CFG_EXT
 	select X86_AMD_FIXED_MTRRS
 
-if CPU_AMD_PI_00660F01
+if CPU_AMD_PI_00670F00
 
 config CPU_ADDR_BITS
 	int
diff --git a/src/cpu/amd/pi/00670F00/chip_name.c b/src/cpu/amd/pi/00670F00/chip_name.c
index ff2bc06..98692c6 100644
--- a/src/cpu/amd/pi/00670F00/chip_name.c
+++ b/src/cpu/amd/pi/00670F00/chip_name.c
@@ -15,6 +15,6 @@
 
 #include <device/device.h>
 
-struct chip_operations cpu_amd_pi_00660F01_ops = {
+struct chip_operations cpu_amd_pi_00670F00_ops = {
 	CHIP_NAME("AMD CPU Family 15h")
 };
diff --git a/src/cpu/amd/pi/00670F00/model_15_init.c b/src/cpu/amd/pi/00670F00/model_15_init.c
index e252c3d..041d036 100644
--- a/src/cpu/amd/pi/00670F00/model_15_init.c
+++ b/src/cpu/amd/pi/00670F00/model_15_init.c
@@ -130,8 +130,7 @@ static struct device_operations cpu_dev_ops = {
 };
 
 static struct cpu_device_id cpu_table[] = {
-	{ X86_VENDOR_AMD, 0x660f00 },
-	{ X86_VENDOR_AMD, 0x660f01 },
+	{ X86_VENDOR_AMD, 0x670f00 },
 	{ 0, 0 },
 };
 
diff --git a/src/cpu/amd/pi/Kconfig b/src/cpu/amd/pi/Kconfig
index 3e8d5c7..0bfe77c 100644
--- a/src/cpu/amd/pi/Kconfig
+++ b/src/cpu/amd/pi/Kconfig
@@ -17,6 +17,7 @@ config CPU_AMD_PI
 	bool
 	default y if CPU_AMD_PI_00630F01
 	default y if CPU_AMD_PI_00730F01
+	default y if CPU_AMD_PI_00670F00
 	default y if CPU_AMD_PI_00660F01
 	default n
 	select ARCH_BOOTBLOCK_X86_32
@@ -69,4 +70,5 @@ endif # CPU_AMD_PI
 
 source src/cpu/amd/pi/00630F01/Kconfig
 source src/cpu/amd/pi/00730F01/Kconfig
+source src/cpu/amd/pi/00670F00/Kconfig
 source src/cpu/amd/pi/00660F01/Kconfig
diff --git a/src/cpu/amd/pi/Makefile.inc b/src/cpu/amd/pi/Makefile.inc
index 569c7af..f85d9b6 100644
--- a/src/cpu/amd/pi/Makefile.inc
+++ b/src/cpu/amd/pi/Makefile.inc
@@ -15,6 +15,7 @@
 
 subdirs-$(CONFIG_CPU_AMD_PI_00630F01) += 00630F01
 subdirs-$(CONFIG_CPU_AMD_PI_00730F01) += 00730F01
+subdirs-$(CONFIG_CPU_AMD_PI_00670F00) += 00670F00
 subdirs-$(CONFIG_CPU_AMD_PI_00660F01) += 00660F01
 
 romstage-y += s3_resume.c



More information about the coreboot-gerrit mailing list