diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2010-04-24 00:05:48 +1000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-05-06 00:16:54 +0200 |
commit | 79ea6b87011c0524ced31359e2be7aac97c29d0a (patch) | |
tree | 3a15816376464f2a605a55ea55e4fd835f29db23 /arch/i386/include/asm/u-boot-i386.h | |
parent | bf16500f79fdf2653a286b40bb601cb185ac4675 (diff) |
x86: Provide weak PC/AT compatibility setup function
It is possibly to setup x86 boards to use non-PC/AT configurations. For
example, the sc520 is an x86 CPU with PC/AT and non-PC/AT peripherals.
This function allows the board to set itself up for maximum PC/AT
compatibility just before booting the Linux kernel (the Linux kernel
'just works' if everything is PC/AT compliant)
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'arch/i386/include/asm/u-boot-i386.h')
-rw-r--r-- | arch/i386/include/asm/u-boot-i386.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/i386/include/asm/u-boot-i386.h b/arch/i386/include/asm/u-boot-i386.h index 521fd352bb..ce097a3bfa 100644 --- a/arch/i386/include/asm/u-boot-i386.h +++ b/arch/i386/include/asm/u-boot-i386.h @@ -43,6 +43,8 @@ int cpu_init_interrupts(void); int board_init(void); int dram_init(void); +void setup_pcat_compatibility(void); + void isa_unmap_rom(u32 addr); u32 isa_map_rom(u32 bus_addr, int size); |