patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / include / asm-arm / memory.h
1 /*
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
15 #include <linux/config.h>
16 #include <asm/arch/memory.h>
17
18 #ifndef TASK_SIZE
19 /*
20  * TASK_SIZE - the maximum size of a user space task.
21  * TASK_UNMAPPED_BASE - the lower boundary of the mmap VM area
22  */
23 #define TASK_SIZE               (0xbf000000UL)
24 #define TASK_UNMAPPED_BASE      (0x40000000UL)
25 #endif
26
27 /*
28  * The maximum size of a 26-bit user space task.
29  */
30 #define TASK_SIZE_26            (0x04000000UL)
31
32 /*
33  * Page offset: 3GB
34  */
35 #ifndef PAGE_OFFSET
36 #define PAGE_OFFSET             (0xc0000000UL)
37 #endif
38
39 /*
40  * Physical vs virtual RAM address space conversion.  These are
41  * private definitions which should NOT be used outside memory.h
42  * files.  Use virt_to_phys/phys_to_virt/__pa/__va instead.
43  */
44 #ifndef __virt_to_phys
45 #define __virt_to_phys(x)       ((x) - PAGE_OFFSET + PHYS_OFFSET)
46 #define __phys_to_virt(x)       ((x) - PHYS_OFFSET + PAGE_OFFSET)
47 #endif
48
49 /*
50  * The module space lives between the addresses given by TASK_SIZE
51  * and PAGE_OFFSET - it must be within 32MB of the kernel text.
52  */
53 #define MODULE_END      (PAGE_OFFSET)
54 #define MODULE_START    (MODULE_END - 16*1048576)
55
56 #if TASK_SIZE > MODULE_START
57 #error Top of user space clashes with start of module space
58 #endif
59
60 #ifndef __ASSEMBLY__
61
62 /*
63  * PFNs are used to describe any physical page; this means
64  * PFN 0 == physical address 0.
65  *
66  * This is the PFN of the first RAM page in the kernel
67  * direct-mapped view.  We assume this is the first page
68  * of RAM in the mem_map as well.
69  */
70 #define PHYS_PFN_OFFSET (PHYS_OFFSET >> PAGE_SHIFT)
71
72 /*
73  * These are *only* valid on the kernel direct mapped RAM memory.
74  * Note: Drivers should NOT use these.  They are the wrong
75  * translation for translating DMA addresses.  Use the driver
76  * DMA support - see dma-mapping.h.
77  */
78 static inline unsigned long virt_to_phys(void *x)
79 {
80         return __virt_to_phys((unsigned long)(x));
81 }
82
83 static inline void *phys_to_virt(unsigned long x)
84 {
85         return (void *)(__phys_to_virt((unsigned long)(x)));
86 }
87
88 /*
89  * Drivers should NOT use these either.
90  */
91 #define __pa(x)                 __virt_to_phys((unsigned long)(x))
92 #define __va(x)                 ((void *)__phys_to_virt((unsigned long)(x)))
93
94 /*
95  * Virtual <-> DMA view memory address translations
96  * Again, these are *only* valid on the kernel direct mapped RAM
97  * memory.  Use of these is *deprecated*.
98  */
99 #define virt_to_bus(x)          (__virt_to_bus((unsigned long)(x)))
100 #define bus_to_virt(x)          ((void *)(__bus_to_virt((unsigned long)(x))))
101
102 /*
103  * Conversion between a struct page and a physical address.
104  *
105  * Note: when converting an unknown physical address to a
106  * struct page, the resulting pointer must be validated
107  * using VALID_PAGE().  It must return an invalid struct page
108  * for any physical address not corresponding to a system
109  * RAM address.
110  *
111  *  page_to_pfn(page)   convert a struct page * to a PFN number
112  *  pfn_to_page(pfn)    convert a _valid_ PFN number to struct page *
113  *  pfn_valid(pfn)      indicates whether a PFN number is valid
114  *
115  *  virt_to_page(k)     convert a _valid_ virtual address to struct page *
116  *  virt_addr_valid(k)  indicates whether a virtual address is valid
117  */
118 #ifndef CONFIG_DISCONTIGMEM
119
120 #define page_to_pfn(page)       (((page) - mem_map) + PHYS_PFN_OFFSET)
121 #define pfn_to_page(pfn)        ((mem_map + (pfn)) - PHYS_PFN_OFFSET)
122 #define pfn_valid(pfn)          ((pfn) >= PHYS_PFN_OFFSET && (pfn) < (PHYS_PFN_OFFSET + max_mapnr))
123
124 #define virt_to_page(kaddr)     (pfn_to_page(__pa(kaddr) >> PAGE_SHIFT))
125 #define virt_addr_valid(kaddr)  ((unsigned long)(kaddr) >= PAGE_OFFSET && (unsigned long)(kaddr) < (unsigned long)high_memory)
126
127 #define PHYS_TO_NID(addr)       (0)
128
129 #else /* CONFIG_DISCONTIGMEM */
130
131 /*
132  * This is more complex.  We have a set of mem_map arrays spread
133  * around in memory.
134  */
135 #include <linux/numa.h>
136
137 #define page_to_pfn(page)                                       \
138         (( (page) - page_zone(page)->zone_mem_map)              \
139           + page_zone(page)->zone_start_pfn)
140 #define pfn_to_page(pfn)                                        \
141         (PFN_TO_MAPBASE(pfn) + LOCAL_MAP_NR((pfn) << PAGE_SHIFT))
142 #define pfn_valid(pfn)          (PFN_TO_NID(pfn) < MAX_NUMNODES)
143
144 #define virt_to_page(kaddr)                                     \
145         (ADDR_TO_MAPBASE(kaddr) + LOCAL_MAP_NR(kaddr))
146 #define virt_addr_valid(kaddr)  (KVADDR_TO_NID(kaddr) < MAX_NUMNODES)
147
148 /*
149  * Common discontigmem stuff.
150  *  PHYS_TO_NID is used by the ARM kernel/setup.c
151  */
152 #define PHYS_TO_NID(addr)       PFN_TO_NID((addr) >> PAGE_SHIFT)
153
154 #endif /* !CONFIG_DISCONTIGMEM */
155
156 /*
157  * For BIO.  "will die".  Kill me when bio_to_phys() and bvec_to_phys() die.
158  */
159 #define page_to_phys(page)      (page_to_pfn(page) << PAGE_SHIFT)
160
161 /*
162  * We should really eliminate virt_to_bus() here - it's deprecated.
163  */
164 #define page_to_bus(page)       (virt_to_bus(page_address(page)))
165
166 #endif
167
168 #endif