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 | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 9 | * |
| 10 | */ |
| 11 | struct x86_init_resources { |
| 12 | void (*probe_roms)(void); |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame^] | 13 | void (*reserve_resources)(void); |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 14 | }; |
| 15 | |
| 16 | /** |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 17 | * struct x86_init_ops - functions for platform specific setup |
| 18 | * |
| 19 | */ |
| 20 | struct x86_init_ops { |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 21 | struct x86_init_resources resources; |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 22 | }; |
| 23 | |
| 24 | extern struct x86_init_ops x86_init; |
| 25 | |
| 26 | extern void x86_init_noop(void); |
| 27 | |
| 28 | #endif |