blob: 304c30b5d9472b0eee5b1d167d5c5d4cd485e881 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_PAGE_H
2#define __ASM_SH_PAGE_H
3
4/*
5 * Copyright (C) 1999 Niibe Yutaka
6 */
7
Stuart Menefyd02b08f2007-11-30 17:52:53 +09008#include <linux/const.h>
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010/* PAGE_SHIFT determines the page size */
Paul Mundt21440cf2006-11-20 14:30:26 +090011#if defined(CONFIG_PAGE_SIZE_4KB)
12# define PAGE_SHIFT 12
13#elif defined(CONFIG_PAGE_SIZE_8KB)
14# define PAGE_SHIFT 13
15#elif defined(CONFIG_PAGE_SIZE_64KB)
16# define PAGE_SHIFT 16
17#else
18# error "Bogus kernel page size?"
19#endif
Paul Mundt8c12b5d2006-09-27 18:31:06 +090020
Stuart Menefyd02b08f2007-11-30 17:52:53 +090021#define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#define PAGE_MASK (~(PAGE_SIZE-1))
23#define PTE_MASK PAGE_MASK
24
Stuart Menefyd02b08f2007-11-30 17:52:53 +090025/* to align the pointer to the (next) page boundary */
26#define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
29#define HPAGE_SHIFT 16
Paul Mundt21440cf2006-11-20 14:30:26 +090030#elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K)
31#define HPAGE_SHIFT 18
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
33#define HPAGE_SHIFT 20
Paul Mundt21440cf2006-11-20 14:30:26 +090034#elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
35#define HPAGE_SHIFT 22
36#elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB)
37#define HPAGE_SHIFT 26
Paul Mundtcaff44e2007-11-21 15:23:07 +090038#elif defined(CONFIG_HUGETLB_PAGE_SIZE_512MB)
39#define HPAGE_SHIFT 29
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#endif
41
42#ifdef CONFIG_HUGETLB_PAGE
43#define HPAGE_SIZE (1UL << HPAGE_SHIFT)
44#define HPAGE_MASK (~(HPAGE_SIZE-1))
45#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT-PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#endif
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#ifndef __ASSEMBLY__
49
Paul Mundtf3c25752006-09-27 18:36:17 +090050extern unsigned long shm_align_mask;
Paul Mundt01066622007-03-28 16:38:13 +090051extern unsigned long max_low_pfn, min_low_pfn;
Paul Mundte08f4572007-05-14 12:52:56 +090052extern unsigned long memory_start, memory_end;
Paul Mundtf3c25752006-09-27 18:36:17 +090053
Paul Mundt379a95d2007-11-20 16:51:28 +090054extern void clear_page(void *to);
55extern void copy_page(void *to, void *from);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Paul Mundte7bd34a2007-07-31 17:07:28 +090057#if !defined(CONFIG_CACHE_OFF) && defined(CONFIG_MMU) && \
Paul Mundt38350e02008-02-13 20:14:10 +090058 (defined(CONFIG_CPU_SH5) || defined(CONFIG_CPU_SH4) || \
59 defined(CONFIG_SH7705_CACHE_32KB))
Linus Torvalds1da177e2005-04-16 15:20:36 -070060struct page;
Paul Mundt7747b9a2007-11-05 16:12:32 +090061struct vm_area_struct;
Paul Mundtaf39c162007-11-05 16:20:42 +090062extern void clear_user_page(void *to, unsigned long address, struct page *page);
Paul Mundt38350e02008-02-13 20:14:10 +090063extern void copy_user_page(void *to, void *from, unsigned long address,
64 struct page *page);
65#if defined(CONFIG_CPU_SH4)
Paul Mundt7747b9a2007-11-05 16:12:32 +090066extern void copy_user_highpage(struct page *to, struct page *from,
67 unsigned long vaddr, struct vm_area_struct *vma);
68#define __HAVE_ARCH_COPY_USER_HIGHPAGE
69#endif
Paul Mundte7bd34a2007-07-31 17:07:28 +090070#else
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define clear_user_page(page, vaddr, pg) clear_page(page)
72#define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif
74
75/*
76 * These are used to make use of C type-checking..
77 */
Paul Mundt21440cf2006-11-20 14:30:26 +090078#ifdef CONFIG_X2TLB
79typedef struct { unsigned long pte_low, pte_high; } pte_t;
80typedef struct { unsigned long long pgprot; } pgprot_t;
Paul Mundtd04a0f72007-09-21 11:55:03 +090081typedef struct { unsigned long long pgd; } pgd_t;
Paul Mundt21440cf2006-11-20 14:30:26 +090082#define pte_val(x) \
83 ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
84#define __pte(x) \
85 ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Paul Mundt249cfea2007-11-19 18:26:19 +090086#elif defined(CONFIG_SUPERH32)
Paul Mundt21440cf2006-11-20 14:30:26 +090087typedef struct { unsigned long pte_low; } pte_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088typedef struct { unsigned long pgprot; } pgprot_t;
Paul Mundtd04a0f72007-09-21 11:55:03 +090089typedef struct { unsigned long pgd; } pgd_t;
Paul Mundt21440cf2006-11-20 14:30:26 +090090#define pte_val(x) ((x).pte_low)
Paul Mundt249cfea2007-11-19 18:26:19 +090091#define __pte(x) ((pte_t) { (x) } )
92#else
93typedef struct { unsigned long long pte_low; } pte_t;
94typedef struct { unsigned long pgprot; } pgprot_t;
95typedef struct { unsigned long pgd; } pgd_t;
96#define pte_val(x) ((x).pte_low)
97#define __pte(x) ((pte_t) { (x) } )
Paul Mundt21440cf2006-11-20 14:30:26 +090098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#define pgd_val(x) ((x).pgd)
101#define pgprot_val(x) ((x).pgprot)
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#define __pgd(x) ((pgd_t) { (x) } )
104#define __pgprot(x) ((pgprot_t) { (x) } )
105
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800106typedef struct page *pgtable_t;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#endif /* !__ASSEMBLY__ */
109
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900110/*
111 * __MEMORY_START and SIZE are the physical addresses and size of RAM.
112 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113#define __MEMORY_START CONFIG_MEMORY_START
114#define __MEMORY_SIZE CONFIG_MEMORY_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900116/*
117 * PAGE_OFFSET is the virtual address of the start of kernel address
118 * space.
119 */
Paul Mundte7f93a32006-09-27 17:19:13 +0900120#define PAGE_OFFSET CONFIG_PAGE_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900122/*
123 * Virtual to physical RAM address translation.
124 *
125 * In 29 bit mode, the physical offset of RAM from address 0 is visible in
126 * the kernel virtual address space, and thus we don't have to take
127 * this into account when translating. However in 32 bit mode this offset
128 * is not visible (it is part of the PMB mapping) and so needs to be
129 * added or subtracted as required.
130 */
131#ifdef CONFIG_32BIT
132#define __pa(x) ((unsigned long)(x)-PAGE_OFFSET+__MEMORY_START)
133#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET-__MEMORY_START))
134#else
135#define __pa(x) ((unsigned long)(x)-PAGE_OFFSET)
136#define __va(x) ((void *)((unsigned long)(x)+PAGE_OFFSET))
137#endif
138
139#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
Paul Mundt01066622007-03-28 16:38:13 +0900140#define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900142/*
143 * PFN = physical frame number (ie PFN 0 == physical address 0)
144 * PFN_START is the PFN of the first page of RAM. By defining this we
145 * don't have struct page entries for the portion of address space
146 * between physical address 0 and the start of RAM.
147 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#define PFN_START (__MEMORY_START >> PAGE_SHIFT)
Alexey Dobriyan67bb2c62006-09-08 09:47:34 -0700149#define ARCH_PFN_OFFSET (PFN_START)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
Paul Mundt59007112007-05-23 17:40:56 +0900151#ifdef CONFIG_FLATMEM
Paul Mundt01066622007-03-28 16:38:13 +0900152#define pfn_valid(pfn) ((pfn) >= min_low_pfn && (pfn) < max_low_pfn)
Paul Mundt59007112007-05-23 17:40:56 +0900153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154#define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
155
156#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
157 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
158
KAMEZAWA Hiroyuki104b8de2006-03-27 01:15:46 -0800159#include <asm-generic/memory_model.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700160#include <asm-generic/page.h>
161
Paul Mundt19f9a342006-09-27 18:33:49 +0900162/* vDSO support */
163#ifdef CONFIG_VSYSCALL
164#define __HAVE_ARCH_GATE_AREA
165#endif
166
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900167/*
Paul Mundt66d485b2007-11-27 15:57:30 +0900168 * Some drivers need to perform DMA into kmalloc'ed buffers
169 * and so we have to increase the kmalloc minalign for this.
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900170 */
Paul Mundt66d485b2007-11-27 15:57:30 +0900171#define ARCH_KMALLOC_MINALIGN L1_CACHE_BYTES
Paul Mundt01fed932007-11-10 19:57:58 +0900172
Paul Mundt66d485b2007-11-27 15:57:30 +0900173#ifdef CONFIG_SUPERH64
Paul Mundt01fed932007-11-10 19:57:58 +0900174/*
Paul Mundt66d485b2007-11-27 15:57:30 +0900175 * While BYTES_PER_WORD == 4 on the current sh64 ABI, GCC will still
176 * happily generate {ld/st}.q pairs, requiring us to have 8-byte
177 * alignment to avoid traps. The kmalloc alignment is gauranteed by
178 * virtue of L1_CACHE_BYTES, requiring this to only be special cased
179 * for slab caches.
Paul Mundt01fed932007-11-10 19:57:58 +0900180 */
181#define ARCH_SLAB_MINALIGN 8
182#endif
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900183
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#endif /* __ASM_SH_PAGE_H */