Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[linux-2.6/mini2440.git] / drivers / pci / iova.c
blob2287116e9822472a1ef879bd6facfbd30920b087
1 /*
2 * Copyright (c) 2006, Intel Corporation.
4 * This file is released under the GPLv2.
6 * Copyright (C) 2006-2008 Intel Corporation
7 * Author: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
8 */
10 #include <linux/iova.h>
12 void
13 init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit)
15 spin_lock_init(&iovad->iova_alloc_lock);
16 spin_lock_init(&iovad->iova_rbtree_lock);
17 iovad->rbroot = RB_ROOT;
18 iovad->cached32_node = NULL;
19 iovad->dma_32bit_pfn = pfn_32bit;
22 static struct rb_node *
23 __get_cached_rbnode(struct iova_domain *iovad, unsigned long *limit_pfn)
25 if ((*limit_pfn != iovad->dma_32bit_pfn) ||
26 (iovad->cached32_node == NULL))
27 return rb_last(&iovad->rbroot);
28 else {
29 struct rb_node *prev_node = rb_prev(iovad->cached32_node);
30 struct iova *curr_iova =
31 container_of(iovad->cached32_node, struct iova, node);
32 *limit_pfn = curr_iova->pfn_lo - 1;
33 return prev_node;
37 static void
38 __cached_rbnode_insert_update(struct iova_domain *iovad,
39 unsigned long limit_pfn, struct iova *new)
41 if (limit_pfn != iovad->dma_32bit_pfn)
42 return;
43 iovad->cached32_node = &new->node;
46 static void
47 __cached_rbnode_delete_update(struct iova_domain *iovad, struct iova *free)
49 struct iova *cached_iova;
50 struct rb_node *curr;
52 if (!iovad->cached32_node)
53 return;
54 curr = iovad->cached32_node;
55 cached_iova = container_of(curr, struct iova, node);
57 if (free->pfn_lo >= cached_iova->pfn_lo)
58 iovad->cached32_node = rb_next(&free->node);
61 /* Computes the padding size required, to make the
62 * the start address naturally aligned on its size
64 static int
65 iova_get_pad_size(int size, unsigned int limit_pfn)
67 unsigned int pad_size = 0;
68 unsigned int order = ilog2(size);
70 if (order)
71 pad_size = (limit_pfn + 1) % (1 << order);
73 return pad_size;
76 static int __alloc_and_insert_iova_range(struct iova_domain *iovad,
77 unsigned long size, unsigned long limit_pfn,
78 struct iova *new, bool size_aligned)
80 struct rb_node *prev, *curr = NULL;
81 unsigned long flags;
82 unsigned long saved_pfn;
83 unsigned int pad_size = 0;
85 /* Walk the tree backwards */
86 spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
87 saved_pfn = limit_pfn;
88 curr = __get_cached_rbnode(iovad, &limit_pfn);
89 prev = curr;
90 while (curr) {
91 struct iova *curr_iova = container_of(curr, struct iova, node);
93 if (limit_pfn < curr_iova->pfn_lo)
94 goto move_left;
95 else if (limit_pfn < curr_iova->pfn_hi)
96 goto adjust_limit_pfn;
97 else {
98 if (size_aligned)
99 pad_size = iova_get_pad_size(size, limit_pfn);
100 if ((curr_iova->pfn_hi + size + pad_size) <= limit_pfn)
101 break; /* found a free slot */
103 adjust_limit_pfn:
104 limit_pfn = curr_iova->pfn_lo - 1;
105 move_left:
106 prev = curr;
107 curr = rb_prev(curr);
110 if (!curr) {
111 if (size_aligned)
112 pad_size = iova_get_pad_size(size, limit_pfn);
113 if ((IOVA_START_PFN + size + pad_size) > limit_pfn) {
114 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
115 return -ENOMEM;
119 /* pfn_lo will point to size aligned address if size_aligned is set */
120 new->pfn_lo = limit_pfn - (size + pad_size) + 1;
121 new->pfn_hi = new->pfn_lo + size - 1;
123 /* Insert the new_iova into domain rbtree by holding writer lock */
124 /* Add new node and rebalance tree. */
126 struct rb_node **entry = &((prev)), *parent = NULL;
127 /* Figure out where to put new node */
128 while (*entry) {
129 struct iova *this = container_of(*entry,
130 struct iova, node);
131 parent = *entry;
133 if (new->pfn_lo < this->pfn_lo)
134 entry = &((*entry)->rb_left);
135 else if (new->pfn_lo > this->pfn_lo)
136 entry = &((*entry)->rb_right);
137 else
138 BUG(); /* this should not happen */
141 /* Add new node and rebalance tree. */
142 rb_link_node(&new->node, parent, entry);
143 rb_insert_color(&new->node, &iovad->rbroot);
145 __cached_rbnode_insert_update(iovad, saved_pfn, new);
147 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
150 return 0;
153 static void
154 iova_insert_rbtree(struct rb_root *root, struct iova *iova)
156 struct rb_node **new = &(root->rb_node), *parent = NULL;
157 /* Figure out where to put new node */
158 while (*new) {
159 struct iova *this = container_of(*new, struct iova, node);
160 parent = *new;
162 if (iova->pfn_lo < this->pfn_lo)
163 new = &((*new)->rb_left);
164 else if (iova->pfn_lo > this->pfn_lo)
165 new = &((*new)->rb_right);
166 else
167 BUG(); /* this should not happen */
169 /* Add new node and rebalance tree. */
170 rb_link_node(&iova->node, parent, new);
171 rb_insert_color(&iova->node, root);
175 * alloc_iova - allocates an iova
176 * @iovad - iova domain in question
177 * @size - size of page frames to allocate
178 * @limit_pfn - max limit address
179 * @size_aligned - set if size_aligned address range is required
180 * This function allocates an iova in the range limit_pfn to IOVA_START_PFN
181 * looking from limit_pfn instead from IOVA_START_PFN. If the size_aligned
182 * flag is set then the allocated address iova->pfn_lo will be naturally
183 * aligned on roundup_power_of_two(size).
185 struct iova *
186 alloc_iova(struct iova_domain *iovad, unsigned long size,
187 unsigned long limit_pfn,
188 bool size_aligned)
190 unsigned long flags;
191 struct iova *new_iova;
192 int ret;
194 new_iova = alloc_iova_mem();
195 if (!new_iova)
196 return NULL;
198 /* If size aligned is set then round the size to
199 * to next power of two.
201 if (size_aligned)
202 size = __roundup_pow_of_two(size);
204 spin_lock_irqsave(&iovad->iova_alloc_lock, flags);
205 ret = __alloc_and_insert_iova_range(iovad, size, limit_pfn,
206 new_iova, size_aligned);
208 spin_unlock_irqrestore(&iovad->iova_alloc_lock, flags);
209 if (ret) {
210 free_iova_mem(new_iova);
211 return NULL;
214 return new_iova;
218 * find_iova - find's an iova for a given pfn
219 * @iovad - iova domain in question.
220 * pfn - page frame number
221 * This function finds and returns an iova belonging to the
222 * given doamin which matches the given pfn.
224 struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn)
226 unsigned long flags;
227 struct rb_node *node;
229 /* Take the lock so that no other thread is manipulating the rbtree */
230 spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
231 node = iovad->rbroot.rb_node;
232 while (node) {
233 struct iova *iova = container_of(node, struct iova, node);
235 /* If pfn falls within iova's range, return iova */
236 if ((pfn >= iova->pfn_lo) && (pfn <= iova->pfn_hi)) {
237 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
238 /* We are not holding the lock while this iova
239 * is referenced by the caller as the same thread
240 * which called this function also calls __free_iova()
241 * and it is by desing that only one thread can possibly
242 * reference a particular iova and hence no conflict.
244 return iova;
247 if (pfn < iova->pfn_lo)
248 node = node->rb_left;
249 else if (pfn > iova->pfn_lo)
250 node = node->rb_right;
253 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
254 return NULL;
258 * __free_iova - frees the given iova
259 * @iovad: iova domain in question.
260 * @iova: iova in question.
261 * Frees the given iova belonging to the giving domain
263 void
264 __free_iova(struct iova_domain *iovad, struct iova *iova)
266 unsigned long flags;
268 spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
269 __cached_rbnode_delete_update(iovad, iova);
270 rb_erase(&iova->node, &iovad->rbroot);
271 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
272 free_iova_mem(iova);
276 * free_iova - finds and frees the iova for a given pfn
277 * @iovad: - iova domain in question.
278 * @pfn: - pfn that is allocated previously
279 * This functions finds an iova for a given pfn and then
280 * frees the iova from that domain.
282 void
283 free_iova(struct iova_domain *iovad, unsigned long pfn)
285 struct iova *iova = find_iova(iovad, pfn);
286 if (iova)
287 __free_iova(iovad, iova);
292 * put_iova_domain - destroys the iova doamin
293 * @iovad: - iova domain in question.
294 * All the iova's in that domain are destroyed.
296 void put_iova_domain(struct iova_domain *iovad)
298 struct rb_node *node;
299 unsigned long flags;
301 spin_lock_irqsave(&iovad->iova_rbtree_lock, flags);
302 node = rb_first(&iovad->rbroot);
303 while (node) {
304 struct iova *iova = container_of(node, struct iova, node);
305 rb_erase(node, &iovad->rbroot);
306 free_iova_mem(iova);
307 node = rb_first(&iovad->rbroot);
309 spin_unlock_irqrestore(&iovad->iova_rbtree_lock, flags);
312 static int
313 __is_range_overlap(struct rb_node *node,
314 unsigned long pfn_lo, unsigned long pfn_hi)
316 struct iova *iova = container_of(node, struct iova, node);
318 if ((pfn_lo <= iova->pfn_hi) && (pfn_hi >= iova->pfn_lo))
319 return 1;
320 return 0;
323 static struct iova *
324 __insert_new_range(struct iova_domain *iovad,
325 unsigned long pfn_lo, unsigned long pfn_hi)
327 struct iova *iova;
329 iova = alloc_iova_mem();
330 if (!iova)
331 return iova;
333 iova->pfn_hi = pfn_hi;
334 iova->pfn_lo = pfn_lo;
335 iova_insert_rbtree(&iovad->rbroot, iova);
336 return iova;
339 static void
340 __adjust_overlap_range(struct iova *iova,
341 unsigned long *pfn_lo, unsigned long *pfn_hi)
343 if (*pfn_lo < iova->pfn_lo)
344 iova->pfn_lo = *pfn_lo;
345 if (*pfn_hi > iova->pfn_hi)
346 *pfn_lo = iova->pfn_hi + 1;
350 * reserve_iova - reserves an iova in the given range
351 * @iovad: - iova domain pointer
352 * @pfn_lo: - lower page frame address
353 * @pfn_hi:- higher pfn adderss
354 * This function allocates reserves the address range from pfn_lo to pfn_hi so
355 * that this address is not dished out as part of alloc_iova.
357 struct iova *
358 reserve_iova(struct iova_domain *iovad,
359 unsigned long pfn_lo, unsigned long pfn_hi)
361 struct rb_node *node;
362 unsigned long flags;
363 struct iova *iova;
364 unsigned int overlap = 0;
366 spin_lock_irqsave(&iovad->iova_alloc_lock, flags);
367 spin_lock(&iovad->iova_rbtree_lock);
368 for (node = rb_first(&iovad->rbroot); node; node = rb_next(node)) {
369 if (__is_range_overlap(node, pfn_lo, pfn_hi)) {
370 iova = container_of(node, struct iova, node);
371 __adjust_overlap_range(iova, &pfn_lo, &pfn_hi);
372 if ((pfn_lo >= iova->pfn_lo) &&
373 (pfn_hi <= iova->pfn_hi))
374 goto finish;
375 overlap = 1;
377 } else if (overlap)
378 break;
381 /* We are here either becasue this is the first reserver node
382 * or need to insert remaining non overlap addr range
384 iova = __insert_new_range(iovad, pfn_lo, pfn_hi);
385 finish:
387 spin_unlock(&iovad->iova_rbtree_lock);
388 spin_unlock_irqrestore(&iovad->iova_alloc_lock, flags);
389 return iova;
393 * copy_reserved_iova - copies the reserved between domains
394 * @from: - source doamin from where to copy
395 * @to: - destination domin where to copy
396 * This function copies reserved iova's from one doamin to
397 * other.
399 void
400 copy_reserved_iova(struct iova_domain *from, struct iova_domain *to)
402 unsigned long flags;
403 struct rb_node *node;
405 spin_lock_irqsave(&from->iova_alloc_lock, flags);
406 spin_lock(&from->iova_rbtree_lock);
407 for (node = rb_first(&from->rbroot); node; node = rb_next(node)) {
408 struct iova *iova = container_of(node, struct iova, node);
409 struct iova *new_iova;
410 new_iova = reserve_iova(to, iova->pfn_lo, iova->pfn_hi);
411 if (!new_iova)
412 printk(KERN_ERR "Reserve iova range %lx@%lx failed\n",
413 iova->pfn_lo, iova->pfn_lo);
415 spin_unlock(&from->iova_rbtree_lock);
416 spin_unlock_irqrestore(&from->iova_alloc_lock, flags);