Blame view

arch/frv/mb93090-mb00/pci-irq.c 1.69 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
  /* pci-irq.c: PCI IRQ routing on the FRV motherboard
   *
   * Copyright (C) 2003 Red Hat, Inc. All Rights Reserved.
   * Written by David Howells (dhowells@redhat.com)
   * derived from: arch/i386/kernel/pci-irq.c: (c) 1999--2000 Martin Mares <mj@suse.cz>
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
  #include <linux/types.h>
  #include <linux/kernel.h>
  #include <linux/pci.h>
  #include <linux/init.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
12
13
14
15
  #include <linux/interrupt.h>
  #include <linux/irq.h>
  
  #include <asm/io.h>
  #include <asm/smp.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  
  #include "pci-frv.h"
  
  /*
   *	DEVICE	DEVNO	INT#A	INT#B	INT#C	INT#D
   *	=======	=======	=======	=======	=======	=======
   *	MB86943	0	fpga.10	-	-	-
   *	RTL8029	16	fpga.12	-	-	-
   *	SLOT 1	19	fpga.6	fpga.5	fpga.4	fpga.3
   *	SLOT 2	18	fpga.5	fpga.4	fpga.3	fpga.6
   *	SLOT 3	17	fpga.4	fpga.3	fpga.6	fpga.5
   *
   */
  
  static const uint8_t __initdata pci_bus0_irq_routing[32][4] = {
576132b42   Al Viro   [PATCH] frv: misc...
31
32
33
34
35
  	[0 ] = { IRQ_FPGA_MB86943_PCI_INTA },
  	[16] = { IRQ_FPGA_RTL8029_INTA },
  	[17] = { IRQ_FPGA_PCI_INTC, IRQ_FPGA_PCI_INTD, IRQ_FPGA_PCI_INTA, IRQ_FPGA_PCI_INTB },
  	[18] = { IRQ_FPGA_PCI_INTB, IRQ_FPGA_PCI_INTC, IRQ_FPGA_PCI_INTD, IRQ_FPGA_PCI_INTA },
  	[19] = { IRQ_FPGA_PCI_INTA, IRQ_FPGA_PCI_INTB, IRQ_FPGA_PCI_INTC, IRQ_FPGA_PCI_INTD },
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
39
40
41
42
43
44
45
  };
  
  void __init pcibios_irq_init(void)
  {
  }
  
  void __init pcibios_fixup_irqs(void)
  {
  	struct pci_dev *dev = NULL;
  	uint8_t line, pin;
3c94792f0   Jiri Slaby   [PATCH] PCI: arch...
46
  	for_each_pci_dev(dev) {
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
49
50
51
52
53
54
  		pci_read_config_byte(dev, PCI_INTERRUPT_PIN, &pin);
  		if (pin) {
  			dev->irq = pci_bus0_irq_routing[PCI_SLOT(dev->devfn)][pin - 1];
  			pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
  		}
  		pci_read_config_byte(dev, PCI_INTERRUPT_LINE, &line);
  	}
  }
8080f2312   David Howells   [PATCH] FRV: Make...
55
  void __init pcibios_penalize_isa_irq(int irq)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
56
57
58
59
60
61
62
  {
  }
  
  void pcibios_enable_irq(struct pci_dev *dev)
  {
  	pci_write_config_byte(dev, PCI_INTERRUPT_LINE, dev->irq);
  }