From cb8eab482ff09ec256456312ef2d6e7710123551 Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Mon, 24 Jul 2006 04:25:47 +0000 Subject: 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 --- src/cpu/intel/socket_PGA370/Config.lb | 3 +++ src/cpu/intel/socket_PGA370/chip.h | 4 ++++ src/cpu/intel/socket_PGA370/socket_PGA370.c | 7 +++++++ 3 files changed, 14 insertions(+) create mode 100644 src/cpu/intel/socket_PGA370/Config.lb create mode 100644 src/cpu/intel/socket_PGA370/chip.h create mode 100644 src/cpu/intel/socket_PGA370/socket_PGA370.c (limited to 'src/cpu/intel') diff --git a/src/cpu/intel/socket_PGA370/Config.lb b/src/cpu/intel/socket_PGA370/Config.lb new file mode 100644 index 0000000000..8db263b5a0 --- /dev/null +++ b/src/cpu/intel/socket_PGA370/Config.lb @@ -0,0 +1,3 @@ +config chip.h +object socket_PGA370.o +dir /cpu/intel/model_6xx diff --git a/src/cpu/intel/socket_PGA370/chip.h b/src/cpu/intel/socket_PGA370/chip.h new file mode 100644 index 0000000000..469b662dfb --- /dev/null +++ b/src/cpu/intel/socket_PGA370/chip.h @@ -0,0 +1,4 @@ +extern struct chip_operations cpu_intel_socket_PGA370_ops; + +struct cpu_intel_socket_PGA370_config { +}; diff --git a/src/cpu/intel/socket_PGA370/socket_PGA370.c b/src/cpu/intel/socket_PGA370/socket_PGA370.c new file mode 100644 index 0000000000..690e69d0a9 --- /dev/null +++ b/src/cpu/intel/socket_PGA370/socket_PGA370.c @@ -0,0 +1,7 @@ +#include +#include "chip.h" + + +struct chip_operations cpu_intel_socket_PGA370_ops = { + CHIP_NAME("socket PGA370") +}; -- cgit v1.2.3