1 /* SPDX-License-Identifier: GPL-2.0 */
2 // Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
4 #ifndef __ASM_CSKY_PGTABLE_H
5 #define __ASM_CSKY_PGTABLE_H
7 #include <asm/fixmap.h>
8 #include <asm/memory.h>
9 #include <asm/addrspace.h>
10 #include <abi/pgtable-bits.h>
11 #include <asm-generic/pgtable-nopmd.h>
13 #define PGDIR_SHIFT 22
14 #define PGDIR_SIZE (1UL << PGDIR_SHIFT)
15 #define PGDIR_MASK (~(PGDIR_SIZE-1))
17 #define USER_PTRS_PER_PGD (0x80000000UL/PGDIR_SIZE)
18 #define FIRST_USER_ADDRESS 0UL
21 * C-SKY is two-level paging structure:
26 #define PTRS_PER_PGD ((PAGE_SIZE << PGD_ORDER) / sizeof(pgd_t))
27 #define PTRS_PER_PMD 1
28 #define PTRS_PER_PTE ((PAGE_SIZE << PTE_ORDER) / sizeof(pte_t))
30 #define pte_ERROR(e) \
31 pr_err("%s:%d: bad pte %08lx.\n", __FILE__, __LINE__, (e).pte_low)
32 #define pgd_ERROR(e) \
33 pr_err("%s:%d: bad pgd %08lx.\n", __FILE__, __LINE__, pgd_val(e))
35 #define pmd_page(pmd) (pfn_to_page(pmd_phys(pmd) >> PAGE_SHIFT))
36 #define pte_clear(mm, addr, ptep) set_pte((ptep), \
37 (((unsigned int) addr & PAGE_OFFSET) ? __pte(_PAGE_GLOBAL) : __pte(0)))
38 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL))
39 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT)
40 #define pte_pfn(x) ((unsigned long)((x).pte_low >> PAGE_SHIFT))
41 #define pfn_pte(pfn, prot) __pte(((unsigned long long)(pfn) << PAGE_SHIFT) \
44 #define __READABLE (_PAGE_READ | _PAGE_VALID | _PAGE_ACCESSED)
45 #define __WRITEABLE (_PAGE_WRITE | _PAGE_DIRTY | _PAGE_MODIFIED)
47 #define _PAGE_CHG_MASK (PAGE_MASK | _PAGE_ACCESSED | _PAGE_MODIFIED | \
50 #define __swp_type(x) (((x).val >> 4) & 0xff)
51 #define __swp_offset(x) ((x).val >> 12)
52 #define __swp_entry(type, offset) ((swp_entry_t) {((type) << 4) | \
54 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) })
55 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
57 #define pte_page(x) pfn_to_page(pte_pfn(x))
58 #define __mk_pte(page_nr, pgprot) __pte(((page_nr) << PAGE_SHIFT) | \
62 * CSKY can't do page protection for execute, and considers that the same like
63 * read. Also, write permissions imply read permissions. This is the closest
64 * we can get by reasonable means..
66 #define PAGE_NONE __pgprot(_PAGE_PRESENT | _CACHE_CACHED)
67 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
69 #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_READ | _CACHE_CACHED)
70 #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_READ | _CACHE_CACHED)
71 #define PAGE_KERNEL __pgprot(_PAGE_PRESENT | __READABLE | __WRITEABLE | \
72 _PAGE_GLOBAL | _CACHE_CACHED)
73 #define PAGE_USERIO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \
76 #define _PAGE_IOREMAP \
77 (_PAGE_PRESENT | __READABLE | __WRITEABLE | _PAGE_GLOBAL | \
78 _CACHE_UNCACHED | _PAGE_SO)
80 #define __P000 PAGE_NONE
81 #define __P001 PAGE_READONLY
82 #define __P010 PAGE_COPY
83 #define __P011 PAGE_COPY
84 #define __P100 PAGE_READONLY
85 #define __P101 PAGE_READONLY
86 #define __P110 PAGE_COPY
87 #define __P111 PAGE_COPY
89 #define __S000 PAGE_NONE
90 #define __S001 PAGE_READONLY
91 #define __S010 PAGE_SHARED
92 #define __S011 PAGE_SHARED
93 #define __S100 PAGE_READONLY
94 #define __S101 PAGE_READONLY
95 #define __S110 PAGE_SHARED
96 #define __S111 PAGE_SHARED
98 extern unsigned long empty_zero_page
[PAGE_SIZE
/ sizeof(unsigned long)];
99 #define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
101 extern void load_pgd(unsigned long pg_dir
);
102 extern pte_t invalid_pte_table
[PTRS_PER_PTE
];
104 static inline void set_pte(pte_t
*p
, pte_t pte
)
107 #if defined(CONFIG_CPU_NEED_TLBSYNC)
108 dcache_wb_line((u32
)p
);
110 /* prevent out of order excution */
113 #define set_pte_at(mm, addr, ptep, pteval) set_pte(ptep, pteval)
115 static inline pte_t
*pmd_page_vaddr(pmd_t pmd
)
124 #define pmd_phys(pmd) pmd_val(pmd)
126 static inline void set_pmd(pmd_t
*p
, pmd_t pmd
)
129 #if defined(CONFIG_CPU_NEED_TLBSYNC)
130 dcache_wb_line((u32
)p
);
132 /* prevent specul excute */
137 static inline int pmd_none(pmd_t pmd
)
139 return pmd_val(pmd
) == __pa(invalid_pte_table
);
142 #define pmd_bad(pmd) (pmd_val(pmd) & ~PAGE_MASK)
144 static inline int pmd_present(pmd_t pmd
)
146 return (pmd_val(pmd
) != __pa(invalid_pte_table
));
149 static inline void pmd_clear(pmd_t
*p
)
151 pmd_val(*p
) = (__pa(invalid_pte_table
));
152 #if defined(CONFIG_CPU_NEED_TLBSYNC)
153 dcache_wb_line((u32
)p
);
158 * The following only work if pte_present() is true.
159 * Undefined behaviour if not..
161 static inline int pte_read(pte_t pte
)
163 return pte
.pte_low
& _PAGE_READ
;
166 static inline int pte_write(pte_t pte
)
168 return (pte
).pte_low
& _PAGE_WRITE
;
171 static inline int pte_dirty(pte_t pte
)
173 return (pte
).pte_low
& _PAGE_MODIFIED
;
176 static inline int pte_young(pte_t pte
)
178 return (pte
).pte_low
& _PAGE_ACCESSED
;
181 static inline pte_t
pte_wrprotect(pte_t pte
)
183 pte_val(pte
) &= ~(_PAGE_WRITE
| _PAGE_DIRTY
);
187 static inline pte_t
pte_mkclean(pte_t pte
)
189 pte_val(pte
) &= ~(_PAGE_MODIFIED
|_PAGE_DIRTY
);
193 static inline pte_t
pte_mkold(pte_t pte
)
195 pte_val(pte
) &= ~(_PAGE_ACCESSED
|_PAGE_VALID
);
199 static inline pte_t
pte_mkwrite(pte_t pte
)
201 pte_val(pte
) |= _PAGE_WRITE
;
202 if (pte_val(pte
) & _PAGE_MODIFIED
)
203 pte_val(pte
) |= _PAGE_DIRTY
;
207 static inline pte_t
pte_mkdirty(pte_t pte
)
209 pte_val(pte
) |= _PAGE_MODIFIED
;
210 if (pte_val(pte
) & _PAGE_WRITE
)
211 pte_val(pte
) |= _PAGE_DIRTY
;
215 static inline pte_t
pte_mkyoung(pte_t pte
)
217 pte_val(pte
) |= _PAGE_ACCESSED
;
218 if (pte_val(pte
) & _PAGE_READ
)
219 pte_val(pte
) |= _PAGE_VALID
;
223 #define __HAVE_PHYS_MEM_ACCESS_PROT
225 extern pgprot_t
phys_mem_access_prot(struct file
*file
, unsigned long pfn
,
226 unsigned long size
, pgprot_t vma_prot
);
229 * Macro to make mark a page protection value as "uncacheable". Note
230 * that "protection" is really a misnomer here as the protection value
231 * contains the memory attribute bits, dirty bits, and various other
234 #define pgprot_noncached pgprot_noncached
236 static inline pgprot_t
pgprot_noncached(pgprot_t _prot
)
238 unsigned long prot
= pgprot_val(_prot
);
240 prot
= (prot
& ~_CACHE_MASK
) | _CACHE_UNCACHED
| _PAGE_SO
;
242 return __pgprot(prot
);
245 #define pgprot_writecombine pgprot_writecombine
246 static inline pgprot_t
pgprot_writecombine(pgprot_t _prot
)
248 unsigned long prot
= pgprot_val(_prot
);
250 prot
= (prot
& ~_CACHE_MASK
) | _CACHE_UNCACHED
;
252 return __pgprot(prot
);
256 * Conversion functions: convert a page and protection to a page entry,
257 * and a page entry and page directory to the page they refer to.
259 #define mk_pte(page, pgprot) pfn_pte(page_to_pfn(page), (pgprot))
260 static inline pte_t
pte_modify(pte_t pte
, pgprot_t newprot
)
262 return __pte((pte_val(pte
) & _PAGE_CHG_MASK
) |
263 (pgprot_val(newprot
)));
266 extern pgd_t swapper_pg_dir
[PTRS_PER_PGD
];
267 extern void paging_init(void);
269 void update_mmu_cache(struct vm_area_struct
*vma
, unsigned long address
,
272 /* Needs to be defined here and not in linux/mm.h, as it is arch dependent */
273 #define kern_addr_valid(addr) (1)
275 #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
276 remap_pfn_range(vma, vaddr, pfn, size, prot)
278 #endif /* __ASM_CSKY_PGTABLE_H */