blob: 0adb0f91568c1cfd407b1e88c1dce5b39d0080d5 [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{
Pallipadi, Venkatesh5ce04e32009-03-01 08:53:27 -080094 resource_size_t phys_addr;
95
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080096 BUG_ON(offset >= mapping->size);
Pallipadi, Venkatesh5ce04e32009-03-01 08:53:27 -080097 phys_addr = mapping->base + offset;
98
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080099 return ioremap_wc(phys_addr, PAGE_SIZE);
Keith Packard9663f2e2008-10-30 19:38:18 -0700100}
101
102static inline void
103io_mapping_unmap(void *vaddr)
104{
105 iounmap(vaddr);
106}
Keith Packarde5beae12008-11-03 18:21:45 +0100107
108#else
109
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800110/* this struct isn't actually defined anywhere */
111struct io_mapping;
112
Keith Packarde5beae12008-11-03 18:21:45 +0100113/* Create the io_mapping object*/
114static inline struct io_mapping *
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800115io_mapping_create_wc(resource_size_t base, unsigned long size)
Keith Packarde5beae12008-11-03 18:21:45 +0100116{
117 return (struct io_mapping *) ioremap_wc(base, size);
118}
119
120static inline void
121io_mapping_free(struct io_mapping *mapping)
122{
123 iounmap(mapping);
124}
125
126/* Atomic map/unmap */
127static inline void *
128io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
129{
130 return ((char *) mapping) + offset;
131}
132
133static inline void
134io_mapping_unmap_atomic(void *vaddr)
135{
136}
137
138/* Non-atomic map/unmap */
139static inline void *
140io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
141{
142 return ((char *) mapping) + offset;
143}
144
145static inline void
146io_mapping_unmap(void *vaddr)
147{
148}
149
150#endif /* HAVE_ATOMIC_IOMAP */
Keith Packard9663f2e2008-10-30 19:38:18 -0700151
152#endif /* _LINUX_IO_MAPPING_H */