H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 1 | #ifndef _ASM_X86_IOMMU_H |
| 2 | #define _ASM_X86_IOMMU_H |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 3 | |
| 4 | extern void pci_iommu_shutdown(void); |
| 5 | extern void no_iommu_init(void); |
Alexis Bruemmer | 1956a96 | 2008-07-25 19:44:51 -0700 | [diff] [blame] | 6 | extern struct dma_mapping_ops nommu_dma_ops; |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 7 | extern int force_iommu, no_iommu; |
| 8 | extern int iommu_detected; |
David Woodhouse | e51af66 | 2008-09-04 09:54:37 +0100 | [diff] [blame] | 9 | extern int dmar_disabled; |
FUJITA Tomonori | e93be88 | 2008-07-10 08:27:49 +0900 | [diff] [blame] | 10 | |
Joerg Roedel | bdab0ba | 2008-10-15 22:02:07 -0700 | [diff] [blame] | 11 | extern unsigned long iommu_nr_pages(unsigned long addr, unsigned long len); |
FUJITA Tomonori | 8978b74 | 2008-07-29 13:38:53 +0900 | [diff] [blame] | 12 | |
Linus Torvalds | 5b34653 | 2008-10-23 10:22:01 -0700 | [diff] [blame] | 13 | /* 10 seconds */ |
| 14 | #define DMAR_OPERATION_TIMEOUT ((cycles_t) tsc_khz*10*1000) |
| 15 | |
FUJITA Tomonori | 8cbfd4f4 | 2008-07-09 16:29:41 +0900 | [diff] [blame] | 16 | #ifdef CONFIG_GART_IOMMU |
FUJITA Tomonori | e93be88 | 2008-07-10 08:27:49 +0900 | [diff] [blame] | 17 | extern int gart_iommu_aperture; |
| 18 | extern int gart_iommu_aperture_allowed; |
| 19 | extern int gart_iommu_aperture_disabled; |
| 20 | |
| 21 | extern void early_gart_iommu_check(void); |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 22 | extern void gart_iommu_init(void); |
| 23 | extern void gart_iommu_shutdown(void); |
| 24 | extern void __init gart_parse_options(char *); |
FUJITA Tomonori | e93be88 | 2008-07-10 08:27:49 +0900 | [diff] [blame] | 25 | extern void gart_iommu_hole_init(void); |
| 26 | |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 27 | #else |
FUJITA Tomonori | e93be88 | 2008-07-10 08:27:49 +0900 | [diff] [blame] | 28 | #define gart_iommu_aperture 0 |
| 29 | #define gart_iommu_aperture_allowed 0 |
| 30 | #define gart_iommu_aperture_disabled 1 |
| 31 | |
| 32 | static inline void early_gart_iommu_check(void) |
| 33 | { |
| 34 | } |
FUJITA Tomonori | ac7ded2 | 2008-07-11 10:23:43 +0900 | [diff] [blame] | 35 | static inline void gart_iommu_init(void) |
| 36 | { |
| 37 | } |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 38 | static inline void gart_iommu_shutdown(void) |
| 39 | { |
| 40 | } |
FUJITA Tomonori | ac7ded2 | 2008-07-11 10:23:43 +0900 | [diff] [blame] | 41 | static inline void gart_parse_options(char *options) |
| 42 | { |
| 43 | } |
| 44 | static inline void gart_iommu_hole_init(void) |
| 45 | { |
| 46 | } |
Yinghai Lu | f2cf8e0 | 2007-07-21 17:11:31 +0200 | [diff] [blame] | 47 | #endif |
| 48 | |
H. Peter Anvin | 1965aae | 2008-10-22 22:26:29 -0700 | [diff] [blame] | 49 | #endif /* _ASM_X86_IOMMU_H */ |