add framework for i440bx chipset
add support for NSC pc87351 SuperIO add Bitworks/IMS manboard config This is a very basic framework for the i440bx chipset and the Bitworks IMS board that uses it. Most things are structure only. Known issues: - SMbus reads to the RAM SPD come back all zero. - dump_spd_registers() is commented out since it breaks with the default setting of generic_dump_spd.c where it wants 2 memory controllers. git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2347 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
3
src/cpu/intel/socket_PGA370/Config.lb
Normal file
3
src/cpu/intel/socket_PGA370/Config.lb
Normal file
@@ -0,0 +1,3 @@
|
||||
config chip.h
|
||||
object socket_PGA370.o
|
||||
dir /cpu/intel/model_6xx
|
4
src/cpu/intel/socket_PGA370/chip.h
Normal file
4
src/cpu/intel/socket_PGA370/chip.h
Normal file
@@ -0,0 +1,4 @@
|
||||
extern struct chip_operations cpu_intel_socket_PGA370_ops;
|
||||
|
||||
struct cpu_intel_socket_PGA370_config {
|
||||
};
|
7
src/cpu/intel/socket_PGA370/socket_PGA370.c
Normal file
7
src/cpu/intel/socket_PGA370/socket_PGA370.c
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <device/device.h>
|
||||
#include "chip.h"
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_PGA370_ops = {
|
||||
CHIP_NAME("socket PGA370")
|
||||
};
|
Reference in New Issue
Block a user