2007-06-01 13:27:11 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007
|
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-06-01 13:27:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2010-09-09 17:18:00 +00:00
|
|
|
#include <asm/ppc4xx.h>
|
2007-06-01 13:27:11 +00:00
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
static void wait_init_complete(void)
|
|
|
|
{
|
|
|
|
u32 val;
|
|
|
|
|
|
|
|
do {
|
2009-09-24 11:59:57 +00:00
|
|
|
mfsdram(SDRAM0_MCSTS, val);
|
2007-06-01 13:27:11 +00:00
|
|
|
} while (!(val & 0x80000000));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-06-09 21:03:40 +00:00
|
|
|
* phys_size_t initdram(int board_type)
|
2007-06-01 13:27:11 +00:00
|
|
|
*
|
|
|
|
* As the name already indicates, this function is called very early
|
|
|
|
* from start.S and configures the SDRAM with fixed values. This is needed,
|
|
|
|
* since the 440EP has no internal SRAM and the 4kB NAND_SPL loader has
|
|
|
|
* not enough free space to implement the complete I2C SPD DDR autodetection
|
|
|
|
* routines. Therefore the Bamboo only supports the onboard 64MBytes of SDRAM
|
|
|
|
* when booting from NAND flash.
|
2007-10-23 06:29:10 +00:00
|
|
|
*
|
|
|
|
* Note:
|
|
|
|
* As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
|
|
|
|
* DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
|
|
|
|
* modules are still plugged in. So it is recommended to remove the DIMM
|
|
|
|
* modules while using the NAND booting code with the fixed SDRAM setup!
|
2007-06-01 13:27:11 +00:00
|
|
|
*/
|
2008-06-09 21:03:40 +00:00
|
|
|
phys_size_t initdram(int board_type)
|
2007-06-01 13:27:11 +00:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Soft-reset SDRAM controller.
|
|
|
|
*/
|
2009-09-09 14:25:29 +00:00
|
|
|
mtsdr(SDR0_SRST, SDR0_SRST_DMC);
|
|
|
|
mtsdr(SDR0_SRST, 0x00000000);
|
2007-06-01 13:27:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Disable memory controller.
|
|
|
|
*/
|
2009-09-24 11:59:57 +00:00
|
|
|
mtsdram(SDRAM0_CFG0, 0x00000000);
|
2007-06-01 13:27:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup some default
|
|
|
|
*/
|
2009-09-24 11:59:57 +00:00
|
|
|
mtsdram(SDRAM0_UABBA, 0x00000000); /* ubba=0 (default) */
|
|
|
|
mtsdram(SDRAM0_SLIO, 0x00000000); /* rdre=0 wrre=0 rarw=0 */
|
|
|
|
mtsdram(SDRAM0_DEVOPT, 0x00000000); /* dll=0 ds=0 (normal) */
|
|
|
|
mtsdram(SDRAM0_WDDCTR, 0x00000000); /* wrcp=0 dcd=0 */
|
|
|
|
mtsdram(SDRAM0_CLKTR, 0x40000000); /* clkp=1 (90 deg wr) dcdt=0 */
|
2007-06-01 13:27:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Following for CAS Latency = 2.5 @ 133 MHz PLB
|
|
|
|
*/
|
2009-09-24 11:59:57 +00:00
|
|
|
mtsdram(SDRAM0_B0CR, 0x00082001);
|
|
|
|
mtsdram(SDRAM0_TR0, 0x41094012);
|
|
|
|
mtsdram(SDRAM0_TR1, 0x8080083d); /* SS=T2 SL=STAGE 3 CD=1 CT=0x00*/
|
2011-08-04 16:45:45 +00:00
|
|
|
mtsdram(SDRAM0_RTR, 0x04100000); /* Interval 7.8µs @ 133MHz PLB */
|
2009-09-24 11:59:57 +00:00
|
|
|
mtsdram(SDRAM0_CFG1, 0x00000000); /* Self-refresh exit, disable PM*/
|
2007-06-01 13:27:11 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable the controller, then wait for DCEN to complete
|
|
|
|
*/
|
2009-09-24 11:59:57 +00:00
|
|
|
mtsdram(SDRAM0_CFG0, 0x80000000); /* DCEN=1, PMUD=0*/
|
2007-06-01 13:27:11 +00:00
|
|
|
wait_init_complete();
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
return CONFIG_SYS_MBYTES_SDRAM << 20;
|
2007-06-01 13:27:11 +00:00
|
|
|
}
|