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 | f484847 | 2009-08-20 12:05:01 +0200 | [diff] [blame^] | 5 | * struct x86_init_mpparse - platform specific mpparse ops |
| 6 | * @mpc_record: platform specific mpc record accounting |
| 7 | */ |
| 8 | struct x86_init_mpparse { |
| 9 | void (*mpc_record)(unsigned int mode); |
| 10 | }; |
| 11 | |
| 12 | /** |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 13 | * struct x86_init_resources - platform specific resource related ops |
| 14 | * @probe_roms: probe BIOS roms |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 15 | * @reserve_resources: reserve the standard resources for the |
| 16 | * platform |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame] | 17 | * @reserve_ebda_region: reserve the extended bios data area |
Thomas Gleixner | 6b18ae3 | 2009-08-20 10:19:54 +0200 | [diff] [blame] | 18 | * @memory_setup: platform specific memory setup |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 19 | * |
| 20 | */ |
| 21 | struct x86_init_resources { |
| 22 | void (*probe_roms)(void); |
Thomas Gleixner | 8fee697 | 2009-08-19 14:55:50 +0200 | [diff] [blame] | 23 | void (*reserve_resources)(void); |
Thomas Gleixner | 816c25e | 2009-08-19 14:36:27 +0200 | [diff] [blame] | 24 | void (*reserve_ebda_region)(void); |
Thomas Gleixner | 6b18ae3 | 2009-08-20 10:19:54 +0200 | [diff] [blame] | 25 | char *(*memory_setup)(void); |
Thomas Gleixner | f7cf5a5 | 2009-08-19 14:43:56 +0200 | [diff] [blame] | 26 | }; |
| 27 | |
| 28 | /** |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 29 | * struct x86_init_ops - functions for platform specific setup |
| 30 | * |
| 31 | */ |
| 32 | struct x86_init_ops { |
Thomas Gleixner | f484847 | 2009-08-20 12:05:01 +0200 | [diff] [blame^] | 33 | struct x86_init_resources resources; |
| 34 | struct x86_init_mpparse mpparse; |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | extern struct x86_init_ops x86_init; |
| 38 | |
| 39 | extern void x86_init_noop(void); |
Thomas Gleixner | f484847 | 2009-08-20 12:05:01 +0200 | [diff] [blame^] | 40 | extern void x86_init_uint_noop(unsigned int unused); |
Thomas Gleixner | 57844a8 | 2009-08-19 14:48:38 +0200 | [diff] [blame] | 41 | |
| 42 | #endif |