mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
5c15010efa
This patch has been sent on: - 29 Sep 2007 Although mips_io_port_base is currently a part of IDE command, it is quite fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move it to MIPS general part, and introduce `set_io_port_base()' from Linux. This patch is triggered by multiple definition of `mips_io_port_base' build error on gth2 (and tb0229 also needs this fix.) board/gth2/libgth2.a(gth2.o): In function `log_serial_char': /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base' common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here make: *** [u-boot] Error 1 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41 lines
859 B
C
41 lines
859 B
C
/*
|
|
* 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 <asm/io.h>
|
|
#include <pci.h>
|
|
|
|
#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);
|
|
|
|
set_io_port_base(0);
|
|
|
|
return 0;
|
|
}
|