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:
Richard Smith
2006-07-24 04:25:47 +00:00
parent 4788effb04
commit cb8eab482f
29 changed files with 1811 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
config chip.h
object socket_PGA370.o
dir /cpu/intel/model_6xx

View File

@@ -0,0 +1,4 @@
extern struct chip_operations cpu_intel_socket_PGA370_ops;
struct cpu_intel_socket_PGA370_config {
};

View File

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