dma.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/include/asm-arm/arch-pxa/dma.h
  3.  *  
  4.  *  Author: Nicolas Pitre
  5.  *  Created: Jun 15, 2001
  6.  *  Copyright: MontaVista Software, Inc.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  */
  12. #ifndef __ASM_ARCH_DMA_H
  13. #define __ASM_ARCH_DMA_H
  14. #define MAX_DMA_ADDRESS 0xffffffff
  15. /* No DMA as the rest of the world see it */
  16. #define MAX_DMA_CHANNELS 0
  17. /*
  18.  * Descriptor structure for PXA's DMA engine
  19.  * Note: this structure must always be aligned to a 16-byte boundary.
  20.  */
  21. typedef struct {
  22. volatile u32 ddadr; /* Points to the next descriptor + flags */
  23. volatile u32 dsadr; /* DSADR value for the current transfer */
  24. volatile u32 dtadr; /* DTADR value for the current transfer */
  25. volatile u32 dcmd; /* DCMD value for the current transfer */
  26. } pxa_dma_desc;
  27. /*
  28.  * DMA registration
  29.  */
  30. typedef enum {
  31. DMA_PRIO_HIGH = 0,
  32. DMA_PRIO_MEDIUM = 4,
  33. DMA_PRIO_LOW = 8
  34. } pxa_dma_prio;
  35. int pxa_request_dma (char *name,
  36.  pxa_dma_prio prio,
  37.  void (*irq_handler)(int, void *, struct pt_regs *),
  38.  void *data);
  39. void pxa_free_dma (int dma_ch);
  40. #endif /* _ASM_ARCH_DMA_H */