Release 4.14 arch/mips/include/asm/mach-loongson64/dma-coherence.h
/*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
* for more details.
*
* Copyright (C) 2006, 07 Ralf Baechle <ralf@linux-mips.org>
* Copyright (C) 2007 Lemote, Inc. & Institute of Computing Technology
* Author: Fuxin Zhang, zhangfx@lemote.com
*
*/
#ifndef __ASM_MACH_LOONGSON64_DMA_COHERENCE_H
#define __ASM_MACH_LOONGSON64_DMA_COHERENCE_H
#ifdef CONFIG_SWIOTLB
#include <linux/swiotlb.h>
#endif
struct device;
extern dma_addr_t phys_to_dma(struct device *dev, phys_addr_t paddr);
extern phys_addr_t dma_to_phys(struct device *dev, dma_addr_t daddr);
static inline dma_addr_t plat_map_dma_mem(struct device *dev, void *addr,
size_t size)
{
#ifdef CONFIG_CPU_LOONGSON3
return phys_to_dma(dev, virt_to_phys(addr));
#else
return virt_to_phys(addr) | 0x80000000;
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 27 | 60.00% | 1 | 33.33% |
Huacai Chen | 18 | 40.00% | 2 | 66.67% |
Total | 45 | 100.00% | 3 | 100.00% |
static inline dma_addr_t plat_map_dma_mem_page(struct device *dev,
struct page *page)
{
#ifdef CONFIG_CPU_LOONGSON3
return phys_to_dma(dev, page_to_phys(page));
#else
return page_to_phys(page) | 0x80000000;
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 25 | 58.14% | 1 | 33.33% |
Huacai Chen | 18 | 41.86% | 2 | 66.67% |
Total | 43 | 100.00% | 3 | 100.00% |
static inline unsigned long plat_dma_addr_to_phys(struct device *dev,
dma_addr_t dma_addr)
{
#if defined(CONFIG_CPU_LOONGSON3) && defined(CONFIG_64BIT)
return dma_to_phys(dev, dma_addr);
#elif defined(CONFIG_CPU_LOONGSON2F) && defined(CONFIG_64BIT)
return (dma_addr > 0x8fffffff) ? dma_addr : (dma_addr & 0x0fffffff);
#else
return dma_addr & 0x7fffffff;
#endif
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Wu Zhangjin | 30 | 42.86% | 1 | 20.00% |
Huacai Chen | 19 | 27.14% | 2 | 40.00% |
Songmao Tian | 16 | 22.86% | 1 | 20.00% |
Kevin Cernekee | 5 | 7.14% | 1 | 20.00% |
Total | 70 | 100.00% | 5 | 100.00% |
static inline void plat_unmap_dma_mem(struct device *dev, dma_addr_t dma_addr,
size_t size, enum dma_data_direction direction)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 9 | 42.86% | 1 | 33.33% |
Kevin Cernekee | 7 | 33.33% | 1 | 33.33% |
David Daney | 5 | 23.81% | 1 | 33.33% |
Total | 21 | 100.00% | 3 | 100.00% |
static inline int plat_dma_supported(struct device *dev, u64 mask)
{
/*
* we fall back to GFP_DMA when the mask isn't all 1s,
* so we can't guarantee allocations that must be
* within a tighter range than GFP_DMA..
*/
if (mask < DMA_BIT_MASK(24))
return 0;
return 1;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David Daney | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
static inline int plat_device_is_coherent(struct device *dev)
{
#ifdef CONFIG_DMA_NONCOHERENT
return 0;
#else
return 1;
#endif /* CONFIG_DMA_NONCOHERENT */
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 15 | 57.69% | 1 | 50.00% |
Huacai Chen | 11 | 42.31% | 1 | 50.00% |
Total | 26 | 100.00% | 2 | 100.00% |
static inline void plat_post_dma_flush(struct device *dev)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 11 | 100.00% | 1 | 100.00% |
Total | 11 | 100.00% | 1 | 100.00% |
#endif /* __ASM_MACH_LOONGSON64_DMA_COHERENCE_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Huacai Chen | 103 | 35.03% | 3 | 33.33% |
Songmao Tian | 102 | 34.69% | 1 | 11.11% |
David Daney | 36 | 12.24% | 1 | 11.11% |
Wu Zhangjin | 30 | 10.20% | 1 | 11.11% |
Kevin Cernekee | 12 | 4.08% | 2 | 22.22% |
Ralf Bächle | 11 | 3.74% | 1 | 11.11% |
Total | 294 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.