patch-2.1.121 linux/arch/alpha/kernel/sys_ruffian.c
Next file: linux/arch/alpha/kernel/sys_sable.c
Previous file: linux/arch/alpha/kernel/sys_rawhide.c
Back to the patch index
Back to the overall index
- Lines: 121
- Date:
Tue Sep 8 23:20:41 1998
- Orig file:
v2.1.120/linux/arch/alpha/kernel/sys_ruffian.c
- Orig date:
Tue Aug 18 22:02:02 1998
diff -u --recursive --new-file v2.1.120/linux/arch/alpha/kernel/sys_ruffian.c linux/arch/alpha/kernel/sys_ruffian.c
@@ -8,7 +8,6 @@
* Code supporting the RUFFIAN.
*/
-#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
@@ -31,7 +30,6 @@
#include "bios32.h"
#include "machvec.h"
-
static void
ruffian_update_irq_hw(unsigned long irq, unsigned long mask, int unmask_p)
{
@@ -75,9 +73,6 @@
{
unsigned long pld;
unsigned int i;
- unsigned long flags;
-
- save_and_cli(flags);
/* Read the interrupt summary register of PYXIS */
pld = *(vulp)PYXIS_INT_REQ;
@@ -112,7 +107,7 @@
if (j == 7 && !(inb(0x20) & 0x80)) {
/* It's only a passive release... */
} else if (j == 0) {
- timer_interrupt(regs);
+ timer_interrupt(0, NULL, regs);
ruffian_ack_irq(0);
} else {
handle_irq(j, j, regs);
@@ -125,7 +120,6 @@
*(vulp)PYXIS_INT_REQ = 1UL << i; mb();
*(vulp)PYXIS_INT_REQ; /* read to force the write */
}
- restore_flags(flags);
}
static void __init
@@ -167,13 +161,13 @@
/*
* For RUFFIAN, we do not want to make any modifications to the PCI
- * setup. So just scan the busses.
+ * setup. But we may need to do some kind of init.
*/
static void __init
ruffian_pci_fixup(void)
{
- layout_all_busses(DEFAULT_IO_BASE, DEFAULT_MEM_BASE);
+ /* layout_all_busses(DEFAULT_IO_BASE, DEFAULT_MEM_BASE); */
}
@@ -194,7 +188,7 @@
/* Check BANK_ENABLE */
if (bank & 0x01) {
- static unsigned long size[] __initdata = {
+ static unsigned long size[] __initlocaldata = {
0x40000000UL, /* 0x00, 1G */
0x20000000UL, /* 0x02, 512M */
0x10000000UL, /* 0x04, 256M */
@@ -227,7 +221,6 @@
pyxis_finish_init_arch();
}
-
static void
ruffian_init_pit (void)
{
@@ -236,20 +229,31 @@
init_pit_rest();
}
+static void
+ruffian_kill_arch (int mode, char *reboot_cmd)
+{
+ /* Perhaps this works for other PYXIS as well? */
+ *(vuip) PYXIS_RESET = 0x0000dead;
+ mb();
+
+ generic_kill_arch(mode, reboot_cmd);
+}
+
/*
* The System Vector
*/
-#if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_RUFFIAN)
struct alpha_machine_vector ruffian_mv __initmv = {
vector_name: "Ruffian",
DO_EV5_MMU,
- DO_DEFAULT_RTC,
- DO_PYXIS_IO,
+ /* RUFFIAN always uses BCD, like a PeeCee. */
+ rtc_port: 0x70, rtc_addr: 0x80, rtc_bcd: 1,
+ /* For the moment, do not use BWIO on RUFFIAN. */
+ IO(PYXIS,pyxis,pyxis),
DO_PYXIS_BUS,
machine_check: pyxis_machine_check,
- max_dma_address: ALPHA_MAX_DMA_ADDRESS,
+ max_dma_address: ALPHA_RUFFIAN_MAX_DMA_ADDRESS,
nr_irqs: 48,
irq_probe_mask: RUFFIAN_PROBE_MASK,
@@ -261,7 +265,6 @@
init_irq: ruffian_init_irq,
init_pit: ruffian_init_pit,
pci_fixup: ruffian_pci_fixup,
- kill_arch: generic_kill_arch,
+ kill_arch: ruffian_kill_arch,
};
ALIAS_MV(ruffian)
-#endif
FUNET's LINUX-ADM group, [email protected]
TCL-scripts by Sam Shen, [email protected]