2 * Atheros PB44 board support
4 * Copyright (C) 2009 Gabor Juhos <juhosg@openwrt.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
11 #include <linux/init.h>
12 #include <linux/bitops.h>
13 #include <linux/input.h>
14 #include <linux/platform_device.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
18 #include <asm/mips_machine.h>
19 #include <asm/mach-ar71xx/ar71xx.h>
20 #include <asm/mach-ar71xx/pci.h>
24 static struct spi_board_info pb44_spi_info
[] = {
28 .max_speed_hz
= 25000000,
33 static struct ar71xx_pci_irq pb44_pci_irqs
[] __initdata
= {
37 .irq
= AR71XX_PCI_IRQ_DEV0
,
41 .irq
= AR71XX_PCI_IRQ_DEV1
,
45 .irq
= AR71XX_PCI_IRQ_DEV2
,
49 #define PB44_WAN_PHYMASK BIT(0)
50 #define PB44_LAN_PHYMASK 0
51 #define PB44_MDIO_PHYMASK (PB44_LAN_PHYMASK | PB44_WAN_PHYMASK)
53 static void __init
pb44_init(void)
55 ar71xx_add_device_spi(NULL
, pb44_spi_info
,
56 ARRAY_SIZE(pb44_spi_info
));
58 ar71xx_add_device_mdio(~PB44_MDIO_PHYMASK
);
60 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
61 ar71xx_eth0_data
.phy_mask
= PB44_WAN_PHYMASK
;
63 ar71xx_add_device_eth(0);
65 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RGMII
;
66 ar71xx_eth1_data
.phy_mask
= PB44_LAN_PHYMASK
;
67 ar71xx_eth1_data
.speed
= SPEED_1000
;
68 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
70 ar71xx_add_device_eth(1);
72 ar71xx_add_device_usb();
74 ar71xx_pci_init(ARRAY_SIZE(pb44_pci_irqs
), pb44_pci_irqs
);
76 /* TODO: GPIO LEDs & buttons */
79 MIPS_MACHINE(AR71XX_MACH_PB44
, "Atheros PB44", pb44_init
);