Add support for the AMP TinyGX

This board builds fine. It does NOT produce a 4G executable on: 
rminnich@lb:~/src/bios/coreboot-v3$ cat /etc/issue
Ubuntu 7.10 \n \l

rminnich@lb:~/src/bios/coreboot-v3$ gcc -v -v 
Using built-in specs.
Target: i486-linux-gnu
Configured with: ../src/configure -v --enable-languages=c,c++,fortran,objc,obj-c++,treelang --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.1.3 --program-suffix=-4.1 --enable-__cxa_atexit --enable-clocale=gnu --enable-libstdcxx-debug --enable-mpfr --enable-checking=release i486-linux-gnu
Thread model: posix
gcc version 4.1.3 20070929 (prerelease) (Ubuntu 4.1.2-16ubuntu2)
rminnich@lb:~/src/bios/coreboot-v3$ ld -v -v 
GNU ld (GNU Binutils for Ubuntu) 2.18
GNU ld (GNU Binutils for Ubuntu) 2.18
rminnich@lb:~/src/bios/coreboot-v3$ 


Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Index: superio/ite/it8716f/dts
===================================================================
--- superio/ite/it8716f/dts	(revision 863)
+++ superio/ite/it8716f/dts	(working copy)
@@ -1,22 +1,24 @@
-##
-## This file is part of the coreboot project.
-##
-## Copyright (C) 2008 Peter Stuge <peter@stuge.se>
-##
-## This program is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License as published by
-## the Free Software Foundation; either version 2 of the License, or
-## (at your option) any later version.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-## GNU General Public License for more details.
-##
-## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
-##
+/*
+ *
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2008 Peter Stuge <peter@stuge.se>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ *
+ */
 {
 	/* Floppy */
 	floppydev = "0x0";
Index: mainboard/Kconfig
===================================================================
--- mainboard/Kconfig	(revision 863)
+++ mainboard/Kconfig	(working copy)
@@ -37,6 +37,12 @@
 	  Select this option for various systems from 
 	  Advanced Micro Devices, Inc.
 
+config VENDOR_AMP
+	bool "AMP"
+	help
+	  Select this option for various systems from 
+	  Advanced Micro Devices, Inc.
+
 config VENDOR_ARTECGROUP
 	bool "Artec Group"
 	help
@@ -61,6 +67,7 @@
 
 source "mainboard/adl/Kconfig"
 source "mainboard/amd/Kconfig"
+source "mainboard/amp/Kconfig"
 source "mainboard/artecgroup/Kconfig"
 source "mainboard/emulation/Kconfig"
 source "mainboard/gigabyte/Kconfig"
Index: mainboard/amp/Kconfig
===================================================================
--- mainboard/amp/Kconfig	(revision 0)
+++ mainboard/amp/Kconfig	(working copy)
@@ -21,57 +21,24 @@
 
 choice
 	prompt "Mainboard model"
-	depends on VENDOR_AMD
+	depends on VENDOR_AMP
 
-config BOARD_AMD_DB800
-	bool "DB800"
+config BOARD_AMP_TINYGX
+	bool "TinyGX"
 	select ARCH_X86
 	select CPU_AMD_GEODELX
 	select OPTION_TABLE
 	select NORTHBRIDGE_AMD_GEODELX
 	select SOUTHBRIDGE_AMD_CS5536
-	select SUPERIO_WINBOND_W83627HF
+	select SUPERIO_ITE_IT8716F
 	select PIRQ_TABLE
 	help
-	  AMD DB800 Geode LX development board.
+	  SMP TinyGX
 
-config BOARD_AMD_NORWICH
-	bool "Norwich"
-	select ARCH_X86
-	select CPU_AMD_GEODELX
-	select OPTION_TABLE
-	select NORTHBRIDGE_AMD_GEODELX
-	select SOUTHBRIDGE_AMD_CS5536
-	select PIRQ_TABLE
-	help
-	  AMD Norwich Geode LX development board.
-
-config BOARD_AMD_SERENGETI
-	bool "Serengeti"
-	select ARCH_X86
-	select OPTION_TABLE
-	select CPU_AMD_K8
-	select NORTHBRIDGE_AMD_K8
-	select SOUTHBRIDGE_AMD_AMD8111
-	select SUPERIO_WINBOND_W83627HF
-	select IOAPIC
-	help
-	  AMD Serengeti
-
 endchoice
 
 config MAINBOARD_DIR
 	string
-	default amd/db800
-	depends BOARD_AMD_DB800
+	default amp/tinygx
+	depends BOARD_AMP_TINYGX
 
-config MAINBOARD_DIR
-	string
-	default amd/norwich
-	depends BOARD_AMD_NORWICH
-
-config MAINBOARD_DIR
-	string
-	default amd/serengeti
-	depends BOARD_AMD_SERENGETI
-
Index: mainboard/amp/tinygx/stage1.c
===================================================================
--- mainboard/amp/tinygx/stage1.c	(revision 0)
+++ mainboard/amp/tinygx/stage1.c	(working copy)
@@ -28,14 +28,14 @@
 #include <io.h>
 #include <amd_geodelx.h>
 #include <southbridge/amd/cs5536/cs5536.h>
-#include <superio/winbond/w83627hf/w83627hf.h>
+#include <superio/ite/it8716f/it8716f.h>
 
-#define SERIAL_DEV W83627HF_SP1
+#define SERIAL_DEV IT8716F_SP1
 #define SERIAL_IOBASE 0x3f8
 
 void hardware_stage1(void)
 {
-	void w83627hf_enable_serial(u8 dev, u8 serial, u16 iobase);
+ 	void it8716f_enable_serial(u8 dev, u8 serial, u16 iobase);
 	post_code(POST_START_OF_MAIN);
 	geodelx_msr_init();
 
@@ -46,7 +46,7 @@
 	 * for cs5536.
 	 */
 	cs5536_disable_internal_uart();
-	w83627hf_enable_serial(0x2e, SERIAL_DEV, SERIAL_IOBASE);
+ 	it8716f_enable_serial(0x2e, SERIAL_DEV, SERIAL_IOBASE);
 
 }
 
Index: mainboard/amp/tinygx/dts
===================================================================
--- mainboard/amp/tinygx/dts	(revision 0)
+++ mainboard/amp/tinygx/dts	(working copy)
@@ -19,8 +19,8 @@
  */
 
 /{
-	mainboard_vendor = "AMD";
-	mainboard_name = "DB800";
+	mainboard_vendor = "AMP";
+	mainboard_name = "TinyGX";
 	mainboard_pci_subsystem_vendor = "0x1022";
 	mainboard_pci_subsystem_device = "0x2323";
 	cpus { };
@@ -53,7 +53,7 @@
 			enable_ide = "1";
 		};
 		ioport@2e {
-			/config/("superio/winbond/w83627hf/dts");
+			/config/("superio/ite/it8716f/dts");
 			com1enable = "1";
 		};
 	};
