diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-08-24 11:10:50 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2017-08-28 14:38:04 +0000 |
commit | 8e0bc131c8790489507a90a39f7552e607398679 (patch) | |
tree | 12a58e5f745c29724173bb05eff44f043de4e9e3 /src/mainboard/tyan | |
parent | 7a10c9b10657cb8c02c11c2f73ff5cfaa262304c (diff) |
AGESA f15: Remove f10 references
Vendorcode for f15 also has f10 support, so
AMD_AGESA_FAMILY_10 was never selected.
Change-Id: I9a026c36ace88f1110a52d7e24d3e6ab36508932
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/21184
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/tyan')
-rw-r--r-- | src/mainboard/tyan/s8226/buildOpts.c | 9 | ||||
-rw-r--r-- | src/mainboard/tyan/s8226/rd890_cfg.h | 5 | ||||
-rw-r--r-- | src/mainboard/tyan/s8226/romstage.c | 2 |
3 files changed, 3 insertions, 13 deletions
diff --git a/src/mainboard/tyan/s8226/buildOpts.c b/src/mainboard/tyan/s8226/buildOpts.c index e27ec163ee..7c5ea5a34a 100644 --- a/src/mainboard/tyan/s8226/buildOpts.c +++ b/src/mainboard/tyan/s8226/buildOpts.c @@ -425,13 +425,4 @@ CONST AP_MTRR_SETTINGS ROMDATA s8226_ap_mtrr_list[] = * This file include MUST occur AFTER the user option selection settings */ -/* -#if IS_ENABLED(CONFIG_CPU_AMD_AGESA_FAMILY15) - #define BLDOPT_REMOVE_FAMILY_10_SUPPORT TRUE -#endif -#if IS_ENABLED(CONFIG_CPU_AMD_AGESA_FAMILY10) - #define BLDOPT_REMOVE_FAMILY_15_SUPPORT TRUE -#endif -*/ - #include "SanMarinoInstall.h" diff --git a/src/mainboard/tyan/s8226/rd890_cfg.h b/src/mainboard/tyan/s8226/rd890_cfg.h index 6607094281..0227c3f54d 100644 --- a/src/mainboard/tyan/s8226/rd890_cfg.h +++ b/src/mainboard/tyan/s8226/rd890_cfg.h @@ -27,11 +27,10 @@ * [12..15] - Sublink (1..2), If NB connected to full link than Sublink should be set to 0. */ #ifndef DEFAULT_HT_PATH -#if IS_ENABLED(CONFIG_CPU_AMD_AGESA_FAMILY10) -#define DEFAULT_HT_PATH {0x0, 0x3} -#endif #if IS_ENABLED(CONFIG_CPU_AMD_AGESA_FAMILY15) #define DEFAULT_HT_PATH {0x0, 0x1} +#else /* FAMILY10 */ +#define DEFAULT_HT_PATH {0x0, 0x3} #endif #endif diff --git a/src/mainboard/tyan/s8226/romstage.c b/src/mainboard/tyan/s8226/romstage.c index 5311a87a3b..220098dadd 100644 --- a/src/mainboard/tyan/s8226/romstage.c +++ b/src/mainboard/tyan/s8226/romstage.c @@ -25,7 +25,7 @@ #include <cpu/amd/car.h> #include <northbridge/amd/agesa/agesawrapper.h> #include <northbridge/amd/agesa/agesa_helper.h> -#include <northbridge/amd/agesa/family10/reset_test.h> +#include <northbridge/amd/agesa/family15/reset_test.h> #include <nb_cimx.h> #include <sb_cimx.h> #include <superio/winbond/common/winbond.h> |