~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/arc/include/asm/page.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*
  3  * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  4  */
  5 #ifndef __ASM_ARC_PAGE_H
  6 #define __ASM_ARC_PAGE_H
  7 
  8 #include <uapi/asm/page.h>
  9 
 10 #ifdef CONFIG_ARC_HAS_PAE40
 11 
 12 #define MAX_POSSIBLE_PHYSMEM_BITS       40
 13 #define PAGE_MASK_PHYS                  (0xff00000000ull | PAGE_MASK)
 14 
 15 #else /* CONFIG_ARC_HAS_PAE40 */
 16 
 17 #define MAX_POSSIBLE_PHYSMEM_BITS       32
 18 #define PAGE_MASK_PHYS                  PAGE_MASK
 19 
 20 #endif /* CONFIG_ARC_HAS_PAE40 */
 21 
 22 #ifndef __ASSEMBLY__
 23 
 24 #define clear_page(paddr)               memset((paddr), 0, PAGE_SIZE)
 25 #define copy_user_page(to, from, vaddr, pg)     copy_page(to, from)
 26 #define copy_page(to, from)             memcpy((to), (from), PAGE_SIZE)
 27 
 28 struct vm_area_struct;
 29 struct page;
 30 
 31 #define __HAVE_ARCH_COPY_USER_HIGHPAGE
 32 
 33 void copy_user_highpage(struct page *to, struct page *from,
 34                         unsigned long u_vaddr, struct vm_area_struct *vma);
 35 void clear_user_page(void *to, unsigned long u_vaddr, struct page *page);
 36 
 37 typedef struct {
 38         unsigned long pgd;
 39 } pgd_t;
 40 
 41 #define pgd_val(x)      ((x).pgd)
 42 #define __pgd(x)        ((pgd_t) { (x) })
 43 
 44 #if CONFIG_PGTABLE_LEVELS > 3
 45 
 46 typedef struct {
 47         unsigned long pud;
 48 } pud_t;
 49 
 50 #define pud_val(x)              ((x).pud)
 51 #define __pud(x)                ((pud_t) { (x) })
 52 
 53 #endif
 54 
 55 #if CONFIG_PGTABLE_LEVELS > 2
 56 
 57 typedef struct {
 58         unsigned long pmd;
 59 } pmd_t;
 60 
 61 #define pmd_val(x)      ((x).pmd)
 62 #define __pmd(x)        ((pmd_t) { (x) })
 63 
 64 #endif
 65 
 66 typedef struct {
 67 #ifdef CONFIG_ARC_HAS_PAE40
 68         unsigned long long pte;
 69 #else
 70         unsigned long pte;
 71 #endif
 72 } pte_t;
 73 
 74 #define pte_val(x)      ((x).pte)
 75 #define __pte(x)        ((pte_t) { (x) })
 76 
 77 typedef struct {
 78         unsigned long pgprot;
 79 } pgprot_t;
 80 
 81 #define pgprot_val(x)   ((x).pgprot)
 82 #define __pgprot(x)     ((pgprot_t) { (x) })
 83 #define pte_pgprot(x)   __pgprot(pte_val(x))
 84 
 85 typedef struct page *pgtable_t;
 86 
 87 /*
 88  * When HIGHMEM is enabled we have holes in the memory map so we need
 89  * pfn_valid() that takes into account the actual extents of the physical
 90  * memory
 91  */
 92 #ifdef CONFIG_HIGHMEM
 93 
 94 extern unsigned long arch_pfn_offset;
 95 #define ARCH_PFN_OFFSET         arch_pfn_offset
 96 
 97 extern int pfn_valid(unsigned long pfn);
 98 #define pfn_valid               pfn_valid
 99 
100 #else /* CONFIG_HIGHMEM */
101 
102 #define ARCH_PFN_OFFSET         virt_to_pfn((void *)CONFIG_LINUX_RAM_BASE)
103 
104 #endif /* CONFIG_HIGHMEM */
105 
106 /*
107  * __pa, __va, virt_to_page (ALERT: deprecated, don't use them)
108  *
109  * These macros have historically been misnamed
110  * virt here means link-address/program-address as embedded in object code.
111  * And for ARC, link-addr = physical address
112  */
113 #define __pa(vaddr)             ((unsigned long)(vaddr))
114 #define __va(paddr)             ((void *)((unsigned long)(paddr)))
115 
116 /*
117  * Use virt_to_pfn with caution:
118  * If used in pte or paddr related macros, it could cause truncation
119  * in PAE40 builds
120  * As a rule of thumb, only use it in helpers starting with virt_
121  * You have been warned !
122  */
123 static inline unsigned long virt_to_pfn(const void *kaddr)
124 {
125         return __pa(kaddr) >> PAGE_SHIFT;
126 }
127 
128 #define virt_to_page(kaddr)     pfn_to_page(virt_to_pfn(kaddr))
129 #define virt_addr_valid(kaddr)  pfn_valid(virt_to_pfn(kaddr))
130 
131 /* Default Permissions for stack/heaps pages (Non Executable) */
132 #define VM_DATA_DEFAULT_FLAGS   VM_DATA_FLAGS_NON_EXEC
133 
134 #define WANT_PAGE_VIRTUAL   1
135 
136 #include <asm-generic/memory_model.h>   /* page_to_pfn, pfn_to_page */
137 #include <asm-generic/getorder.h>
138 
139 #endif /* !__ASSEMBLY__ */
140 
141 #endif
142 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php