]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/io-mapping.h
Merge branch 'linux-next' of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes...
[mirror_ubuntu-jammy-kernel.git] / include / linux / io-mapping.h
CommitLineData
9663f2e6
KP
1/*
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>
5a0e3ad6 22#include <linux/slab.h>
9663f2e6
KP
23#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
e5beae16
KP
34#ifdef CONFIG_HAVE_ATOMIC_IOMAP
35
4ab0d47d
VP
36struct io_mapping {
37 resource_size_t base;
38 unsigned long size;
39 pgprot_t prot;
40};
41
e5beae16
KP
42/*
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 */
9663f2e6 48
9663f2e6 49static inline struct io_mapping *
4ab0d47d 50io_mapping_create_wc(resource_size_t base, unsigned long size)
9663f2e6 51{
4ab0d47d 52 struct io_mapping *iomap;
9e36fda0 53 pgprot_t prot;
4ab0d47d
VP
54
55 iomap = kmalloc(sizeof(*iomap), GFP_KERNEL);
56 if (!iomap)
9e36fda0
VP
57 goto out_err;
58
59 if (iomap_create_wc(base, size, &prot))
60 goto out_free;
4ab0d47d
VP
61
62 iomap->base = base;
63 iomap->size = size;
9e36fda0 64 iomap->prot = prot;
4ab0d47d 65 return iomap;
9e36fda0
VP
66
67out_free:
68 kfree(iomap);
69out_err:
70 return NULL;
9663f2e6
KP
71}
72
73static inline void
74io_mapping_free(struct io_mapping *mapping)
75{
9e36fda0 76 iomap_free(mapping->base, mapping->size);
4ab0d47d 77 kfree(mapping);
9663f2e6
KP
78}
79
80/* Atomic map/unmap */
81static inline void *
fca3ec01
CW
82io_mapping_map_atomic_wc(struct io_mapping *mapping,
83 unsigned long offset,
84 int slot)
9663f2e6 85{
4ab0d47d
VP
86 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);
fca3ec01 92 return iomap_atomic_prot_pfn(pfn, slot, mapping->prot);
9663f2e6
KP
93}
94
95static inline void
fca3ec01 96io_mapping_unmap_atomic(void *vaddr, int slot)
9663f2e6 97{
fca3ec01 98 iounmap_atomic(vaddr, slot);
9663f2e6
KP
99}
100
9663f2e6
KP
101static inline void *
102io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
103{
5ce04e3d
PV
104 resource_size_t phys_addr;
105
4ab0d47d 106 BUG_ON(offset >= mapping->size);
5ce04e3d
PV
107 phys_addr = mapping->base + offset;
108
4ab0d47d 109 return ioremap_wc(phys_addr, PAGE_SIZE);
9663f2e6
KP
110}
111
112static inline void
113io_mapping_unmap(void *vaddr)
114{
e5beae16 115 iounmap(vaddr);
9663f2e6
KP
116}
117
e5beae16 118#else
9663f2e6 119
4ab0d47d
VP
120/* this struct isn't actually defined anywhere */
121struct io_mapping;
122
e5beae16 123/* Create the io_mapping object*/
9663f2e6 124static inline struct io_mapping *
4ab0d47d 125io_mapping_create_wc(resource_size_t base, unsigned long size)
9663f2e6 126{
e5beae16 127 return (struct io_mapping *) ioremap_wc(base, size);
9663f2e6
KP
128}
129
130static inline void
131io_mapping_free(struct io_mapping *mapping)
132{
e5beae16 133 iounmap(mapping);
9663f2e6
KP
134}
135
136/* Atomic map/unmap */
137static inline void *
fca3ec01
CW
138io_mapping_map_atomic_wc(struct io_mapping *mapping,
139 unsigned long offset,
140 int slot)
9663f2e6 141{
e5beae16 142 return ((char *) mapping) + offset;
9663f2e6
KP
143}
144
145static inline void
fca3ec01 146io_mapping_unmap_atomic(void *vaddr, int slot)
9663f2e6 147{
9663f2e6
KP
148}
149
e5beae16 150/* Non-atomic map/unmap */
9663f2e6
KP
151static inline void *
152io_mapping_map_wc(struct io_mapping *mapping, unsigned long offset)
153{
e5beae16 154 return ((char *) mapping) + offset;
9663f2e6
KP
155}
156
157static inline void
158io_mapping_unmap(void *vaddr)
159{
9663f2e6 160}
e5beae16
KP
161
162#endif /* HAVE_ATOMIC_IOMAP */
9663f2e6
KP
163
164#endif /* _LINUX_IO_MAPPING_H */