io-mapping.h 3.5 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 33
#include <asm/io.h>
#include <asm/page.h>
#include <asm/iomap.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 已提交
34 35
#ifdef CONFIG_HAVE_ATOMIC_IOMAP

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

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

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

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

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

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

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

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

/* Atomic map/unmap */
static inline void *
io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
{
84 85 86 87 88 89 90
	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);
	return iomap_atomic_prot_pfn(pfn, KM_USER0, mapping->prot);
91 92 93 94 95
}

static inline void
io_mapping_unmap_atomic(void *vaddr)
{
K
Keith Packard 已提交
96
	iounmap_atomic(vaddr, KM_USER0);
97 98 99 100 101
}

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

104
	BUG_ON(offset >= mapping->size);
105 106
	phys_addr = mapping->base + offset;

107
	return ioremap_wc(phys_addr, PAGE_SIZE);
108 109 110 111 112
}

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

K
Keith Packard 已提交
116
#else
117

118 119 120
/* this struct isn't actually defined anywhere */
struct io_mapping;

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

static inline void
io_mapping_free(struct io_mapping *mapping)
{
K
Keith Packard 已提交
131
	iounmap(mapping);
132 133 134 135 136 137
}

/* Atomic map/unmap */
static inline void *
io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
{
K
Keith Packard 已提交
138
	return ((char *) mapping) + offset;
139 140 141 142 143 144 145
}

static inline void
io_mapping_unmap_atomic(void *vaddr)
{
}

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

static inline void
io_mapping_unmap(void *vaddr)
{
}
K
Keith Packard 已提交
157 158

#endif /* HAVE_ATOMIC_IOMAP */
159 160

#endif /* _LINUX_IO_MAPPING_H */