Ok. I didn't make 2.4.0 in 2000. Tough. I tried, but we had some
[davej-history.git] / include / asm-arm / dma.h
blobdc23c66dd99305e0f1c1729bfe920ccd0b0de7ff
1 #ifndef __ASM_ARM_DMA_H
2 #define __ASM_ARM_DMA_H
4 typedef unsigned int dmach_t;
6 #include <linux/config.h>
7 #include <linux/spinlock.h>
8 #include <asm/system.h>
9 #include <asm/memory.h>
10 #include <asm/scatterlist.h>
11 #include <asm/arch/dma.h>
14 * DMA modes
16 typedef unsigned int dmamode_t;
18 #define DMA_MODE_MASK 3
20 #define DMA_MODE_READ 0
21 #define DMA_MODE_WRITE 1
22 #define DMA_MODE_CASCADE 2
23 #define DMA_AUTOINIT 4
25 extern spinlock_t dma_spin_lock;
27 extern __inline__ unsigned long claim_dma_lock(void)
29 unsigned long flags;
30 spin_lock_irqsave(&dma_spin_lock, flags);
31 return flags;
34 extern __inline__ void release_dma_lock(unsigned long flags)
36 spin_unlock_irqrestore(&dma_spin_lock, flags);
39 /* Clear the 'DMA Pointer Flip Flop'.
40 * Write 0 for LSB/MSB, 1 for MSB/LSB access.
42 #define clear_dma_ff(channel)
44 /* Set only the page register bits of the transfer address.
46 * NOTE: This is an architecture specific function, and should
47 * be hidden from the drivers
49 extern void set_dma_page(dmach_t channel, char pagenr);
51 /* Request a DMA channel
53 * Some architectures may need to do allocate an interrupt
55 extern int request_dma(dmach_t channel, const char * device_id);
57 /* Free a DMA channel
59 * Some architectures may need to do free an interrupt
61 extern void free_dma(dmach_t channel);
63 /* Enable DMA for this channel
65 * On some architectures, this may have other side effects like
66 * enabling an interrupt and setting the DMA registers.
68 extern void enable_dma(dmach_t channel);
70 /* Disable DMA for this channel
72 * On some architectures, this may have other side effects like
73 * disabling an interrupt or whatever.
75 extern void disable_dma(dmach_t channel);
77 /* Set the DMA scatter gather list for this channel
79 * This should not be called if a DMA channel is enabled,
80 * especially since some DMA architectures don't update the
81 * DMA address immediately, but defer it to the enable_dma().
83 extern void set_dma_sg(dmach_t channel, struct scatterlist *sg, int nr_sg);
85 /* Set the DMA address for this channel
87 * This should not be called if a DMA channel is enabled,
88 * especially since some DMA architectures don't update the
89 * DMA address immediately, but defer it to the enable_dma().
91 extern void set_dma_addr(dmach_t channel, unsigned long physaddr);
93 /* Set the DMA byte count for this channel
95 * This should not be called if a DMA channel is enabled,
96 * especially since some DMA architectures don't update the
97 * DMA count immediately, but defer it to the enable_dma().
99 extern void set_dma_count(dmach_t channel, unsigned long count);
101 /* Set the transfer direction for this channel
103 * This should not be called if a DMA channel is enabled,
104 * especially since some DMA architectures don't update the
105 * DMA transfer direction immediately, but defer it to the
106 * enable_dma().
108 extern void set_dma_mode(dmach_t channel, dmamode_t mode);
110 /* Set the transfer speed for this channel
112 extern void set_dma_speed(dmach_t channel, int cycle_ns);
114 /* Get DMA residue count. After a DMA transfer, this
115 * should return zero. Reading this while a DMA transfer is
116 * still in progress will return unpredictable results.
117 * If called before the channel has been used, it may return 1.
118 * Otherwise, it returns the number of _bytes_ left to transfer.
120 extern int get_dma_residue(dmach_t channel);
122 #ifndef NO_DMA
123 #define NO_DMA 255
124 #endif
126 #ifdef CONFIG_PCI
127 extern int isa_dma_bridge_buggy;
128 #else
129 #define isa_dma_bridge_buggy (0)
130 #endif
132 #endif /* _ARM_DMA_H */