This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi TI support,
On boot up but prior to OS (QNX is this case) loading, I have a requirement to ensure DDR3 contents (memory locations) are returned to a "blank" state - random, zeroes, or ones. Is it possible to gain access to DDR3 reset line during bootloader phase?
The desire behavior is to hold DDR3 in reset and/or disable any refresh cycle from occurring for 100ms prior to normal kernel code load sequence. Please advise if code executing in on-chip SRAM can access Sitara's DDR3 controller register to toggle the DDR3 reset line.
Thanks,
John
John, the DDR3 RESET signal does not guarantee anything about clearing or randomizing the data in the memory. All it does is reset internal state machines and logic inside the memory. If you want to guarantee data is completely erased or random, you would have to fill the memory, or ensure to cut power to the memory for quite some time. A lot of it will depend on temperature and leakage currents. Also, depending on how strong the cells are, some memory locations may be able to retain their value well beyond the refresh interval.
If you are coming from a powered off state, the memory will be random after initialization. But if you are rebooting from a powered state, you would have to fill the memory, or somehow cut the power to it before reinitializing. The DDR_RESET signal is controlled by the DDR controller during initialization and ensures proper timing based on the DDR3 JEDEC specification.
Regards,
James
James,
Code executing in SRAM during bootloader phase ( say end of DDR controller initialization) would write to control register which in turn assert DDR reset line for x seconds. At the end of x seconds, code will write to control register to release DDR reset line. Holding reset line for x seconds would allow DRAM storage caps to discharge below noise floor.
Rgds,
John
I see can't any way for software to explicitly control the state of the DDR_RESETn pin. However, there is the reg_phy_rst_n bit in the DDR_PHY_CTRL_1 (and DDR_PHY_CTRL_1_SHDW) registers:John Chiu said:Code executing in SRAM during bootloader phase ( say end of DDR controller initialization) would write to control register which in turn assert DDR reset line for x seconds.
If the bootloader sets the reg_phy_rst_n bit for X seconds, clears the reg_phy_rst_n bit and then continues with DDR controller initialization maybe that will have the desired effect.
From the AM335x Technical Reference Manual it is not clear if setting the reg_phy_rst_n bit asserts the DDR_RESETn pin.
James,
We just need to clear DDR contents on power up. What is recommend procedure to keep DDR functional block ( or clock) in disabled? What registers we need to hit?
Thx,
John