aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/traverse/geos/mainboard.c
diff options
context:
space:
mode:
authorNathan Williams <nathan@traverse.com.au>2010-05-20 07:35:17 +0000
committerStefan Reinauer <stepan@openbios.org>2010-05-20 07:35:17 +0000
commit1a169d2a46047e72e34977b74884b8d9d250f124 (patch)
tree891a6d3b0af976217ac65c23886bbdf24e1a963a /src/mainboard/traverse/geos/mainboard.c
parent6d77252e743424ee7f80ad0920003b46aa29727a (diff)
Add support for the Traverse Technologies Geos mainboard.
This board is similar to the AMD Norwich mainboard. Signed-off-by: Nathan Williams <nathan@traverse.com.au> Acked-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5574 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/traverse/geos/mainboard.c')
-rw-r--r--src/mainboard/traverse/geos/mainboard.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mainboard/traverse/geos/mainboard.c b/src/mainboard/traverse/geos/mainboard.c
new file mode 100644
index 0000000000..b578959171
--- /dev/null
+++ b/src/mainboard/traverse/geos/mainboard.c
@@ -0,0 +1,38 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2007 Advanced Micro Devices, Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * 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
+ */
+
+#include <console/console.h>
+#include <device/device.h>
+#include "chip.h"
+
+static void init(struct device *dev)
+{
+ printk(BIOS_DEBUG, "Geos ENTER %s\n", __func__);
+ printk(BIOS_DEBUG, "Geos EXIT %s\n", __func__);
+}
+
+static void enable_dev(struct device *dev)
+{
+ dev->ops->init = init;
+}
+
+struct chip_operations mainboard_ops = {
+ CHIP_NAME("Traverse Technologies Geos Mainboard")
+ .enable_dev = enable_dev,
+};