diff options
Diffstat (limited to 'src/cpu/amd/socket_AM3/Kconfig')
-rw-r--r-- | src/cpu/amd/socket_AM3/Kconfig | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/cpu/amd/socket_AM3/Kconfig b/src/cpu/amd/socket_AM3/Kconfig new file mode 100644 index 0000000000..6b8d12d3d4 --- /dev/null +++ b/src/cpu/amd/socket_AM3/Kconfig @@ -0,0 +1,47 @@ +config CPU_AMD_SOCKET_AM3 + bool + select CPU_AMD_MODEL_10XXX + select HT3_SUPPORT + select PCI_IO_CFG_EXT + +config CPU_SOCKET_TYPE + hex + default 0x11 + depends on CPU_AMD_SOCKET_AM3 + +# DDR3 and REG +config DIMM_SUPPORT + hex + default 0x0005 + depends on CPU_AMD_SOCKET_AM3 + +config EXT_RT_TBL_SUPPORT + bool + default n + depends on CPU_AMD_SOCKET_AM3 + +config EXT_CONF_SUPPORT + bool + default n + depends on CPU_AMD_SOCKET_AM3 + +config CBB + hex + default 0x0 + depends on CPU_AMD_SOCKET_AM3 + +config CDB + hex + default 0x18 + depends on CPU_AMD_SOCKET_AM3 + +config XIP_ROM_BASE + hex + default 0xfff80000 + depends on CPU_AMD_SOCKET_AM3 + +config XIP_ROM_SIZE + hex + default 0x80000 + depends on CPU_AMD_SOCKET_AM3 + |