2009-08-19 20:48:38 +08:00
|
|
|
#ifndef _ASM_X86_PLATFORM_H
|
|
|
|
#define _ASM_X86_PLATFORM_H
|
|
|
|
|
2009-08-19 20:43:56 +08:00
|
|
|
/**
|
|
|
|
* struct x86_init_resources - platform specific resource related ops
|
|
|
|
* @probe_roms: probe BIOS roms
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct x86_init_resources {
|
|
|
|
void (*probe_roms)(void);
|
|
|
|
};
|
|
|
|
|
2009-08-19 20:48:38 +08:00
|
|
|
/**
|
|
|
|
* struct x86_init_ops - functions for platform specific setup
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct x86_init_ops {
|
2009-08-19 20:43:56 +08:00
|
|
|
struct x86_init_resources resources;
|
2009-08-19 20:48:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct x86_init_ops x86_init;
|
|
|
|
|
|
|
|
extern void x86_init_noop(void);
|
|
|
|
|
|
|
|
#endif
|