proc-v7-3level.S 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. /*
  2. * arch/arm/mm/proc-v7-3level.S
  3. *
  4. * Copyright (C) 2001 Deep Blue Solutions Ltd.
  5. * Copyright (C) 2011 ARM Ltd.
  6. * Author: Catalin Marinas <catalin.marinas@arm.com>
  7. * based on arch/arm/mm/proc-v7-2level.S
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. */
  22. #define TTB_IRGN_NC (0 << 8)
  23. #define TTB_IRGN_WBWA (1 << 8)
  24. #define TTB_IRGN_WT (2 << 8)
  25. #define TTB_IRGN_WB (3 << 8)
  26. #define TTB_RGN_NC (0 << 10)
  27. #define TTB_RGN_OC_WBWA (1 << 10)
  28. #define TTB_RGN_OC_WT (2 << 10)
  29. #define TTB_RGN_OC_WB (3 << 10)
  30. #define TTB_S (3 << 12)
  31. #define TTB_EAE (1 << 31)
  32. /* PTWs cacheable, inner WB not shareable, outer WB not shareable */
  33. #define TTB_FLAGS_UP (TTB_IRGN_WB|TTB_RGN_OC_WB)
  34. #define PMD_FLAGS_UP (PMD_SECT_WB)
  35. /* PTWs cacheable, inner WBWA shareable, outer WBWA not shareable */
  36. #define TTB_FLAGS_SMP (TTB_IRGN_WBWA|TTB_S|TTB_RGN_OC_WBWA)
  37. #define PMD_FLAGS_SMP (PMD_SECT_WBWA|PMD_SECT_S)
  38. #ifndef __ARMEB__
  39. # define rpgdl r0
  40. # define rpgdh r1
  41. #else
  42. # define rpgdl r1
  43. # define rpgdh r0
  44. #endif
  45. /*
  46. * cpu_v7_switch_mm(pgd_phys, tsk)
  47. *
  48. * Set the translation table base pointer to be pgd_phys (physical address of
  49. * the new TTB).
  50. */
  51. ENTRY(cpu_v7_switch_mm)
  52. #ifdef CONFIG_MMU
  53. mmid r2, r2
  54. asid r2, r2
  55. orr rpgdh, rpgdh, r2, lsl #(48 - 32) @ upper 32-bits of pgd
  56. mcrr p15, 0, rpgdl, rpgdh, c2 @ set TTB 0
  57. isb
  58. #endif
  59. mov pc, lr
  60. ENDPROC(cpu_v7_switch_mm)
  61. /*
  62. * cpu_v7_set_pte_ext(ptep, pte)
  63. *
  64. * Set a level 2 translation table entry.
  65. * - ptep - pointer to level 3 translation table entry
  66. * - pte - PTE value to store (64-bit in r2 and r3)
  67. */
  68. ENTRY(cpu_v7_set_pte_ext)
  69. #ifdef CONFIG_MMU
  70. tst r2, #L_PTE_VALID
  71. beq 1f
  72. tst r3, #1 << (57 - 32) @ L_PTE_NONE
  73. bicne r2, #L_PTE_VALID
  74. bne 1f
  75. tst r3, #1 << (55 - 32) @ L_PTE_DIRTY
  76. orreq r2, #L_PTE_RDONLY
  77. 1: strd r2, r3, [r0]
  78. ALT_SMP(W(nop))
  79. ALT_UP (mcr p15, 0, r0, c7, c10, 1) @ flush_pte
  80. #endif
  81. mov pc, lr
  82. ENDPROC(cpu_v7_set_pte_ext)
  83. /*
  84. * Memory region attributes for LPAE (defined in pgtable-3level.h):
  85. *
  86. * n = AttrIndx[2:0]
  87. *
  88. * n MAIR
  89. * UNCACHED 000 00000000
  90. * BUFFERABLE 001 01000100
  91. * DEV_WC 001 01000100
  92. * WRITETHROUGH 010 10101010
  93. * WRITEBACK 011 11101110
  94. * DEV_CACHED 011 11101110
  95. * DEV_SHARED 100 00000100
  96. * DEV_NONSHARED 100 00000100
  97. * unused 101
  98. * unused 110
  99. * WRITEALLOC 111 11111111
  100. */
  101. .equ PRRR, 0xeeaa4400 @ MAIR0
  102. .equ NMRR, 0xff000004 @ MAIR1
  103. /*
  104. * Macro for setting up the TTBRx and TTBCR registers.
  105. * - \ttbr1 updated.
  106. */
  107. .macro v7_ttb_setup, zero, ttbr0, ttbr1, tmp
  108. ldr \tmp, =swapper_pg_dir @ swapper_pg_dir virtual address
  109. mov \tmp, \tmp, lsr #ARCH_PGD_SHIFT
  110. cmp \ttbr1, \tmp @ PHYS_OFFSET > PAGE_OFFSET?
  111. mrc p15, 0, \tmp, c2, c0, 2 @ TTB control register
  112. orr \tmp, \tmp, #TTB_EAE
  113. ALT_SMP(orr \tmp, \tmp, #TTB_FLAGS_SMP)
  114. ALT_UP(orr \tmp, \tmp, #TTB_FLAGS_UP)
  115. ALT_SMP(orr \tmp, \tmp, #TTB_FLAGS_SMP << 16)
  116. ALT_UP(orr \tmp, \tmp, #TTB_FLAGS_UP << 16)
  117. /*
  118. * Only use split TTBRs if PHYS_OFFSET <= PAGE_OFFSET (cmp above),
  119. * otherwise booting secondary CPUs would end up using TTBR1 for the
  120. * identity mapping set up in TTBR0.
  121. */
  122. orrls \tmp, \tmp, #TTBR1_SIZE @ TTBCR.T1SZ
  123. mcr p15, 0, \tmp, c2, c0, 2 @ TTBCR
  124. mov \tmp, \ttbr1, lsr #(32 - ARCH_PGD_SHIFT) @ upper bits
  125. mov \ttbr1, \ttbr1, lsl #ARCH_PGD_SHIFT @ lower bits
  126. addls \ttbr1, \ttbr1, #TTBR1_OFFSET
  127. mcrr p15, 1, \ttbr1, \zero, c2 @ load TTBR1
  128. mov \tmp, \ttbr0, lsr #(32 - ARCH_PGD_SHIFT) @ upper bits
  129. mov \ttbr0, \ttbr0, lsl #ARCH_PGD_SHIFT @ lower bits
  130. mcrr p15, 0, \ttbr0, \zero, c2 @ load TTBR0
  131. mcrr p15, 1, \ttbr1, \zero, c2 @ load TTBR1
  132. mcrr p15, 0, \ttbr0, \zero, c2 @ load TTBR0
  133. .endm
  134. /*
  135. * AT
  136. * TFR EV X F IHD LR S
  137. * .EEE ..EE PUI. .TAT 4RVI ZWRS BLDP WCAM
  138. * rxxx rrxx xxx0 0101 xxxx xxxx x111 xxxx < forced
  139. * 11 0 110 1 0011 1100 .111 1101 < we want
  140. */
  141. .align 2
  142. .type v7_crval, #object
  143. v7_crval:
  144. crval clear=0x0120c302, mmuset=0x30c23c7d, ucset=0x00c01c7c