2 * linux/arch/alpha/kernel/sys_jensen.c
4 * Copyright (C) 1995 Linus Torvalds
5 * Copyright (C) 1998, 1999 Richard Henderson
7 * Code supporting the Jensen.
10 #include <linux/kernel.h>
11 #include <linux/types.h>
13 #include <linux/sched.h>
14 #include <linux/pci.h>
15 #include <linux/init.h>
17 #include <asm/ptrace.h>
18 #include <asm/system.h>
20 #define __EXTERN_INLINE inline
22 #include <asm/jensen.h>
23 #undef __EXTERN_INLINE
27 #include <asm/mmu_context.h>
28 #include <asm/pgtable.h>
29 #include <asm/tlbflush.h>
34 #include "machvec_impl.h"
38 * Jensen is special: the vector is 0x8X0 for EISA interrupt X, and
39 * 0x9X0 for the local motherboard interrupts.
41 * Note especially that those local interrupts CANNOT be masked,
42 * which causes much of the pain below...
46 * 0x800 - IRQ0 interval timer (not used, as we use the RTC timer)
47 * 0x810 - IRQ1 line printer (duh..)
48 * 0x860 - IRQ6 floppy disk
55 * PCI-based systems are more sane: they don't have the local
56 * interrupts at all, and have only normal PCI interrupts from
57 * devices. Happily it's easy enough to do a sane mapping from the
60 * Note that this means that we may have to do a hardware
61 * "local_op" to a different interrupt than we report to the rest of the
66 jensen_local_startup(unsigned int irq)
68 /* the parport is really hw IRQ 1, silly Jensen. */
70 i8259a_startup_irq(1);
73 * For all true local interrupts, set the flag that prevents
74 * the IPL from being dropped during handler processing.
76 if (irq_desc[irq].action)
77 irq_desc[irq].action->flags |= SA_INTERRUPT;
82 jensen_local_shutdown(unsigned int irq)
84 /* the parport is really hw IRQ 1, silly Jensen. */
86 i8259a_disable_irq(1);
90 jensen_local_enable(unsigned int irq)
92 /* the parport is really hw IRQ 1, silly Jensen. */
98 jensen_local_disable(unsigned int irq)
100 /* the parport is really hw IRQ 1, silly Jensen. */
102 i8259a_disable_irq(1);
106 jensen_local_ack(unsigned int irq)
108 /* the parport is really hw IRQ 1, silly Jensen. */
110 i8259a_mask_and_ack_irq(1);
114 jensen_local_end(unsigned int irq)
116 /* the parport is really hw IRQ 1, silly Jensen. */
121 static struct hw_interrupt_type jensen_local_irq_type = {
123 .startup = jensen_local_startup,
124 .shutdown = jensen_local_shutdown,
125 .enable = jensen_local_enable,
126 .disable = jensen_local_disable,
127 .ack = jensen_local_ack,
128 .end = jensen_local_end,
132 jensen_device_interrupt(unsigned long vector, struct pt_regs * regs)
138 printk("Whee.. NMI received. Probable hardware error\n");
139 printk("61=%02x, 461=%02x\n", inb(0x61), inb(0x461));
142 /* local device interrupts: */
143 case 0x900: irq = 4; break; /* com1 -> irq 4 */
144 case 0x920: irq = 3; break; /* com2 -> irq 3 */
145 case 0x980: irq = 1; break; /* kbd -> irq 1 */
146 case 0x990: irq = 9; break; /* mouse -> irq 9 */
149 if (vector > 0x900) {
150 printk("Unknown local interrupt %lx\n", vector);
154 irq = (vector - 0x800) >> 4;
160 /* If there is no handler yet... */
161 if (irq_desc[irq].action == NULL) {
162 /* If it is a local interrupt that cannot be masked... */
165 /* Clear keyboard/mouse state */
168 /* Reset serial ports */
180 /* A useful bit of code to find out if an interrupt is going wild. */
182 static unsigned int last_msg = 0, last_cc = 0;
183 static int last_irq = -1, count = 0;
186 __asm __volatile("rpcc %0" : "=r"(cc));
188 #define JENSEN_CYCLES_PER_SEC (150000000)
189 if (cc - last_msg > ((JENSEN_CYCLES_PER_SEC) * 3) ||
191 printk(KERN_CRIT " irq %d count %d cc %u @ %lx\n",
192 irq, count, cc-last_cc, regs->pc);
201 handle_irq(irq, regs);
205 jensen_init_irq(void)
209 irq_desc[1].handler = &jensen_local_irq_type;
210 irq_desc[4].handler = &jensen_local_irq_type;
211 irq_desc[3].handler = &jensen_local_irq_type;
212 irq_desc[7].handler = &jensen_local_irq_type;
213 irq_desc[9].handler = &jensen_local_irq_type;
215 common_init_isa_dma();
219 jensen_init_arch(void)
221 struct pci_controller *hose;
223 static struct pci_dev fake_isa_bridge = { .dma_mask = 0xffffffffUL, };
225 isa_bridge = &fake_isa_bridge;
228 /* Create a hose so that we can report i/o base addresses to
231 pci_isa_hose = hose = alloc_pci_controller();
232 hose->io_space = &ioport_resource;
233 hose->mem_space = &iomem_resource;
236 hose->sparse_mem_base = EISA_MEM - IDENT_ADDR;
237 hose->dense_mem_base = 0;
238 hose->sparse_io_base = EISA_IO - IDENT_ADDR;
239 hose->dense_io_base = 0;
241 hose->sg_isa = hose->sg_pci = NULL;
242 __direct_map_base = 0;
243 __direct_map_size = 0xffffffff;
247 jensen_machine_check (u64 vector, u64 la, struct pt_regs *regs)
249 printk(KERN_CRIT "Machine check\n");
257 struct alpha_machine_vector jensen_mv __initmv = {
258 .vector_name = "Jensen",
260 IO_LITE(JENSEN,jensen),
261 .machine_check = jensen_machine_check,
262 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
266 .device_interrupt = jensen_device_interrupt,
268 .init_arch = jensen_init_arch,
269 .init_irq = jensen_init_irq,
270 .init_rtc = common_init_rtc,