diff options
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/mach-generic/mach_mpspec.h | 2 | ||||
-rw-r--r-- | include/asm-x86/setup.h | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/include/asm-x86/mach-generic/mach_mpspec.h b/include/asm-x86/mach-generic/mach_mpspec.h index 9ef0b941bb2..c83c120be53 100644 --- a/include/asm-x86/mach-generic/mach_mpspec.h +++ b/include/asm-x86/mach-generic/mach_mpspec.h | |||
@@ -7,4 +7,6 @@ | |||
7 | /* Maximum 256 PCI busses, plus 1 ISA bus in each of 4 cabinets. */ | 7 | /* Maximum 256 PCI busses, plus 1 ISA bus in each of 4 cabinets. */ |
8 | #define MAX_MP_BUSSES 260 | 8 | #define MAX_MP_BUSSES 260 |
9 | 9 | ||
10 | extern void numaq_mps_oem_check(struct mp_config_table *mpc, char *oem, | ||
11 | char *productid); | ||
10 | #endif /* __ASM_MACH_MPSPEC_H */ | 12 | #endif /* __ASM_MACH_MPSPEC_H */ |
diff --git a/include/asm-x86/setup.h b/include/asm-x86/setup.h index 66191d0de3c..2585075da9b 100644 --- a/include/asm-x86/setup.h +++ b/include/asm-x86/setup.h | |||
@@ -19,6 +19,9 @@ static inline int is_visws_box(void) { return 0; } | |||
19 | /* | 19 | /* |
20 | * Any setup quirks to be performed? | 20 | * Any setup quirks to be performed? |
21 | */ | 21 | */ |
22 | struct mpc_config_processor; | ||
23 | struct mpc_config_bus; | ||
24 | struct mp_config_oemtable; | ||
22 | struct x86_quirks { | 25 | struct x86_quirks { |
23 | int (*arch_time_init)(void); | 26 | int (*arch_time_init)(void); |
24 | int (*arch_pre_intr_init)(void); | 27 | int (*arch_pre_intr_init)(void); |
@@ -27,6 +30,13 @@ struct x86_quirks { | |||
27 | char * (*arch_memory_setup)(void); | 30 | char * (*arch_memory_setup)(void); |
28 | int (*mach_get_smp_config)(unsigned int early); | 31 | int (*mach_get_smp_config)(unsigned int early); |
29 | int (*mach_find_smp_config)(unsigned int reserve); | 32 | int (*mach_find_smp_config)(unsigned int reserve); |
33 | |||
34 | int *mpc_record; | ||
35 | int (*mpc_apic_id)(struct mpc_config_processor *m); | ||
36 | void (*mpc_oem_bus_info)(struct mpc_config_bus *m, char *name); | ||
37 | void (*mpc_oem_pci_bus)(struct mpc_config_bus *m); | ||
38 | void (*smp_read_mpc_oem)(struct mp_config_oemtable *oemtable, | ||
39 | unsigned short oemsize); | ||
30 | }; | 40 | }; |
31 | 41 | ||
32 | extern struct x86_quirks *x86_quirks; | 42 | extern struct x86_quirks *x86_quirks; |