Hi,
I want to use sfh_OMAP-L138.exe for flashing custom board.
My board includes SRAM instead of DDR momory.
SRAM connected to the external memory interface (EMIFA) peripheral on EMA_CS[4].
So I change EXTERNAL_RAM_START from 0xC0000000 to 0x64000000 in ARM_sft.lds
Add below code in ARM_sft.cmd
AEMIF_CS4 org=0x64000000 len=0x02000000 /* AEMIF CS3 region */
.extram
{
. += 0x02000000;
} load = AEMIF_CS4, FILL=0x00000000, type=DSECT, START(_EXTERNAL_RAM_START), END(_EXTERNAL_RAM_END), SIZE(_EXTERNAL_RAM_SIZE)
Change
And externalRAMStart = 0xC0000000 -> externalRAMStart = 0x64000000 in device_name.cs
And then I compiled source and run.
But it couldn't write image file to NOR flash and don't load image file to SRAM.
Let me know changing point.