Home
last modified time | relevance | path

Searched refs:L_PTE_RDONLY (Results 1 – 12 of 12) sorted by relevance

/Linux-v5.4/arch/arm/include/asm/
Dpgtable.h89 #define PAGE_NONE _MOD_PROT(pgprot_user, L_PTE_XN | L_PTE_RDONLY | L_PTE_NONE)
92 #define PAGE_COPY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
93 #define PAGE_COPY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
94 #define PAGE_READONLY _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
95 #define PAGE_READONLY_EXEC _MOD_PROT(pgprot_user, L_PTE_USER | L_PTE_RDONLY)
99 #define PAGE_HYP_EXEC _MOD_PROT(pgprot_kernel, L_PTE_HYP | L_PTE_RDONLY)
100 #define PAGE_HYP_RO _MOD_PROT(pgprot_kernel, L_PTE_HYP | L_PTE_RDONLY | L_PTE_XN)
105 #define __PAGE_NONE __pgprot(_L_PTE_DEFAULT | L_PTE_RDONLY | L_PTE_XN | L_PTE_NONE)
108 #define __PAGE_COPY __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY | L_PTE_XN)
109 #define __PAGE_COPY_EXEC __pgprot(_L_PTE_DEFAULT | L_PTE_USER | L_PTE_RDONLY)
[all …]
Dfixmap.h46 #define FIXMAP_PAGE_RO (FIXMAP_PAGE_NORMAL | L_PTE_RDONLY)
Dpgtable-2level.h121 #define L_PTE_RDONLY (_AT(pteval_t, 1) << 7) macro
Dpgtable-3level.h75 #define L_PTE_RDONLY (_AT(pteval_t, 1) << 58) /* READ ONLY */ macro
/Linux-v5.4/arch/arm/mm/
Dpageattr.c67 __pgprot(L_PTE_RDONLY), in set_memory_ro()
75 __pgprot(L_PTE_RDONLY)); in set_memory_rw()
Dproc-macros.S115 (L_PTE_XN+L_PTE_USER+L_PTE_RDONLY+L_PTE_DIRTY+L_PTE_YOUNG+\
167 tst r1, #L_PTE_DIRTY|L_PTE_RDONLY
219 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
261 tst r3, #L_PTE_RDONLY | L_PTE_DIRTY @ write and dirty?
Dproc-v7-3level.S80 @ test for !L_PTE_DIRTY || L_PTE_RDONLY
Ddump.c72 .mask = L_PTE_RDONLY,
73 .val = L_PTE_RDONLY,
Dproc-v7-2level.S85 tst r1, #L_PTE_RDONLY | L_PTE_DIRTY
Dproc-xscale.S511 and ip, r1, #(L_PTE_MT_MASK | L_PTE_USER | L_PTE_RDONLY) & ~(4 << 2)
512 teq ip, #L_PTE_MT_WRITEBACK | L_PTE_USER | L_PTE_RDONLY
Dmmu.c292 L_PTE_RDONLY,
298 L_PTE_USER | L_PTE_RDONLY,
/Linux-v5.4/arch/arm/kernel/
Defi.c17 pte = set_pte_bit(pte, __pgprot(L_PTE_RDONLY)); in set_permissions()