6a07697f0ddcdde023fcd11bde3d04e220b4bdcf
[openwrt/openwrt.git] / target / linux / ar71xx / files / arch / mips / ar71xx / pci.c
1 /*
2 * Atheros AR71xx PCI setup code
3 *
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
6 *
7 * Parts of this file are based on Atheros' 2.6.15 BSP
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 */
13
14 #include <linux/kernel.h>
15
16 #include <asm/traps.h>
17
18 #include <asm/mach-ar71xx/ar71xx.h>
19 #include <asm/mach-ar71xx/pci.h>
20
21 unsigned ar71xx_pci_nr_irqs __initdata;
22 struct ar71xx_pci_irq *ar71xx_pci_irq_map __initdata;
23
24 int (*ar71xx_pci_plat_dev_init)(struct pci_dev *dev);
25
26 static int ar71xx_be_handler(struct pt_regs *regs, int is_fixup)
27 {
28 int err = 0;
29
30 err = ar71xx_pci_be_handler(is_fixup);
31
32 return (is_fixup && !err) ? MIPS_BE_FIXUP : MIPS_BE_FATAL;
33 }
34
35 int pcibios_plat_dev_init(struct pci_dev *dev)
36 {
37 if (ar71xx_pci_plat_dev_init)
38 return ar71xx_pci_plat_dev_init(dev);
39
40 return 0;
41 }
42
43 int __init pcibios_map_irq(const struct pci_dev *dev, uint8_t slot, uint8_t pin)
44 {
45 int ret = 0;
46
47 switch (ar71xx_soc) {
48 case AR71XX_SOC_AR7130:
49 case AR71XX_SOC_AR7141:
50 case AR71XX_SOC_AR7161:
51 ret = ar71xx_pcibios_map_irq(dev, slot, pin);
52 break;
53
54 case AR71XX_SOC_AR7240:
55 ret = ar724x_pcibios_map_irq(dev, slot, pin);
56 break;
57
58 default:
59 break;
60 }
61
62 return ret;
63 }
64
65 int __init ar71xx_pci_init(unsigned nr_irqs, struct ar71xx_pci_irq *map)
66 {
67 int ret = 0;
68
69 switch (ar71xx_soc) {
70 case AR71XX_SOC_AR7130:
71 case AR71XX_SOC_AR7141:
72 case AR71XX_SOC_AR7161:
73 board_be_handler = ar71xx_be_handler;
74 ret = ar71xx_pcibios_init();
75 break;
76
77 case AR71XX_SOC_AR7240:
78 ret = ar724x_pcibios_init();
79 break;
80
81 default:
82 return 0;
83 }
84
85 ar71xx_pci_nr_irqs = nr_irqs;
86 ar71xx_pci_irq_map = map;
87
88 return ret;
89 }