Home
last modified time | relevance | path

Searched refs:__pgprot (Results 1 – 6 of 6) sorted by relevance

/external/kernel-headers/original/asm-mips/
Dpgtable.h24 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _CACHE_CACHABLE_NONCOHERENT)
25 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
27 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_READ | \
29 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_READ | \
31 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \
33 #define PAGE_USERIO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
35 #define PAGE_KERNEL_UNCACHED __pgprot(_PAGE_PRESENT | __READABLE | \
48 #define __P000 __pgprot(0)
49 #define __P001 __pgprot(0)
50 #define __P010 __pgprot(0)
[all …]
/external/kernel-headers/original/asm-x86/
Dpgtable_32.h134 __pgprot(_PAGE_PROTNONE | _PAGE_ACCESSED)
136 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
139 __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
141 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
143 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
147 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_NX)
149 __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
163 #define PAGE_KERNEL __pgprot(__PAGE_KERNEL)
164 #define PAGE_KERNEL_RO __pgprot(__PAGE_KERNEL_RO)
165 #define PAGE_KERNEL_EXEC __pgprot(__PAGE_KERNEL_EXEC)
[all …]
Dfixmap_32.h114 __set_fixmap(idx, 0, __pgprot(0))
Dpage_32.h129 #define __pgprot(x) ((pgprot_t) { (x) } ) macro
/external/kernel-headers/original/asm-arm/
Dpgtable.h179 #define PAGE_NONE __pgprot(_L_PTE_DEFAULT)
180 #define PAGE_COPY __pgprot(_L_PTE_DEFAULT | _L_PTE_READ)
181 #define PAGE_SHARED __pgprot(_L_PTE_DEFAULT | _L_PTE_READ | L_PTE_WRITE)
182 #define PAGE_READONLY __pgprot(_L_PTE_DEFAULT | _L_PTE_READ)
273 #define pgprot_noncached(prot) __pgprot(pgprot_val(prot) & ~(L_PTE_CACHEABLE | L_PTE_BUFFERABLE))
274 #define pgprot_writecombine(prot) __pgprot(pgprot_val(prot) & ~L_PTE_CACHEABLE)
Dpage.h155 #define __pgprot(x) ((pgprot_t) { (x) } ) macro
173 #define __pgprot(x) (x) macro