summaryrefslogtreecommitdiffstats
path: root/board/tb0229/tb0229.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2011-12-11 21:58:19 +0000
committerWolfgang Denk <wd@denx.de>2011-12-12 14:26:48 +0100
commit3f3110d78be1f9f13bfc8e5c64e279f50f2c7c43 (patch)
treef2c74323a6dfd96e3b2b075f88e83379dba12c22 /board/tb0229/tb0229.c
parent6bef783310ed12bbbe309e8baf1689afc43ab93e (diff)
downloadblackbird-obmc-uboot-3f3110d78be1f9f13bfc8e5c64e279f50f2c7c43.tar.gz
blackbird-obmc-uboot-3f3110d78be1f9f13bfc8e5c64e279f50f2c7c43.zip
MIPS: remove broken "tb0229" board
The "tb0229" board has long been unmaintained, and is broken. Remove it. Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/tb0229/tb0229.c')
-rw-r--r--board/tb0229/tb0229.c54
1 files changed, 0 insertions, 54 deletions
diff --git a/board/tb0229/tb0229.c b/board/tb0229/tb0229.c
deleted file mode 100644
index 8e374a17f7..0000000000
--- a/board/tb0229/tb0229.c
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * 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 <netdev.h>
-#include <asm/addrspace.h>
-#include <asm/io.h>
-#include <asm/reboot.h>
-#include <pci.h>
-
-void _machine_restart(void)
-{
- void (*f)(void) = (void *) 0xbfc00000;
-
- f();
-}
-
-#if defined(CONFIG_PCI)
-static struct pci_controller hose;
-
-void pci_init_board (void)
-{
- init_vr4131_pci(&hose);
-}
-#endif
-
-phys_size_t initdram(int board_type)
-{
- return get_ram_size (CONFIG_SYS_SDRAM_BASE, 0x8000000);
-}
-
-int checkboard (void)
-{
- printf("Board: TANBAC TB0229 ");
- printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
-
- set_io_port_base(0);
-
- return 0;
-}
-
-int board_eth_init(bd_t *bis)
-{
- return pci_eth_init(bis);
-}
OpenPOWER on IntegriCloud