- add support for socket 754

- fix configuration creation for amd solo (doesn't compile yet)


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1690 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer
2004-10-19 10:30:32 +00:00
parent 9f12caaf10
commit de24e61df7
6 changed files with 338 additions and 294 deletions

View File

@ -0,0 +1,3 @@
config chip.h
object socket_754.o
dir /cpu/amd/model_fxx

View File

@ -0,0 +1,4 @@
extern struct chip_operations cpu_amd_socket_754_ops;
struct cpu_amd_socket_754_config {
};

View File

@ -0,0 +1,7 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations cpu_amd_socket_754_ops = {
.name = "socket 754",
};