When i start my codec engine application, i get Engine_ENOSERVER. I'm running a custom application on a overo IRONStorm.
I've laid out my memory in memmap.tci as follows:
var mem_ext = [
{
comment: "RESET_VECTOR: off-chip memory for the reset vector table",
name: "RESET_VECTOR",
base: 0x90000000,
len: 0x00001000,
space: "code/data"
},
{
comment: "DSPLINK: off-chip memory reserved for DSPLINK code and data",
name: "DSPLINKMEM",
base: 0x90001000,
len: 0x000FF000,
space: "code/data"
},
{
comment: "DDRALGHEAP: off-chip memory for dynamic algmem allocation",
name: "DDRALGHEAP",
base: 0x90100000,
len: 0x00900000,
space: "code/data"
},
{
comment: "DDR2: off-chip memory for application code and data",
name: "DDR2",
base: 0x90A00000,
len: 0x00300000,
space: "code/data"
},
{
comment: "L4CORE: L4-Core Interconnect Address Space",
name: "L4CORE",
base: 0x48000000,
len: 0x01000000,
space: "data"
},
{
comment: "L4PER: L4-Peripheral Interconnect Address Space",
name: "L4PER",
base: 0x49000000,
len: 0x00100000,
space: "data"
},
{
comment: "IVA Memory Management Unit",
name: "IVAMMU",
base: 0x5D000000,
len: 0x00001000, // 4 KB
space: "data"
}
];
I'm using platform.evm3530 because that's the closest one to my board.
My question is this:
Do i need to create a new platform.ironstorm? if so, how do i go about doing that? if not, what is my next step in debugging this issue?