/*1* This file is subject to the terms and conditions of the GNU General Public2* License. See the file "COPYING" in the main directory of this archive3* for more details.4*5* Miscellaneous ARCS PROM routines.6*7* Copyright (C) 1996 David S. Miller ([email protected])8* Copyright (C) 1999 Ralf Baechle ([email protected])9* Copyright (C) 1999 Silicon Graphics, Inc.10*/11#include <linux/compiler.h>12#include <linux/init.h>13#include <linux/kernel.h>14#include <linux/irqflags.h>1516#include <asm/bcache.h>1718#include <asm/fw/arc/types.h>19#include <asm/sgialib.h>20#include <asm/bootinfo.h>2122VOID __noreturn23ArcEnterInteractiveMode(VOID)24{25bc_disable();26local_irq_disable();27ARC_CALL0(imode);2829unreachable();30}3132DISPLAY_STATUS * __init ArcGetDisplayStatus(ULONG FileID)33{34return (DISPLAY_STATUS *) ARC_CALL1(GetDisplayStatus, FileID);35}363738