io-mapping.h 3.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright © 2008 Keith Packard <keithp@keithp.com>
 *
 * This file is free software; you can redistribute it and/or modify
 * it under the terms of version 2 of the GNU General Public License
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifndef _LINUX_IO_MAPPING_H
#define _LINUX_IO_MAPPING_H

#include <linux/types.h>
22
#include <linux/slab.h>
23
#include <linux/bug.h>
24 25 26 27 28 29 30
#include <asm/io.h>
#include <asm/page.h>

/*
 * The io_mapping mechanism provides an abstraction for mapping
 * individual pages from an io device to the CPU in an efficient fashion.
 *
P
Paul Bolle 已提交
31
 * See Documentation/io-mapping.txt
32 33
 */

K
Keith Packard 已提交
34 35
#ifdef CONFIG_HAVE_ATOMIC_IOMAP

36 37
#include <asm/iomap.h>

38 39 40 41 42 43
struct io_mapping {
	resource_size_t base;
	unsigned long size;
	pgprot_t prot;
};

K
Keith Packard 已提交
44 45 46 47 48 49
/*
 * For small address space machines, mapping large objects
 * into the kernel virtual space isn't practical. Where
 * available, use fixmap support to dynamically map pages
 * of the object at run time.
 */
50 51

static inline struct io_mapping *
52
io_mapping_create_wc(resource_size_t base, unsigned long size)
53
{
54
	struct io_mapping *iomap;
55
	pgprot_t prot;
56 57 58

	iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
	if (!iomap)
59 60 61 62
		goto out_err;

	if (iomap_create_wc(base, size, &prot))
		goto out_free;
63 64 65

	iomap->base = base;
	iomap->size = size;
66
	iomap->prot = prot;
67
	return iomap;
68 69 70 71 72

out_free:
	kfree(iomap);
out_err:
	return NULL;
73 74 75 76 77
}

static inline void
io_mapping_free(struct io_mapping *mapping)
{
78
	iomap_free(mapping->base, mapping->size);
79
	kfree(mapping);
80 81 82
}

/* Atomic map/unmap */
83
static inline void __iomem *
84
io_mapping_map_atomic_wc(struct io_mapping *mapping,
P
Peter Zijlstra 已提交
85
			 unsigned long offset)
86
{
87 88 89 90 91 92
	resource_size_t phys_addr;
	unsigned long pfn;

	BUG_ON(offset >= mapping->size);
	phys_addr = mapping->base + offset;
	pfn = (unsigned long) (phys_addr >> PAGE_SHIFT);
P
Peter Zijlstra 已提交
93
	return iomap_atomic_prot_pfn(pfn, mapping->prot);
94 95 96
}

static inline void
P
Peter Zijlstra 已提交
97
io_mapping_unmap_atomic(void __iomem *vaddr)
98
{
P
Peter Zijlstra 已提交
99
	iounmap_atomic(vaddr);
100 101
}

102
static inline void __iomem *
103 104
io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
{
105 106
	resource_size_t phys_addr;

107
	BUG_ON(offset >= mapping->size);
108 109
	phys_addr = mapping->base + offset;

110
	return ioremap_wc(phys_addr, PAGE_SIZE);
111 112 113
}

static inline void
114
io_mapping_unmap(void __iomem *vaddr)
115
{
K
Keith Packard 已提交
116
	iounmap(vaddr);
117 118
}

K
Keith Packard 已提交
119
#else
120

121 122
#include <linux/uaccess.h>

123 124 125
/* this struct isn't actually defined anywhere */
struct io_mapping;

K
Keith Packard 已提交
126
/* Create the io_mapping object*/
127
static inline struct io_mapping *
128
io_mapping_create_wc(resource_size_t base, unsigned long size)
129
{
130
	return (struct io_mapping __force *) ioremap_wc(base, size);
131 132 133 134 135
}

static inline void
io_mapping_free(struct io_mapping *mapping)
{
136
	iounmap((void __force __iomem *) mapping);
137 138 139
}

/* Atomic map/unmap */
140
static inline void __iomem *
141
io_mapping_map_atomic_wc(struct io_mapping *mapping,
P
Peter Zijlstra 已提交
142
			 unsigned long offset)
143
{
144
	pagefault_disable();
145
	return ((char __force __iomem *) mapping) + offset;
146 147 148
}

static inline void
P
Peter Zijlstra 已提交
149
io_mapping_unmap_atomic(void __iomem *vaddr)
150
{
151
	pagefault_enable();
152 153
}

K
Keith Packard 已提交
154
/* Non-atomic map/unmap */
155
static inline void __iomem *
156 157
io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
{
158
	return ((char __force __iomem *) mapping) + offset;
159 160 161
}

static inline void
162
io_mapping_unmap(void __iomem *vaddr)
163 164
{
}
K
Keith Packard 已提交
165 166

#endif /* HAVE_ATOMIC_IOMAP */
167 168

#endif /* _LINUX_IO_MAPPING_H */