mm-only debug patch...
[mmotm.git] / lib / iommu-helper.c
blob51b53d30db5ab8bc536a28ba5ec7907b5e9b89b6
1 /*
2 * IOMMU helper functions for the free area management
3 */
5 #include <linux/module.h>
6 #include <linux/bitmap.h>
8 int iommu_is_span_boundary(unsigned int index, unsigned int nr,
9 unsigned long shift,
10 unsigned long boundary_size)
12 BUG_ON(!is_power_of_2(boundary_size));
14 shift = (shift + index) & (boundary_size - 1);
15 return shift + nr > boundary_size;
18 unsigned 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)
23 unsigned long index;
24 again:
25 index = bitmap_find_next_zero_area(map, size, start, nr, align_mask);
26 if (index < size) {
27 if (iommu_is_span_boundary(index, nr, shift, boundary_size)) {
28 /* we could do more effectively */
29 start = index + 1;
30 goto again;
32 bitmap_set(map, index, nr);
33 return index;
35 return -1;
37 EXPORT_SYMBOL(iommu_area_alloc);
39 unsigned long iommu_num_pages(unsigned long addr, unsigned long len,
40 unsigned long io_page_size)
42 unsigned long size = (addr & (io_page_size - 1)) + len;
44 return DIV_ROUND_UP(size, io_page_size);
46 EXPORT_SYMBOL(iommu_num_pages);