2 * linux/arch/alpha/kernel/sys_eb64p.c
4 * Copyright (C) 1995 David A Rusling
5 * Copyright (C) 1996 Jay A Estabrook
6 * Copyright (C) 1998, 1999 Richard Henderson
8 * Code supporting the EB64+ and EB66.
11 #include <linux/config.h>
12 #include <linux/kernel.h>
13 #include <linux/types.h>
15 #include <linux/sched.h>
16 #include <linux/pci.h>
17 #include <linux/init.h>
18 #include <linux/bitops.h>
20 #include <asm/ptrace.h>
21 #include <asm/system.h>
24 #include <asm/mmu_context.h>
26 #include <asm/pgtable.h>
27 #include <asm/core_apecs.h>
28 #include <asm/core_lca.h>
29 #include <asm/hwrpb.h>
30 #include <asm/tlbflush.h>
35 #include "machvec_impl.h"
38 /* Note mask bit is true for DISABLED irqs. */
39 static unsigned int cached_irq_mask
= -1;
42 eb64p_update_irq_hw(unsigned int irq
, unsigned long mask
)
44 outb(mask
>> (irq
>= 24 ? 24 : 16), (irq
>= 24 ? 0x27 : 0x26));
48 eb64p_enable_irq(unsigned int irq
)
50 eb64p_update_irq_hw(irq
, cached_irq_mask
&= ~(1 << irq
));
54 eb64p_disable_irq(unsigned int irq
)
56 eb64p_update_irq_hw(irq
, cached_irq_mask
|= 1 << irq
);
60 eb64p_startup_irq(unsigned int irq
)
62 eb64p_enable_irq(irq
);
63 return 0; /* never anything pending */
67 eb64p_end_irq(unsigned int irq
)
69 if (!(irq_desc
[irq
].status
& (IRQ_DISABLED
|IRQ_INPROGRESS
)))
70 eb64p_enable_irq(irq
);
73 static struct hw_interrupt_type eb64p_irq_type
= {
75 .startup
= eb64p_startup_irq
,
76 .shutdown
= eb64p_disable_irq
,
77 .enable
= eb64p_enable_irq
,
78 .disable
= eb64p_disable_irq
,
79 .ack
= eb64p_disable_irq
,
84 eb64p_device_interrupt(unsigned long vector
, struct pt_regs
*regs
)
89 /* Read the interrupt summary registers */
90 pld
= inb(0x26) | (inb(0x27) << 8);
93 * Now, for every possible bit set, work through
94 * them and call the appropriate interrupt handler.
98 pld
&= pld
- 1; /* clear least bit set */
101 isa_device_interrupt(vector
, regs
);
103 handle_irq(16 + i
, regs
);
113 #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_CABRIOLET)
115 * CABRIO SRM may not set variation correctly, so here we test
116 * the high word of the interrupt summary register for the RAZ
117 * bits, and hope that a true EB64+ would read all ones...
119 if (inw(0x806) != 0xffff) {
120 extern struct alpha_machine_vector cabriolet_mv
;
122 printk("Detected Cabriolet: correcting HWRPB.\n");
124 hwrpb
->sys_variation
|= 2L << 10;
125 hwrpb_update_checksum(hwrpb
);
127 alpha_mv
= cabriolet_mv
;
138 for (i
= 16; i
< 32; ++i
) {
139 irq_desc
[i
].status
= IRQ_DISABLED
| IRQ_LEVEL
;
140 irq_desc
[i
].handler
= &eb64p_irq_type
;
143 common_init_isa_dma();
144 setup_irq(16+5, &isa_cascade_irqaction
);
148 * PCI Fixup configuration.
150 * There are two 8 bit external summary registers as follows:
154 * 0 Interrupt Line A from slot 0
155 * 1 Interrupt Line A from slot 1
156 * 2 Interrupt Line B from slot 0
157 * 3 Interrupt Line B from slot 1
158 * 4 Interrupt Line C from slot 0
159 * 5 Interrupt line from the two ISA PICs
165 * 0 Interrupt Line C from slot 1
166 * 1 Interrupt Line D from slot 0
167 * 2 Interrupt Line D from slot 1
174 * The device to slot mapping looks like:
177 * 5 NCR SCSI controller
178 * 6 PCI on board slot 0
179 * 7 PCI on board slot 1
180 * 8 Intel SIO PCI-ISA bridge chip
181 * 9 Tulip - DECchip 21040 Ethernet controller
184 * This two layered interrupt approach means that we allocate IRQ 16 and
185 * above for PCI interrupts. The IRQ relates to which bit the interrupt
186 * comes in on. This makes interrupt processing much easier.
190 eb64p_map_irq(struct pci_dev
*dev
, u8 slot
, u8 pin
)
192 static char irq_tab
[5][5] __initdata
= {
193 /*INT INTA INTB INTC INTD */
194 {16+7, 16+7, 16+7, 16+7, 16+7}, /* IdSel 5, slot ?, ?? */
195 {16+0, 16+0, 16+2, 16+4, 16+9}, /* IdSel 6, slot ?, ?? */
196 {16+1, 16+1, 16+3, 16+8, 16+10}, /* IdSel 7, slot ?, ?? */
197 { -1, -1, -1, -1, -1}, /* IdSel 8, SIO */
198 {16+6, 16+6, 16+6, 16+6, 16+6}, /* IdSel 9, TULIP */
200 const long min_idsel
= 5, max_idsel
= 9, irqs_per_slot
= 5;
201 return COMMON_TABLE_LOOKUP
;
209 #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_EB64P)
210 struct alpha_machine_vector eb64p_mv __initmv
= {
211 .vector_name
= "EB64+",
215 .machine_check
= apecs_machine_check
,
216 .max_isa_dma_address
= ALPHA_MAX_ISA_DMA_ADDRESS
,
217 .min_io_address
= DEFAULT_IO_BASE
,
218 .min_mem_address
= APECS_AND_LCA_DEFAULT_MEM_BASE
,
221 .device_interrupt
= eb64p_device_interrupt
,
223 .init_arch
= apecs_init_arch
,
224 .init_irq
= eb64p_init_irq
,
225 .init_rtc
= common_init_rtc
,
226 .init_pci
= common_init_pci
,
228 .pci_map_irq
= eb64p_map_irq
,
229 .pci_swizzle
= common_swizzle
,
234 #if defined(CONFIG_ALPHA_GENERIC) || defined(CONFIG_ALPHA_EB66)
235 struct alpha_machine_vector eb66_mv __initmv
= {
236 .vector_name
= "EB66",
240 .machine_check
= lca_machine_check
,
241 .max_isa_dma_address
= ALPHA_MAX_ISA_DMA_ADDRESS
,
242 .min_io_address
= DEFAULT_IO_BASE
,
243 .min_mem_address
= APECS_AND_LCA_DEFAULT_MEM_BASE
,
246 .device_interrupt
= eb64p_device_interrupt
,
248 .init_arch
= lca_init_arch
,
249 .init_irq
= eb64p_init_irq
,
250 .init_rtc
= common_init_rtc
,
251 .init_pci
= common_init_pci
,
252 .pci_map_irq
= eb64p_map_irq
,
253 .pci_swizzle
= common_swizzle
,