Ok, So I;ve been looking at the VE Cortex A9 LISA files for the daughterboard and I see the following lines:securitydecoder.pvbus_m_range[ 0x0000000000..0x0007FFFFFF ] => secure_region.pvbus_input [ 0x0000000000..0x0007FFFFFF ]; securitydecoder.pvbus_m_range[ 0x0008000000..0x007DFFFFFF ] => nonsecure_region.pvbus_input[ 0x0008000000..0x007DFFFFFF ]; securitydecoder.pvbus_m_range[ 0x007E000000..0x007FFFFFFF ] => secure_region.pvbus_input [ 0x007E000000..0x007FFFFFFF ]; securitydecoder.pvbus_m_range[ 0x0080000000..0xFFFFFFFFFF ] => nonsecure_region.pvbus_input[ 0x0080000000..0xFFFFFFFFFF ];So there are 2 secure and 2 nonsecure regions?Also the following lines:securepvbusdecoder.pvbus_m_range[0x0004000000..0x000401FFFF] => secureSRAM.pvbus; // 128kB Secure SRAM securepvbusdecoder.pvbus_m_range[0x007E000000..0x007FFFFFFF] => secureDRAM.pvbus; // 32MB Secure DRAMSo I'm guessing that these are the physical address ranges for secure static and secure dynamic RAM?How does it relate to the regions defined above?-Earlence