aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/x86_init.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/include/asm/x86_init.h')
-rw-r--r--arch/x86/include/asm/x86_init.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/include/asm/x86_init.h b/arch/x86/include/asm/x86_init.h
index 88306054bd98..199e15bd3ec5 100644
--- a/arch/x86/include/asm/x86_init.h
+++ b/arch/x86/include/asm/x86_init.h
@@ -131,6 +131,16 @@ struct x86_hyper_init {
131}; 131};
132 132
133/** 133/**
134 * struct x86_init_acpi - x86 ACPI init functions
135 * @get_root_pointer: get RSDP address
136 * @reduced_hw_early_init: hardware reduced platform early init
137 */
138struct x86_init_acpi {
139 u64 (*get_root_pointer)(void);
140 void (*reduced_hw_early_init)(void);
141};
142
143/**
134 * struct x86_init_ops - functions for platform specific setup 144 * struct x86_init_ops - functions for platform specific setup
135 * 145 *
136 */ 146 */
@@ -144,6 +154,7 @@ struct x86_init_ops {
144 struct x86_init_iommu iommu; 154 struct x86_init_iommu iommu;
145 struct x86_init_pci pci; 155 struct x86_init_pci pci;
146 struct x86_hyper_init hyper; 156 struct x86_hyper_init hyper;
157 struct x86_init_acpi acpi;
147}; 158};
148 159
149/** 160/**