/* * 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) 2003 - 2005 Tensilica Inc. * Copyright (C) 2015 Cadence Design Systems Inc. */ #ifndef _XTENSA_DMA_MAPPING_H #define _XTENSA_DMA_MAPPING_H #include <asm/cache.h> #include <asm/io.h> #include <linux/mm.h> #include <linux/scatterlist.h> #define DMA_ERROR_CODE (~(dma_addr_t)0x0) extern struct dma_map_ops xtensa_dma_map_ops;
static inline struct dma_map_ops *get_dma_ops(struct device *dev) { if (dev && dev->archdata.dma_ops) return dev->archdata.dma_ops; else return &xtensa_dma_map_ops; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
max filippov | max filippov | 32 | 88.89% | 1 | 50.00% |
chris zankel | chris zankel | 4 | 11.11% | 1 | 50.00% |
Total | 36 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
max filippov | max filippov | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
max filippov | max filippov | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
max filippov | max filippov | 84 | 65.12% | 3 | 50.00% |
chris zankel | chris zankel | 36 | 27.91% | 1 | 16.67% |
ralf baechle | ralf baechle | 5 | 3.88% | 1 | 16.67% |
jens axboe | jens axboe | 4 | 3.10% | 1 | 16.67% |
Total | 129 | 100.00% | 6 | 100.00% |