I have a custom board that I'm trying to run u-boot.min.uart in the DDR3 RAM. I'm able to start up in SDRM without any trouble, but after I load the .uart file nothing is sent to the screen.
I've run through the .out file for leveling, but I'm getting non convergent messages.
I've been following the http://processors.wiki.ti.com/index.php/TI814x-DDR3-Init-U-Boot instructions, but I'm not having much luck
Here is my physical memory map
/**
* Physical Memory Map
*/
#define CONFIG_NR_DRAM_BANKS 2 /* we have 2 banks of DRAM */
#define PHYS_DRAM_1 0x80000000 /* DRAM Bank #1 */
#define PHYS_DRAM_1_SIZE 0x20000000 /* 512 MB */
#define PHYS_DRAM_2 0xA0000000 /* DRAM Bank #2 */
#define PHYS_DRAM_2_SIZE 0x20000000 /* 512 MB */
My DDR Defs
/*
* TI814X PG2.1 DMM LISA MAPPING
* 1G contiguous section with 128-byte interleaving
*/
#define PG2_1_DMM_LISA_MAP__0 0x0
#define PG2_1_DMM_LISA_MAP__1 0x0
#define PG2_1_DMM_LISA_MAP__2 0x0
#define PG2_1_DMM_LISA_MAP__3 0x80640300
/*
* DM385 DMM LISA MAPPING
* 1G contiguous section with no interleaving
*/
#define DDR3_DMM_LISA_MAP__0 0x0
#define DDR3_DMM_LISA_MAP__1 0x0
#define DDR3_DMM_LISA_MAP__2 0x0
#define DDR3_DMM_LISA_MAP__3 0x80600100
Other than those locations, and the leveling, is there something I'm missing? When I run the TI814x_ddr3.gel it seems to locate my DDR3 and init it...
HELP!
Thanks!
Dave