2012-11-29 20:33:30 +07:00
|
|
|
#ifndef _ASM_S390_DMA_H
|
|
|
|
#define _ASM_S390_DMA_H
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2012-11-29 20:33:30 +07:00
|
|
|
#include <asm/io.h>
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2012-11-29 20:33:30 +07:00
|
|
|
/*
|
|
|
|
* MAX_DMA_ADDRESS is ambiguous because on s390 its completely unrelated
|
|
|
|
* to DMA. It _is_ used for the s390 memory zone split at 2GB caused
|
|
|
|
* by the 31 bit heritage.
|
|
|
|
*/
|
2005-04-17 05:20:36 +07:00
|
|
|
#define MAX_DMA_ADDRESS 0x80000000
|
|
|
|
|
2013-01-07 19:52:53 +07:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
extern int isa_dma_bridge_buggy;
|
|
|
|
#else
|
|
|
|
#define isa_dma_bridge_buggy (0)
|
|
|
|
#endif
|
|
|
|
|
2012-11-29 20:33:30 +07:00
|
|
|
#endif /* _ASM_S390_DMA_H */
|