/linux-6.1.9/arch/x86/kernel/ |
D | pci-dma.c | 23 const struct dma_map_ops *dma_ops; variable 24 EXPORT_SYMBOL(dma_ops); 82 dma_ops = &xen_swiotlb_dma_ops; in pci_xen_swiotlb_init() 89 if (dma_ops == &xen_swiotlb_dma_ops) in pci_xen_swiotlb_init_late() 101 dma_ops = &xen_swiotlb_dma_ops; in pci_xen_swiotlb_init_late()
|
/linux-6.1.9/arch/ia64/kernel/ |
D | dma-mapping.c | 8 const struct dma_map_ops *dma_ops; variable 9 EXPORT_SYMBOL(dma_ops);
|
/linux-6.1.9/arch/x86/include/asm/ |
D | dma-mapping.h | 5 extern const struct dma_map_ops *dma_ops; 9 return dma_ops; in get_arch_dma_ops()
|
/linux-6.1.9/arch/ia64/include/asm/ |
D | dma-mapping.h | 9 extern const struct dma_map_ops *dma_ops; 13 return dma_ops; in get_arch_dma_ops()
|
/linux-6.1.9/arch/sparc/include/asm/ |
D | dma-mapping.h | 5 extern const struct dma_map_ops *dma_ops; 10 return IS_ENABLED(CONFIG_SPARC64) ? dma_ops : NULL; in get_arch_dma_ops()
|
/linux-6.1.9/drivers/spi/ |
D | spi-dw-core.c | 452 ret = dws->dma_ops->dma_setup(dws, transfer); in dw_spi_transfer_one() 460 return dws->dma_ops->dma_transfer(dws, transfer); in dw_spi_transfer_one() 475 dws->dma_ops->dma_stop(dws); in dw_spi_handle_err() 944 if (dws->dma_ops && dws->dma_ops->dma_init) { in dw_spi_add_host() 945 ret = dws->dma_ops->dma_init(dev, dws); in dw_spi_add_host() 951 master->can_dma = dws->dma_ops->can_dma; in dw_spi_add_host() 966 if (dws->dma_ops && dws->dma_ops->dma_exit) in dw_spi_add_host() 967 dws->dma_ops->dma_exit(dws); in dw_spi_add_host() 983 if (dws->dma_ops && dws->dma_ops->dma_exit) in dw_spi_remove_host() 984 dws->dma_ops->dma_exit(dws); in dw_spi_remove_host()
|
/linux-6.1.9/arch/arm/include/asm/mach/ |
D | dma.h | 14 struct dma_ops { struct 40 const struct dma_ops *d_ops; argument
|
/linux-6.1.9/drivers/media/pci/tw686x/ |
D | tw686x-video.c | 60 vb->field = dev->dma_ops->field; in tw686x_buf_done() 523 dev->dma_ops->buf_refill(vc, pb); in tw686x_start_streaming() 630 f->fmt.pix.field = dev->dma_ops->field; in tw686x_g_fmt_vid_cap() 665 f->fmt.pix.field = dev->dma_ops->field; in tw686x_try_fmt_vid_cap() 683 if (dev->dma_ops->alloc && realloc) { in tw686x_set_format() 685 dev->dma_ops->free(vc, pb); in tw686x_set_format() 688 err = dev->dma_ops->alloc(vc, pb); in tw686x_set_format() 691 dev->dma_ops->free(vc, 0); in tw686x_set_format() 1139 dev->dma_ops->buf_refill(vc, pb); in tw686x_video_irq() 1153 if (dev->dma_ops->free) in tw686x_video_free() [all …]
|
D | tw686x.h | 131 const struct tw686x_dma_ops *dma_ops; member
|
/linux-6.1.9/drivers/mmc/host/ |
D | tmio_mmc_core.c | 56 if (host->dma_ops) in tmio_mmc_start_dma() 57 host->dma_ops->start(host, data); in tmio_mmc_start_dma() 62 if (host->dma_ops && host->dma_ops->end) in tmio_mmc_end_dma() 63 host->dma_ops->end(host); in tmio_mmc_end_dma() 68 if (host->dma_ops) in tmio_mmc_enable_dma() 69 host->dma_ops->enable(host, enable); in tmio_mmc_enable_dma() 75 if (host->dma_ops) { in tmio_mmc_request_dma() 76 host->dma_ops->request(host, pdata); in tmio_mmc_request_dma() 85 if (host->dma_ops) in tmio_mmc_release_dma() 86 host->dma_ops->release(host); in tmio_mmc_release_dma() [all …]
|
D | dw_mmc.c | 429 host->dma_ops->stop(host); in dw_mci_stop_dma() 430 host->dma_ops->cleanup(host); in dw_mci_stop_dma() 490 host->dma_ops->cleanup(host); in dw_mci_dmac_complete_dma() 1097 host->dma_ops->stop(host); in dw_mci_submit_data_dma() 1130 if (host->dma_ops->start(host, sg_len)) { in dw_mci_submit_data_dma() 1131 host->dma_ops->stop(host); in dw_mci_submit_data_dma() 2849 host->dma_ops->complete((void *)host); in dw_mci_interrupt() 2858 host->dma_ops->complete((void *)host); in dw_mci_interrupt() 3061 host->dma_ops = &dw_mci_idmac_ops; in dw_mci_init_dma() 3069 host->dma_ops = &dw_mci_edmac_ops; in dw_mci_init_dma() [all …]
|
D | renesas_sdhi.h | 94 const struct tmio_mmc_dma_ops *dma_ops,
|
D | dw_mmc.h | 184 const struct dw_mci_dma_ops *dma_ops; member 277 struct dw_mci_dma_ops *dma_ops; member
|
/linux-6.1.9/include/linux/ |
D | dma-map-ops.h | 91 if (dev->dma_ops) in get_dma_ops() 92 return dev->dma_ops; in get_dma_ops() 97 const struct dma_map_ops *dma_ops) in set_dma_ops() argument 99 dev->dma_ops = dma_ops; in set_dma_ops() 107 const struct dma_map_ops *dma_ops) in set_dma_ops() argument
|
/linux-6.1.9/arch/sh/include/asm/ |
D | dma.h | 52 struct dma_ops { struct 92 struct dma_ops *ops;
|
/linux-6.1.9/arch/sparc/kernel/ |
D | of_device_common.c | 70 op->dev.dma_ops = bus->dev.dma_ops; in of_propagate_archdata()
|
/linux-6.1.9/include/xen/arm/ |
D | xen-ops.h | 14 dev->dma_ops = &xen_swiotlb_dma_ops; in xen_setup_dma_ops()
|
/linux-6.1.9/arch/arm/mach-rpc/ |
D | dma.c | 247 static struct dma_ops iomd_dma_ops = { 313 static struct dma_ops floppy_dma_ops = { 327 static struct dma_ops sound_dma_ops = {
|
/linux-6.1.9/arch/arm64/mm/ |
D | dma-mapping.c | 60 dev->dma_ops = NULL; in arch_teardown_dma_ops()
|
/linux-6.1.9/arch/sh/drivers/dma/ |
D | dma-pvr2.c | 67 static struct dma_ops pvr2_dma_ops = {
|
D | dma-g2.c | 154 static struct dma_ops g2_dma_ops = {
|
/linux-6.1.9/arch/powerpc/include/asm/ |
D | pci.h | 49 void __init set_pci_dma_ops(const struct dma_map_ops *dma_ops);
|
/linux-6.1.9/arch/arm/mach-footbridge/ |
D | dma-isa.c | 130 static struct dma_ops isa_dma_ops = {
|
/linux-6.1.9/arch/sparc/mm/ |
D | iommu.c | 134 op->dev.dma_ops = &sbus_iommu_dma_gflush_ops; in sbus_iommu_init() 136 op->dev.dma_ops = &sbus_iommu_dma_pflush_ops; in sbus_iommu_init()
|
/linux-6.1.9/arch/powerpc/platforms/pasemi/ |
D | iommu.c | 180 dev->dev.dma_ops = NULL; in pci_dma_dev_setup_pasemi()
|