]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/io-mapping.h
Merge branch 'for-rmk' of git://git.pengutronix.de/git/imx/linux-2.6
[net-next-2.6.git] / include / linux / io-mapping.h
CommitLineData
9663f2e6
KP
1/*
2 * Copyright © 2008 Keith Packard <keithp@keithp.com>
3 *
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.
7 *
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.
12 *
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.
16 */
17
18#ifndef _LINUX_IO_MAPPING_H
19#define _LINUX_IO_MAPPING_H
20
21#include <linux/types.h>
5a0e3ad6 22#include <linux/slab.h>
9663f2e6
KP
23#include <asm/io.h>
24#include <asm/page.h>
9663f2e6
KP
25
26/*
27 * The io_mapping mechanism provides an abstraction for mapping
28 * individual pages from an io device to the CPU in an efficient fashion.
29 *
30 * See Documentation/io_mapping.txt
31 */
32
e5beae16
KP
33#ifdef CONFIG_HAVE_ATOMIC_IOMAP
34
31ce4bfd
DA
35#include <asm/iomap.h>
36
4ab0d47d
VP
37struct io_mapping {
38 resource_size_t base;
39 unsigned long size;
40 pgprot_t prot;
41};
42
e5beae16
KP
43/*
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.
48 */
9663f2e6 49
9663f2e6 50static inline struct io_mapping *
4ab0d47d 51io_mapping_create_wc(resource_size_t base, unsigned long size)
9663f2e6 52{
4ab0d47d 53 struct io_mapping *iomap;
9e36fda0 54 pgprot_t prot;
4ab0d47d
VP
55
56 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
57 if (!iomap)
9e36fda0
VP
58 goto out_err;
59
60 if (iomap_create_wc(base, size, &prot))
61 goto out_free;
4ab0d47d
VP
62
63 iomap->base = base;
64 iomap->size = size;
9e36fda0 65 iomap->prot = prot;
4ab0d47d 66 return iomap;
9e36fda0
VP
67
68out_free:
69 kfree(iomap);
70out_err:
71 return NULL;
9663f2e6
KP
72}
73
74static inline void
75io_mapping_free(struct io_mapping *mapping)
76{
9e36fda0 77 iomap_free(mapping->base, mapping->size);
4ab0d47d 78 kfree(mapping);
9663f2e6
KP
79}
80
81/* Atomic map/unmap */
29bc17ec 82static inline void __iomem *
fca3ec01
CW
83io_mapping_map_atomic_wc(struct io_mapping *mapping,
84 unsigned long offset,
85 int slot)
9663f2e6 86{
4ab0d47d
VP
87 resource_size_t phys_addr;
88 unsigned long pfn;
89
90 BUG_ON(offset >= mapping->size);
91 phys_addr = mapping->base + offset;
92 pfn = (unsigned long) (phys_addr >> PAGE_SHIFT);
fca3ec01 93 return iomap_atomic_prot_pfn(pfn, slot, mapping->prot);
9663f2e6
KP
94}
95
96static inline void
29bc17ec 97io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
9663f2e6 98{
fca3ec01 99 iounmap_atomic(vaddr, slot);
9663f2e6
KP
100}
101
29bc17ec 102static inline void __iomem *
9663f2e6
KP
103io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
104{
5ce04e3d
PV
105 resource_size_t phys_addr;
106
4ab0d47d 107 BUG_ON(offset >= mapping->size);
5ce04e3d
PV
108 phys_addr = mapping->base + offset;
109
4ab0d47d 110 return ioremap_wc(phys_addr, PAGE_SIZE);
9663f2e6
KP
111}
112
113static inline void
29bc17ec 114io_mapping_unmap(void __iomem *vaddr)
9663f2e6 115{
e5beae16 116 iounmap(vaddr);
9663f2e6
KP
117}
118
e5beae16 119#else
9663f2e6 120
4ab0d47d
VP
121/* this struct isn't actually defined anywhere */
122struct io_mapping;
123
e5beae16 124/* Create the io_mapping object*/
9663f2e6 125static inline struct io_mapping *
4ab0d47d 126io_mapping_create_wc(resource_size_t base, unsigned long size)
9663f2e6 127{
29bc17ec 128 return (struct io_mapping __force *) ioremap_wc(base, size);
9663f2e6
KP
129}
130
131static inline void
132io_mapping_free(struct io_mapping *mapping)
133{
29bc17ec 134 iounmap((void __force __iomem *) mapping);
9663f2e6
KP
135}
136
137/* Atomic map/unmap */
29bc17ec 138static inline void __iomem *
fca3ec01
CW
139io_mapping_map_atomic_wc(struct io_mapping *mapping,
140 unsigned long offset,
141 int slot)
9663f2e6 142{
29bc17ec 143 return ((char __force __iomem *) mapping) + offset;
9663f2e6
KP
144}
145
146static inline void
29bc17ec 147io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
9663f2e6 148{
9663f2e6
KP
149}
150
e5beae16 151/* Non-atomic map/unmap */
29bc17ec 152static inline void __iomem *
9663f2e6
KP
153io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
154{
29bc17ec 155 return ((char __force __iomem *) mapping) + offset;
9663f2e6
KP
156}
157
158static inline void
29bc17ec 159io_mapping_unmap(void __iomem *vaddr)
9663f2e6 160{
9663f2e6 161}
e5beae16
KP
162
163#endif /* HAVE_ATOMIC_IOMAP */
9663f2e6
KP
164
165#endif /* _LINUX_IO_MAPPING_H */