Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 1 | #ifndef _ASM_X86_PLATFORM_H |
| 2 | #define _ASM_X86_PLATFORM_H |
| 3 | |
| 4 | /** |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 5 | * struct x86_init_resources - platform specific resource related ops |
| 6 | * @probe_roms: probe BIOS roms |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 7 | * @reserve_resources: reserve the standard resources for the |
| 8 | * platform |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame^] | 9 | * @reserve_ebda_region: reserve the extended bios data area |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 10 | * |
| 11 | */ |
| 12 | struct x86_init_resources { |
| 13 | void (*probe_roms)(void); |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 14 | void (*reserve_resources)(void); |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame^] | 15 | void (*reserve_ebda_region)(void); |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 16 | }; |
| 17 | |
| 18 | /** |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 19 | * struct x86_init_ops - functions for platform specific setup |
| 20 | * |
| 21 | */ |
| 22 | struct x86_init_ops { |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 23 | struct x86_init_resources resources; |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | extern struct x86_init_ops x86_init; |
| 27 | |
| 28 | extern void x86_init_noop(void); |
| 29 | |
| 30 | #endif |