Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-16

Creator:  Ronald G. Minnich <rminnich@lanl.gov>

add cpu directory and files for sc520


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1934 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
arch import user (historical) 2005-07-06 16:59:18 +00:00
parent 613c72abc4
commit c8c720a801
3 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,7 @@
uses CONFIG_CHIP_NAME
if CONFIG_CHIP_NAME
config chip.h
end
object sc520.o

4
src/cpu/amd/sc520/chip.h Normal file
View File

@ -0,0 +1,4 @@
extern struct chip_operations cpu_amd_sc520_ops;
struct cpu_amd_sc520_config {
};

View File

@ -0,0 +1,7 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations cpu_amd_sc520_ops = {
CHIP_NAME("AMD SC520")
};