dma.h 4.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __ASM_ARM_DMA_H
#define __ASM_ARM_DMA_H

4
#include <asm/memory.h>
L
Linus Torvalds 已提交
5

6 7 8 9 10 11 12
/*
 * This is the maximum virtual address which can be DMA'd from.
 */
#ifndef MAX_DMA_ADDRESS
#define MAX_DMA_ADDRESS	0xffffffff
#endif

13 14 15 16 17 18 19 20 21
#ifdef CONFIG_ISA_DMA_API
/*
 * This is used to support drivers written for the x86 ISA DMA API.
 * It should not be re-used except for that purpose.
 */
#include <linux/spinlock.h>
#include <asm/system.h>
#include <asm/scatterlist.h>

22
#include <mach/isa-dma.h>
23

L
Linus Torvalds 已提交
24 25 26 27 28
/*
 * DMA modes
 */
typedef unsigned int dmamode_t;

29 30 31 32
/*
 * The DMA modes reflect the settings for the ISA DMA controller
 */
#define DMA_MODE_MASK	 0xcc
L
Linus Torvalds 已提交
33

34 35 36 37
#define DMA_MODE_READ	 0x44
#define DMA_MODE_WRITE	 0x48
#define DMA_MODE_CASCADE 0xc0
#define DMA_AUTOINIT	 0x10
L
Linus Torvalds 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

extern spinlock_t  dma_spin_lock;

static inline unsigned long claim_dma_lock(void)
{
	unsigned long flags;
	spin_lock_irqsave(&dma_spin_lock, flags);
	return flags;
}

static inline void release_dma_lock(unsigned long flags)
{
	spin_unlock_irqrestore(&dma_spin_lock, flags);
}

/* Clear the 'DMA Pointer Flip Flop'.
 * Write 0 for LSB/MSB, 1 for MSB/LSB access.
 */
R
Russell King 已提交
56
#define clear_dma_ff(chan)
L
Linus Torvalds 已提交
57 58 59 60 61 62

/* Set only the page register bits of the transfer address.
 *
 * NOTE: This is an architecture specific function, and should
 *       be hidden from the drivers
 */
R
Russell King 已提交
63
extern void set_dma_page(unsigned int chan, char pagenr);
L
Linus Torvalds 已提交
64 65 66 67 68

/* Request a DMA channel
 *
 * Some architectures may need to do allocate an interrupt
 */
R
Russell King 已提交
69
extern int  request_dma(unsigned int chan, const char * device_id);
L
Linus Torvalds 已提交
70 71 72 73 74

/* Free a DMA channel
 *
 * Some architectures may need to do free an interrupt
 */
R
Russell King 已提交
75
extern void free_dma(unsigned int chan);
L
Linus Torvalds 已提交
76 77 78 79 80 81

/* Enable DMA for this channel
 *
 * On some architectures, this may have other side effects like
 * enabling an interrupt and setting the DMA registers.
 */
R
Russell King 已提交
82
extern void enable_dma(unsigned int chan);
L
Linus Torvalds 已提交
83 84 85 86 87 88

/* Disable DMA for this channel
 *
 * On some architectures, this may have other side effects like
 * disabling an interrupt or whatever.
 */
R
Russell King 已提交
89
extern void disable_dma(unsigned int chan);
L
Linus Torvalds 已提交
90 91 92

/* Test whether the specified channel has an active DMA transfer
 */
R
Russell King 已提交
93
extern int dma_channel_active(unsigned int chan);
L
Linus Torvalds 已提交
94 95 96 97 98 99 100

/* Set the DMA scatter gather list for this channel
 *
 * This should not be called if a DMA channel is enabled,
 * especially since some DMA architectures don't update the
 * DMA address immediately, but defer it to the enable_dma().
 */
R
Russell King 已提交
101
extern void set_dma_sg(unsigned int chan, struct scatterlist *sg, int nr_sg);
L
Linus Torvalds 已提交
102 103 104 105 106 107 108

/* Set the DMA address for this channel
 *
 * This should not be called if a DMA channel is enabled,
 * especially since some DMA architectures don't update the
 * DMA address immediately, but defer it to the enable_dma().
 */
R
Russell King 已提交
109 110 111
extern void __set_dma_addr(unsigned int chan, void *addr);
#define set_dma_addr(chan, addr)				\
	__set_dma_addr(chan, bus_to_virt(addr))
L
Linus Torvalds 已提交
112 113 114 115 116 117 118

/* Set the DMA byte count for this channel
 *
 * This should not be called if a DMA channel is enabled,
 * especially since some DMA architectures don't update the
 * DMA count immediately, but defer it to the enable_dma().
 */
R
Russell King 已提交
119
extern void set_dma_count(unsigned int chan, unsigned long count);
L
Linus Torvalds 已提交
120 121 122 123 124 125 126 127

/* Set the transfer direction for this channel
 *
 * This should not be called if a DMA channel is enabled,
 * especially since some DMA architectures don't update the
 * DMA transfer direction immediately, but defer it to the
 * enable_dma().
 */
R
Russell King 已提交
128
extern void set_dma_mode(unsigned int chan, dmamode_t mode);
L
Linus Torvalds 已提交
129 130 131

/* Set the transfer speed for this channel
 */
R
Russell King 已提交
132
extern void set_dma_speed(unsigned int chan, int cycle_ns);
L
Linus Torvalds 已提交
133 134 135 136 137 138 139

/* Get DMA residue count. After a DMA transfer, this
 * should return zero. Reading this while a DMA transfer is
 * still in progress will return unpredictable results.
 * If called before the channel has been used, it may return 1.
 * Otherwise, it returns the number of _bytes_ left to transfer.
 */
R
Russell King 已提交
140
extern int  get_dma_residue(unsigned int chan);
L
Linus Torvalds 已提交
141 142 143 144 145 146 147 148 149 150 151

#ifndef NO_DMA
#define NO_DMA	255
#endif

#ifdef CONFIG_PCI
extern int isa_dma_bridge_buggy;
#else
#define isa_dma_bridge_buggy    (0)
#endif

152 153 154
#endif /* CONFIG_ISA_DMA_API */

#endif /* __ASM_ARM_DMA_H */