blob: cbc2f0cd631ba1f58b4c5f937dbcffecab48a36a [file] [log] [blame]
Keith Packard9663f2e2008-10-30 19:38:18 -07001/*
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>
22#include <asm/io.h>
23#include <asm/page.h>
24#include <asm/iomap.h>
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
Keith Packarde5beae12008-11-03 18:21:45 +010033#ifdef CONFIG_HAVE_ATOMIC_IOMAP
Keith Packard9663f2e2008-10-30 19:38:18 -070034
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080035struct io_mapping {
36 resource_size_t base;
37 unsigned long size;
38 pgprot_t prot;
39};
40
Keith Packarde5beae12008-11-03 18:21:45 +010041/*
42 * For small address space machines, mapping large objects
43 * into the kernel virtual space isn't practical. Where
44 * available, use fixmap support to dynamically map pages
45 * of the object at run time.
46 */
Keith Packard9663f2e2008-10-30 19:38:18 -070047
Keith Packard9663f2e2008-10-30 19:38:18 -070048static inline struct io_mapping *
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080049io_mapping_create_wc(resource_size_t base, unsigned long size)
Keith Packard9663f2e2008-10-30 19:38:18 -070050{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080051 struct io_mapping *iomap;
52
53 if (!is_io_mapping_possible(base, size))
54 return NULL;
55
56 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
57 if (!iomap)
58 return NULL;
59
60 iomap->base = base;
61 iomap->size = size;
62 iomap->prot = pgprot_writecombine(__pgprot(__PAGE_KERNEL));
63 return iomap;
Keith Packard9663f2e2008-10-30 19:38:18 -070064}
65
66static inline void
67io_mapping_free(struct io_mapping *mapping)
68{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080069 kfree(mapping);
Keith Packard9663f2e2008-10-30 19:38:18 -070070}
71
72/* Atomic map/unmap */
73static inline void *
74io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
75{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080076 resource_size_t phys_addr;
77 unsigned long pfn;
78
79 BUG_ON(offset >= mapping->size);
80 phys_addr = mapping->base + offset;
81 pfn = (unsigned long) (phys_addr >> PAGE_SHIFT);
82 return iomap_atomic_prot_pfn(pfn, KM_USER0, mapping->prot);
Keith Packard9663f2e2008-10-30 19:38:18 -070083}
84
85static inline void
86io_mapping_unmap_atomic(void *vaddr)
87{
88 iounmap_atomic(vaddr, KM_USER0);
89}
90
91static inline void *
92io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
93{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080094 BUG_ON(offset >= mapping->size);
95 resource_size_t phys_addr = mapping->base + offset;
96 return ioremap_wc(phys_addr, PAGE_SIZE);
Keith Packard9663f2e2008-10-30 19:38:18 -070097}
98
99static inline void
100io_mapping_unmap(void *vaddr)
101{
102 iounmap(vaddr);
103}
Keith Packarde5beae12008-11-03 18:21:45 +0100104
105#else
106
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800107/* this struct isn't actually defined anywhere */
108struct io_mapping;
109
Keith Packarde5beae12008-11-03 18:21:45 +0100110/* Create the io_mapping object*/
111static inline struct io_mapping *
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800112io_mapping_create_wc(resource_size_t base, unsigned long size)
Keith Packarde5beae12008-11-03 18:21:45 +0100113{
114 return (struct io_mapping *) ioremap_wc(base, size);
115}
116
117static inline void
118io_mapping_free(struct io_mapping *mapping)
119{
120 iounmap(mapping);
121}
122
123/* Atomic map/unmap */
124static inline void *
125io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
126{
127 return ((char *) mapping) + offset;
128}
129
130static inline void
131io_mapping_unmap_atomic(void *vaddr)
132{
133}
134
135/* Non-atomic map/unmap */
136static inline void *
137io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
138{
139 return ((char *) mapping) + offset;
140}
141
142static inline void
143io_mapping_unmap(void *vaddr)
144{
145}
146
147#endif /* HAVE_ATOMIC_IOMAP */
Keith Packard9663f2e2008-10-30 19:38:18 -0700148
149#endif /* _LINUX_IO_MAPPING_H */