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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/include/asm-arm/arch-shark/dma.h
  3.  *
  4.  * by Alexander Schulz
  5.  */
  6. #ifndef __ASM_ARCH_DMA_H
  7. #define __ASM_ARCH_DMA_H
  8. /* Use only the lowest 4MB, nothing else works.
  9.  * The rest is not DMAable. See dev /  .properties
  10.  * in OpenFirmware.
  11.  */
  12. #define MAX_DMA_ADDRESS 0xC0400000
  13. #define MAX_DMA_CHANNELS 8
  14. #define DMA_ISA_CASCADE         4
  15. static inline void __arch_adjust_zones(int node, unsigned long *zone_size, unsigned long *zhole_size) 
  16. {
  17.   if (node != 0) return;
  18.   /* Only the first 4 MB (=1024 Pages) are usable for DMA */
  19.   zone_size[1] = zone_size[0] - 1024;
  20.   zone_size[0] = 1024;
  21.   zhole_size[1] = zhole_size[0];
  22.   zhole_size[0] = 0;
  23. }
  24. #define arch_adjust_zones(node,size,holes) __arch_adjust_zones(node,size,holes)
  25. #endif /* _ASM_ARCH_DMA_H */