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

In Arm v7 mmu, stage2 translation cannot use short descriptors. WHY?

ARM V7 document states: "In ARMv7-A short descriptors only be used at EL0 and EL1 stage 1 translations. They cannot, therefore, be used by hypervisors or Secure monitor code."

Why stage2/hypervisors/secure monitor cannot use short descriptors? what is the limitation?

Parents
  • I don't know the reasons for the decision at the time, but I can think of several possible reasons.

    Complexity. If you support both formats at S2, the TLBs need to be able record more possibilities so making them more complex.  If you don't need short descriptors, not supporting them is one way to make the designer simpler.

    Address space size.  LPAE made is easier for Arm processors to support physical address sizes greater than 32-bit.  Virtualization is one use case where you would expect this kind of support to be more useful.

Reply
  • I don't know the reasons for the decision at the time, but I can think of several possible reasons.

    Complexity. If you support both formats at S2, the TLBs need to be able record more possibilities so making them more complex.  If you don't need short descriptors, not supporting them is one way to make the designer simpler.

    Address space size.  LPAE made is easier for Arm processors to support physical address sizes greater than 32-bit.  Virtualization is one use case where you would expect this kind of support to be more useful.

Children