blob: da053313ee5c089e099d02c9a368eb4f4aacaf56 [file] [log] [blame]
FUJITA Tomonori0291df82008-02-04 22:28:07 -08001/*
2 * IOMMU helper functions for the free area management
3 */
4
5#include <linux/module.h>
Akinobu Mitaa66022c2009-12-15 16:48:28 -08006#include <linux/bitmap.h>
FUJITA Tomonori0291df82008-02-04 22:28:07 -08007
FUJITA Tomonori37158632008-03-04 14:29:27 -08008int iommu_is_span_boundary(unsigned int index, unsigned int nr,
9 unsigned long shift,
10 unsigned long boundary_size)
FUJITA Tomonori0291df82008-02-04 22:28:07 -080011{
FUJITA Tomonori37158632008-03-04 14:29:27 -080012 BUG_ON(!is_power_of_2(boundary_size));
13
FUJITA Tomonori0291df82008-02-04 22:28:07 -080014 shift = (shift + index) & (boundary_size - 1);
15 return shift + nr > boundary_size;
16}
17
18unsigned long iommu_area_alloc(unsigned long *map, unsigned long size,
19 unsigned long start, unsigned int nr,
20 unsigned long shift, unsigned long boundary_size,
21 unsigned long align_mask)
22{
23 unsigned long index;
Akinobu Mitaa66022c2009-12-15 16:48:28 -080024
25 /* We don't want the last of the limit */
26 size -= 1;
FUJITA Tomonori0291df82008-02-04 22:28:07 -080027again:
Akinobu Mitaa66022c2009-12-15 16:48:28 -080028 index = bitmap_find_next_zero_area(map, size, start, nr, align_mask);
29 if (index < size) {
FUJITA Tomonori37158632008-03-04 14:29:27 -080030 if (iommu_is_span_boundary(index, nr, shift, boundary_size)) {
FUJITA Tomonori0291df82008-02-04 22:28:07 -080031 /* we could do more effectively */
32 start = index + 1;
33 goto again;
34 }
Akinobu Mitaa66022c2009-12-15 16:48:28 -080035 bitmap_set(map, index, nr);
36 return index;
FUJITA Tomonori0291df82008-02-04 22:28:07 -080037 }
Akinobu Mitaa66022c2009-12-15 16:48:28 -080038 return -1;
FUJITA Tomonori0291df82008-02-04 22:28:07 -080039}
40EXPORT_SYMBOL(iommu_area_alloc);