blob: ceb5201a30ed36899010715143b8679cd4a819fb [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
Paul Mundt66dfe182008-06-03 18:54:02 +090015#elif defined(CONFIG_PAGE_SIZE_16KB)
16# define PAGE_SHIFT 14
Paul Mundt21440cf2006-11-20 14:30:26 +090017#elif defined(CONFIG_PAGE_SIZE_64KB)
18# define PAGE_SHIFT 16
19#else
20# error "Bogus kernel page size?"
21#endif
Paul Mundt8c12b5d2006-09-27 18:31:06 +090022
Stuart Menefyd02b08f2007-11-30 17:52:53 +090023#define PAGE_SIZE (_AC(1, UL) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define PAGE_MASK (~(PAGE_SIZE-1))
25#define PTE_MASK PAGE_MASK
26
27#if defined(CONFIG_HUGETLB_PAGE_SIZE_64K)
28#define HPAGE_SHIFT 16
Paul Mundt21440cf2006-11-20 14:30:26 +090029#elif defined(CONFIG_HUGETLB_PAGE_SIZE_256K)
30#define HPAGE_SHIFT 18
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#elif defined(CONFIG_HUGETLB_PAGE_SIZE_1MB)
32#define HPAGE_SHIFT 20
Paul Mundt21440cf2006-11-20 14:30:26 +090033#elif defined(CONFIG_HUGETLB_PAGE_SIZE_4MB)
34#define HPAGE_SHIFT 22
35#elif defined(CONFIG_HUGETLB_PAGE_SIZE_64MB)
36#define HPAGE_SHIFT 26
Paul Mundtcaff44e2007-11-21 15:23:07 +090037#elif defined(CONFIG_HUGETLB_PAGE_SIZE_512MB)
38#define HPAGE_SHIFT 29
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#endif
40
41#ifdef CONFIG_HUGETLB_PAGE
42#define HPAGE_SIZE (1UL << HPAGE_SHIFT)
43#define HPAGE_MASK (~(HPAGE_SIZE-1))
44#define HUGETLB_PAGE_ORDER (HPAGE_SHIFT-PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#endif
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#ifndef __ASSEMBLY__
Paul Mundtd01447b2010-02-18 18:13:51 +090048#include <asm/uncached.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
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 Mundt5e2ff322010-05-10 20:17:25 +090052extern unsigned long memory_start, memory_end, memory_limit;
Paul Mundtf3c25752006-09-27 18:36:17 +090053
Paul Mundt2277ab42009-07-22 19:20:49 +090054static inline unsigned long
55pages_do_alias(unsigned long addr1, unsigned long addr2)
56{
57 return (addr1 ^ addr2) & shm_align_mask;
58}
59
Paul Mundtdfff0fa2009-07-27 20:53:22 +090060#define clear_page(page) memset((void *)(page), 0, PAGE_SIZE)
Paul Mundt379a95d2007-11-20 16:51:28 +090061extern void copy_page(void *to, void *from);
Ross Zwisler934ed252015-10-15 15:28:38 -070062#define copy_user_page(to, from, vaddr, pg) __copy_user(to, from, PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Paul Mundtdfff0fa2009-07-27 20:53:22 +090064struct page;
65struct vm_area_struct;
66
Paul Mundt7747b9a2007-11-05 16:12:32 +090067extern void copy_user_highpage(struct page *to, struct page *from,
68 unsigned long vaddr, struct vm_area_struct *vma);
69#define __HAVE_ARCH_COPY_USER_HIGHPAGE
Paul Mundtdfff0fa2009-07-27 20:53:22 +090070extern void clear_user_highpage(struct page *page, unsigned long vaddr);
71#define clear_user_highpage clear_user_highpage
Paul Mundt0dfae7d2009-07-27 21:30:17 +090072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073/*
74 * These are used to make use of C type-checking..
75 */
Paul Mundt21440cf2006-11-20 14:30:26 +090076#ifdef CONFIG_X2TLB
77typedef struct { unsigned long pte_low, pte_high; } pte_t;
78typedef struct { unsigned long long pgprot; } pgprot_t;
Paul Mundtd04a0f72007-09-21 11:55:03 +090079typedef struct { unsigned long long pgd; } pgd_t;
Paul Mundt21440cf2006-11-20 14:30:26 +090080#define pte_val(x) \
81 ((x).pte_low | ((unsigned long long)(x).pte_high << 32))
82#define __pte(x) \
83 ({ pte_t __pte = {(x), ((unsigned long long)(x)) >> 32}; __pte; })
Paul Mundt249cfea2007-11-19 18:26:19 +090084#elif defined(CONFIG_SUPERH32)
Paul Mundt21440cf2006-11-20 14:30:26 +090085typedef struct { unsigned long pte_low; } pte_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086typedef struct { unsigned long pgprot; } pgprot_t;
Paul Mundtd04a0f72007-09-21 11:55:03 +090087typedef struct { unsigned long pgd; } pgd_t;
Paul Mundt21440cf2006-11-20 14:30:26 +090088#define pte_val(x) ((x).pte_low)
Paul Mundt249cfea2007-11-19 18:26:19 +090089#define __pte(x) ((pte_t) { (x) } )
90#else
91typedef struct { unsigned long long pte_low; } pte_t;
Matt Fleming24ef7fc2009-11-19 21:11:05 +000092typedef struct { unsigned long long pgprot; } pgprot_t;
Paul Mundt249cfea2007-11-19 18:26:19 +090093typedef struct { unsigned long pgd; } pgd_t;
94#define pte_val(x) ((x).pte_low)
95#define __pte(x) ((pte_t) { (x) } )
Paul Mundt21440cf2006-11-20 14:30:26 +090096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define pgd_val(x) ((x).pgd)
99#define pgprot_val(x) ((x).pgprot)
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#define __pgd(x) ((pgd_t) { (x) } )
102#define __pgprot(x) ((pgprot_t) { (x) } )
103
Martin Schwidefsky2f569af2008-02-08 04:22:04 -0800104typedef struct page *pgtable_t;
105
Paul Mundtcb700aa2008-09-12 20:41:05 +0900106#define pte_pgprot(x) __pgprot(pte_val(x) & PTE_FLAGS_MASK)
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/*
Simon Hormane66ac3f2011-09-15 20:13:00 +0900117 * PHYSICAL_OFFSET is the offset in physical memory where the base
118 * of the kernel is loaded.
119 */
120#ifdef CONFIG_PHYSICAL_START
121#define PHYSICAL_OFFSET (CONFIG_PHYSICAL_START - __MEMORY_START)
122#else
123#define PHYSICAL_OFFSET 0
124#endif
125
126/*
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900127 * PAGE_OFFSET is the virtual address of the start of kernel address
128 * space.
129 */
Paul Mundte7f93a32006-09-27 17:19:13 +0900130#define PAGE_OFFSET CONFIG_PAGE_OFFSET
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900132/*
133 * Virtual to physical RAM address translation.
134 *
135 * In 29 bit mode, the physical offset of RAM from address 0 is visible in
136 * the kernel virtual address space, and thus we don't have to take
137 * this into account when translating. However in 32 bit mode this offset
138 * is not visible (it is part of the PMB mapping) and so needs to be
139 * added or subtracted as required.
140 */
Paul Mundt1d5cfcd2010-02-16 21:43:38 +0900141#ifdef CONFIG_PMB
Matt Fleming7c4584d2010-04-24 11:12:12 +0100142#define ___pa(x) ((x)-PAGE_OFFSET+__MEMORY_START)
143#define ___va(x) ((x)+PAGE_OFFSET-__MEMORY_START)
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900144#else
Matt Fleming7c4584d2010-04-24 11:12:12 +0100145#define ___pa(x) ((x)-PAGE_OFFSET)
146#define ___va(x) ((x)+PAGE_OFFSET)
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900147#endif
148
Matt Fleming7c4584d2010-04-24 11:12:12 +0100149#ifndef __ASSEMBLY__
150#define __pa(x) ___pa((unsigned long)x)
151#define __va(x) (void *)___va((unsigned long)x)
152#endif /* !__ASSEMBLY__ */
153
Paul Mundt9edef282010-02-17 16:28:00 +0900154#ifdef CONFIG_UNCACHED_MAPPING
Nobuhiro Iwamatsudfd3b592011-11-04 22:13:50 +0900155#if defined(CONFIG_29BIT)
156#define UNCAC_ADDR(addr) P2SEGADDR(addr)
157#define CAC_ADDR(addr) P1SEGADDR(addr)
158#else
Paul Mundt9edef282010-02-17 16:28:00 +0900159#define UNCAC_ADDR(addr) ((addr) - PAGE_OFFSET + uncached_start)
160#define CAC_ADDR(addr) ((addr) - uncached_start + PAGE_OFFSET)
Nobuhiro Iwamatsudfd3b592011-11-04 22:13:50 +0900161#endif
Paul Mundt9edef282010-02-17 16:28:00 +0900162#else
163#define UNCAC_ADDR(addr) ((addr))
164#define CAC_ADDR(addr) ((addr))
165#endif
166
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900167#define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
Paul Mundt01066622007-03-28 16:38:13 +0900168#define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Stuart Menefyd02b08f2007-11-30 17:52:53 +0900170/*
171 * PFN = physical frame number (ie PFN 0 == physical address 0)
172 * PFN_START is the PFN of the first page of RAM. By defining this we
173 * don't have struct page entries for the portion of address space
174 * between physical address 0 and the start of RAM.
175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176#define PFN_START (__MEMORY_START >> PAGE_SHIFT)
Alexey Dobriyan67bb2c62006-09-08 09:47:34 -0700177#define ARCH_PFN_OFFSET (PFN_START)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
Paul Mundt59007112007-05-23 17:40:56 +0900179#ifdef CONFIG_FLATMEM
Paul Mundt01066622007-03-28 16:38:13 +0900180#define pfn_valid(pfn) ((pfn) >= min_low_pfn && (pfn) < max_low_pfn)
Paul Mundt59007112007-05-23 17:40:56 +0900181#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#define virt_addr_valid(kaddr) pfn_valid(__pa(kaddr) >> PAGE_SHIFT)
183
184#define VM_DATA_DEFAULT_FLAGS (VM_READ | VM_WRITE | VM_EXEC | \
185 VM_MAYREAD | VM_MAYWRITE | VM_MAYEXEC)
186
KAMEZAWA Hiroyuki104b8de2006-03-27 01:15:46 -0800187#include <asm-generic/memory_model.h>
Arnd Bergmann5b17e1c2009-05-13 22:56:30 +0000188#include <asm-generic/getorder.h>
Stephen Rothwellfd4fd5a2005-09-03 15:54:30 -0700189
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900190/*
Paul Mundt66d485b2007-11-27 15:57:30 +0900191 * Some drivers need to perform DMA into kmalloc'ed buffers
192 * and so we have to increase the kmalloc minalign for this.
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900193 */
FUJITA Tomonoria6eb9fe2010-08-10 18:03:22 -0700194#define ARCH_DMA_MINALIGN L1_CACHE_BYTES
Paul Mundt01fed932007-11-10 19:57:58 +0900195
Paul Mundt66d485b2007-11-27 15:57:30 +0900196#ifdef CONFIG_SUPERH64
Paul Mundt01fed932007-11-10 19:57:58 +0900197/*
Paul Mundt66d485b2007-11-27 15:57:30 +0900198 * While BYTES_PER_WORD == 4 on the current sh64 ABI, GCC will still
199 * happily generate {ld/st}.q pairs, requiring us to have 8-byte
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300200 * alignment to avoid traps. The kmalloc alignment is guaranteed by
Paul Mundt66d485b2007-11-27 15:57:30 +0900201 * virtue of L1_CACHE_BYTES, requiring this to only be special cased
202 * for slab caches.
Paul Mundt01fed932007-11-10 19:57:58 +0900203 */
204#define ARCH_SLAB_MINALIGN 8
205#endif
Paul Mundtcbd2d9d2007-06-04 15:46:56 +0900206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207#endif /* __ASM_SH_PAGE_H */