diff options
Diffstat (limited to 'src/northbridge/amd')
-rw-r--r-- | src/northbridge/amd/amdfam10/Kconfig | 48 | ||||
-rw-r--r-- | src/northbridge/amd/amdk8/Kconfig | 24 |
2 files changed, 72 insertions, 0 deletions
diff --git a/src/northbridge/amd/amdfam10/Kconfig b/src/northbridge/amd/amdfam10/Kconfig index 5ba0fa9515..e73eca81d4 100644 --- a/src/northbridge/amd/amdfam10/Kconfig +++ b/src/northbridge/amd/amdfam10/Kconfig @@ -75,4 +75,52 @@ config SB_HT_CHAIN_UNITID_OFFSET_ONLY default n depends on NORTHBRIDGE_AMD_AMDFAM10 +config DIMM_FBDIMM + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +config DIMM_DDR2 + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +config DIMM_DDR3 + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +config DIMM_REGISTERED + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +if DIMM_FB_DIMM + config DIMM_SUPPORT + hex + default 0x0110 +endif + +if DIMM_DDR2 + if DIMM_REGISTERED + config DIMM_SUPPORT + hex + default 0x0104 + endif + + if !DIMM_REGISTERED + config DIMM_SUPPORT + hex + default 0x0004 + endif +endif + +if DIMM_DDR3 + if DIMM_REGISTERED + config DIMM_SUPPORT + hex + default 0x0005 + endif +endif + source src/northbridge/amd/amdfam10/root_complex/Kconfig diff --git a/src/northbridge/amd/amdk8/Kconfig b/src/northbridge/amd/amdk8/Kconfig index 014e1ee03d..02a23ab36e 100644 --- a/src/northbridge/amd/amdk8/Kconfig +++ b/src/northbridge/amd/amdk8/Kconfig @@ -53,4 +53,28 @@ config SB_HT_CHAIN_UNITID_OFFSET_ONLY default n depends on NORTHBRIDGE_AMD_AMDK8 +config DIMM_DDR2 + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +config DIMM_REGISTERED + bool + default n + depends on NORTHBRIDGE_AMD_AMDFAM10 + +if DIMM_DDR2 + if DIMM_REGISTERED + config DIMM_SUPPORT + hex + default 0x0104 + endif + + if !DIMM_REGISTERED + config DIMM_SUPPORT + hex + default 0x0004 + endif +endif + source src/northbridge/amd/amdk8/root_complex/Kconfig |