Searched refs:pmd_phys (Results 1 – 8 of 8) sorted by relevance
/linux/arch/nios2/include/asm/ |
H A D | pgtable.h | 230 #define pmd_phys(pmd) virt_to_phys((void *)pmd_val(pmd)) macro 231 #define pmd_pfn(pmd) (pmd_phys(pmd) >> PAGE_SHIFT) 232 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT))
|
/linux/arch/csky/include/asm/ |
H A D | pgtable.h | 32 #define pmd_pfn(pmd) (pmd_phys(pmd) >> PAGE_SHIFT) 33 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT)) 104 #define pmd_phys(pmd) pmd_val(pmd) macro
|
/linux/arch/loongarch/mm/ |
H A D | kasan_init.c | 134 phys_addr_t pmd_phys = early ? in kasan_pmd_offset() local 137 memcpy(__va(pmd_phys), kasan_early_shadow_pmd, sizeof(kasan_early_shadow_pmd)); in kasan_pmd_offset() 138 pud_populate(&init_mm, pudp, (pmd_t *)__va(pmd_phys)); in kasan_pmd_offset()
|
/linux/arch/loongarch/include/asm/ |
H A D | pgtable.h | 250 #define pmd_phys(pmd) PHYSADDR(pmd_val(pmd)) macro 253 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT)) 563 return pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT); in pmd_page()
|
/linux/arch/mips/include/asm/ |
H A D | pgtable.h | 65 #define pmd_phys(pmd) virt_to_phys((void *)pmd_val(pmd)) macro 73 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT)) 423 return pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT);
|
/linux/arch/x86/xen/ |
H A D | mmu_pv.c | 1892 phys_addr_t size, new_area, pt_phys, pmd_phys, pud_phys; in xen_relocate_p2m() local 1923 pmd_phys = pud_phys + PFN_PHYS(n_pud); in xen_relocate_p2m() 1924 pt_phys = pmd_phys + PFN_PHYS(n_pmd); in xen_relocate_p2m() 1934 pmd = early_memremap(pmd_phys, PAGE_SIZE); in xen_relocate_p2m() 1957 make_lowmem_page_readonly(__va(pmd_phys)); in xen_relocate_p2m() 1959 PFN_DOWN(pmd_phys)); in xen_relocate_p2m() 1960 pud[idx_pmd] = __pud(_PAGE_TABLE | pmd_phys); in xen_relocate_p2m() 1961 pmd_phys += PAGE_SIZE; in xen_relocate_p2m()
|
/linux/arch/arm64/mm/ |
H A D | kasan_init.c | 80 phys_addr_t pmd_phys = early ? in kasan_pmd_offset() local 83 __pud_populate(pudp, pmd_phys, PUD_TYPE_TABLE); in kasan_pmd_offset()
|
H A D | mmu.c | 292 phys_addr_t pmd_phys; in alloc_init_cont_pmd() local 297 pmd_phys = pgtable_alloc(PMD_SHIFT); in alloc_init_cont_pmd() 298 pmdp = pmd_set_fixmap(pmd_phys); in alloc_init_cont_pmd() 301 __pud_populate(pudp, pmd_phys, pudval); in alloc_init_cont_pmd()
|