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_enable(struct irq_data *d)
68 /* the parport is really hw IRQ 1, silly Jensen. */
74 jensen_local_disable(struct irq_data *d)
76 /* the parport is really hw IRQ 1, silly Jensen. */
78 i8259a_disable_irq(d);
82 jensen_local_mask_ack(struct irq_data *d)
84 /* the parport is really hw IRQ 1, silly Jensen. */
86 i8259a_mask_and_ack_irq(d);
89 static struct irq_chip jensen_local_irq_type = {
91 .irq_unmask = jensen_local_enable,
92 .irq_mask = jensen_local_disable,
93 .irq_mask_ack = jensen_local_mask_ack,
97 jensen_device_interrupt(unsigned long vector)
103 printk("Whee.. NMI received. Probable hardware error\n");
104 printk("61=%02x, 461=%02x\n", inb(0x61), inb(0x461));
107 /* local device interrupts: */
108 case 0x900: irq = 4; break; /* com1 -> irq 4 */
109 case 0x920: irq = 3; break; /* com2 -> irq 3 */
110 case 0x980: irq = 1; break; /* kbd -> irq 1 */
111 case 0x990: irq = 9; break; /* mouse -> irq 9 */
114 if (vector > 0x900) {
115 printk("Unknown local interrupt %lx\n", vector);
119 irq = (vector - 0x800) >> 4;
125 /* If there is no handler yet... */
126 if (!irq_has_action(irq)) {
127 /* If it is a local interrupt that cannot be masked... */
130 /* Clear keyboard/mouse state */
133 /* Reset serial ports */
145 /* A useful bit of code to find out if an interrupt is going wild. */
147 static unsigned int last_msg = 0, last_cc = 0;
148 static int last_irq = -1, count = 0;
151 __asm __volatile("rpcc %0" : "=r"(cc));
153 #define JENSEN_CYCLES_PER_SEC (150000000)
154 if (cc - last_msg > ((JENSEN_CYCLES_PER_SEC) * 3) ||
156 printk(KERN_CRIT " irq %d count %d cc %u @ %lx\n",
157 irq, count, cc-last_cc, get_irq_regs()->pc);
170 jensen_init_irq(void)
174 irq_set_chip_and_handler(1, &jensen_local_irq_type, handle_level_irq);
175 irq_set_chip_and_handler(4, &jensen_local_irq_type, handle_level_irq);
176 irq_set_chip_and_handler(3, &jensen_local_irq_type, handle_level_irq);
177 irq_set_chip_and_handler(7, &jensen_local_irq_type, handle_level_irq);
178 irq_set_chip_and_handler(9, &jensen_local_irq_type, handle_level_irq);
180 common_init_isa_dma();
184 jensen_init_arch(void)
186 struct pci_controller *hose;
188 static struct pci_dev fake_isa_bridge = { .dma_mask = 0xffffffffUL, };
190 isa_bridge = &fake_isa_bridge;
193 /* Create a hose so that we can report i/o base addresses to
196 pci_isa_hose = hose = alloc_pci_controller();
197 hose->io_space = &ioport_resource;
198 hose->mem_space = &iomem_resource;
201 hose->sparse_mem_base = EISA_MEM - IDENT_ADDR;
202 hose->dense_mem_base = 0;
203 hose->sparse_io_base = EISA_IO - IDENT_ADDR;
204 hose->dense_io_base = 0;
206 hose->sg_isa = hose->sg_pci = NULL;
207 __direct_map_base = 0;
208 __direct_map_size = 0xffffffff;
212 jensen_machine_check(unsigned long vector, unsigned long la)
214 printk(KERN_CRIT "Machine check\n");
221 struct alpha_machine_vector jensen_mv __initmv = {
222 .vector_name = "Jensen",
224 IO_LITE(JENSEN,jensen),
225 .machine_check = jensen_machine_check,
226 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
228 .rtc_get_time = common_get_rtc_time,
229 .rtc_set_time = common_set_rtc_time,
232 .device_interrupt = jensen_device_interrupt,
234 .init_arch = jensen_init_arch,
235 .init_irq = jensen_init_irq,
236 .init_rtc = common_init_rtc,