| 1 | /* |
| 2 | * Atheros PB9x reference board PCI initialization |
| 3 | * |
| 4 | * Copyright (C) 2010 Felix Fietkau <nbd@openwrt.org> |
| 5 | * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org> |
| 6 | * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org> |
| 7 | * |
| 8 | * Parts of this file are based on Atheros' 2.6.15 BSP |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify it |
| 11 | * under the terms of the GNU General Public License version 2 as published |
| 12 | * by the Free Software Foundation. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/pci.h> |
| 16 | |
| 17 | #include <asm/mach-ar71xx/ar71xx.h> |
| 18 | #include <asm/mach-ar71xx/pci.h> |
| 19 | |
| 20 | #include "dev-pb9x-pci.h" |
| 21 | |
| 22 | static struct ar71xx_pci_irq pb9x_pci_irqs[] __initdata = { |
| 23 | { |
| 24 | .slot = 0, |
| 25 | .pin = 1, |
| 26 | .irq = AR71XX_PCI_IRQ_DEV0, |
| 27 | } |
| 28 | }; |
| 29 | |
| 30 | void __init pb9x_pci_init(void) |
| 31 | { |
| 32 | ar71xx_pci_init(ARRAY_SIZE(pb9x_pci_irqs), pb9x_pci_irqs); |
| 33 | } |
| 34 | |