1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * ISA DMA support functions
4 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
8 * Defining following add some delay. Maybe this helps for some broken
12 #undef HAVE_REALLY_SLOW_DMA_CONTROLLER
14 #include <linux/export.h>
15 #include <linux/isa-dma.h>
16 #include <sound/core.h>
19 * snd_dma_program - program an ISA DMA transfer
20 * @dma: the dma number
21 * @addr: the physical address of the buffer
22 * @size: the DMA transfer size
23 * @mode: the DMA transfer mode, DMA_MODE_XXX
25 * Programs an ISA DMA transfer for the given buffer.
27 void snd_dma_program(unsigned long dma,
28 unsigned long addr, unsigned int size,
33 flags = claim_dma_lock();
36 set_dma_mode(dma, mode);
37 set_dma_addr(dma, addr);
38 set_dma_count(dma, size);
39 if (!(mode & DMA_MODE_NO_ENABLE))
41 release_dma_lock(flags);
43 EXPORT_SYMBOL(snd_dma_program);
46 * snd_dma_disable - stop the ISA DMA transfer
47 * @dma: the dma number
49 * Stops the ISA DMA transfer.
51 void snd_dma_disable(unsigned long dma)
55 flags = claim_dma_lock();
58 release_dma_lock(flags);
60 EXPORT_SYMBOL(snd_dma_disable);
63 * snd_dma_pointer - return the current pointer to DMA transfer buffer in bytes
64 * @dma: the dma number
65 * @size: the dma transfer size
67 * Return: The current pointer in DMA transfer buffer in bytes.
69 unsigned int snd_dma_pointer(unsigned long dma, unsigned int size)
72 unsigned int result, result1;
74 flags = claim_dma_lock();
76 if (!isa_dma_bridge_buggy)
78 result = get_dma_residue(dma);
80 * HACK - read the counter again and choose higher value in order to
81 * avoid reading during counter lower byte roll over if the
82 * isa_dma_bridge_buggy is set.
84 result1 = get_dma_residue(dma);
85 if (!isa_dma_bridge_buggy)
87 release_dma_lock(flags);
88 if (unlikely(result < result1))
90 #ifdef CONFIG_SND_DEBUG
92 pr_err("ALSA: pointer (0x%x) for DMA #%ld is greater than transfer size (0x%x)\n", result, dma, size);
94 if (result >= size || result == 0)
99 EXPORT_SYMBOL(snd_dma_pointer);
101 struct snd_dma_data {
105 static void __snd_release_dma(struct device *dev, void *data)
107 struct snd_dma_data *p = data;
109 snd_dma_disable(p->dma);
114 * snd_devm_request_dma - the managed version of request_dma()
115 * @dev: the device pointer
116 * @dma: the dma number
117 * @name: the name string of the requester
119 * The requested DMA will be automatically released at unbinding via devres.
121 * Return: zero on success, or a negative error code
123 int snd_devm_request_dma(struct device *dev, int dma, const char *name)
125 struct snd_dma_data *p;
127 if (request_dma(dma, name))
129 p = devres_alloc(__snd_release_dma, sizeof(*p), GFP_KERNEL);
138 EXPORT_SYMBOL_GPL(snd_devm_request_dma);