diff options
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/amd/pi/00670F00/Kconfig | 8 | ||||
-rw-r--r-- | src/cpu/amd/pi/Kconfig | 3 | ||||
-rw-r--r-- | src/cpu/amd/pi/Makefile.inc | 3 |
3 files changed, 10 insertions, 4 deletions
diff --git a/src/cpu/amd/pi/00670F00/Kconfig b/src/cpu/amd/pi/00670F00/Kconfig index b4ba450aaf..16884f1133 100644 --- a/src/cpu/amd/pi/00670F00/Kconfig +++ b/src/cpu/amd/pi/00670F00/Kconfig @@ -13,11 +13,15 @@ # GNU General Public License for more details. # -config CPU_AMD_PI_00670F00 +config CPU_AMD_PI_00670F00_FP4 bool select X86_AMD_FIXED_MTRRS -if CPU_AMD_PI_00670F00 +config CPU_AMD_PI_00670F00_FT4 + bool + select X86_AMD_FIXED_MTRRS + +if CPU_AMD_PI_00670F00_FP4 || CPU_AMD_PI_00670F00_FT4 config CPU_ADDR_BITS int diff --git a/src/cpu/amd/pi/Kconfig b/src/cpu/amd/pi/Kconfig index ed379ea351..91363c5f59 100644 --- a/src/cpu/amd/pi/Kconfig +++ b/src/cpu/amd/pi/Kconfig @@ -17,7 +17,8 @@ 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_00670F00_FP4 + default y if CPU_AMD_PI_00670F00_FT4 default y if CPU_AMD_PI_00660F01 default n select ARCH_BOOTBLOCK_X86_32 diff --git a/src/cpu/amd/pi/Makefile.inc b/src/cpu/amd/pi/Makefile.inc index 3dcbbc35c2..a5ed12054a 100644 --- a/src/cpu/amd/pi/Makefile.inc +++ b/src/cpu/amd/pi/Makefile.inc @@ -15,7 +15,8 @@ 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_00670F00_FP4) += 00670F00 +subdirs-$(CONFIG_CPU_AMD_PI_00670F00_FT4) += 00670F00 subdirs-$(CONFIG_CPU_AMD_PI_00660F01) += 00660F01 ramstage-$(CONFIG_SPI_FLASH) += spi.c |