This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Different between AF vs AP (MMU Setup)

What is different between AF & AP?  I understand AP = permission access as read/write/readonly/no access but what is AF? 

Parents
  • Simply do only map memory which you want to use. Any other access generates a data abort.

    AF is used for the OS. With AF == 0 you will get a data abort. Then the OS will know that the user process wants to use this memory, and takes action, like loading the data from external memory. Or doing a copy on write.

Reply
  • Simply do only map memory which you want to use. Any other access generates a data abort.

    AF is used for the OS. With AF == 0 you will get a data abort. Then the OS will know that the user process wants to use this memory, and takes action, like loading the data from external memory. Or doing a copy on write.

Children