2024-09-09 08:57:42 +00:00
|
|
|
#ifndef _ASM_S390_DMA_H
|
|
|
|
#define _ASM_S390_DMA_H
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#include <asm/io.h>
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00: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.
|
|
|
|
*/
|
2024-09-09 08:52:07 +00:00
|
|
|
#define MAX_DMA_ADDRESS 0x80000000
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#ifdef CONFIG_PCI
|
|
|
|
extern int isa_dma_bridge_buggy;
|
|
|
|
#else
|
|
|
|
#define isa_dma_bridge_buggy (0)
|
|
|
|
#endif
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#endif /* _ASM_S390_DMA_H */
|