blob: e0ea40f6c51551c54d174bcdeb27049f885a332b [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Keith Packard9663f2e2008-10-30 19:38:18 -070023#include <asm/io.h>
24#include <asm/page.h>
25#include <asm/iomap.h>
26
27/*
28 * The io_mapping mechanism provides an abstraction for mapping
29 * individual pages from an io device to the CPU in an efficient fashion.
30 *
31 * See Documentation/io_mapping.txt
32 */
33
Keith Packarde5beae12008-11-03 18:21:45 +010034#ifdef CONFIG_HAVE_ATOMIC_IOMAP
Keith Packard9663f2e2008-10-30 19:38:18 -070035
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080036struct io_mapping {
37 resource_size_t base;
38 unsigned long size;
39 pgprot_t prot;
40};
41
Keith Packarde5beae12008-11-03 18:21:45 +010042/*
43 * For small address space machines, mapping large objects
44 * into the kernel virtual space isn't practical. Where
45 * available, use fixmap support to dynamically map pages
46 * of the object at run time.
47 */
Keith Packard9663f2e2008-10-30 19:38:18 -070048
Keith Packard9663f2e2008-10-30 19:38:18 -070049static inline struct io_mapping *
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080050io_mapping_create_wc(resource_size_t base, unsigned long size)
Keith Packard9663f2e2008-10-30 19:38:18 -070051{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080052 struct io_mapping *iomap;
Venkatesh Pallipadi9e36fda2009-07-10 09:57:35 -070053 pgprot_t prot;
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080054
55 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
56 if (!iomap)
Venkatesh Pallipadi9e36fda2009-07-10 09:57:35 -070057 goto out_err;
58
59 if (iomap_create_wc(base, size, &prot))
60 goto out_free;
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080061
62 iomap->base = base;
63 iomap->size = size;
Venkatesh Pallipadi9e36fda2009-07-10 09:57:35 -070064 iomap->prot = prot;
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080065 return iomap;
Venkatesh Pallipadi9e36fda2009-07-10 09:57:35 -070066
67out_free:
68 kfree(iomap);
69out_err:
70 return NULL;
Keith Packard9663f2e2008-10-30 19:38:18 -070071}
72
73static inline void
74io_mapping_free(struct io_mapping *mapping)
75{
Venkatesh Pallipadi9e36fda2009-07-10 09:57:35 -070076 iomap_free(mapping->base, mapping->size);
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080077 kfree(mapping);
Keith Packard9663f2e2008-10-30 19:38:18 -070078}
79
80/* Atomic map/unmap */
81static inline void *
Chris Wilsonfca3ec02010-08-04 14:34:24 +010082io_mapping_map_atomic_wc(struct io_mapping *mapping,
83 unsigned long offset,
84 int slot)
Keith Packard9663f2e2008-10-30 19:38:18 -070085{
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -080086 resource_size_t phys_addr;
87 unsigned long pfn;
88
89 BUG_ON(offset >= mapping->size);
90 phys_addr = mapping->base + offset;
91 pfn = (unsigned long) (phys_addr >> PAGE_SHIFT);
Chris Wilsonfca3ec02010-08-04 14:34:24 +010092 return iomap_atomic_prot_pfn(pfn, slot, mapping->prot);
Keith Packard9663f2e2008-10-30 19:38:18 -070093}
94
95static inline void
Chris Wilsonfca3ec02010-08-04 14:34:24 +010096io_mapping_unmap_atomic(void *vaddr, int slot)
Keith Packard9663f2e2008-10-30 19:38:18 -070097{
Chris Wilsonfca3ec02010-08-04 14:34:24 +010098 iounmap_atomic(vaddr, slot);
Keith Packard9663f2e2008-10-30 19:38:18 -070099}
100
101static inline void *
102io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
103{
Pallipadi, Venkatesh5ce04e32009-03-01 08:53:27 -0800104 resource_size_t phys_addr;
105
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800106 BUG_ON(offset >= mapping->size);
Pallipadi, Venkatesh5ce04e32009-03-01 08:53:27 -0800107 phys_addr = mapping->base + offset;
108
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800109 return ioremap_wc(phys_addr, PAGE_SIZE);
Keith Packard9663f2e2008-10-30 19:38:18 -0700110}
111
112static inline void
113io_mapping_unmap(void *vaddr)
114{
115 iounmap(vaddr);
116}
Keith Packarde5beae12008-11-03 18:21:45 +0100117
118#else
119
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800120/* this struct isn't actually defined anywhere */
121struct io_mapping;
122
Keith Packarde5beae12008-11-03 18:21:45 +0100123/* Create the io_mapping object*/
124static inline struct io_mapping *
Venkatesh Pallipadi4ab0d472009-02-24 17:35:12 -0800125io_mapping_create_wc(resource_size_t base, unsigned long size)
Keith Packarde5beae12008-11-03 18:21:45 +0100126{
127 return (struct io_mapping *) ioremap_wc(base, size);
128}
129
130static inline void
131io_mapping_free(struct io_mapping *mapping)
132{
133 iounmap(mapping);
134}
135
136/* Atomic map/unmap */
137static inline void *
Chris Wilsonfca3ec02010-08-04 14:34:24 +0100138io_mapping_map_atomic_wc(struct io_mapping *mapping,
139 unsigned long offset,
140 int slot)
Keith Packarde5beae12008-11-03 18:21:45 +0100141{
142 return ((char *) mapping) + offset;
143}
144
145static inline void
Chris Wilsonfca3ec02010-08-04 14:34:24 +0100146io_mapping_unmap_atomic(void *vaddr, int slot)
Keith Packarde5beae12008-11-03 18:21:45 +0100147{
148}
149
150/* Non-atomic map/unmap */
151static inline void *
152io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
153{
154 return ((char *) mapping) + offset;
155}
156
157static inline void
158io_mapping_unmap(void *vaddr)
159{
160}
161
162#endif /* HAVE_ATOMIC_IOMAP */
Keith Packard9663f2e2008-10-30 19:38:18 -0700163
164#endif /* _LINUX_IO_MAPPING_H */