I am using the S32DS Power PC v1.1 .
Hi jeromeli , lukaszadrapa, I am also facing similar problem(getting IVOR1 and IVOR6 error when suspend debug session) in MPC5777M,
But I have some doubt that , Currently I am getting .srec file from the build options ,And i dont know how to align this srec file , if you have any idea , please suggest .
And my boot loader memory sections in linker file are
MEMORY
{
flash_rchw : org = 0x00FD0000, len = 0x4
cpu0_reset_vec : org = 0x00FD0000+0x10, len = 0x4
cpu1_reset_vec : org = 0x00FD0000+0x14, len = 0x4
cpu2_reset_vec : org = 0x00FD0000+0x04, len = 0x4
cpuc_reset_vec : org = 0x00FD0000+0x18, len = 0x4
m_text : org = 0x1000000, len = 256K
m_data : org = 0x40000000, len = 128K
int_iram : org = 0x50000000, len = 16K
int_dram : org = 0x50800000, len = 64K
}
And my Application memory secctions in linker file is
MEMORY
{
flash_rchw : org = 0x00FC0000, len = 0x4
cpu0_reset_vec : org = 0x00FC0000+0x10, len = 0x4
cpu1_reset_vec : org = 0x00FC0000+0x14, len = 0x4
cpu2_reset_vec : org = 0x00FC0000+0x04, len = 0x4
cpuc_reset_vec : org = 0x00FC0000+0x18, len = 0x4
m_text : org = 0x10C0000, len = 2560K
m_data : org = 0x40000000, len = 256K
m_data_nocache : org = 0x4003E000, len = 8K
int_iram : org = 0x50000000, len = 16K
int_dram : org = 0x50800000, len = 64K
}
And I am flashing the application at address 0x010C0000
and I am jumping to the
((void (*)(void)) 0x010C0004)();
Please suggest me , Whats wrong I am doing ?