mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-17 02:08:38 +00:00
9973e3c614
This patch changes the return type of initdram() from long int to phys_size_t. This is required for a couple of reasons: long int limits the amount of dram to 2GB, and u-boot in general is moving over to phys_size_t to represent the size of physical memory. phys_size_t is defined as an unsigned long on almost all current platforms. This patch *only* changes the return type of the initdram function (in include/common.h, as well as in each board's implementation of initdram). It does not actually modify the code inside the function on any of the platforms; platforms which wish to support more than 2GB of DRAM will need to modify their initdram() function code. Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc MPC8641HPCN. Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
48 lines
941 B
C
48 lines
941 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/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 (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;
|
|
}
|