blob: bee10fcf7e836fa039a7ee1a1c302a3c19473fb9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/include/asm-arm/memory.h
3 *
4 * Copyright (C) 2000-2002 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Note: this file should not be included by non-asm/.h files
11 */
12#ifndef __ASM_ARM_MEMORY_H
13#define __ASM_ARM_MEMORY_H
14
Nicolas Pitref09b9972005-10-29 21:44:55 +010015/*
16 * Allow for constants defined here to be used from assembly code
17 * by prepending the UL suffix only with actual C code compilation.
18 */
19#ifndef __ASSEMBLY__
20#define UL(x) (x##UL)
21#else
22#define UL(x) (x)
23#endif
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/config.h>
26#include <linux/compiler.h>
27#include <asm/arch/memory.h>
28
29#ifndef TASK_SIZE
30/*
31 * TASK_SIZE - the maximum size of a user space task.
32 * TASK_UNMAPPED_BASE - the lower boundary of the mmap VM area
33 */
Nicolas Pitref09b9972005-10-29 21:44:55 +010034#define TASK_SIZE UL(0xbf000000)
35#define TASK_UNMAPPED_BASE UL(0x40000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#endif
37
38/*
39 * The maximum size of a 26-bit user space task.
40 */
Nicolas Pitref09b9972005-10-29 21:44:55 +010041#define TASK_SIZE_26 UL(0x04000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * Page offset: 3GB
45 */
46#ifndef PAGE_OFFSET
Nicolas Pitref09b9972005-10-29 21:44:55 +010047#define PAGE_OFFSET UL(0xc0000000)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#endif
49
50/*
51 * Physical vs virtual RAM address space conversion. These are
52 * private definitions which should NOT be used outside memory.h
53 * files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
54 */
55#ifndef __virt_to_phys
56#define __virt_to_phys(x) ((x) - PAGE_OFFSET + PHYS_OFFSET)
57#define __phys_to_virt(x) ((x) - PHYS_OFFSET + PAGE_OFFSET)
58#endif
59
60/*
61 * The module space lives between the addresses given by TASK_SIZE
62 * and PAGE_OFFSET - it must be within 32MB of the kernel text.
63 */
64#define MODULE_END (PAGE_OFFSET)
65#define MODULE_START (MODULE_END - 16*1048576)
66
67#if TASK_SIZE > MODULE_START
68#error Top of user space clashes with start of module space
69#endif
70
71#ifndef __ASSEMBLY__
72
73/*
74 * The DMA mask corresponding to the maximum bus address allocatable
75 * using GFP_DMA. The default here places no restriction on DMA
76 * allocations. This must be the smallest DMA mask in the system,
77 * so a successful GFP_DMA allocation will always satisfy this.
78 */
79#ifndef ISA_DMA_THRESHOLD
80#define ISA_DMA_THRESHOLD (0xffffffffULL)
81#endif
82
83#ifndef arch_adjust_zones
84#define arch_adjust_zones(node,size,holes) do { } while (0)
85#endif
86
87/*
88 * PFNs are used to describe any physical page; this means
89 * PFN 0 == physical address 0.
90 *
91 * This is the PFN of the first RAM page in the kernel
92 * direct-mapped view. We assume this is the first page
93 * of RAM in the mem_map as well.
94 */
95#define PHYS_PFN_OFFSET (PHYS_OFFSET >> PAGE_SHIFT)
96
97/*
98 * These are *only* valid on the kernel direct mapped RAM memory.
99 * Note: Drivers should NOT use these. They are the wrong
100 * translation for translating DMA addresses. Use the driver
101 * DMA support - see dma-mapping.h.
102 */
103static inline unsigned long virt_to_phys(void *x)
104{
105 return __virt_to_phys((unsigned long)(x));
106}
107
108static inline void *phys_to_virt(unsigned long x)
109{
110 return (void *)(__phys_to_virt((unsigned long)(x)));
111}
112
113/*
114 * Drivers should NOT use these either.
115 */
116#define __pa(x) __virt_to_phys((unsigned long)(x))
117#define __va(x) ((void *)__phys_to_virt((unsigned long)(x)))
118
119/*
120 * Virtual <-> DMA view memory address translations
121 * Again, these are *only* valid on the kernel direct mapped RAM
122 * memory. Use of these is *deprecated* (and that doesn't mean
123 * use the __ prefixed forms instead.) See dma-mapping.h.
124 */
125static inline __deprecated unsigned long virt_to_bus(void *x)
126{
127 return __virt_to_bus((unsigned long)x);
128}
129
130static inline __deprecated void *bus_to_virt(unsigned long x)
131{
132 return (void *)__bus_to_virt(x);
133}
134
135/*
136 * Conversion between a struct page and a physical address.
137 *
138 * Note: when converting an unknown physical address to a
139 * struct page, the resulting pointer must be validated
140 * using VALID_PAGE(). It must return an invalid struct page
141 * for any physical address not corresponding to a system
142 * RAM address.
143 *
144 * page_to_pfn(page) convert a struct page * to a PFN number
145 * pfn_to_page(pfn) convert a _valid_ PFN number to struct page *
146 * pfn_valid(pfn) indicates whether a PFN number is valid
147 *
148 * virt_to_page(k) convert a _valid_ virtual address to struct page *
149 * virt_addr_valid(k) indicates whether a virtual address is valid
150 */
151#ifndef CONFIG_DISCONTIGMEM
152
153#define page_to_pfn(page) (((page) - mem_map) + PHYS_PFN_OFFSET)
154#define pfn_to_page(pfn) ((mem_map + (pfn)) - PHYS_PFN_OFFSET)
155#define pfn_valid(pfn) ((pfn) >= PHYS_PFN_OFFSET && (pfn) < (PHYS_PFN_OFFSET + max_mapnr))
156
157#define virt_to_page(kaddr) (pfn_to_page(__pa(kaddr) >> PAGE_SHIFT))
158#define virt_addr_valid(kaddr) ((unsigned long)(kaddr) >= PAGE_OFFSET && (unsigned long)(kaddr) < (unsigned long)high_memory)
159
160#define PHYS_TO_NID(addr) (0)
161
162#else /* CONFIG_DISCONTIGMEM */
163
164/*
165 * This is more complex. We have a set of mem_map arrays spread
166 * around in memory.
167 */
168#include <linux/numa.h>
169
170#define page_to_pfn(page) \
171 (( (page) - page_zone(page)->zone_mem_map) \
172 + page_zone(page)->zone_start_pfn)
Russell King1b3cb732005-09-15 15:17:59 +0100173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174#define pfn_to_page(pfn) \
175 (PFN_TO_MAPBASE(pfn) + LOCAL_MAP_NR((pfn) << PAGE_SHIFT))
Russell King1b3cb732005-09-15 15:17:59 +0100176
177#define pfn_valid(pfn) \
178 ({ \
179 unsigned int nid = PFN_TO_NID(pfn); \
180 int valid = nid < MAX_NUMNODES; \
181 if (valid) { \
182 pg_data_t *node = NODE_DATA(nid); \
183 valid = (pfn - node->node_start_pfn) < \
184 node->node_spanned_pages; \
185 } \
186 valid; \
187 })
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
189#define virt_to_page(kaddr) \
190 (ADDR_TO_MAPBASE(kaddr) + LOCAL_MAP_NR(kaddr))
Russell King1b3cb732005-09-15 15:17:59 +0100191
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#define virt_addr_valid(kaddr) (KVADDR_TO_NID(kaddr) < MAX_NUMNODES)
193
194/*
195 * Common discontigmem stuff.
196 * PHYS_TO_NID is used by the ARM kernel/setup.c
197 */
198#define PHYS_TO_NID(addr) PFN_TO_NID((addr) >> PAGE_SHIFT)
199
200#endif /* !CONFIG_DISCONTIGMEM */
201
202/*
203 * For BIO. "will die". Kill me when bio_to_phys() and bvec_to_phys() die.
204 */
205#define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
206
207/*
208 * Optional device DMA address remapping. Do _not_ use directly!
209 * We should really eliminate virt_to_bus() here - it's deprecated.
210 */
211#ifndef __arch_page_to_dma
212#define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page)))
213#define dma_to_virt(dev, addr) ((void *)__bus_to_virt(addr))
214#define virt_to_dma(dev, addr) ((dma_addr_t)__virt_to_bus((unsigned long)(addr)))
215#else
216#define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))
217#define dma_to_virt(dev, addr) (__arch_dma_to_virt(dev, addr))
218#define virt_to_dma(dev, addr) (__arch_virt_to_dma(dev, addr))
219#endif
220
221#endif
222
223#endif