Searched refs:dma_alloc_coherent (Results 1 - 25 of 150) sorted by relevance

123456

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-generic/
H A Ddma-mapping-broken.h7 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
21 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
H A Ddma-mapping.h36 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
169 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
267 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-blackfin/
H A Ddma-mapping.h7 void *dma_alloc_coherent(struct device *dev, size_t size,
15 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68knommu/kernel/
H A Ddma.c13 void *dma_alloc_coherent(struct device *dev, size_t size, function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Ddma-mapping.h10 #define dma_alloc_coherent platform_dma_alloc_coherent macro
16 return dma_alloc_coherent(dev, size, dma_handle, flag);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/frv/mb93090-mb00/
H A Dpci-dma.c20 void *dma_alloc_coherent(struct device *hwdev, size_t size, dma_addr_t *dma_handle, gfp_t gfp) function
31 EXPORT_SYMBOL(dma_alloc_coherent); variable
H A Dpci-dma-nommu.c31 void *dma_alloc_coherent(struct device *hwdev, size_t size, dma_addr_t *dma_handle, gfp_t gfp) function
81 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Ddma-mapping.h21 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
95 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Ddma-mapping.h29 extern void *dma_alloc_coherent(struct device *, size_t,
37 return dma_alloc_coherent(dev, size, handle, flag);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/
H A Ddma-mapping.h13 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
17 void *dma_alloc_coherent(struct device *dev, size_t size,
24 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Ddma-mapping.h13 #define dma_alloc_coherent(dev, size, addr, gfp) \ macro
33 void *dma_alloc_coherent(struct device *dev, size_t size,
52 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/mm/
H A Ddma-coherent.c87 void *dma_alloc_coherent(struct device *dev, size_t size, function
99 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-frv/
H A Ddma-mapping.h10 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
16 void *dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, gfp_t gfp);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/xtensa/kernel/
H A Dpci-dma.c32 dma_alloc_coherent(struct device *dev,size_t size,dma_addr_t *handle,gfp_t flag) function
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/core/
H A Dmemalloc.c87 * A hack to allocate large buffers via dma_alloc_coherent()
89 * since dma_alloc_coherent always tries GFP_DMA when the requested
98 * Really, we want to move this type of thing into dma_alloc_coherent()
110 return dma_alloc_coherent(dev, size, dma_handle, flags);
115 ret = dma_alloc_coherent(dev, size, dma_handle, flags);
123 ret = dma_alloc_coherent(dev, size, dma_handle, flags);
131 ret = dma_alloc_coherent(dev, size, dma_handle, flags);
137 /* redefine dma_alloc_coherent for some architectures */
138 #undef dma_alloc_coherent macro
139 #define dma_alloc_coherent snd_dma_hack_alloc_coheren macro
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/blackfin/kernel/
H A Ddma-mapping.c113 void *dma_alloc_coherent(struct device *dev, size_t size, function
127 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dpci-dma.c26 void *dma_alloc_coherent(struct device *dev, size_t size, function
59 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/kernel/
H A Ddma.c17 void *dma_alloc_coherent(struct device *dev, size_t size, function
25 pr_debug("dma_alloc_coherent: %d,%x\n", size, flag);
59 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/mlx4/
H A Dalloc.c119 buf->u.direct.buf = dma_alloc_coherent(&dev->pdev->dev,
145 dma_alloc_coherent(&dev->pdev->dev, PAGE_SIZE,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Ddma-mapping.h11 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
14 void *dma_alloc_coherent(struct device *dev, size_t size,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-xtensa/
H A Ddma-mapping.h27 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
30 void *dma_alloc_coherent(struct device *dev, size_t size,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-avr32/
H A Ddma-mapping.h44 * dma_alloc_coherent - allocate consistent memory for DMA
54 extern void *dma_alloc_coherent(struct device *dev, size_t size,
58 * dma_free_coherent - free memory allocated by dma_alloc_coherent
60 * @size: size of memory originally requested in dma_alloc_coherent
61 * @cpu_addr: CPU-view address returned from dma_alloc_coherent
62 * @handle: device-view address returned from dma_alloc_coherent
65 * dma_alloc_coherent().
334 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/alpha/kernel/
H A Dpci-noop.c157 dma_alloc_coherent(struct device *dev, size_t size, function
172 EXPORT_SYMBOL(dma_alloc_coherent); variable
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/arm/
H A Ddevdma.c58 buf->area = dma_alloc_coherent(dev, size, &buf->addr, GFP_KERNEL);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sparc64/
H A Ddma-mapping.h32 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, function
168 static inline void *dma_alloc_coherent(struct device *dev, size_t size, function
267 #define dma_alloc_noncoherent(d, s, h, f) dma_alloc_coherent(d, s, h, f)

Completed in 122 milliseconds

123456