Lines Matching refs:PMD
60 ; 1. PMD and PTE exists in mm subsystem but not in TLB
61 ; 2. PMD exists but not PTE
62 ; 3. PMD doesn't exist
76 ; Each page is 8 KB. Each PMD holds 8192/4 PTEs (each PTE is 4 bytes) so each
77 ; PMD holds 16 MB of virtual memory.
79 ; Bits 13-23 : PTE offset within a PMD
80 ; Bits 24-31 : PMD offset within the PGD
119 ; Look up PMD in PGD
120 lsrq 24, $r0 ; Get PMD index into PGD (bit 24-31)
124 move.d [$acr], $acr ; Get PMD
126 ; Look up PTE in PMD
128 and.w PAGE_MASK, $acr ; Remove PMD flags
129 and.d 0x7ff, $r0 ; Get PTE index into PMD (bit 13-23)
177 8: ; PMD missing, let the mm subsystem fix it up.