diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-02-14 03:40:35 -0600 |
---|---|---|
committer | Alexandru Gagniuc <mr.nuke.me@gmail.com> | 2015-02-16 09:11:32 +0100 |
commit | 2b1bcc12536364ad81e875150f9711dfe406897d (patch) | |
tree | 1696076934d2c385607c297f084b45693268d5aa /src/northbridge/amd/amdmct | |
parent | 3c206781f2671e727c59f2884301338c56990889 (diff) | |
download | coreboot-2b1bcc12536364ad81e875150f9711dfe406897d.tar.xz |
northbridge/amd/amdfam10: Remove Kconfig memory controller options
All settable memory controller options are now controlled by NVRAM,
making the Kconfig options irrelevant.
Change-Id: I9b2c8798d830e5c41bb9a108514e60d784d2ebc5
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/8452
Tested-by: build bot (Jenkins)
Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/northbridge/amd/amdmct')
-rw-r--r-- | src/northbridge/amd/amdmct/wrappers/mcti_d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/northbridge/amd/amdmct/wrappers/mcti_d.c b/src/northbridge/amd/amdmct/wrappers/mcti_d.c index 4b229bcb39..b2cfad6301 100644 --- a/src/northbridge/amd/amdmct/wrappers/mcti_d.c +++ b/src/northbridge/amd/amdmct/wrappers/mcti_d.c @@ -201,7 +201,7 @@ static u16 mctGet_NVbits(u8 index) * 0: Disable * 1: Enable */ - val = CONFIG_AMDMCT_ENABLE_ECC_REDIR; + val = 0; if (get_option(&nvram, "ECC_redirection") == CB_SUCCESS) val = !!nvram; @@ -232,7 +232,7 @@ static u16 mctGet_NVbits(u8 index) * 0x15: 42ms * 0x16: 84ms */ - val = CONFIG_AMDMCT_BACKGROUND_SCRUB_RATE; + val = 0; if ((get_option(&nvram, "ecc_scrub_rate") == CB_SUCCESS) && (nvram <= 0x16)) val = nvram; |