2 * Unmaintained SGI Visual Workstation support.
3 * Split out from setup.c by davej@suse.de
7 #include <linux/init.h>
9 #include <linux/interrupt.h>
11 #include <asm/fixmap.h>
12 #include <asm/arch_hooks.h>
19 char visws_board_type
= -1;
20 char visws_board_rev
= -1;
22 void __init
visws_get_board_type_and_rev(void)
26 visws_board_type
= (char)(inb_p(PIIX_GPI_BD_REG
) & PIIX_GPI_BD_REG
)
30 * First, we have to initialize the 307 part to allow us access
31 * to the GPIO registers. Let's map them at 0x0fc0 which is right
32 * after the PIIX4 PM section.
34 outb_p(SIO_DEV_SEL
, SIO_INDEX
);
35 outb_p(SIO_GP_DEV
, SIO_DATA
); /* Talk to GPIO regs. */
37 outb_p(SIO_DEV_MSB
, SIO_INDEX
);
38 outb_p(SIO_GP_MSB
, SIO_DATA
); /* MSB of GPIO base address */
40 outb_p(SIO_DEV_LSB
, SIO_INDEX
);
41 outb_p(SIO_GP_LSB
, SIO_DATA
); /* LSB of GPIO base address */
43 outb_p(SIO_DEV_ENB
, SIO_INDEX
);
44 outb_p(1, SIO_DATA
); /* Enable GPIO registers. */
47 * Now, we have to map the power management section to write
48 * a bit which enables access to the GPIO registers.
49 * What lunatic came up with this shit?
51 outb_p(SIO_DEV_SEL
, SIO_INDEX
);
52 outb_p(SIO_PM_DEV
, SIO_DATA
); /* Talk to GPIO regs. */
54 outb_p(SIO_DEV_MSB
, SIO_INDEX
);
55 outb_p(SIO_PM_MSB
, SIO_DATA
); /* MSB of PM base address */
57 outb_p(SIO_DEV_LSB
, SIO_INDEX
);
58 outb_p(SIO_PM_LSB
, SIO_DATA
); /* LSB of PM base address */
60 outb_p(SIO_DEV_ENB
, SIO_INDEX
);
61 outb_p(1, SIO_DATA
); /* Enable PM registers. */
64 * Now, write the PM register which enables the GPIO registers.
66 outb_p(SIO_PM_FER2
, SIO_PM_INDEX
);
67 outb_p(SIO_PM_GP_EN
, SIO_PM_DATA
);
70 * Now, initialize the GPIO registers.
71 * We want them all to be inputs which is the
72 * power on default, so let's leave them alone.
73 * So, let's just read the board rev!
75 raw
= inb_p(SIO_GP_DATA1
);
76 raw
&= 0x7f; /* 7 bits of valid board revision ID. */
78 if (visws_board_type
== VISWS_320
) {
81 } else if (raw
< 0xc) {
86 } else if (visws_board_type
== VISWS_540
) {
89 visws_board_rev
= raw
;
92 printk(KERN_INFO
"Silicon Graphics Visual Workstation %s (rev %d) detected\n",
93 (visws_board_type
== VISWS_320
? "320" :
94 (visws_board_type
== VISWS_540
? "540" :
95 "unknown")), visws_board_rev
);
98 void __init
pre_intr_init_hook(void)
100 init_VISWS_APIC_irqs();
103 void __init
intr_init_hook(void)
105 #ifdef CONFIG_X86_LOCAL_APIC
110 void __init
pre_setup_arch_hook()
112 visws_get_board_type_and_rev();
115 static struct irqaction irq0
= {
116 .handler
= timer_interrupt
,
117 .flags
= SA_INTERRUPT
,
121 void __init
time_init_hook(void)
123 printk(KERN_INFO
"Starting Cobalt Timer system clock\n");
125 /* Set the countdown value */
126 co_cpu_write(CO_CPU_TIMEVAL
, CO_TIME_HZ
/HZ
);
128 /* Start the timer */
129 co_cpu_write(CO_CPU_CTRL
, co_cpu_read(CO_CPU_CTRL
) | CO_CTRL_TIMERUN
);
131 /* Enable (unmask) the timer interrupt */
132 co_cpu_write(CO_CPU_CTRL
, co_cpu_read(CO_CPU_CTRL
) & ~CO_CTRL_TIMEMASK
);
134 /* Wire cpu IDT entry to s/w handler (and Cobalt APIC to IDT) */