0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #include <linux/compiler.h>
0013 #include <linux/init.h>
0014 #include <linux/kernel.h>
0015 #include <linux/irqflags.h>
0016
0017 #include <asm/bcache.h>
0018
0019 #include <asm/fw/arc/types.h>
0020 #include <asm/sgialib.h>
0021 #include <asm/bootinfo.h>
0022
0023 VOID __noreturn
0024 ArcEnterInteractiveMode(VOID)
0025 {
0026 bc_disable();
0027 local_irq_disable();
0028 ARC_CALL0(imode);
0029
0030 unreachable();
0031 }
0032
0033 DISPLAY_STATUS * __init ArcGetDisplayStatus(ULONG FileID)
0034 {
0035 return (DISPLAY_STATUS *) ARC_CALL1(GetDisplayStatus, FileID);
0036 }