2 * Copyright © 2008 Keith Packard <keithp@keithp.com>
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.
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.
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.
18 #ifndef _LINUX_IO_MAPPING_H
19 #define _LINUX_IO_MAPPING_H
21 #include <linux/types.h>
24 #include <asm/iomap.h>
27 * The io_mapping mechanism provides an abstraction for mapping
28 * individual pages from an io device to the CPU in an efficient fashion.
30 * See Documentation/io_mapping.txt
33 #ifdef CONFIG_HAVE_ATOMIC_IOMAP
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.
48 static inline struct io_mapping *
49 io_mapping_create_wc(resource_size_t base, unsigned long size)
51 struct io_mapping *iomap;
53 if (!is_io_mapping_possible(base, size))
56 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
62 iomap->prot = pgprot_writecombine(__pgprot(__PAGE_KERNEL));
67 io_mapping_free(struct io_mapping *mapping)
72 /* Atomic map/unmap */
74 io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
76 resource_size_t phys_addr;
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);
86 io_mapping_unmap_atomic(void *vaddr)
88 iounmap_atomic(vaddr, KM_USER0);
92 io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
94 BUG_ON(offset >= mapping->size);
95 resource_size_t phys_addr = mapping->base + offset;
96 return ioremap_wc(phys_addr, PAGE_SIZE);
100 io_mapping_unmap(void *vaddr)
107 /* this struct isn't actually defined anywhere */
110 /* Create the io_mapping object*/
111 static inline struct io_mapping *
112 io_mapping_create_wc(resource_size_t base, unsigned long size)
114 return (struct io_mapping *) ioremap_wc(base, size);
118 io_mapping_free(struct io_mapping *mapping)
123 /* Atomic map/unmap */
125 io_mapping_map_atomic_wc(struct io_mapping *mapping, unsigned long offset)
127 return ((char *) mapping) + offset;
131 io_mapping_unmap_atomic(void *vaddr)
135 /* Non-atomic map/unmap */
137 io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
139 return ((char *) mapping) + offset;
143 io_mapping_unmap(void *vaddr)
147 #endif /* HAVE_ATOMIC_IOMAP */
149 #endif /* _LINUX_IO_MAPPING_H */