diff options
| -rw-r--r-- | arch/i386/mach-es7000/es7000plat.c | 48 | ||||
| -rw-r--r-- | include/asm-i386/mach-es7000/mach_apic.h | 4 | ||||
| -rw-r--r-- | include/asm-i386/mach-es7000/mach_mpparse.h | 6 |
3 files changed, 58 insertions, 0 deletions
diff --git a/arch/i386/mach-es7000/es7000plat.c b/arch/i386/mach-es7000/es7000plat.c index 9be6ceabf042..ab99072d3f9a 100644 --- a/arch/i386/mach-es7000/es7000plat.c +++ b/arch/i386/mach-es7000/es7000plat.c | |||
| @@ -40,6 +40,7 @@ | |||
| 40 | #include <asm/smp.h> | 40 | #include <asm/smp.h> |
| 41 | #include <asm/apicdef.h> | 41 | #include <asm/apicdef.h> |
| 42 | #include "es7000.h" | 42 | #include "es7000.h" |
| 43 | #include <mach_mpparse.h> | ||
| 43 | 44 | ||
| 44 | /* | 45 | /* |
| 45 | * ES7000 Globals | 46 | * ES7000 Globals |
| @@ -174,6 +175,53 @@ find_unisys_acpi_oem_table(unsigned long *oem_addr) | |||
| 174 | } | 175 | } |
| 175 | #endif | 176 | #endif |
| 176 | 177 | ||
| 178 | /* | ||
| 179 | * This file also gets compiled if CONFIG_X86_GENERICARCH is set. Generic | ||
| 180 | * arch already has got following function definitions (asm-generic/es7000.c) | ||
| 181 | * hence no need to define these for that case. | ||
| 182 | */ | ||
| 183 | #ifndef CONFIG_X86_GENERICARCH | ||
| 184 | void es7000_sw_apic(void); | ||
| 185 | void __init enable_apic_mode(void) | ||
| 186 | { | ||
| 187 | es7000_sw_apic(); | ||
| 188 | return; | ||
| 189 | } | ||
| 190 | |||
| 191 | __init int mps_oem_check(struct mp_config_table *mpc, char *oem, | ||
| 192 | char *productid) | ||
| 193 | { | ||
| 194 | if (mpc->mpc_oemptr) { | ||
| 195 | struct mp_config_oemtable *oem_table = | ||
| 196 | (struct mp_config_oemtable *)mpc->mpc_oemptr; | ||
| 197 | if (!strncmp(oem, "UNISYS", 6)) | ||
| 198 | return parse_unisys_oem((char *)oem_table); | ||
| 199 | } | ||
| 200 | return 0; | ||
| 201 | } | ||
| 202 | #ifdef CONFIG_ACPI | ||
| 203 | /* Hook from generic ACPI tables.c */ | ||
| 204 | int __init acpi_madt_oem_check(char *oem_id, char *oem_table_id) | ||
| 205 | { | ||
| 206 | unsigned long oem_addr; | ||
| 207 | if (!find_unisys_acpi_oem_table(&oem_addr)) { | ||
| 208 | if (es7000_check_dsdt()) | ||
| 209 | return parse_unisys_oem((char *)oem_addr); | ||
| 210 | else { | ||
| 211 | setup_unisys(); | ||
| 212 | return 1; | ||
| 213 | } | ||
| 214 | } | ||
| 215 | return 0; | ||
| 216 | } | ||
| 217 | #else | ||
| 218 | int __init acpi_madt_oem_check(char *oem_id, char *oem_table_id) | ||
| 219 | { | ||
| 220 | return 0; | ||
| 221 | } | ||
| 222 | #endif | ||
| 223 | #endif /* COFIG_X86_GENERICARCH */ | ||
| 224 | |||
| 177 | static void | 225 | static void |
| 178 | es7000_spin(int n) | 226 | es7000_spin(int n) |
| 179 | { | 227 | { |
diff --git a/include/asm-i386/mach-es7000/mach_apic.h b/include/asm-i386/mach-es7000/mach_apic.h index 2d978928a395..caec64be516d 100644 --- a/include/asm-i386/mach-es7000/mach_apic.h +++ b/include/asm-i386/mach-es7000/mach_apic.h | |||
| @@ -73,6 +73,10 @@ static inline void init_apic_ldr(void) | |||
| 73 | apic_write_around(APIC_LDR, val); | 73 | apic_write_around(APIC_LDR, val); |
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | #ifndef CONFIG_X86_GENERICARCH | ||
| 77 | extern void enable_apic_mode(void); | ||
| 78 | #endif | ||
| 79 | |||
| 76 | extern int apic_version [MAX_APICS]; | 80 | extern int apic_version [MAX_APICS]; |
| 77 | static inline void setup_apic_routing(void) | 81 | static inline void setup_apic_routing(void) |
| 78 | { | 82 | { |
diff --git a/include/asm-i386/mach-es7000/mach_mpparse.h b/include/asm-i386/mach-es7000/mach_mpparse.h index b9fb784e1fd5..8aa10547b4b1 100644 --- a/include/asm-i386/mach-es7000/mach_mpparse.h +++ b/include/asm-i386/mach-es7000/mach_mpparse.h | |||
| @@ -18,6 +18,12 @@ extern int parse_unisys_oem (char *oemptr); | |||
| 18 | extern int find_unisys_acpi_oem_table(unsigned long *oem_addr); | 18 | extern int find_unisys_acpi_oem_table(unsigned long *oem_addr); |
| 19 | extern void setup_unisys(void); | 19 | extern void setup_unisys(void); |
| 20 | 20 | ||
| 21 | #ifndef CONFIG_X86_GENERICARCH | ||
| 22 | extern int acpi_madt_oem_check(char *oem_id, char *oem_table_id); | ||
| 23 | extern int mps_oem_check(struct mp_config_table *mpc, char *oem, | ||
| 24 | char *productid); | ||
| 25 | #endif | ||
| 26 | |||
| 21 | #ifdef CONFIG_ACPI | 27 | #ifdef CONFIG_ACPI |
| 22 | 28 | ||
| 23 | static inline int es7000_check_dsdt(void) | 29 | static inline int es7000_check_dsdt(void) |
