diff options
author | Zheng Bao <zheng.bao@amd.com> | 2010-04-23 17:35:37 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-23 17:35:37 +0000 |
commit | eedf7a646c36ee5c48a996e2c571223e2eae244b (patch) | |
tree | c6ea574e2f2bbc389482efc3550da77ee29376fb /src/cpu/amd/socket_AM3 | |
parent | eb75f652d392d2f4f257194e112f3f0db7479145 (diff) |
AMD Socket ASB2 and AM3 support.
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5482 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/socket_AM3')
-rw-r--r-- | src/cpu/amd/socket_AM3/Kconfig | 47 | ||||
-rw-r--r-- | src/cpu/amd/socket_AM3/Makefile.inc | 13 | ||||
-rw-r--r-- | src/cpu/amd/socket_AM3/chip.h | 23 | ||||
-rw-r--r-- | src/cpu/amd/socket_AM3/socket_AM3.c | 25 |
4 files changed, 108 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 + diff --git a/src/cpu/amd/socket_AM3/Makefile.inc b/src/cpu/amd/socket_AM3/Makefile.inc new file mode 100644 index 0000000000..9799b7fb4d --- /dev/null +++ b/src/cpu/amd/socket_AM3/Makefile.inc @@ -0,0 +1,13 @@ +obj-y += socket_AM3.o +subdirs-y += ../model_10xxx +subdirs-y += ../quadcore +subdirs-y += ../mtrr +subdirs-y += ../microcode +subdirs-y += ../../x86/tsc +subdirs-y += ../../x86/lapic +subdirs-y += ../../x86/cache +subdirs-y += ../../x86/pae +subdirs-y += ../../x86/smm +subdirs-y += ../../x86/mtrr + +cpu_incs += $(src)/cpu/amd/car/cache_as_ram.inc diff --git a/src/cpu/amd/socket_AM3/chip.h b/src/cpu/amd/socket_AM3/chip.h new file mode 100644 index 0000000000..16e0935225 --- /dev/null +++ b/src/cpu/amd/socket_AM3/chip.h @@ -0,0 +1,23 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2010 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +extern struct chip_operations cpu_amd_socket_AM3_ops; + +struct cpu_amd_socket_AM3_config { +}; diff --git a/src/cpu/amd/socket_AM3/socket_AM3.c b/src/cpu/amd/socket_AM3/socket_AM3.c new file mode 100644 index 0000000000..75b3970cfe --- /dev/null +++ b/src/cpu/amd/socket_AM3/socket_AM3.c @@ -0,0 +1,25 @@ +/* + * This file is part of the coreboot project. + * + * Copyright (C) 2010 Advanced Micro Devices, Inc. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include <device/device.h> +#include "chip.h" + +struct chip_operations cpu_amd_socket_AM3_ops = { + CHIP_NAME("socket AM3") +}; |