Searched refs:pmd_phys (Results 1 – 8 of 8) sorted by relevance
/linux-6.6.21/arch/nios2/include/asm/ |
D | pgtable.h | 225 #define pmd_phys(pmd) virt_to_phys((void *)pmd_val(pmd)) macro 226 #define pmd_pfn(pmd) (pmd_phys(pmd) >> PAGE_SHIFT) 227 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT))
|
/linux-6.6.21/arch/csky/include/asm/ |
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-6.6.21/arch/loongarch/mm/ |
D | kasan_init.c | 122 phys_addr_t pmd_phys = early ? in kasan_pmd_offset() local 125 memcpy(__va(pmd_phys), kasan_early_shadow_pmd, sizeof(kasan_early_shadow_pmd)); in kasan_pmd_offset() 126 pud_populate(&init_mm, pudp, (pmd_t *)__va(pmd_phys)); in kasan_pmd_offset()
|
/linux-6.6.21/arch/arm64/mm/ |
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()
|
D | mmu.c | 286 phys_addr_t pmd_phys; in alloc_init_cont_pmd() local 291 pmd_phys = pgtable_alloc(PMD_SHIFT); in alloc_init_cont_pmd() 292 __pud_populate(pudp, pmd_phys, pudval); in alloc_init_cont_pmd()
|
/linux-6.6.21/arch/loongarch/include/asm/ |
D | pgtable.h | 241 #define pmd_phys(pmd) PHYSADDR(pmd_val(pmd)) macro 244 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT)) 568 return pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT); in pmd_page()
|
/linux-6.6.21/arch/mips/include/asm/ |
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-6.6.21/arch/x86/xen/ |
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()
|