1 // SPDX-License-Identifier: GPL-2.0-only
2 /* Copyright (C) 2020 Red Hat, Inc.
3 * Author: Jason Wang <jasowang@redhat.com>
5 * IOTLB implementation for vhost.
7 #include <linux/slab.h>
8 #include <linux/vhost_iotlb.h>
9 #include <linux/module.h>
11 #define MOD_VERSION "0.1"
12 #define MOD_DESC "VHOST IOTLB"
13 #define MOD_AUTHOR "Jason Wang <jasowang@redhat.com>"
14 #define MOD_LICENSE "GPL v2"
16 #define START(map) ((map)->start)
17 #define LAST(map) ((map)->last)
19 INTERVAL_TREE_DEFINE(struct vhost_iotlb_map,
20 rb, __u64, __subtree_last,
21 START, LAST, static inline, vhost_iotlb_itree);
24 * vhost_iotlb_map_free - remove a map node and free it
26 * @map: the map that want to be remove and freed
28 void vhost_iotlb_map_free(struct vhost_iotlb *iotlb,
29 struct vhost_iotlb_map *map)
31 vhost_iotlb_itree_remove(map, &iotlb->root);
36 EXPORT_SYMBOL_GPL(vhost_iotlb_map_free);
39 * vhost_iotlb_add_range_ctx - add a new range to vhost IOTLB
41 * @start: start of the IOVA range
42 * @last: last of IOVA range
43 * @addr: the address that is mapped to @start
44 * @perm: access permission of this range
45 * @opaque: the opaque pointer for the new mapping
47 * Returns an error last is smaller than start or memory allocation
50 int vhost_iotlb_add_range_ctx(struct vhost_iotlb *iotlb,
52 u64 addr, unsigned int perm,
55 struct vhost_iotlb_map *map;
60 /* If the range being mapped is [0, ULONG_MAX], split it into two entries
61 * otherwise its size would overflow u64.
63 if (start == 0 && last == ULONG_MAX) {
65 int err = vhost_iotlb_add_range_ctx(iotlb, start, mid, addr,
76 iotlb->nmaps == iotlb->limit &&
77 iotlb->flags & VHOST_IOTLB_FLAG_RETIRE) {
78 map = list_first_entry(&iotlb->list, typeof(*map), link);
79 vhost_iotlb_map_free(iotlb, map);
82 map = kmalloc(sizeof(*map), GFP_ATOMIC);
87 map->size = last - start + 1;
94 vhost_iotlb_itree_insert(map, &iotlb->root);
96 INIT_LIST_HEAD(&map->link);
97 list_add_tail(&map->link, &iotlb->list);
101 EXPORT_SYMBOL_GPL(vhost_iotlb_add_range_ctx);
103 int vhost_iotlb_add_range(struct vhost_iotlb *iotlb,
105 u64 addr, unsigned int perm)
107 return vhost_iotlb_add_range_ctx(iotlb, start, last,
110 EXPORT_SYMBOL_GPL(vhost_iotlb_add_range);
113 * vhost_iotlb_del_range - delete overlapped ranges from vhost IOTLB
115 * @start: start of the IOVA range
116 * @last: last of IOVA range
118 void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last)
120 struct vhost_iotlb_map *map;
122 while ((map = vhost_iotlb_itree_iter_first(&iotlb->root,
124 vhost_iotlb_map_free(iotlb, map);
126 EXPORT_SYMBOL_GPL(vhost_iotlb_del_range);
129 * vhost_iotlb_init - initialize a vhost IOTLB
130 * @iotlb: the IOTLB that needs to be initialized
131 * @limit: maximum number of IOTLB entries
132 * @flags: VHOST_IOTLB_FLAG_XXX
134 void vhost_iotlb_init(struct vhost_iotlb *iotlb, unsigned int limit,
137 iotlb->root = RB_ROOT_CACHED;
138 iotlb->limit = limit;
140 iotlb->flags = flags;
141 INIT_LIST_HEAD(&iotlb->list);
143 EXPORT_SYMBOL_GPL(vhost_iotlb_init);
146 * vhost_iotlb_alloc - add a new vhost IOTLB
147 * @limit: maximum number of IOTLB entries
148 * @flags: VHOST_IOTLB_FLAG_XXX
150 * Returns an error is memory allocation fails
152 struct vhost_iotlb *vhost_iotlb_alloc(unsigned int limit, unsigned int flags)
154 struct vhost_iotlb *iotlb = kzalloc(sizeof(*iotlb), GFP_KERNEL);
159 vhost_iotlb_init(iotlb, limit, flags);
163 EXPORT_SYMBOL_GPL(vhost_iotlb_alloc);
166 * vhost_iotlb_reset - reset vhost IOTLB (free all IOTLB entries)
167 * @iotlb: the IOTLB to be reset
169 void vhost_iotlb_reset(struct vhost_iotlb *iotlb)
171 vhost_iotlb_del_range(iotlb, 0ULL, 0ULL - 1);
173 EXPORT_SYMBOL_GPL(vhost_iotlb_reset);
176 * vhost_iotlb_free - reset and free vhost IOTLB
177 * @iotlb: the IOTLB to be freed
179 void vhost_iotlb_free(struct vhost_iotlb *iotlb)
182 vhost_iotlb_reset(iotlb);
186 EXPORT_SYMBOL_GPL(vhost_iotlb_free);
189 * vhost_iotlb_itree_first - return the first overlapped range
191 * @start: start of IOVA range
192 * @last: last byte in IOVA range
194 struct vhost_iotlb_map *
195 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last)
197 return vhost_iotlb_itree_iter_first(&iotlb->root, start, last);
199 EXPORT_SYMBOL_GPL(vhost_iotlb_itree_first);
202 * vhost_iotlb_itree_next - return the next overlapped range
203 * @map: the starting map node
204 * @start: start of IOVA range
205 * @last: last byte IOVA range
207 struct vhost_iotlb_map *
208 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last)
210 return vhost_iotlb_itree_iter_next(map, start, last);
212 EXPORT_SYMBOL_GPL(vhost_iotlb_itree_next);
214 MODULE_VERSION(MOD_VERSION);
215 MODULE_DESCRIPTION(MOD_DESC);
216 MODULE_AUTHOR(MOD_AUTHOR);
217 MODULE_LICENSE(MOD_LICENSE);