2004-02-07 01:27:10 +00:00
|
|
|
/*
|
|
|
|
* 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>
|
2007-11-13 08:11:05 +00:00
|
|
|
#include <asm/io.h>
|
2008-03-25 12:30:07 +00:00
|
|
|
#include <asm/reboot.h>
|
2004-02-07 01:27:10 +00:00
|
|
|
#include <pci.h>
|
|
|
|
|
2008-03-25 12:30:07 +00:00
|
|
|
void _machine_restart(void)
|
|
|
|
{
|
|
|
|
void (*f)(void) = (void *) 0xbfc00000;
|
|
|
|
|
|
|
|
f();
|
|
|
|
}
|
|
|
|
|
2004-02-07 01:27:10 +00:00
|
|
|
#if defined(CONFIG_PCI)
|
|
|
|
static struct pci_controller hose;
|
|
|
|
|
|
|
|
void pci_init_board (void)
|
|
|
|
{
|
|
|
|
init_vr4131_pci(&hose);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-06-09 21:03:40 +00:00
|
|
|
phys_size_t initdram(int board_type)
|
2004-02-07 01:27:10 +00:00
|
|
|
{
|
2008-10-16 13:01:15 +00:00
|
|
|
return get_ram_size (CONFIG_SYS_SDRAM_BASE, 0x8000000);
|
2004-02-07 01:27:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int checkboard (void)
|
|
|
|
{
|
|
|
|
printf("Board: TANBAC TB0229 ");
|
|
|
|
printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
|
|
|
|
|
2007-11-13 08:11:05 +00:00
|
|
|
set_io_port_base(0);
|
|
|
|
|
2004-02-07 01:27:10 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2008-09-01 04:41:08 +00:00
|
|
|
|
|
|
|
int board_eth_init(bd_t *bis)
|
|
|
|
{
|
|
|
|
return pci_eth_init(bis);
|
|
|
|
}
|