io-mapping.h 3.6 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 24 25 26 27 28 29 30 31 32
#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.
 *
 * See Documentation/io_mapping.txt
 */

K
Keith Packard 已提交
33 34
#ifdef CONFIG_HAVE_ATOMIC_IOMAP

35 36
#include <asm/iomap.h>

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

K
Keith Packard 已提交
43 44 45 46 47 48
/*
 * 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.
 */
49 50

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

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

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

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

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

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

/* Atomic map/unmap */
82
static inline void __iomem *
83 84 85
io_mapping_map_atomic_wc(struct io_mapping *mapping,
			 unsigned long offset,
			 int slot)
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);
93
	return iomap_atomic_prot_pfn(pfn, slot, mapping->prot);
94 95 96
}

static inline void
97
io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
98
{
99
	iounmap_atomic(vaddr, slot);
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 123
/* this struct isn't actually defined anywhere */
struct io_mapping;

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

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

/* Atomic map/unmap */
138
static inline void __iomem *
139 140 141
io_mapping_map_atomic_wc(struct io_mapping *mapping,
			 unsigned long offset,
			 int slot)
142
{
143
	return ((char __force __iomem *) mapping) + offset;
144 145 146
}

static inline void
147
io_mapping_unmap_atomic(void __iomem *vaddr, int slot)
148 149 150
{
}

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

static inline void
159
io_mapping_unmap(void __iomem *vaddr)
160 161
{
}
K
Keith Packard 已提交
162 163

#endif /* HAVE_ATOMIC_IOMAP */
164 165

#endif /* _LINUX_IO_MAPPING_H */