2 * Atheros PB42 board support
4 * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/init.h>
13 #include <linux/bitops.h>
14 #include <linux/input.h>
15 #include <linux/platform_device.h>
16 #include <linux/spi/spi.h>
17 #include <linux/spi/flash.h>
19 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
21 #include <asm/mach-ar71xx/pci.h>
25 #define PB42_BUTTONS_POLL_INTERVAL 20
27 #define PB42_GPIO_BTN_SW4 8
28 #define PB42_GPIO_BTN_SW5 3
30 static struct spi_board_info pb42_spi_info
[] = {
34 .max_speed_hz
= 25000000,
39 static struct ar71xx_pci_irq pb42_pci_irqs
[] __initdata
= {
43 .irq
= AR71XX_PCI_IRQ_DEV0
,
47 .irq
= AR71XX_PCI_IRQ_DEV1
,
51 .irq
= AR71XX_PCI_IRQ_DEV2
,
55 static struct gpio_button pb42_gpio_buttons
[] __initdata
= {
61 .gpio
= PB42_GPIO_BTN_SW4
,
68 .gpio
= PB42_GPIO_BTN_SW5
,
73 #define PB42_WAN_PHYMASK BIT(20)
74 #define PB42_LAN_PHYMASK (BIT(16) | BIT(17) | BIT(18) | BIT(19))
75 #define PB42_MDIO_PHYMASK (PB42_LAN_PHYMASK | PB42_WAN_PHYMASK)
77 static void __init
pb42_init(void)
79 ar71xx_add_device_spi(NULL
, pb42_spi_info
,
80 ARRAY_SIZE(pb42_spi_info
));
82 ar71xx_add_device_mdio(~PB42_MDIO_PHYMASK
);
84 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
85 ar71xx_eth0_data
.phy_mask
= PB42_WAN_PHYMASK
;
87 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
88 ar71xx_eth1_data
.phy_mask
= PB42_LAN_PHYMASK
;
89 ar71xx_eth1_data
.speed
= SPEED_100
;
90 ar71xx_eth1_data
.duplex
= DUPLEX_FULL
;
92 ar71xx_add_device_eth(0);
93 ar71xx_add_device_eth(1);
95 ar71xx_add_device_gpio_buttons(-1, PB42_BUTTONS_POLL_INTERVAL
,
96 ARRAY_SIZE(pb42_gpio_buttons
),
99 ar71xx_pci_init(ARRAY_SIZE(pb42_pci_irqs
), pb42_pci_irqs
);
102 MIPS_MACHINE(AR71XX_MACH_PB42
, "Atheros PB42", pb42_init
);