dma.h 404 B

123456789101112131415161718
  1. #ifndef __V850_DMA_H__
  2. #define __V850_DMA_H__
  3. /* What should this be? */
  4. #define MAX_DMA_ADDRESS 0xFFFFFFFF
  5. /* reserve a DMA channel */
  6. extern int request_dma (unsigned int dmanr, const char * device_id);
  7. /* release it again */
  8. extern void free_dma (unsigned int dmanr);
  9. #ifdef CONFIG_PCI
  10. extern int isa_dma_bridge_buggy;
  11. #else
  12. #define isa_dma_bridge_buggy (0)
  13. #endif
  14. #endif /* __V850_DMA_H__ */