blob: 9a0f66c1134cb63542efdf14699ca78235f231cd [file] [log] [blame]
Paul Mundt26ff6c12006-09-27 15:13:36 +09001/*
2 * This file contains the functions and defines necessary to modify and
3 * use the SuperH page table tree.
4 *
5 * Copyright (C) 1999 Niibe Yutaka
Paul Mundt249cfea2007-11-19 18:26:19 +09006 * Copyright (C) 2002 - 2007 Paul Mundt
Paul Mundt26ff6c12006-09-27 15:13:36 +09007 *
8 * This file is subject to the terms and conditions of the GNU General
9 * Public License. See the file "COPYING" in the main directory of this
10 * archive for more details.
11 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#ifndef __ASM_SH_PGTABLE_H
13#define __ASM_SH_PGTABLE_H
14
Matt Flemingb73c8062009-11-25 22:00:08 +000015#include <asm/pgtable_nopmd.h>
Paul Mundt26ff6c12006-09-27 15:13:36 +090016#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#ifndef __ASSEMBLY__
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/addrspace.h>
20#include <asm/fixmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * ZERO_PAGE is a global shared page that is always zero: used
24 * for zero-mapped memory areas etc..
25 */
Paul Mundt26ff6c12006-09-27 15:13:36 +090026extern unsigned long empty_zero_page[PAGE_SIZE / sizeof(unsigned long)];
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#define ZERO_PAGE(vaddr) (virt_to_page(empty_zero_page))
28
29#endif /* !__ASSEMBLY__ */
30
Paul Mundt21440cf2006-11-20 14:30:26 +090031/*
Paul Mundt36bcd392007-11-10 19:16:55 +090032 * Effective and physical address definitions, to aid with sign
33 * extension.
34 */
35#define NEFF 32
36#define NEFF_SIGN (1LL << (NEFF - 1))
37#define NEFF_MASK (-1LL << NEFF)
38
Paul Mundtc7914832009-08-04 17:14:39 +090039static inline unsigned long long neff_sign_extend(unsigned long val)
40{
41 unsigned long long extended = val;
42 return (extended & NEFF_SIGN) ? (extended | NEFF_MASK) : extended;
43}
44
Paul Mundt36bcd392007-11-10 19:16:55 +090045#ifdef CONFIG_29BIT
46#define NPHYS 29
47#else
48#define NPHYS 32
49#endif
50
51#define NPHYS_SIGN (1LL << (NPHYS - 1))
52#define NPHYS_MASK (-1LL << NPHYS)
53
Paul Mundtdb2e1fa2007-02-14 14:13:10 +090054#define PGDIR_SIZE (1UL << PGDIR_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#define PGDIR_MASK (~(PGDIR_SIZE-1))
56
Paul Mundt21440cf2006-11-20 14:30:26 +090057/* Entries per level */
Paul Mundt7a847f82006-12-26 15:29:19 +090058#define PTRS_PER_PTE (PAGE_SIZE / (1 << PTE_MAGNITUDE))
Paul Mundt21440cf2006-11-20 14:30:26 +090059
Hugh Dickinsd455a362005-04-19 13:29:23 -070060#define FIRST_USER_ADDRESS 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Matt Fleming1f69b6a2009-10-06 21:22:25 +000062#define PHYS_ADDR_MASK29 0x1fffffff
63#define PHYS_ADDR_MASK32 0xffffffff
64
65#ifdef CONFIG_PMB
66static inline unsigned long phys_addr_mask(void)
67{
68 /* Is the MMU in 29bit mode? */
69 if (__in_29bit_mode())
70 return PHYS_ADDR_MASK29;
71
72 return PHYS_ADDR_MASK32;
73}
Paul Mundt2a8bc922009-10-10 22:24:55 +090074#elif defined(CONFIG_32BIT)
Matt Fleming1f69b6a2009-10-06 21:22:25 +000075static inline unsigned long phys_addr_mask(void)
76{
77 return PHYS_ADDR_MASK32;
78}
Stuart Menefyd02b08f2007-11-30 17:52:53 +090079#else
Matt Fleming1f69b6a2009-10-06 21:22:25 +000080static inline unsigned long phys_addr_mask(void)
81{
82 return PHYS_ADDR_MASK29;
83}
Stuart Menefyd02b08f2007-11-30 17:52:53 +090084#endif
85
Matt Fleming1f69b6a2009-10-06 21:22:25 +000086#define PTE_PHYS_MASK (phys_addr_mask() & PAGE_MASK)
Paul Mundtcb700aa2008-09-12 20:41:05 +090087#define PTE_FLAGS_MASK (~(PTE_PHYS_MASK) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Paul Mundt0468b4b2007-11-10 20:39:06 +090089#ifdef CONFIG_SUPERH32
Paul Mundtf0b859e2007-07-25 10:43:47 +090090#define VMALLOC_START (P3SEG)
Paul Mundt0468b4b2007-11-10 20:39:06 +090091#else
92#define VMALLOC_START (0xf0000000)
93#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define VMALLOC_END (FIXADDR_START-2*PAGE_SIZE)
95
Paul Mundt249cfea2007-11-19 18:26:19 +090096#if defined(CONFIG_SUPERH32)
97#include <asm/pgtable_32.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#else
Paul Mundt249cfea2007-11-19 18:26:19 +090099#include <asm/pgtable_64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#endif
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102/*
Paul Mundt21440cf2006-11-20 14:30:26 +0900103 * SH-X and lower (legacy) SuperH parts (SH-3, SH-4, some SH-4A) can't do page
104 * protection for execute, and considers it the same as a read. Also, write
105 * permission implies read permission. This is the closest we can get..
106 *
107 * SH-X2 (SH7785) and later parts take this to the opposite end of the extreme,
108 * not only supporting separate execute, read, and write bits, but having
109 * completely separate permission bits for user and kernel space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
Paul Mundt21440cf2006-11-20 14:30:26 +0900111 /*xwr*/
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define __P000 PAGE_NONE
113#define __P001 PAGE_READONLY
114#define __P010 PAGE_COPY
115#define __P011 PAGE_COPY
Paul Mundt21440cf2006-11-20 14:30:26 +0900116#define __P100 PAGE_EXECREAD
117#define __P101 PAGE_EXECREAD
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#define __P110 PAGE_COPY
119#define __P111 PAGE_COPY
120
121#define __S000 PAGE_NONE
122#define __S001 PAGE_READONLY
Paul Mundt21440cf2006-11-20 14:30:26 +0900123#define __S010 PAGE_WRITEONLY
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124#define __S011 PAGE_SHARED
Paul Mundt21440cf2006-11-20 14:30:26 +0900125#define __S100 PAGE_EXECREAD
126#define __S101 PAGE_EXECREAD
127#define __S110 PAGE_RWX
128#define __S111 PAGE_RWX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130typedef pte_t *pte_addr_t;
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132#define kern_addr_valid(addr) (1)
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134#define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \
135 remap_pfn_range(vma, vaddr, pfn, size, prot)
136
Paul Mundt249cfea2007-11-19 18:26:19 +0900137#define pte_pfn(x) ((unsigned long)(((x).pte_low >> PAGE_SHIFT)))
Tim Schmielau8c65b4a2005-11-07 00:59:43 -0800138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/*
140 * No page table caches to initialise
141 */
142#define pgtable_cache_init() do { } while (0)
143
Paul Mundt249cfea2007-11-19 18:26:19 +0900144struct vm_area_struct;
Paul Mundt9cef7492009-07-29 00:12:17 +0900145
146extern void __update_cache(struct vm_area_struct *vma,
147 unsigned long address, pte_t pte);
148extern void __update_tlb(struct vm_area_struct *vma,
149 unsigned long address, pte_t pte);
150
151static inline void
152update_mmu_cache(struct vm_area_struct *vma, unsigned long address, pte_t pte)
153{
154 __update_cache(vma, address, pte);
155 __update_tlb(vma, address, pte);
156}
157
Paul Mundt21440cf2006-11-20 14:30:26 +0900158extern pgd_t swapper_pg_dir[PTRS_PER_PGD];
159extern void paging_init(void);
Paul Mundt9acb98f2007-12-17 10:52:11 +0900160extern void page_table_range_init(unsigned long start, unsigned long end,
161 pgd_t *pgd);
Paul Mundt21440cf2006-11-20 14:30:26 +0900162
Paul Mundtee1acbf2009-05-07 16:38:16 +0900163/* arch/sh/mm/mmap.c */
164#define HAVE_ARCH_UNMAPPED_AREA
165#define HAVE_ARCH_UNMAPPED_AREA_TOPDOWN
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#include <asm-generic/pgtable.h>
168
Paul Mundt249cfea2007-11-19 18:26:19 +0900169#endif /* __ASM_SH_PGTABLE_H */