Release 4.16 arch/mips/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_DMA_MAPPING_H
#define _ASM_DMA_MAPPING_H
#include <linux/scatterlist.h>
#include <asm/dma-coherence.h>
#include <asm/cache.h>
#ifndef CONFIG_SGI_IP27 /* Kludge to fix 2.6.39 build for IP27 */
#include <dma-coherence.h>
#endif
extern const struct dma_map_ops *mips_dma_map_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return mips_dma_map_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Daney | 8 | 44.44% | 1 | 25.00% |
Ralf Bächle | 6 | 33.33% | 1 | 25.00% |
Bart Van Assche | 4 | 22.22% | 2 | 50.00% |
Total | 18 | 100.00% | 4 | 100.00% |
#define arch_setup_dma_ops arch_setup_dma_ops
static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
u64 size, const struct iommu_ops *iommu,
bool coherent)
{
#ifdef CONFIG_DMA_PERDEV_COHERENT
dev->archdata.dma_coherent = coherent;
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paul Burton | 40 | 100.00% | 1 | 100.00% |
Total | 40 | 100.00% | 1 | 100.00% |
#endif /* _ASM_DMA_MAPPING_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Paul Burton | 44 | 45.36% | 1 | 9.09% |
Ralf Bächle | 24 | 24.74% | 2 | 18.18% |
David Daney | 15 | 15.46% | 1 | 9.09% |
Bart Van Assche | 5 | 5.15% | 2 | 18.18% |
Steven J. Hill | 3 | 3.09% | 1 | 9.09% |
James Bottomley | 2 | 2.06% | 1 | 9.09% |
Andrew Morton | 2 | 2.06% | 1 | 9.09% |
Christoph Hellwig | 1 | 1.03% | 1 | 9.09% |
Greg Kroah-Hartman | 1 | 1.03% | 1 | 9.09% |
Total | 97 | 100.00% | 11 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.