Proper cache management. #543
-
I'm using OpenAMP on a dual core M7/M4 microcontroller, and I'm trying to enable cache management with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It depends on your need, these functions can be redirect to some OS functions as done for instance for NuttX or Zephyr or to implement your own cache management. you have to align on cache lines in these functions.
You should only need to manage the cache for memories that are shared between the 2 cores. Except bug, code is already present to manage the structures in shared memory. The structure you mention are local structures. |
Beta Was this translation helpful? Give feedback.
It depends on your need, these functions can be redirect to some OS functions as done for instance for NuttX or Zephyr or to implement…