Lines Matching refs:pte_lo
617 lpte->pte_lo = pvo->pvo_pte.pa; /* Includes WIMG bits */ in moea64_pte_from_pvo()
619 lpte->pte_lo |= LPTE_BW; in moea64_pte_from_pvo()
621 lpte->pte_lo |= LPTE_BR; in moea64_pte_from_pvo()
624 lpte->pte_lo |= LPTE_NOEXEC; in moea64_pte_from_pvo()
630 uint64_t pte_lo; in moea64_calc_wimg() local
652 pte_lo = LPTE_I | LPTE_G; in moea64_calc_wimg()
656 pte_lo &= ~(LPTE_I | LPTE_G); in moea64_calc_wimg()
657 pte_lo |= LPTE_M; in moea64_calc_wimg()
662 return pte_lo; in moea64_calc_wimg()
816 uint64_t pte_lo; in moea64_kenter_large() local
819 pte_lo = LPTE_M; in moea64_kenter_large()
820 pte_lo |= attr; in moea64_kenter_large()
828 pvo->pvo_pte.pa = pa | pte_lo; in moea64_kenter_large()
842 uint64_t pte_lo; in moea64_setup_direct_map() local
854 pte_lo = LPTE_M; in moea64_setup_direct_map()
857 pte_lo |= LPTE_G; in moea64_setup_direct_map()
861 pte_lo |= LPTE_G; in moea64_setup_direct_map()
863 moea64_kenter_large(PHYS_TO_DMAP(pa), pa, pte_lo, 1); in moea64_setup_direct_map()
1656 uint64_t pte_lo; in moea64_enter() local
1677 pte_lo = moea64_calc_wimg(pa, pmap_page_get_memattr(m)); in moea64_enter()
1678 pvo->pvo_pte.pa = pa | pte_lo; in moea64_enter()
1752 (pte_lo & (LPTE_I | LPTE_G | LPTE_NOEXEC)) == 0) { in moea64_enter()