Example #1
0
int dram_init(void)
{
#ifndef	CONFIG_ONENAND
    pxa2xx_dram_init();
#endif
    gd->ram_size = PHYS_SDRAM_1_SIZE;
    return 0;
}
Example #2
0
int dram_init(void)
{
	pxa2xx_dram_init();
	gd->ram_size = PHYS_SDRAM_1_SIZE;
	return 0;
}
Example #3
0
int dram_init(void)
{
	pxa2xx_dram_init();
	gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
	return 0;
}