2 * Platform dependent support for HP simulator.
4 * Copyright (C) 1998, 1999, 2002 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
6 * Copyright (C) 1999 Vijay Chander <vijay@engr.sgi.com>
8 #include <linux/config.h>
9 #include <linux/console.h>
10 #include <linux/init.h>
11 #include <linux/kdev_t.h>
12 #include <linux/kernel.h>
13 #include <linux/major.h>
14 #include <linux/param.h>
15 #include <linux/root_dev.h>
16 #include <linux/string.h>
17 #include <linux/types.h>
19 #include <asm/delay.h>
22 #include <asm/machvec.h>
23 #include <asm/pgtable.h>
26 #include "hpsim_ssc.h"
29 * Simulator system call.
38 "br.ret.sptk.many rp\n"
42 ia64_ssc_connect_irq (long intr
, long irq
)
44 ia64_ssc(intr
, irq
, 0, 0, SSC_CONNECT_INTERRUPT
);
48 ia64_ctl_trace (long on
)
50 ia64_ssc(on
, 0, 0, 0, SSC_CTL_TRACE
);
54 hpsim_setup (char **cmdline_p
)
56 ROOT_DEV
= Root_SDA1
; /* default to first SCSI drive */
58 #ifdef CONFIG_HP_SIMSERIAL_CONSOLE
60 extern struct console hpsim_cons
;
61 if (ia64_platform_is("hpsim"))
62 register_console(&hpsim_cons
);