x86/mpparse: Provide separate early/late callbacks
[linux-2.6-microblaze.git] / arch / x86 / include / asm / x86_init.h
index 4ae7764..375825f 100644 (file)
@@ -17,11 +17,15 @@ struct irq_domain;
  * @setup_ioapic_ids:          platform specific ioapic id override
  * @find_mptable:              Find MPTABLE early to reserve the memory region
  * @get_smp_config:            get the smp configuration
+ * @early_parse_smp_cfg:       Parse the SMP configuration data early before initmem_init()
+ * @parse_smp_cfg:             Parse the SMP configuration data
  */
 struct x86_init_mpparse {
        void (*setup_ioapic_ids)(void);
        void (*find_mptable)(void);
        void (*get_smp_config)(unsigned int early);
+       void (*early_parse_smp_cfg)(void);
+       void (*parse_smp_cfg)(void);
 };
 
 /**