blob: c3d789ef69750e618f04b2adc4d868f5e9027c0b [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * ISA DMA support functions
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
7/*
8 * Defining following add some delay. Maybe this helps for some broken
9 * ISA DMA controllers.
10 */
11
12#undef HAVE_REALLY_SLOW_DMA_CONTROLLER
13
Paul Gortmakerd81a6d72011-09-22 09:34:58 -040014#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <sound/core.h>
16#include <asm/dma.h>
17
18/**
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
24 *
25 * Programs an ISA DMA transfer for the given buffer.
26 */
27void snd_dma_program(unsigned long dma,
28 unsigned long addr, unsigned int size,
29 unsigned short mode)
30{
31 unsigned long flags;
32
33 flags = claim_dma_lock();
34 disable_dma(dma);
35 clear_dma_ff(dma);
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))
40 enable_dma(dma);
41 release_dma_lock(flags);
42}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020043EXPORT_SYMBOL(snd_dma_program);
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/**
46 * snd_dma_disable - stop the ISA DMA transfer
47 * @dma: the dma number
48 *
49 * Stops the ISA DMA transfer.
50 */
51void snd_dma_disable(unsigned long dma)
52{
53 unsigned long flags;
54
55 flags = claim_dma_lock();
56 clear_dma_ff(dma);
57 disable_dma(dma);
58 release_dma_lock(flags);
59}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020060EXPORT_SYMBOL(snd_dma_disable);
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/**
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
66 *
Yacine Belkadieb7c06e2013-03-11 22:05:14 +010067 * Return: The current pointer in DMA transfer buffer in bytes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69unsigned int snd_dma_pointer(unsigned long dma, unsigned int size)
70{
71 unsigned long flags;
Krzysztof Helt8066e512009-10-11 12:48:00 +020072 unsigned int result, result1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 flags = claim_dma_lock();
75 clear_dma_ff(dma);
76 if (!isa_dma_bridge_buggy)
77 disable_dma(dma);
78 result = get_dma_residue(dma);
Krzysztof Helt8066e512009-10-11 12:48:00 +020079 /*
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.
83 */
84 result1 = get_dma_residue(dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (!isa_dma_bridge_buggy)
86 enable_dma(dma);
87 release_dma_lock(flags);
Krzysztof Helt8066e512009-10-11 12:48:00 +020088 if (unlikely(result < result1))
89 result = result1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#ifdef CONFIG_SND_DEBUG
91 if (result > size)
Takashi Iwaif2f93072014-02-04 18:21:03 +010092 pr_err("ALSA: pointer (0x%x) for DMA #%ld is greater than transfer size (0x%x)\n", result, dma, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#endif
94 if (result >= size || result == 0)
95 return 0;
96 else
97 return size - result;
98}
Takashi Iwaic0d3fb32006-04-28 15:13:39 +020099EXPORT_SYMBOL(snd_dma_pointer);