It looks like it has 256KB of SRAM. I've just tried your suggestion and it worked. I was able to access 0x2002000 - 0x20030000 address range, with no hard faults.
I guess there is an error in the reference manual .
The linker script file that comes with latest SDK2.2 (generated with SDK builder)for this CPU also limits RAM size to 192KB.
MEMORY
{
m_interrupts (RX) : ORIGIN = 0x00000000, LENGTH = 0x00000400
m_flash_config (RX) : ORIGIN = 0x00000400, LENGTH = 0x00000010
m_text (RX) : ORIGIN = 0x00000410, LENGTH = 0x0007FBF0
m_data (RW) : ORIGIN = 0x1FFF0000, LENGTH = 0x00010000
m_data_2 (RW) : ORIGIN = 0x20000000, LENGTH = 0x00020000
}
Is linker script also incorrect? I'm wondering if it's save to increase m_data_2 memory area, to get all 256KB?