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>
22 #include <linux/slab.h>
25 #include <asm/iomap.h>
28 * The io_mapping mechanism provides an abstraction for mapping
29 * individual pages from an io device to the CPU in an efficient fashion.
31 * See Documentation/io_mapping.txt
34 #ifdef CONFIG_HAVE_ATOMIC_IOMAP
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.
49 static inline struct io_mapping
*
50 io_mapping_create_wc(resource_size_t base
, unsigned long size
)
52 struct io_mapping
*iomap
;
55 iomap
= kmalloc(sizeof(*iomap
), GFP_KERNEL
);
59 if (iomap_create_wc(base
, size
, &prot
))
74 io_mapping_free(struct io_mapping
*mapping
)
76 iomap_free(mapping
->base
, mapping
->size
);
80 /* Atomic map/unmap */
82 io_mapping_map_atomic_wc(struct io_mapping
*mapping
,
86 resource_size_t phys_addr
;
89 BUG_ON(offset
>= mapping
->size
);
90 phys_addr
= mapping
->base
+ offset
;
91 pfn
= (unsigned long) (phys_addr
>> PAGE_SHIFT
);
92 return iomap_atomic_prot_pfn(pfn
, slot
, mapping
->prot
);
96 io_mapping_unmap_atomic(void *vaddr
, int slot
)
98 iounmap_atomic(vaddr
, slot
);
102 io_mapping_map_wc(struct io_mapping
*mapping
, unsigned long offset
)
104 resource_size_t phys_addr
;
106 BUG_ON(offset
>= mapping
->size
);
107 phys_addr
= mapping
->base
+ offset
;
109 return ioremap_wc(phys_addr
, PAGE_SIZE
);
113 io_mapping_unmap(void *vaddr
)
120 /* this struct isn't actually defined anywhere */
123 /* Create the io_mapping object*/
124 static inline struct io_mapping
*
125 io_mapping_create_wc(resource_size_t base
, unsigned long size
)
127 return (struct io_mapping
*) ioremap_wc(base
, size
);
131 io_mapping_free(struct io_mapping
*mapping
)
136 /* Atomic map/unmap */
138 io_mapping_map_atomic_wc(struct io_mapping
*mapping
,
139 unsigned long offset
,
142 return ((char *) mapping
) + offset
;
146 io_mapping_unmap_atomic(void *vaddr
, int slot
)
150 /* Non-atomic map/unmap */
152 io_mapping_map_wc(struct io_mapping
*mapping
, unsigned long offset
)
154 return ((char *) mapping
) + offset
;
158 io_mapping_unmap(void *vaddr
)
162 #endif /* HAVE_ATOMIC_IOMAP */
164 #endif /* _LINUX_IO_MAPPING_H */