You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the PPC asks the 68K to fetch it data 1-4 bytes at the time when this data is in FAST RAM. This is a context switch every time this happens:
I am thinking of moving a 4096 bytes block of FAST RAM in which the data is contained to PPC RAM and point the 68K MMU to it. The PPC MMU also has to be updated accordingly.
E.g. access by the PPC to 0x08100000 (FAST RAM) with PPC base at 0x6c000000 as seen from 68K:
Send request to 68K
68K moves 0x08100000 - 0x08101000 (an MMU page) to 0x6c3d0000
68K MMU is updated to point to 0x6c3d0000 when 0x08100000 is addressed.
68K tells PPC it is done
PPC MMU is updated to point to 0x003d0000 when 0x08100000 is addressed.
Every access within this page now does not trigger a context switch.
Maybe have 2 of those pages active. copy back the oldest one when a new one is needed.
The text was updated successfully, but these errors were encountered:
Currently, the PPC asks the 68K to fetch it data 1-4 bytes at the time when this data is in FAST RAM. This is a context switch every time this happens:
I am thinking of moving a 4096 bytes block of FAST RAM in which the data is contained to PPC RAM and point the 68K MMU to it. The PPC MMU also has to be updated accordingly.
E.g. access by the PPC to 0x08100000 (FAST RAM) with PPC base at 0x6c000000 as seen from 68K:
Every access within this page now does not trigger a context switch.
Maybe have 2 of those pages active. copy back the oldest one when a new one is needed.
The text was updated successfully, but these errors were encountered: