diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-05-24 00:34:15 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-05-31 03:42:11 +0000 |
commit | d840eb5719e51e1946ab322c0eb94defc72dde1d (patch) | |
tree | d74fa8bb59692dbb92fed137363d61f427dda2d0 /src/cpu/amd/socket_940 | |
parent | 4979ffc5cb267c7b0a5ad84c8bb9729e6b5613b1 (diff) |
Remove AMD K8 cpu and northbridge support
Change-Id: I9c53dfa93bf906334f5c80e4525a1c27153656a3
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/26673
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/cpu/amd/socket_940')
-rw-r--r-- | src/cpu/amd/socket_940/Kconfig | 32 | ||||
-rw-r--r-- | src/cpu/amd/socket_940/Makefile.inc | 13 |
2 files changed, 0 insertions, 45 deletions
diff --git a/src/cpu/amd/socket_940/Kconfig b/src/cpu/amd/socket_940/Kconfig deleted file mode 100644 index 47b455b94c..0000000000 --- a/src/cpu/amd/socket_940/Kconfig +++ /dev/null @@ -1,32 +0,0 @@ -config CPU_AMD_SOCKET_940 - bool - -if CPU_AMD_SOCKET_940 - -config SOCKET_SPECIFIC_OPTIONS - def_bool y - select K8_HT_FREQ_1G_SUPPORT - select CPU_AMD_MODEL_FXX - select X86_AMD_FIXED_MTRRS - -config DCACHE_RAM_BASE - hex - default 0xc8000 - -config DCACHE_RAM_SIZE - hex - default 0x08000 - -config DCACHE_BSP_STACK_SIZE - hex - default 0x2000 - -config DCACHE_BSP_STACK_SLUSH - hex - default 0x1000 - -config DCACHE_AP_STACK_SIZE - hex - default 0x400 - -endif # CPU_AMD_SOCKET_940 diff --git a/src/cpu/amd/socket_940/Makefile.inc b/src/cpu/amd/socket_940/Makefile.inc deleted file mode 100644 index 38421d71c0..0000000000 --- a/src/cpu/amd/socket_940/Makefile.inc +++ /dev/null @@ -1,13 +0,0 @@ -subdirs-y += ../model_fxx -subdirs-y += ../dualcore -subdirs-y += ../mtrr -subdirs-y += ../microcode -subdirs-y += ../../x86/tsc -subdirs-y += ../../x86/lapic -subdirs-y += ../../x86/cache -subdirs-y += ../../x86/mtrr -subdirs-y += ../../x86/pae -subdirs-y += ../../x86/smm -subdirs-y += ../smm - -cpu_incs-y += $(src)/cpu/amd/car/cache_as_ram.inc |