ar71xx: initialize PCI controller on the Bullet M
authorGabor Juhos <juhosg@openwrt.org>
Thu, 1 Oct 2009 19:41:11 +0000 (19:41 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Thu, 1 Oct 2009 19:41:11 +0000 (19:41 +0000)
SVN-Revision: 17812

target/linux/ar71xx/files/arch/mips/ar71xx/mach-ubnt.c

index ff32302fc70aa474874711dcc81a40f34a3eed9b..177b264632da674dca0d596122b7cf334a60fbce 100644 (file)
@@ -244,6 +244,14 @@ static void __init ubnt_lssr71_setup(void)
 
 MIPS_MACHINE(AR71XX_MACH_UBNT_LSSR71, "Ubiquiti LS-SR71", ubnt_lssr71_setup);
 
+static struct ar71xx_pci_irq ubnt_bullet_m_pci_irqs[] __initdata = {
+       {
+               .slot   = 0,
+               .pin    = 1,
+               .irq    = AR71XX_PCI_IRQ_DEV0,
+       }
+};
+
 static void __init ubnt_bullet_m_setup(void)
 {
        u8 *mac = (u8 *) KSEG1ADDR(0x1fff0000);
@@ -268,6 +276,9 @@ static void __init ubnt_bullet_m_setup(void)
        ar71xx_add_device_gpio_buttons(-1, UBNT_BUTTONS_POLL_INTERVAL,
                                        ARRAY_SIZE(ubnt_bullet_m_gpio_buttons),
                                        ubnt_bullet_m_gpio_buttons);
+
+       ar71xx_pci_init(ARRAY_SIZE(ubnt_bullet_m_pci_irqs),
+                       ubnt_bullet_m_pci_irqs);
 }
 
 MIPS_MACHINE(AR71XX_MACH_UBNT_BULLET_M, "Ubiquiti Bullet M", ubnt_bullet_m_setup);