Hi,
Please give more clarity on the start add of DDR16SS0_SDRAM.
In am62x TRM in some places I found like 0x0080000000 and in another place 0x0880000000.
in u-boot source code
include/configs/am62x_evm.h
/* DDR Configuration */
#define CONFIG_SYS_SDRAM_BASE1 0x880000000
but in but in dts we given like
memory@80000000 {
device_type = "memory";
/* 2G RAM */
reg = <0x00000000 0x80000000 0x00000000 0x80000000>;
};
please give more details on this.
for custom board if we use the ddr of size 1GB then dts change like
memory@80000000 {
device_type = "memory";
/* 1G RAM */
reg = <0x00000000 0x80000000 0x00000000 0x40000000>;
};
is sufficient ? or we need to do any other modification ?
Thanks,
Gireesh Hiremath