|
发表于 2024-10-3 13:32:26
|
显示全部楼层
local is for address remapping
i.e., in your configuration if a master accesses global base 0x1000_0000 it would be seen locally as well as 0x1000_0000 but you want it locally 0x0
the tool complains the non fitting mask, ie, you can't have a base at 256M with a 512M mask
If your target has 512M address space and you want to have it globally at base address 0x1000_0000 you have to split the target address space
configure m8/T/0/0 local 0x0 global 0x1000_0000 mask 256M
add (select the target line m8/T/0/0 and right click then choose Duplicate) m8/t/0/1 local 0x1000_0000 global 0x2000_0000 mask 256M
guess you need to revisit other mappings too
the connectivity errors are just shown because in your current configuration s7 and s11 couldn't access m8 due to the wrong mapping
|
|