Blackfin: kill off useless initdram() usage

While the initdram() function makes sense on some arches, it doesn't for
Blackfin systems as it's always implemented the same way.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
Mike Frysinger 2009-11-03 06:28:22 -05:00
parent b1e2c5519a
commit fa45bd498a
23 changed files with 3 additions and 155 deletions

View File

@ -25,13 +25,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#if defined(CONFIG_BFIN_MAC) #if defined(CONFIG_BFIN_MAC)
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -39,13 +39,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
/* miscellaneous platform dependent initialisations */ /* miscellaneous platform dependent initialisations */
int misc_init_r(void) int misc_init_r(void)
{ {

View File

@ -39,13 +39,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
/* PF0 and PF1 are used to switch between the ethernet and flash: /* PF0 and PF1 are used to switch between the ethernet and flash:
* PF0 PF1 * PF0 PF1
* flash: 0 0 * flash: 0 0

View File

@ -23,13 +23,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -23,13 +23,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -23,13 +23,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -43,13 +43,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
void board_reset(void) void board_reset(void)
{ {
/* workaround for weak pull ups on ssel */ /* workaround for weak pull ups on ssel */

View File

@ -20,13 +20,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_SMC91111 #ifdef CONFIG_SMC91111
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {

View File

@ -21,13 +21,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
int board_early_init_f(void) int board_early_init_f(void)
{ {
/* Port H: PH8 - PH13 == A4 - A9 /* Port H: PH8 - PH13 == A4 - A9

View File

@ -43,13 +43,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_SMC911X #ifdef CONFIG_SMC911X
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {

View File

@ -38,13 +38,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_SMC91111 #ifdef CONFIG_SMC91111
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef SHARED_RESOURCES #ifdef SHARED_RESOURCES
void swap_to(int device_id) void swap_to(int device_id)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -18,13 +18,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_SMC91111 #ifdef CONFIG_SMC91111
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -21,13 +21,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
int board_early_init_f(void) int board_early_init_f(void)
{ {
/* Port H: PH8 - PH13 == A4 - A9 /* Port H: PH8 - PH13 == A4 - A9

View File

@ -18,13 +18,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_SMC91111 #ifdef CONFIG_SMC91111
int board_eth_init(bd_t *bis) int board_eth_init(bd_t *bis)
{ {

View File

@ -16,10 +16,3 @@ int checkboard(void)
printf(" Support: http://www.i-syst.com/\n"); printf(" Support: http://www.i-syst.com/\n");
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}

View File

@ -24,13 +24,6 @@ int checkboard(void)
return 0; return 0;
} }
phys_size_t initdram(int board_type)
{
gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
return gd->bd->bi_memsize;
}
#ifdef CONFIG_BFIN_MAC #ifdef CONFIG_BFIN_MAC
static void board_init_enetaddr(uchar *mac_addr) static void board_init_enetaddr(uchar *mac_addr)
{ {

View File

@ -239,6 +239,8 @@ void board_init_f(ulong bootflag)
bd->bi_vco = get_vco(); bd->bi_vco = get_vco();
bd->bi_cclk = get_cclk(); bd->bi_cclk = get_cclk();
bd->bi_sclk = get_sclk(); bd->bi_sclk = get_sclk();
bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
/* Initialize */ /* Initialize */
serial_early_puts("IRQ init\n"); serial_early_puts("IRQ init\n");
@ -262,7 +264,7 @@ void board_init_f(ulong bootflag)
printf("System: %s MHz\n", strmhz(buf, get_sclk())); printf("System: %s MHz\n", strmhz(buf, get_sclk()));
printf("RAM: "); printf("RAM: ");
print_size(initdram(0), "\n"); print_size(bd->bi_memsize, "\n");
#if defined(CONFIG_POST) #if defined(CONFIG_POST)
post_init_f(); post_init_f();
post_bootmode_init(); post_bootmode_init();