2 * AzureWave AW-NR580 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/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/spi/spi.h>
16 #include <linux/spi/flash.h>
17 #include <linux/input.h>
19 #include <asm/mips_machine.h>
20 #include <asm/mach-ar71xx/ar71xx.h>
21 #include <asm/mach-ar71xx/pci.h>
25 #define AW_NR580_GPIO_BTN_WPS 3
26 #define AW_NR580_GPIO_BTN_RESET 11
28 #define AW_NR580_BUTTONS_POLL_INTERVAL 20
30 static struct spi_board_info aw_nr580_spi_info
[] = {
34 .max_speed_hz
= 25000000,
39 static struct gpio_button aw_nr580_gpio_buttons
[] __initdata
= {
45 .gpio
= AW_NR580_GPIO_BTN_RESET
,
52 .gpio
= AW_NR580_GPIO_BTN_WPS
,
57 static void __init
aw_nr580_setup(void)
59 ar71xx_add_device_mdio(0x0);
61 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_MII
;
62 ar71xx_eth0_data
.phy_mask
= 0xf;
63 ar71xx_eth0_data
.speed
= SPEED_100
;
64 ar71xx_eth0_data
.duplex
= DUPLEX_FULL
;
66 ar71xx_add_device_eth(0);
68 ar71xx_add_device_spi(NULL
, aw_nr580_spi_info
,
69 ARRAY_SIZE(aw_nr580_spi_info
));
71 ar71xx_add_device_gpio_buttons(-1, AW_NR580_BUTTONS_POLL_INTERVAL
,
72 ARRAY_SIZE(aw_nr580_gpio_buttons
),
73 aw_nr580_gpio_buttons
);
76 MIPS_MACHINE(AR71XX_MACH_AW_NR580
, "AzureWave AW-NR580", aw_nr580_setup
);