Home
last modified time | relevance | path

Searched refs:PTE_R (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/target/riscv/
H A Dmonitor.c71 attr & PTE_R ? 'r' : '-', in print_pte()
110 if (attr & (PTE_R | PTE_W | PTE_X)) { in walk_pte()
H A Dcpu_helper.c1090 if (pte & (PTE_R | PTE_W | PTE_X)) { in get_physical_address()
1114 target_ulong rwx = pte & (PTE_R | PTE_W | PTE_X); in get_physical_address()
1127 rwx = is_sstack_idx ? (PTE_R | PTE_W) : (is_probe ? 0 : PTE_R); in get_physical_address()
1131 case PTE_R: in get_physical_address()
1144 if (rwx & PTE_R) { in get_physical_address()
H A Dcpu_bits.h646 #define PTE_R 0x002 /* Read */ macro
/openbmc/linux/arch/powerpc/include/asm/
H A Dkvm_book3s_32.h28 #define PTE_R 0x00000100 macro
/openbmc/u-boot/arch/riscv/include/asm/
H A Dencoding.h113 #define PTE_R 0x020 // Referenced macro
/openbmc/qemu/hw/riscv/
H A Driscv-iommu.c421 } else if (!(pte & (PTE_R | PTE_W | PTE_X))) { in riscv_iommu_spa_fetch()
423 } else if ((pte & (PTE_R | PTE_W | PTE_X)) == PTE_W) { in riscv_iommu_spa_fetch()
425 } else if ((pte & (PTE_R | PTE_W | PTE_X)) == (PTE_W | PTE_X)) { in riscv_iommu_spa_fetch()
429 } else if ((iotlb->perm & IOMMU_RO) && !(pte & PTE_R)) { in riscv_iommu_spa_fetch()
451 iotlb->perm = (pte & PTE_W) ? ((pte & PTE_R) ? IOMMU_RW : IOMMU_WO) in riscv_iommu_spa_fetch()
/openbmc/linux/arch/powerpc/kvm/
H A Dbook3s_32_mmu_host.c196 pteg1 = hpaddr | PTE_M | PTE_R | PTE_C; in kvmppc_mmu_map_page()