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:
parent
613c72abc4
commit
c8c720a801
3 changed files with 18 additions and 0 deletions
7
src/cpu/amd/sc520/Config.lb
Normal file
7
src/cpu/amd/sc520/Config.lb
Normal 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
4
src/cpu/amd/sc520/chip.h
Normal file
|
@ -0,0 +1,4 @@
|
|||
extern struct chip_operations cpu_amd_sc520_ops;
|
||||
|
||||
struct cpu_amd_sc520_config {
|
||||
};
|
7
src/cpu/amd/sc520/sc520.c
Normal file
7
src/cpu/amd/sc520/sc520.c
Normal file
|
@ -0,0 +1,7 @@
|
|||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
|
||||
struct chip_operations cpu_amd_sc520_ops = {
|
||||
CHIP_NAME("AMD SC520")
|
||||
};
|
Loading…
Reference in a new issue