io-mapping.h 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 * 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>
#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 已提交
33 34
#ifdef CONFIG_HAVE_ATOMIC_IOMAP

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

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

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

54
	if (!reserve_io_memtype_wc(base, size, &prot))
55 56 57 58 59 60 61 62
		return NULL;

	iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
	if (!iomap)
		return NULL;

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

static inline void
io_mapping_free(struct io_mapping *mapping)
{
70
	free_io_memtype(mapping->base, mapping->size);
71
	kfree(mapping);
72 73 74 75 76 77
}

/* Atomic map/unmap */
static inline void *
io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
{
78 79 80 81 82 83 84
	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);
85 86 87 88 89
}

static inline void
io_mapping_unmap_atomic(void *vaddr)
{
K
Keith Packard 已提交
90
	iounmap_atomic(vaddr, KM_USER0);
91 92 93 94 95
}

static inline void *
io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
{
96 97 98
	BUG_ON(offset >= mapping->size);
	resource_size_t phys_addr = mapping->base + offset;
	return ioremap_wc(phys_addr, PAGE_SIZE);
99 100 101 102 103
}

static inline void
io_mapping_unmap(void *vaddr)
{
K
Keith Packard 已提交
104
	iounmap(vaddr);
105 106
}

K
Keith Packard 已提交
107
#else
108

109 110 111
/* this struct isn't actually defined anywhere */
struct io_mapping;

K
Keith Packard 已提交
112
/* Create the io_mapping object*/
113
static inline struct io_mapping *
114
io_mapping_create_wc(resource_size_t base, unsigned long size)
115
{
K
Keith Packard 已提交
116
	return (struct io_mapping *) ioremap_wc(base, size);
117 118 119 120 121
}

static inline void
io_mapping_free(struct io_mapping *mapping)
{
K
Keith Packard 已提交
122
	iounmap(mapping);
123 124 125 126 127 128
}

/* Atomic map/unmap */
static inline void *
io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
{
K
Keith Packard 已提交
129
	return ((char *) mapping) + offset;
130 131 132 133 134 135 136
}

static inline void
io_mapping_unmap_atomic(void *vaddr)
{
}

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

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

#endif /* HAVE_ATOMIC_IOMAP */
150 151

#endif /* _LINUX_IO_MAPPING_H */