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

dump MMU translation table for A9 in Linux

Hello,

     I would like to know how to read the translation table info for A9  from embedded Linux.

     In freeRTOS I have translation_table.S but I do not find anything similar for ARM architecure in linux kernel.

     Should I just dump TTBR0/TTBR1 registers?

Thanks,

      Mihaita

      

Parents
  • The "real" (speak the hardware) translation table can be found as you write via TTBR0/1. But (IIRC) Linux also maintains its own page table which it uses to update the HW tables pn task switches or if you do an mmap() or the like.

Reply
  • The "real" (speak the hardware) translation table can be found as you write via TTBR0/1. But (IIRC) Linux also maintains its own page table which it uses to update the HW tables pn task switches or if you do an mmap() or the like.

Children