[SCSI] drivers/scsi: Use ARRAY_SIZE macro
[linux-2.6/kvm.git] / include / asm-arm / memory.h
blob20928940759545f0caefc7ed142a9bd308b8802f
1 /*
2 * linux/include/asm-arm/memory.h
4 * Copyright (C) 2000-2002 Russell King
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.
10 * Note: this file should not be included by non-asm/.h files
12 #ifndef __ASM_ARM_MEMORY_H
13 #define __ASM_ARM_MEMORY_H
16 * Allow for constants defined here to be used from assembly code
17 * by prepending the UL suffix only with actual C code compilation.
19 #ifndef __ASSEMBLY__
20 #define UL(x) (x##UL)
21 #else
22 #define UL(x) (x)
23 #endif
25 #include <linux/config.h>
26 #include <linux/compiler.h>
27 #include <asm/arch/memory.h>
28 #include <asm/sizes.h>
30 #ifndef TASK_SIZE
32 * TASK_SIZE - the maximum size of a user space task.
33 * TASK_UNMAPPED_BASE - the lower boundary of the mmap VM area
35 #define TASK_SIZE UL(0xbf000000)
36 #define TASK_UNMAPPED_BASE UL(0x40000000)
37 #endif
40 * The maximum size of a 26-bit user space task.
42 #define TASK_SIZE_26 UL(0x04000000)
45 * Page offset: 3GB
47 #ifndef PAGE_OFFSET
48 #define PAGE_OFFSET UL(0xc0000000)
49 #endif
52 * Size of DMA-consistent memory region. Must be multiple of 2M,
53 * between 2MB and 14MB inclusive.
55 #ifndef CONSISTENT_DMA_SIZE
56 #define CONSISTENT_DMA_SIZE SZ_2M
57 #endif
60 * Physical vs virtual RAM address space conversion. These are
61 * private definitions which should NOT be used outside memory.h
62 * files. Use virt_to_phys/phys_to_virt/__pa/__va instead.
64 #ifndef __virt_to_phys
65 #define __virt_to_phys(x) ((x) - PAGE_OFFSET + PHYS_OFFSET)
66 #define __phys_to_virt(x) ((x) - PHYS_OFFSET + PAGE_OFFSET)
67 #endif
70 * Convert a physical address to a Page Frame Number and back
72 #define __phys_to_pfn(paddr) ((paddr) >> PAGE_SHIFT)
73 #define __pfn_to_phys(pfn) ((pfn) << PAGE_SHIFT)
76 * The module space lives between the addresses given by TASK_SIZE
77 * and PAGE_OFFSET - it must be within 32MB of the kernel text.
79 #define MODULE_END (PAGE_OFFSET)
80 #define MODULE_START (MODULE_END - 16*1048576)
82 #if TASK_SIZE > MODULE_START
83 #error Top of user space clashes with start of module space
84 #endif
87 * The XIP kernel gets mapped at the bottom of the module vm area.
88 * Since we use sections to map it, this macro replaces the physical address
89 * with its virtual address while keeping offset from the base section.
91 #define XIP_VIRT_ADDR(physaddr) (MODULE_START + ((physaddr) & 0x000fffff))
93 #ifndef __ASSEMBLY__
96 * The DMA mask corresponding to the maximum bus address allocatable
97 * using GFP_DMA. The default here places no restriction on DMA
98 * allocations. This must be the smallest DMA mask in the system,
99 * so a successful GFP_DMA allocation will always satisfy this.
101 #ifndef ISA_DMA_THRESHOLD
102 #define ISA_DMA_THRESHOLD (0xffffffffULL)
103 #endif
105 #ifndef arch_adjust_zones
106 #define arch_adjust_zones(node,size,holes) do { } while (0)
107 #endif
110 * PFNs are used to describe any physical page; this means
111 * PFN 0 == physical address 0.
113 * This is the PFN of the first RAM page in the kernel
114 * direct-mapped view. We assume this is the first page
115 * of RAM in the mem_map as well.
117 #define PHYS_PFN_OFFSET (PHYS_OFFSET >> PAGE_SHIFT)
120 * These are *only* valid on the kernel direct mapped RAM memory.
121 * Note: Drivers should NOT use these. They are the wrong
122 * translation for translating DMA addresses. Use the driver
123 * DMA support - see dma-mapping.h.
125 static inline unsigned long virt_to_phys(void *x)
127 return __virt_to_phys((unsigned long)(x));
130 static inline void *phys_to_virt(unsigned long x)
132 return (void *)(__phys_to_virt((unsigned long)(x)));
136 * Drivers should NOT use these either.
138 #define __pa(x) __virt_to_phys((unsigned long)(x))
139 #define __va(x) ((void *)__phys_to_virt((unsigned long)(x)))
140 #define pfn_to_kaddr(pfn) __va((pfn) << PAGE_SHIFT)
143 * Virtual <-> DMA view memory address translations
144 * Again, these are *only* valid on the kernel direct mapped RAM
145 * memory. Use of these is *deprecated* (and that doesn't mean
146 * use the __ prefixed forms instead.) See dma-mapping.h.
148 static inline __deprecated unsigned long virt_to_bus(void *x)
150 return __virt_to_bus((unsigned long)x);
153 static inline __deprecated void *bus_to_virt(unsigned long x)
155 return (void *)__bus_to_virt(x);
159 * Conversion between a struct page and a physical address.
161 * Note: when converting an unknown physical address to a
162 * struct page, the resulting pointer must be validated
163 * using VALID_PAGE(). It must return an invalid struct page
164 * for any physical address not corresponding to a system
165 * RAM address.
167 * page_to_pfn(page) convert a struct page * to a PFN number
168 * pfn_to_page(pfn) convert a _valid_ PFN number to struct page *
169 * pfn_valid(pfn) indicates whether a PFN number is valid
171 * virt_to_page(k) convert a _valid_ virtual address to struct page *
172 * virt_addr_valid(k) indicates whether a virtual address is valid
174 #ifndef CONFIG_DISCONTIGMEM
175 #define ARCH_PFN_OFFSET PHYS_PFN_OFFSET
176 #define pfn_valid(pfn) ((pfn) >= PHYS_PFN_OFFSET && (pfn) < (PHYS_PFN_OFFSET + max_mapnr))
178 #define virt_to_page(kaddr) pfn_to_page(__pa(kaddr) >> PAGE_SHIFT)
179 #define virt_addr_valid(kaddr) ((unsigned long)(kaddr) >= PAGE_OFFSET && (unsigned long)(kaddr) < (unsigned long)high_memory)
181 #define PHYS_TO_NID(addr) (0)
183 #else /* CONFIG_DISCONTIGMEM */
186 * This is more complex. We have a set of mem_map arrays spread
187 * around in memory.
189 #include <linux/numa.h>
190 #define arch_pfn_to_nid(pfn) PFN_TO_NID(pfn)
191 #define arch_local_page_offset(pfn, nid) LOCAL_MAP_NR((pfn) << PAGE_SHIFT)
193 #define pfn_valid(pfn) \
194 ({ \
195 unsigned int nid = PFN_TO_NID(pfn); \
196 int valid = nid < MAX_NUMNODES; \
197 if (valid) { \
198 pg_data_t *node = NODE_DATA(nid); \
199 valid = (pfn - node->node_start_pfn) < \
200 node->node_spanned_pages; \
202 valid; \
205 #define virt_to_page(kaddr) \
206 (ADDR_TO_MAPBASE(kaddr) + LOCAL_MAP_NR(kaddr))
208 #define virt_addr_valid(kaddr) (KVADDR_TO_NID(kaddr) < MAX_NUMNODES)
211 * Common discontigmem stuff.
212 * PHYS_TO_NID is used by the ARM kernel/setup.c
214 #define PHYS_TO_NID(addr) PFN_TO_NID((addr) >> PAGE_SHIFT)
216 #endif /* !CONFIG_DISCONTIGMEM */
219 * For BIO. "will die". Kill me when bio_to_phys() and bvec_to_phys() die.
221 #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT)
224 * Optional device DMA address remapping. Do _not_ use directly!
225 * We should really eliminate virt_to_bus() here - it's deprecated.
227 #ifndef __arch_page_to_dma
228 #define page_to_dma(dev, page) ((dma_addr_t)__virt_to_bus((unsigned long)page_address(page)))
229 #define dma_to_virt(dev, addr) ((void *)__bus_to_virt(addr))
230 #define virt_to_dma(dev, addr) ((dma_addr_t)__virt_to_bus((unsigned long)(addr)))
231 #else
232 #define page_to_dma(dev, page) (__arch_page_to_dma(dev, page))
233 #define dma_to_virt(dev, addr) (__arch_dma_to_virt(dev, addr))
234 #define virt_to_dma(dev, addr) (__arch_virt_to_dma(dev, addr))
235 #endif
238 * Optional coherency support. Currently used only by selected
239 * Intel XSC3-based systems.
241 #ifndef arch_is_coherent
242 #define arch_is_coherent() 0
243 #endif
245 #endif
247 #include <asm-generic/memory_model.h>
249 #endif