Add AMD K8 S1G1 socket support.
Signed-off-by: Michael Xie Michael.Xie@amd.com Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3585 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
committed by
Marc Jones
parent
64caf3607e
commit
8d183c5846
19
src/cpu/amd/socket_S1G1/Config.lb
Normal file
19
src/cpu/amd/socket_S1G1/Config.lb
Normal file
@ -0,0 +1,19 @@
|
||||
uses CONFIG_CHIP_NAME
|
||||
uses K8_REV_F_SUPPORT
|
||||
uses K8_HT_FREQ_1G_SUPPORT
|
||||
uses DIMM_SUPPORT
|
||||
uses CPU_SOCKET_TYPE
|
||||
|
||||
if CONFIG_CHIP_NAME
|
||||
config chip.h
|
||||
end
|
||||
|
||||
default K8_REV_F_SUPPORT=1
|
||||
#Opteron K8 1G HT Support
|
||||
default K8_HT_FREQ_1G_SUPPORT=1
|
||||
default DIMM_SUPPORT=0x0204 #DDR2 and REG, S1G1
|
||||
default CPU_SOCKET_TYPE=0x12
|
||||
|
||||
object socket_S1G1.o
|
||||
|
||||
dir /cpu/amd/model_fxx
|
4
src/cpu/amd/socket_S1G1/chip.h
Normal file
4
src/cpu/amd/socket_S1G1/chip.h
Normal file
@ -0,0 +1,4 @@
|
||||
extern struct chip_operations cpu_amd_socket_S1G1_ops;
|
||||
|
||||
struct cpu_amd_socket_S1G1_config {
|
||||
};
|
6
src/cpu/amd/socket_S1G1/socket_S1G1.c
Normal file
6
src/cpu/amd/socket_S1G1/socket_S1G1.c
Normal file
@ -0,0 +1,6 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
struct chip_operations cpu_amd_socket_S1G1_ops = {
|
||||
CHIP_NAME("Socket S1G1 CPU")
|
||||
};
|
Reference in New Issue
Block a user