dma.h 417 B

1234567891011121314151617181920
  1. #ifndef _ASM_S390_DMA_H
  2. #define _ASM_S390_DMA_H
  3. #include <asm/io.h>
  4. /*
  5. * MAX_DMA_ADDRESS is ambiguous because on s390 its completely unrelated
  6. * to DMA. It _is_ used for the s390 memory zone split at 2GB caused
  7. * by the 31 bit heritage.
  8. */
  9. #define MAX_DMA_ADDRESS 0x80000000
  10. #ifdef CONFIG_PCI
  11. extern int isa_dma_bridge_buggy;
  12. #else
  13. #define isa_dma_bridge_buggy (0)
  14. #endif
  15. #endif /* _ASM_S390_DMA_H */