diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:45 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:45 -0500 |
commit | 1b42f51630c7eebce6fb780b480731eb81afd325 (patch) | |
tree | 24505feab89996a27393947d014894b4abe7c271 /include/asm-x86/fixmap_32.h | |
parent | 64a8f852a20e90bf3018d3ace5b7f514f39db4cd (diff) |
x86: enhance early_ioremap()
- allow nesting of up to 4 levels
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/fixmap_32.h')
-rw-r--r-- | include/asm-x86/fixmap_32.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/asm-x86/fixmap_32.h b/include/asm-x86/fixmap_32.h index 249e753ac805..0e990218a09c 100644 --- a/include/asm-x86/fixmap_32.h +++ b/include/asm-x86/fixmap_32.h | |||
@@ -65,7 +65,7 @@ enum fixed_addresses { | |||
65 | #endif | 65 | #endif |
66 | #ifdef CONFIG_X86_VISWS_APIC | 66 | #ifdef CONFIG_X86_VISWS_APIC |
67 | FIX_CO_CPU, /* Cobalt timer */ | 67 | FIX_CO_CPU, /* Cobalt timer */ |
68 | FIX_CO_APIC, /* Cobalt APIC Redirection Table */ | 68 | FIX_CO_APIC, /* Cobalt APIC Redirection Table */ |
69 | FIX_LI_PCIA, /* Lithium PCI Bridge A */ | 69 | FIX_LI_PCIA, /* Lithium PCI Bridge A */ |
70 | FIX_LI_PCIB, /* Lithium PCI Bridge B */ | 70 | FIX_LI_PCIB, /* Lithium PCI Bridge B */ |
71 | #endif | 71 | #endif |
@@ -74,7 +74,7 @@ enum fixed_addresses { | |||
74 | #endif | 74 | #endif |
75 | #ifdef CONFIG_X86_CYCLONE_TIMER | 75 | #ifdef CONFIG_X86_CYCLONE_TIMER |
76 | FIX_CYCLONE_TIMER, /*cyclone timer register*/ | 76 | FIX_CYCLONE_TIMER, /*cyclone timer register*/ |
77 | #endif | 77 | #endif |
78 | #ifdef CONFIG_HIGHMEM | 78 | #ifdef CONFIG_HIGHMEM |
79 | FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */ | 79 | FIX_KMAP_BEGIN, /* reserved pte's for temporary kernel mappings */ |
80 | FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1, | 80 | FIX_KMAP_END = FIX_KMAP_BEGIN+(KM_TYPE_NR*NR_CPUS)-1, |
@@ -91,9 +91,10 @@ enum fixed_addresses { | |||
91 | #endif | 91 | #endif |
92 | __end_of_permanent_fixed_addresses, | 92 | __end_of_permanent_fixed_addresses, |
93 | /* temporary boot-time mappings, used before ioremap() is functional */ | 93 | /* temporary boot-time mappings, used before ioremap() is functional */ |
94 | #define NR_FIX_BTMAPS 16 | 94 | #define NR_FIX_BTMAPS 16 |
95 | #define FIX_BTMAPS_NESTING 4 | ||
95 | FIX_BTMAP_END = __end_of_permanent_fixed_addresses, | 96 | FIX_BTMAP_END = __end_of_permanent_fixed_addresses, |
96 | FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS - 1, | 97 | FIX_BTMAP_BEGIN = FIX_BTMAP_END + NR_FIX_BTMAPS*FIX_BTMAPS_NESTING - 1, |
97 | FIX_WP_TEST, | 98 | FIX_WP_TEST, |
98 | __end_of_fixed_addresses | 99 | __end_of_fixed_addresses |
99 | }; | 100 | }; |