Release 4.18 include/linux/iommu-helper.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_IOMMU_HELPER_H
#define _LINUX_IOMMU_HELPER_H
#include <linux/bug.h>
#include <linux/kernel.h>
static inline unsigned long iommu_device_max_index(unsigned long size,
unsigned long offset,
u64 dma_mask)
{
if (size + offset > dma_mask)
return dma_mask - offset + 1;
else
return size;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 38 | 100.00% | 1 | 100.00% |
Total | 38 | 100.00% | 1 | 100.00% |
static inline int iommu_is_span_boundary(unsigned int index, unsigned int nr,
unsigned long shift, unsigned long boundary_size)
{
BUG_ON(!is_power_of_2(boundary_size));
shift = (shift + index) & (boundary_size - 1);
return shift + nr > boundary_size;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 34 | 64.15% | 1 | 50.00% |
FUJITA Tomonori | 19 | 35.85% | 1 | 50.00% |
Total | 53 | 100.00% | 2 | 100.00% |
extern unsigned long iommu_area_alloc(unsigned long *map, unsigned long size,
unsigned long start, unsigned int nr,
unsigned long shift,
unsigned long boundary_size,
unsigned long align_mask);
static inline unsigned long iommu_num_pages(unsigned long addr,
unsigned long len,
unsigned long io_page_size)
{
unsigned long size = (addr & (io_page_size - 1)) + len;
return DIV_ROUND_UP(size, io_page_size);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Anton Blanchard | 28 | 63.64% | 1 | 50.00% |
Joerg Roedel | 16 | 36.36% | 1 | 50.00% |
Total | 44 | 100.00% | 2 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 92 | 49.73% | 3 | 37.50% |
Christoph Hellwig | 37 | 20.00% | 1 | 12.50% |
Anton Blanchard | 31 | 16.76% | 1 | 12.50% |
Joerg Roedel | 16 | 8.65% | 1 | 12.50% |
Thomas Gleixner | 8 | 4.32% | 1 | 12.50% |
Greg Kroah-Hartman | 1 | 0.54% | 1 | 12.50% |
Total | 185 | 100.00% | 8 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.