This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Code Composer Studio
Hello,
I want to access the same memory adresses using ICSS0 and ICSS1. One should use address 0x0004_0000 in order to read/write memory adress 0x0000_0000 as it is said in chapter 30.3.1.2 in TRM. So I tried to work with this offset, but I got a strange result:
As you can see in the picture, the system seems to override the lower bytes if you want to save more than 4 bytes.
Best regards
Simon
Simon,
After a bit more testing and some back and forth with the IP designers. This still looks like a silicon bug with the byte burst operations while using the local bridge between PRU Subsystems. I confirmed that if you attempt a byte burst read operation (LBBO or LBCO in your case) from the address 0x00040000 then you will read from the same address twice (the same way that the SBBO stored to the same address twice while using address 0x00040000).
Knowing this the workarounds remain the same as what I posted above, either use the local bridge (0x00040000) and write/read 4 bytes with each instruction (~7 PRU cycles per 4 byte read) or you can use the 32 bit global address for the memory location (0x54400000) and read/write multiple bytes with each instruction (~33 PRU cycles for a 4 byte read with larger bursts bringing the average cycle time down).
So, if your burst read size is less than 16 bytes, it will always make more sense to use the local bridge and 4 LBBO operations. However, at some point beyond 16 byte burst sizes it will make sense to switch to a single LBBO operation using the global 32 bit address.
Jason Reeder