2005-04-16 15:20:36 -07:00
# ifndef __ASM_ARM_DMA_H
# define __ASM_ARM_DMA_H
2006-01-04 15:30:48 +00:00
/*
* This is the maximum virtual address which can be DMA ' d from .
*/
2011-07-18 15:05:10 -04:00
# ifndef CONFIG_ZONE_DMA
# define MAX_DMA_ADDRESS 0xffffffffUL
2011-05-11 16:06:29 +01:00
# else
2011-07-18 15:05:10 -04:00
# define MAX_DMA_ADDRESS ({ \
extern unsigned long arm_dma_zone_size ; \
arm_dma_zone_size ? \
( PAGE_OFFSET + arm_dma_zone_size ) : 0xffffffffUL ; } )
2006-01-04 15:30:48 +00:00
# endif
2008-11-29 11:40:28 +00:00
# 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/scatterlist.h>
2008-11-29 18:48:07 +00:00
# include <mach/isa-dma.h>
2008-11-29 11:40:28 +00:00
2009-01-02 12:18:53 +00:00
/*
* The DMA modes reflect the settings for the ISA DMA controller
*/
# define DMA_MODE_MASK 0xcc
2005-04-16 15:20:36 -07:00
2009-01-02 12:18:53 +00:00
# define DMA_MODE_READ 0x44
# define DMA_MODE_WRITE 0x48
# define DMA_MODE_CASCADE 0xc0
# define DMA_AUTOINIT 0x10
2005-04-16 15:20:36 -07:00
2009-07-03 08:44:46 -05:00
extern raw_spinlock_t dma_spin_lock ;
2005-04-16 15:20:36 -07:00
static inline unsigned long claim_dma_lock ( void )
{
unsigned long flags ;
2009-07-03 08:44:46 -05:00
raw_spin_lock_irqsave ( & dma_spin_lock , flags ) ;
2005-04-16 15:20:36 -07:00
return flags ;
}
static inline void release_dma_lock ( unsigned long flags )
{
2009-07-03 08:44:46 -05:00
raw_spin_unlock_irqrestore ( & dma_spin_lock , flags ) ;
2005-04-16 15:20:36 -07:00
}
/* Clear the 'DMA Pointer Flip Flop'.
* Write 0 for LSB / MSB , 1 for MSB / LSB access .
*/
2008-12-08 15:58:50 +00:00
# define clear_dma_ff(chan)
2005-04-16 15:20:36 -07:00
/* Set only the page register bits of the transfer address.
*
* NOTE : This is an architecture specific function , and should
* be hidden from the drivers
*/
2008-12-08 15:58:50 +00:00
extern void set_dma_page ( unsigned int chan , char pagenr ) ;
2005-04-16 15:20:36 -07:00
/* Request a DMA channel
*
* Some architectures may need to do allocate an interrupt
*/
2008-12-08 15:58:50 +00:00
extern int request_dma ( unsigned int chan , const char * device_id ) ;
2005-04-16 15:20:36 -07:00
/* Free a DMA channel
*
* Some architectures may need to do free an interrupt
*/
2008-12-08 15:58:50 +00:00
extern void free_dma ( unsigned int chan ) ;
2005-04-16 15:20:36 -07:00
/* Enable DMA for this channel
*
* On some architectures , this may have other side effects like
* enabling an interrupt and setting the DMA registers .
*/
2008-12-08 15:58:50 +00:00
extern void enable_dma ( unsigned int chan ) ;
2005-04-16 15:20:36 -07:00
/* Disable DMA for this channel
*
* On some architectures , this may have other side effects like
* disabling an interrupt or whatever .
*/
2008-12-08 15:58:50 +00:00
extern void disable_dma ( unsigned int chan ) ;
2005-04-16 15:20:36 -07:00
/* Test whether the specified channel has an active DMA transfer
*/
2008-12-08 15:58:50 +00:00
extern int dma_channel_active ( unsigned int chan ) ;
2005-04-16 15:20:36 -07:00
/* 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 ( ) .
*/
2008-12-08 15:58:50 +00:00
extern void set_dma_sg ( unsigned int chan , struct scatterlist * sg , int nr_sg ) ;
2005-04-16 15:20:36 -07:00
/* 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 ( ) .
*/
2008-12-08 15:58:50 +00:00
extern void __set_dma_addr ( unsigned int chan , void * addr ) ;
# define set_dma_addr(chan, addr) \
2012-11-12 22:16:12 +00:00
__set_dma_addr ( chan , ( void * ) __bus_to_virt ( addr ) )
2005-04-16 15:20:36 -07:00
/* 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 ( ) .
*/
2008-12-08 15:58:50 +00:00
extern void set_dma_count ( unsigned int chan , unsigned long count ) ;
2005-04-16 15:20:36 -07:00
/* 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 ( ) .
*/
2009-01-02 12:34:55 +00:00
extern void set_dma_mode ( unsigned int chan , unsigned int mode ) ;
2005-04-16 15:20:36 -07:00
/* Set the transfer speed for this channel
*/
2008-12-08 15:58:50 +00:00
extern void set_dma_speed ( unsigned int chan , int cycle_ns ) ;
2005-04-16 15:20:36 -07:00
/* 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 .
*/
2008-12-08 15:58:50 +00:00
extern int get_dma_residue ( unsigned int chan ) ;
2005-04-16 15:20:36 -07:00
# ifndef NO_DMA
# define NO_DMA 255
# endif
2010-01-09 13:46:08 +01:00
# endif /* CONFIG_ISA_DMA_API */
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_PCI
extern int isa_dma_bridge_buggy ;
# else
# define isa_dma_bridge_buggy (0)
# endif
2008-11-29 11:40:28 +00:00
# endif /* __ASM_ARM_DMA_H */