aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/aaeon/pfm-540i_revb/mainboard.c
diff options
context:
space:
mode:
authorMark Norman <mpnorman@gmail.com>2011-06-14 22:20:37 +0930
committerStefan Reinauer <stefan.reinauer@coreboot.org>2011-06-29 18:32:59 +0200
commit0d21cd36b781076409d370935faf6081d970f644 (patch)
tree48ad28656f837ee2c7cbf63d33b1622f41ab3d2a /src/mainboard/aaeon/pfm-540i_revb/mainboard.c
parent811787abd5ec0c944a77ad1dda8817c95948b0c4 (diff)
Added support for Aaeon PFM-540I RevB PC104 SBC
The Aaeon PFM-540I RevB SBC is a PC104 SBC using a AMD Geode LX800 CPU. More infomation about the board available at www.aaeon.com. Change-Id: Ia8a3caacdc9ff1820a6c0a13a9a7ee758b929dfd Signed-off-by: Mark Norman <mpnorman@gmail.com> Reviewed-on: http://review.coreboot.org/30 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/mainboard/aaeon/pfm-540i_revb/mainboard.c')
-rw-r--r--src/mainboard/aaeon/pfm-540i_revb/mainboard.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/mainboard/aaeon/pfm-540i_revb/mainboard.c b/src/mainboard/aaeon/pfm-540i_revb/mainboard.c
new file mode 100644
index 0000000000..72e500cc0c
--- /dev/null
+++ b/src/mainboard/aaeon/pfm-540i_revb/mainboard.c
@@ -0,0 +1,38 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2011 Mark Norman <mpnorman@gmail.com>
+ *
+ * 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, "AAEON PFM-540I_REVB ENTER %s\n", __func__);
+ printk(BIOS_DEBUG, "AAEON PFM-540I_REVB EXIT %s\n", __func__);
+}
+
+static void enable_dev(struct device *dev)
+{
+ dev->ops->init = init;
+}
+
+struct chip_operations mainboard_ops = {
+ CHIP_NAME("AAEON PFM-540I_REVB Mainboard")
+ .enable_dev = enable_dev,
+};