tcp: md5: using remote adress for md5 lookup in rst packet
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / alpha / kernel / sys_dp264.c
blobbb7f0c7cb17a6c1abd5cdb07c30d080a4b30d9ff
1 /*
2 * linux/arch/alpha/kernel/sys_dp264.c
4 * Copyright (C) 1995 David A Rusling
5 * Copyright (C) 1996, 1999 Jay A Estabrook
6 * Copyright (C) 1998, 1999 Richard Henderson
8 * Modified by Christopher C. Chimelis, 2001 to
9 * add support for the addition of Shark to the
10 * Tsunami family.
12 * Code supporting the DP264 (EV6+TSUNAMI).
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/mm.h>
18 #include <linux/sched.h>
19 #include <linux/pci.h>
20 #include <linux/init.h>
21 #include <linux/bitops.h>
23 #include <asm/ptrace.h>
24 #include <asm/system.h>
25 #include <asm/dma.h>
26 #include <asm/irq.h>
27 #include <asm/mmu_context.h>
28 #include <asm/io.h>
29 #include <asm/pgtable.h>
30 #include <asm/core_tsunami.h>
31 #include <asm/hwrpb.h>
32 #include <asm/tlbflush.h>
34 #include "proto.h"
35 #include "irq_impl.h"
36 #include "pci_impl.h"
37 #include "machvec_impl.h"
40 /* Note mask bit is true for ENABLED irqs. */
41 static unsigned long cached_irq_mask;
42 /* dp264 boards handle at max four CPUs */
43 static unsigned long cpu_irq_affinity[4] = { 0UL, 0UL, 0UL, 0UL };
45 DEFINE_SPINLOCK(dp264_irq_lock);
47 static void
48 tsunami_update_irq_hw(unsigned long mask)
50 register tsunami_cchip *cchip = TSUNAMI_cchip;
51 unsigned long isa_enable = 1UL << 55;
52 register int bcpu = boot_cpuid;
54 #ifdef CONFIG_SMP
55 volatile unsigned long *dim0, *dim1, *dim2, *dim3;
56 unsigned long mask0, mask1, mask2, mask3, dummy;
58 mask &= ~isa_enable;
59 mask0 = mask & cpu_irq_affinity[0];
60 mask1 = mask & cpu_irq_affinity[1];
61 mask2 = mask & cpu_irq_affinity[2];
62 mask3 = mask & cpu_irq_affinity[3];
64 if (bcpu == 0) mask0 |= isa_enable;
65 else if (bcpu == 1) mask1 |= isa_enable;
66 else if (bcpu == 2) mask2 |= isa_enable;
67 else mask3 |= isa_enable;
69 dim0 = &cchip->dim0.csr;
70 dim1 = &cchip->dim1.csr;
71 dim2 = &cchip->dim2.csr;
72 dim3 = &cchip->dim3.csr;
73 if (!cpu_possible(0)) dim0 = &dummy;
74 if (!cpu_possible(1)) dim1 = &dummy;
75 if (!cpu_possible(2)) dim2 = &dummy;
76 if (!cpu_possible(3)) dim3 = &dummy;
78 *dim0 = mask0;
79 *dim1 = mask1;
80 *dim2 = mask2;
81 *dim3 = mask3;
82 mb();
83 *dim0;
84 *dim1;
85 *dim2;
86 *dim3;
87 #else
88 volatile unsigned long *dimB;
89 if (bcpu == 0) dimB = &cchip->dim0.csr;
90 else if (bcpu == 1) dimB = &cchip->dim1.csr;
91 else if (bcpu == 2) dimB = &cchip->dim2.csr;
92 else dimB = &cchip->dim3.csr;
94 *dimB = mask | isa_enable;
95 mb();
96 *dimB;
97 #endif
100 static void
101 dp264_enable_irq(struct irq_data *d)
103 spin_lock(&dp264_irq_lock);
104 cached_irq_mask |= 1UL << d->irq;
105 tsunami_update_irq_hw(cached_irq_mask);
106 spin_unlock(&dp264_irq_lock);
109 static void
110 dp264_disable_irq(struct irq_data *d)
112 spin_lock(&dp264_irq_lock);
113 cached_irq_mask &= ~(1UL << d->irq);
114 tsunami_update_irq_hw(cached_irq_mask);
115 spin_unlock(&dp264_irq_lock);
118 static void
119 clipper_enable_irq(struct irq_data *d)
121 spin_lock(&dp264_irq_lock);
122 cached_irq_mask |= 1UL << (d->irq - 16);
123 tsunami_update_irq_hw(cached_irq_mask);
124 spin_unlock(&dp264_irq_lock);
127 static void
128 clipper_disable_irq(struct irq_data *d)
130 spin_lock(&dp264_irq_lock);
131 cached_irq_mask &= ~(1UL << (d->irq - 16));
132 tsunami_update_irq_hw(cached_irq_mask);
133 spin_unlock(&dp264_irq_lock);
136 static void
137 cpu_set_irq_affinity(unsigned int irq, cpumask_t affinity)
139 int cpu;
141 for (cpu = 0; cpu < 4; cpu++) {
142 unsigned long aff = cpu_irq_affinity[cpu];
143 if (cpumask_test_cpu(cpu, &affinity))
144 aff |= 1UL << irq;
145 else
146 aff &= ~(1UL << irq);
147 cpu_irq_affinity[cpu] = aff;
151 static int
152 dp264_set_affinity(struct irq_data *d, const struct cpumask *affinity,
153 bool force)
155 spin_lock(&dp264_irq_lock);
156 cpu_set_irq_affinity(d->irq, *affinity);
157 tsunami_update_irq_hw(cached_irq_mask);
158 spin_unlock(&dp264_irq_lock);
160 return 0;
163 static int
164 clipper_set_affinity(struct irq_data *d, const struct cpumask *affinity,
165 bool force)
167 spin_lock(&dp264_irq_lock);
168 cpu_set_irq_affinity(d->irq - 16, *affinity);
169 tsunami_update_irq_hw(cached_irq_mask);
170 spin_unlock(&dp264_irq_lock);
172 return 0;
175 static struct irq_chip dp264_irq_type = {
176 .name = "DP264",
177 .irq_unmask = dp264_enable_irq,
178 .irq_mask = dp264_disable_irq,
179 .irq_mask_ack = dp264_disable_irq,
180 .irq_set_affinity = dp264_set_affinity,
183 static struct irq_chip clipper_irq_type = {
184 .name = "CLIPPER",
185 .irq_unmask = clipper_enable_irq,
186 .irq_mask = clipper_disable_irq,
187 .irq_mask_ack = clipper_disable_irq,
188 .irq_set_affinity = clipper_set_affinity,
191 static void
192 dp264_device_interrupt(unsigned long vector)
194 #if 1
195 printk("dp264_device_interrupt: NOT IMPLEMENTED YET!!\n");
196 #else
197 unsigned long pld;
198 unsigned int i;
200 /* Read the interrupt summary register of TSUNAMI */
201 pld = TSUNAMI_cchip->dir0.csr;
204 * Now for every possible bit set, work through them and call
205 * the appropriate interrupt handler.
207 while (pld) {
208 i = ffz(~pld);
209 pld &= pld - 1; /* clear least bit set */
210 if (i == 55)
211 isa_device_interrupt(vector);
212 else
213 handle_irq(16 + i);
214 #if 0
215 TSUNAMI_cchip->dir0.csr = 1UL << i; mb();
216 tmp = TSUNAMI_cchip->dir0.csr;
217 #endif
219 #endif
222 static void
223 dp264_srm_device_interrupt(unsigned long vector)
225 int irq;
227 irq = (vector - 0x800) >> 4;
230 * The SRM console reports PCI interrupts with a vector calculated by:
232 * 0x900 + (0x10 * DRIR-bit)
234 * So bit 16 shows up as IRQ 32, etc.
236 * On DP264/BRICK/MONET, we adjust it down by 16 because at least
237 * that many of the low order bits of the DRIR are not used, and
238 * so we don't count them.
240 if (irq >= 32)
241 irq -= 16;
243 handle_irq(irq);
246 static void
247 clipper_srm_device_interrupt(unsigned long vector)
249 int irq;
251 irq = (vector - 0x800) >> 4;
254 * The SRM console reports PCI interrupts with a vector calculated by:
256 * 0x900 + (0x10 * DRIR-bit)
258 * So bit 16 shows up as IRQ 32, etc.
260 * CLIPPER uses bits 8-47 for PCI interrupts, so we do not need
261 * to scale down the vector reported, we just use it.
263 * Eg IRQ 24 is DRIR bit 8, etc, etc
265 handle_irq(irq);
268 static void __init
269 init_tsunami_irqs(struct irq_chip * ops, int imin, int imax)
271 long i;
272 for (i = imin; i <= imax; ++i) {
273 irq_set_chip_and_handler(i, ops, handle_level_irq);
274 irq_set_status_flags(i, IRQ_LEVEL);
278 static void __init
279 dp264_init_irq(void)
281 outb(0, DMA1_RESET_REG);
282 outb(0, DMA2_RESET_REG);
283 outb(DMA_MODE_CASCADE, DMA2_MODE_REG);
284 outb(0, DMA2_MASK_REG);
286 if (alpha_using_srm)
287 alpha_mv.device_interrupt = dp264_srm_device_interrupt;
289 tsunami_update_irq_hw(0);
291 init_i8259a_irqs();
292 init_tsunami_irqs(&dp264_irq_type, 16, 47);
295 static void __init
296 clipper_init_irq(void)
298 outb(0, DMA1_RESET_REG);
299 outb(0, DMA2_RESET_REG);
300 outb(DMA_MODE_CASCADE, DMA2_MODE_REG);
301 outb(0, DMA2_MASK_REG);
303 if (alpha_using_srm)
304 alpha_mv.device_interrupt = clipper_srm_device_interrupt;
306 tsunami_update_irq_hw(0);
308 init_i8259a_irqs();
309 init_tsunami_irqs(&clipper_irq_type, 24, 63);
314 * PCI Fixup configuration.
316 * Summary @ TSUNAMI_CSR_DIM0:
317 * Bit Meaning
318 * 0-17 Unused
319 *18 Interrupt SCSI B (Adaptec 7895 builtin)
320 *19 Interrupt SCSI A (Adaptec 7895 builtin)
321 *20 Interrupt Line D from slot 2 PCI0
322 *21 Interrupt Line C from slot 2 PCI0
323 *22 Interrupt Line B from slot 2 PCI0
324 *23 Interrupt Line A from slot 2 PCI0
325 *24 Interrupt Line D from slot 1 PCI0
326 *25 Interrupt Line C from slot 1 PCI0
327 *26 Interrupt Line B from slot 1 PCI0
328 *27 Interrupt Line A from slot 1 PCI0
329 *28 Interrupt Line D from slot 0 PCI0
330 *29 Interrupt Line C from slot 0 PCI0
331 *30 Interrupt Line B from slot 0 PCI0
332 *31 Interrupt Line A from slot 0 PCI0
334 *32 Interrupt Line D from slot 3 PCI1
335 *33 Interrupt Line C from slot 3 PCI1
336 *34 Interrupt Line B from slot 3 PCI1
337 *35 Interrupt Line A from slot 3 PCI1
338 *36 Interrupt Line D from slot 2 PCI1
339 *37 Interrupt Line C from slot 2 PCI1
340 *38 Interrupt Line B from slot 2 PCI1
341 *39 Interrupt Line A from slot 2 PCI1
342 *40 Interrupt Line D from slot 1 PCI1
343 *41 Interrupt Line C from slot 1 PCI1
344 *42 Interrupt Line B from slot 1 PCI1
345 *43 Interrupt Line A from slot 1 PCI1
346 *44 Interrupt Line D from slot 0 PCI1
347 *45 Interrupt Line C from slot 0 PCI1
348 *46 Interrupt Line B from slot 0 PCI1
349 *47 Interrupt Line A from slot 0 PCI1
350 *48-52 Unused
351 *53 PCI0 NMI (from Cypress)
352 *54 PCI0 SMI INT (from Cypress)
353 *55 PCI0 ISA Interrupt (from Cypress)
354 *56-60 Unused
355 *61 PCI1 Bus Error
356 *62 PCI0 Bus Error
357 *63 Reserved
359 * IdSel
360 * 5 Cypress Bridge I/O
361 * 6 SCSI Adaptec builtin
362 * 7 64 bit PCI option slot 0 (all busses)
363 * 8 64 bit PCI option slot 1 (all busses)
364 * 9 64 bit PCI option slot 2 (all busses)
365 * 10 64 bit PCI option slot 3 (not bus 0)
368 static int __init
369 isa_irq_fixup(struct pci_dev *dev, int irq)
371 u8 irq8;
373 if (irq > 0)
374 return irq;
376 /* This interrupt is routed via ISA bridge, so we'll
377 just have to trust whatever value the console might
378 have assigned. */
379 pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &irq8);
381 return irq8 & 0xf;
384 static int __init
385 dp264_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
387 static char irq_tab[6][5] __initdata = {
388 /*INT INTA INTB INTC INTD */
389 { -1, -1, -1, -1, -1}, /* IdSel 5 ISA Bridge */
390 { 16+ 3, 16+ 3, 16+ 2, 16+ 2, 16+ 2}, /* IdSel 6 SCSI builtin*/
391 { 16+15, 16+15, 16+14, 16+13, 16+12}, /* IdSel 7 slot 0 */
392 { 16+11, 16+11, 16+10, 16+ 9, 16+ 8}, /* IdSel 8 slot 1 */
393 { 16+ 7, 16+ 7, 16+ 6, 16+ 5, 16+ 4}, /* IdSel 9 slot 2 */
394 { 16+ 3, 16+ 3, 16+ 2, 16+ 1, 16+ 0} /* IdSel 10 slot 3 */
396 const long min_idsel = 5, max_idsel = 10, irqs_per_slot = 5;
397 struct pci_controller *hose = dev->sysdata;
398 int irq = COMMON_TABLE_LOOKUP;
400 if (irq > 0)
401 irq += 16 * hose->index;
403 return isa_irq_fixup(dev, irq);
406 static int __init
407 monet_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
409 static char irq_tab[13][5] __initdata = {
410 /*INT INTA INTB INTC INTD */
411 { 45, 45, 45, 45, 45}, /* IdSel 3 21143 PCI1 */
412 { -1, -1, -1, -1, -1}, /* IdSel 4 unused */
413 { -1, -1, -1, -1, -1}, /* IdSel 5 unused */
414 { 47, 47, 47, 47, 47}, /* IdSel 6 SCSI PCI1 */
415 { -1, -1, -1, -1, -1}, /* IdSel 7 ISA Bridge */
416 { -1, -1, -1, -1, -1}, /* IdSel 8 P2P PCI1 */
417 #if 1
418 { 28, 28, 29, 30, 31}, /* IdSel 14 slot 4 PCI2*/
419 { 24, 24, 25, 26, 27}, /* IdSel 15 slot 5 PCI2*/
420 #else
421 { -1, -1, -1, -1, -1}, /* IdSel 9 unused */
422 { -1, -1, -1, -1, -1}, /* IdSel 10 unused */
423 #endif
424 { 40, 40, 41, 42, 43}, /* IdSel 11 slot 1 PCI0*/
425 { 36, 36, 37, 38, 39}, /* IdSel 12 slot 2 PCI0*/
426 { 32, 32, 33, 34, 35}, /* IdSel 13 slot 3 PCI0*/
427 { 28, 28, 29, 30, 31}, /* IdSel 14 slot 4 PCI2*/
428 { 24, 24, 25, 26, 27} /* IdSel 15 slot 5 PCI2*/
430 const long min_idsel = 3, max_idsel = 15, irqs_per_slot = 5;
432 return isa_irq_fixup(dev, COMMON_TABLE_LOOKUP);
435 static u8 __init
436 monet_swizzle(struct pci_dev *dev, u8 *pinp)
438 struct pci_controller *hose = dev->sysdata;
439 int slot, pin = *pinp;
441 if (!dev->bus->parent) {
442 slot = PCI_SLOT(dev->devfn);
444 /* Check for the built-in bridge on hose 1. */
445 else if (hose->index == 1 && PCI_SLOT(dev->bus->self->devfn) == 8) {
446 slot = PCI_SLOT(dev->devfn);
447 } else {
448 /* Must be a card-based bridge. */
449 do {
450 /* Check for built-in bridge on hose 1. */
451 if (hose->index == 1 &&
452 PCI_SLOT(dev->bus->self->devfn) == 8) {
453 slot = PCI_SLOT(dev->devfn);
454 break;
456 pin = pci_swizzle_interrupt_pin(dev, pin);
458 /* Move up the chain of bridges. */
459 dev = dev->bus->self;
460 /* Slot of the next bridge. */
461 slot = PCI_SLOT(dev->devfn);
462 } while (dev->bus->self);
464 *pinp = pin;
465 return slot;
468 static int __init
469 webbrick_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
471 static char irq_tab[13][5] __initdata = {
472 /*INT INTA INTB INTC INTD */
473 { -1, -1, -1, -1, -1}, /* IdSel 7 ISA Bridge */
474 { -1, -1, -1, -1, -1}, /* IdSel 8 unused */
475 { 29, 29, 29, 29, 29}, /* IdSel 9 21143 #1 */
476 { -1, -1, -1, -1, -1}, /* IdSel 10 unused */
477 { 30, 30, 30, 30, 30}, /* IdSel 11 21143 #2 */
478 { -1, -1, -1, -1, -1}, /* IdSel 12 unused */
479 { -1, -1, -1, -1, -1}, /* IdSel 13 unused */
480 { 35, 35, 34, 33, 32}, /* IdSel 14 slot 0 */
481 { 39, 39, 38, 37, 36}, /* IdSel 15 slot 1 */
482 { 43, 43, 42, 41, 40}, /* IdSel 16 slot 2 */
483 { 47, 47, 46, 45, 44}, /* IdSel 17 slot 3 */
485 const long min_idsel = 7, max_idsel = 17, irqs_per_slot = 5;
487 return isa_irq_fixup(dev, COMMON_TABLE_LOOKUP);
490 static int __init
491 clipper_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
493 static char irq_tab[7][5] __initdata = {
494 /*INT INTA INTB INTC INTD */
495 { 16+ 8, 16+ 8, 16+ 9, 16+10, 16+11}, /* IdSel 1 slot 1 */
496 { 16+12, 16+12, 16+13, 16+14, 16+15}, /* IdSel 2 slot 2 */
497 { 16+16, 16+16, 16+17, 16+18, 16+19}, /* IdSel 3 slot 3 */
498 { 16+20, 16+20, 16+21, 16+22, 16+23}, /* IdSel 4 slot 4 */
499 { 16+24, 16+24, 16+25, 16+26, 16+27}, /* IdSel 5 slot 5 */
500 { 16+28, 16+28, 16+29, 16+30, 16+31}, /* IdSel 6 slot 6 */
501 { -1, -1, -1, -1, -1} /* IdSel 7 ISA Bridge */
503 const long min_idsel = 1, max_idsel = 7, irqs_per_slot = 5;
504 struct pci_controller *hose = dev->sysdata;
505 int irq = COMMON_TABLE_LOOKUP;
507 if (irq > 0)
508 irq += 16 * hose->index;
510 return isa_irq_fixup(dev, irq);
513 static void __init
514 dp264_init_pci(void)
516 common_init_pci();
517 SMC669_Init(0);
518 locate_and_init_vga(NULL);
521 static void __init
522 monet_init_pci(void)
524 common_init_pci();
525 SMC669_Init(1);
526 es1888_init();
527 locate_and_init_vga(NULL);
530 static void __init
531 clipper_init_pci(void)
533 common_init_pci();
534 locate_and_init_vga(NULL);
537 static void __init
538 webbrick_init_arch(void)
540 tsunami_init_arch();
542 /* Tsunami caches 4 PTEs at a time; DS10 has only 1 hose. */
543 hose_head->sg_isa->align_entry = 4;
544 hose_head->sg_pci->align_entry = 4;
549 * The System Vectors
552 struct alpha_machine_vector dp264_mv __initmv = {
553 .vector_name = "DP264",
554 DO_EV6_MMU,
555 DO_DEFAULT_RTC,
556 DO_TSUNAMI_IO,
557 .machine_check = tsunami_machine_check,
558 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
559 .min_io_address = DEFAULT_IO_BASE,
560 .min_mem_address = DEFAULT_MEM_BASE,
561 .pci_dac_offset = TSUNAMI_DAC_OFFSET,
563 .nr_irqs = 64,
564 .device_interrupt = dp264_device_interrupt,
566 .init_arch = tsunami_init_arch,
567 .init_irq = dp264_init_irq,
568 .init_rtc = common_init_rtc,
569 .init_pci = dp264_init_pci,
570 .kill_arch = tsunami_kill_arch,
571 .pci_map_irq = dp264_map_irq,
572 .pci_swizzle = common_swizzle,
574 ALIAS_MV(dp264)
576 struct alpha_machine_vector monet_mv __initmv = {
577 .vector_name = "Monet",
578 DO_EV6_MMU,
579 DO_DEFAULT_RTC,
580 DO_TSUNAMI_IO,
581 .machine_check = tsunami_machine_check,
582 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
583 .min_io_address = DEFAULT_IO_BASE,
584 .min_mem_address = DEFAULT_MEM_BASE,
585 .pci_dac_offset = TSUNAMI_DAC_OFFSET,
587 .nr_irqs = 64,
588 .device_interrupt = dp264_device_interrupt,
590 .init_arch = tsunami_init_arch,
591 .init_irq = dp264_init_irq,
592 .init_rtc = common_init_rtc,
593 .init_pci = monet_init_pci,
594 .kill_arch = tsunami_kill_arch,
595 .pci_map_irq = monet_map_irq,
596 .pci_swizzle = monet_swizzle,
599 struct alpha_machine_vector webbrick_mv __initmv = {
600 .vector_name = "Webbrick",
601 DO_EV6_MMU,
602 DO_DEFAULT_RTC,
603 DO_TSUNAMI_IO,
604 .machine_check = tsunami_machine_check,
605 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
606 .min_io_address = DEFAULT_IO_BASE,
607 .min_mem_address = DEFAULT_MEM_BASE,
608 .pci_dac_offset = TSUNAMI_DAC_OFFSET,
610 .nr_irqs = 64,
611 .device_interrupt = dp264_device_interrupt,
613 .init_arch = webbrick_init_arch,
614 .init_irq = dp264_init_irq,
615 .init_rtc = common_init_rtc,
616 .init_pci = common_init_pci,
617 .kill_arch = tsunami_kill_arch,
618 .pci_map_irq = webbrick_map_irq,
619 .pci_swizzle = common_swizzle,
622 struct alpha_machine_vector clipper_mv __initmv = {
623 .vector_name = "Clipper",
624 DO_EV6_MMU,
625 DO_DEFAULT_RTC,
626 DO_TSUNAMI_IO,
627 .machine_check = tsunami_machine_check,
628 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
629 .min_io_address = DEFAULT_IO_BASE,
630 .min_mem_address = DEFAULT_MEM_BASE,
631 .pci_dac_offset = TSUNAMI_DAC_OFFSET,
633 .nr_irqs = 64,
634 .device_interrupt = dp264_device_interrupt,
636 .init_arch = tsunami_init_arch,
637 .init_irq = clipper_init_irq,
638 .init_rtc = common_init_rtc,
639 .init_pci = clipper_init_pci,
640 .kill_arch = tsunami_kill_arch,
641 .pci_map_irq = clipper_map_irq,
642 .pci_swizzle = common_swizzle,
645 /* Sharks strongly resemble Clipper, at least as far
646 * as interrupt routing, etc, so we're using the
647 * same functions as Clipper does
650 struct alpha_machine_vector shark_mv __initmv = {
651 .vector_name = "Shark",
652 DO_EV6_MMU,
653 DO_DEFAULT_RTC,
654 DO_TSUNAMI_IO,
655 .machine_check = tsunami_machine_check,
656 .max_isa_dma_address = ALPHA_MAX_ISA_DMA_ADDRESS,
657 .min_io_address = DEFAULT_IO_BASE,
658 .min_mem_address = DEFAULT_MEM_BASE,
659 .pci_dac_offset = TSUNAMI_DAC_OFFSET,
661 .nr_irqs = 64,
662 .device_interrupt = dp264_device_interrupt,
664 .init_arch = tsunami_init_arch,
665 .init_irq = clipper_init_irq,
666 .init_rtc = common_init_rtc,
667 .init_pci = common_init_pci,
668 .kill_arch = tsunami_kill_arch,
669 .pci_map_irq = clipper_map_irq,
670 .pci_swizzle = common_swizzle,
673 /* No alpha_mv alias for webbrick/monet/clipper, since we compile them
674 in unconditionally with DP264; setup_arch knows how to cope. */