summaryrefslogtreecommitdiff
path: root/board/tb0229/tb0229.c
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-02-07 01:27:10 +0000
committerwdenk <wdenk>2004-02-07 01:27:10 +0000
commitf4863a7aec41f1f78fe93eade700b15b287a5ef7 (patch)
tree12822de96f90354447a6b7a7f36bbc06f46cc57e /board/tb0229/tb0229.c
parentba56f625767d058b0e05a22729de13be5e0f6334 (diff)
* Patch by liang a lei, 9 Jan 2004:
Fix Intel 28F128J3 ID in include/flash.h * Patch by Masami Komiya, 09 Jan 2004: add support for TB0229 board (NEC VR4131 MIPS processor) * Patch by Leon Kukovec, 12 Dec 2003: changed extern __inline__ into static __inline__ in include/linux/byteorder/swab.h
Diffstat (limited to 'board/tb0229/tb0229.c')
-rw-r--r--board/tb0229/tb0229.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/board/tb0229/tb0229.c b/board/tb0229/tb0229.c
new file mode 100644
index 000000000..e7914bd15
--- /dev/null
+++ b/board/tb0229/tb0229.c
@@ -0,0 +1,42 @@
+/*
+ * Board initialize code for TANBAC Evaluation board TB0229.
+ *
+ * (C) Masami Komiya <mkomiya@sonare.it> 2004
+ *
+ * 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, or (at
+ * your option) any later version.
+ */
+
+#include <common.h>
+#include <command.h>
+#include <asm/addrspace.h>
+#include <asm/inca-ip.h>
+#include <pci.h>
+
+unsigned long mips_io_port_base = 0;
+
+#if defined(CONFIG_PCI)
+static struct pci_controller hose;
+
+void pci_init_board (void)
+{
+ init_vr4131_pci(&hose);
+}
+#endif
+
+
+long int initdram(int board_type)
+{
+ return get_ram_size (CFG_SDRAM_BASE, 0x8000000);
+}
+
+
+int checkboard (void)
+{
+ printf("Board: TANBAC TB0229 ");
+ printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
+
+ return 0;
+}