diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2008-07-09 19:27:49 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-10 04:43:26 -0400 |
commit | e93be88d7ec9d183c1cca51eabe040c051cdb687 (patch) | |
tree | 98cd6ced5075b48c0f1bf597b6bd79a0be6fbff3 /include | |
parent | 849567b9363dc8b90c369fff8acc245a1b47d94d (diff) |
x86: clean up iommu.h and gart.h
This remove lots of duplications in iommu.h and gart.h.
The end result of this patch is:
- iommu.h is a header file for everyone related with IOMMUs.
- gart.h is the private header file. Only pci-gart_64.c and its friends
include it.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Cc: fujita.tomonori@lab.ntt.co.jp
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/gart.h | 34 | ||||
-rw-r--r-- | include/asm-x86/iommu.h | 29 |
2 files changed, 21 insertions, 42 deletions
diff --git a/include/asm-x86/gart.h b/include/asm-x86/gart.h index 417f76ea677b..33b9aeeb35a2 100644 --- a/include/asm-x86/gart.h +++ b/include/asm-x86/gart.h | |||
@@ -1,40 +1,14 @@ | |||
1 | #ifndef _ASM_X8664_IOMMU_H | 1 | #ifndef _ASM_X8664_GART_H |
2 | #define _ASM_X8664_IOMMU_H 1 | 2 | #define _ASM_X8664_GART_H 1 |
3 | 3 | ||
4 | #include <asm/e820.h> | 4 | #include <asm/e820.h> |
5 | #include <asm/iommu.h> | ||
5 | 6 | ||
6 | extern void pci_iommu_shutdown(void); | ||
7 | extern void no_iommu_init(void); | ||
8 | extern int force_iommu, no_iommu; | ||
9 | extern int iommu_detected; | ||
10 | extern int agp_amd64_init(void); | ||
11 | #ifdef CONFIG_GART_IOMMU | ||
12 | extern void gart_iommu_init(void); | ||
13 | extern void gart_iommu_shutdown(void); | ||
14 | extern void __init gart_parse_options(char *); | ||
15 | extern void early_gart_iommu_check(void); | ||
16 | extern void gart_iommu_hole_init(void); | ||
17 | extern void set_up_gart_resume(u32, u32); | 7 | extern void set_up_gart_resume(u32, u32); |
8 | |||
18 | extern int fallback_aper_order; | 9 | extern int fallback_aper_order; |
19 | extern int fallback_aper_force; | 10 | extern int fallback_aper_force; |
20 | extern int gart_iommu_aperture; | ||
21 | extern int gart_iommu_aperture_allowed; | ||
22 | extern int gart_iommu_aperture_disabled; | ||
23 | extern int fix_aperture; | 11 | extern int fix_aperture; |
24 | #else | ||
25 | #define gart_iommu_aperture 0 | ||
26 | #define gart_iommu_aperture_allowed 0 | ||
27 | #define gart_iommu_aperture_disabled 1 | ||
28 | |||
29 | static inline void early_gart_iommu_check(void) | ||
30 | { | ||
31 | } | ||
32 | |||
33 | static inline void gart_iommu_shutdown(void) | ||
34 | { | ||
35 | } | ||
36 | |||
37 | #endif | ||
38 | 12 | ||
39 | /* PTE bits. */ | 13 | /* PTE bits. */ |
40 | #define GPTE_VALID 1 | 14 | #define GPTE_VALID 1 |
diff --git a/include/asm-x86/iommu.h b/include/asm-x86/iommu.h index cb7e9891bfd2..068c9a40aa5b 100644 --- a/include/asm-x86/iommu.h +++ b/include/asm-x86/iommu.h | |||
@@ -1,29 +1,34 @@ | |||
1 | #ifndef _ASM_X8664_GART_H | 1 | #ifndef _ASM_X8664_IOMMU_H |
2 | #define _ASM_X8664_GART_H 1 | 2 | #define _ASM_X8664_IOMMU_H 1 |
3 | 3 | ||
4 | extern void pci_iommu_shutdown(void); | 4 | extern void pci_iommu_shutdown(void); |
5 | extern void no_iommu_init(void); | 5 | extern void no_iommu_init(void); |
6 | extern int force_iommu, no_iommu; | 6 | extern int force_iommu, no_iommu; |
7 | extern int iommu_detected; | 7 | extern int iommu_detected; |
8 | |||
8 | #ifdef CONFIG_GART_IOMMU | 9 | #ifdef CONFIG_GART_IOMMU |
10 | extern int gart_iommu_aperture; | ||
11 | extern int gart_iommu_aperture_allowed; | ||
12 | extern int gart_iommu_aperture_disabled; | ||
13 | |||
14 | extern void early_gart_iommu_check(void); | ||
9 | extern void gart_iommu_init(void); | 15 | extern void gart_iommu_init(void); |
10 | extern void gart_iommu_shutdown(void); | 16 | extern void gart_iommu_shutdown(void); |
11 | extern void __init gart_parse_options(char *); | 17 | extern void __init gart_parse_options(char *); |
12 | extern void iommu_hole_init(void); | 18 | extern void gart_iommu_hole_init(void); |
13 | extern int fallback_aper_order; | 19 | |
14 | extern int fallback_aper_force; | ||
15 | extern int iommu_aperture; | ||
16 | extern int iommu_aperture_allowed; | ||
17 | extern int iommu_aperture_disabled; | ||
18 | extern int fix_aperture; | ||
19 | #else | 20 | #else |
20 | #define iommu_aperture 0 | 21 | #define gart_iommu_aperture 0 |
21 | #define iommu_aperture_allowed 0 | 22 | #define gart_iommu_aperture_allowed 0 |
23 | #define gart_iommu_aperture_disabled 1 | ||
22 | 24 | ||
23 | static inline void gart_iommu_shutdown(void) | 25 | static inline void early_gart_iommu_check(void) |
24 | { | 26 | { |
25 | } | 27 | } |
26 | 28 | ||
29 | static inline void gart_iommu_shutdown(void) | ||
30 | { | ||
31 | } | ||
27 | #endif | 32 | #endif |
28 | 33 | ||
29 | #endif | 34 | #endif |