GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / io-mapping.h
blob7fb59279373823339f6fdda86158952e3e6fac45
1 /*
2 * Copyright © 2008 Keith Packard <keithp@keithp.com>
4 * This file is free software; you can redistribute it and/or modify
5 * it under the terms of version 2 of the GNU General Public License
6 * as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
18 #ifndef _LINUX_IO_MAPPING_H
19 #define _LINUX_IO_MAPPING_H
21 #include <linux/types.h>
22 #include <linux/slab.h>
23 #include <asm/io.h>
24 #include <asm/page.h>
27 * The io_mapping mechanism provides an abstraction for mapping
28 * individual pages from an io device to the CPU in an efficient fashion.
30 * See Documentation/io_mapping.txt
33 #ifdef CONFIG_HAVE_ATOMIC_IOMAP
35 #include <asm/iomap.h>
37 struct io_mapping {
38 resource_size_t base;
39 unsigned long size;
40 pgprot_t prot;
44 * For small address space machines, mapping large objects
45 * into the kernel virtual space isn't practical. Where
46 * available, use fixmap support to dynamically map pages
47 * of the object at run time.
50 static inline struct io_mapping *
51 io_mapping_create_wc(resource_size_t base, unsigned long size)
53 struct io_mapping *iomap;
54 pgprot_t prot;
56 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
57 if (!iomap)
58 goto out_err;
60 if (iomap_create_wc(base, size, &prot))
61 goto out_free;
63 iomap->base = base;
64 iomap->size = size;
65 iomap->prot = prot;
66 return iomap;
68 out_free:
69 kfree(iomap);
70 out_err:
71 return NULL;
74 static inline void
75 io_mapping_free(struct io_mapping *mapping)
77 iomap_free(mapping->base, mapping->size);
78 kfree(mapping);
81 /* Atomic map/unmap */
82 static inline void __iomem *
83 io_mapping_map_atomic_wc(struct io_mapping *mapping,
84 unsigned long offset,
85 int slot)
87 resource_size_t phys_addr;
88 unsigned long pfn;
90 BUG_ON(offset >= mapping->size);
91 phys_addr = mapping->base + offset;
92 pfn = (unsigned long) (phys_addr >> PAGE_SHIFT);
93 return iomap_atomic_prot_pfn(pfn, slot, mapping->prot);
96 static inline void
97 io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
99 iounmap_atomic(vaddr, slot);
102 static inline void __iomem *
103 io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
105 resource_size_t phys_addr;
107 BUG_ON(offset >= mapping->size);
108 phys_addr = mapping->base + offset;
110 return ioremap_wc(phys_addr, PAGE_SIZE);
113 static inline void
114 io_mapping_unmap(void __iomem *vaddr)
116 iounmap(vaddr);
119 #else
121 /* this struct isn't actually defined anywhere */
122 struct io_mapping;
124 /* Create the io_mapping object*/
125 static inline struct io_mapping *
126 io_mapping_create_wc(resource_size_t base, unsigned long size)
128 return (struct io_mapping __force *) ioremap_wc(base, size);
131 static inline void
132 io_mapping_free(struct io_mapping *mapping)
134 iounmap((void __force __iomem *) mapping);
137 /* Atomic map/unmap */
138 static inline void __iomem *
139 io_mapping_map_atomic_wc(struct io_mapping *mapping,
140 unsigned long offset,
141 int slot)
143 return ((char __force __iomem *) mapping) + offset;
146 static inline void
147 io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
151 /* Non-atomic map/unmap */
152 static inline void __iomem *
153 io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
155 return ((char __force __iomem *) mapping) + offset;
158 static inline void
159 io_mapping_unmap(void __iomem *vaddr)
163 #endif /* HAVE_ATOMIC_IOMAP */
165 #endif /* _LINUX_IO_MAPPING_H */