diff options
author | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:59:18 +0000 |
---|---|---|
committer | arch import user (historical) <svn@openbios.org> | 2005-07-06 16:59:18 +0000 |
commit | c8c720a80138af945f8f5b7fa9d0c6400f23fc9a (patch) | |
tree | f5ec0dd22913c432b1a0cafab21d6b360f4571f9 | |
parent | 613c72abc472307d68a07f8af8e91d9b5ba49a15 (diff) | |
download | coreboot-c8c720a80138af945f8f5b7fa9d0c6400f23fc9a.tar.xz |
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
-rw-r--r-- | src/cpu/amd/sc520/Config.lb | 7 | ||||
-rw-r--r-- | src/cpu/amd/sc520/chip.h | 4 | ||||
-rw-r--r-- | src/cpu/amd/sc520/sc520.c | 7 |
3 files changed, 18 insertions, 0 deletions
diff --git a/src/cpu/amd/sc520/Config.lb b/src/cpu/amd/sc520/Config.lb new file mode 100644 index 0000000000..b61acbc1ab --- /dev/null +++ b/src/cpu/amd/sc520/Config.lb @@ -0,0 +1,7 @@ +uses CONFIG_CHIP_NAME + +if CONFIG_CHIP_NAME + config chip.h +end +object sc520.o + diff --git a/src/cpu/amd/sc520/chip.h b/src/cpu/amd/sc520/chip.h new file mode 100644 index 0000000000..b16db54a5a --- /dev/null +++ b/src/cpu/amd/sc520/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_amd_sc520_ops; + +struct cpu_amd_sc520_config { +}; diff --git a/src/cpu/amd/sc520/sc520.c b/src/cpu/amd/sc520/sc520.c new file mode 100644 index 0000000000..a8e5b0baa2 --- /dev/null +++ b/src/cpu/amd/sc520/sc520.c @@ -0,0 +1,7 @@ +#include <device/device.h> +#include "chip.h" + + +struct chip_operations cpu_amd_sc520_ops = { + CHIP_NAME("AMD SC520") +}; |