]> git.sur5r.net Git - u-boot/blob - board/tb0229/tb0229.c
* Patch by liang a lei, 9 Jan 2004:
[u-boot] / board / tb0229 / tb0229.c
1 /*
2  * Board initialize code for TANBAC Evaluation board TB0229.
3  *
4  * (C) Masami Komiya <mkomiya@sonare.it> 2004
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; either version 2, or (at
9  * your option) any later version.
10  */
11
12 #include <common.h>
13 #include <command.h>
14 #include <asm/addrspace.h>
15 #include <asm/inca-ip.h>
16 #include <pci.h>
17
18 unsigned long mips_io_port_base = 0;
19
20 #if defined(CONFIG_PCI)
21 static struct pci_controller hose;
22
23 void pci_init_board (void)
24 {
25         init_vr4131_pci(&hose);
26 }
27 #endif
28
29
30 long int initdram(int board_type)
31 {
32         return get_ram_size (CFG_SDRAM_BASE, 0x8000000);
33 }
34
35
36 int checkboard (void)
37 {
38         printf("Board: TANBAC TB0229 ");
39         printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
40
41         return 0;
42 }