2 * Linksys WRT160NL 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/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
14 #include <asm/mach-ar71xx/ar71xx.h>
18 #include "dev-m25p80.h"
19 #include "dev-ar913x-wmac.h"
20 #include "dev-gpio-buttons.h"
21 #include "dev-leds-gpio.h"
24 #define WRT160NL_GPIO_LED_POWER 14
25 #define WRT160NL_GPIO_LED_WPS_AMBER 9
26 #define WRT160NL_GPIO_LED_WPS_BLUE 8
27 #define WRT160NL_GPIO_LED_WLAN 6
29 #define WRT160NL_GPIO_BTN_WPS 7
30 #define WRT160NL_GPIO_BTN_RESET 21
32 #define WRT160NL_BUTTONS_POLL_INTERVAL 20
34 #ifdef CONFIG_MTD_PARTITIONS
35 static struct mtd_partition wrt160nl_partitions
[] = {
40 .mask_flags
= MTD_WRITEABLE
,
53 .mask_flags
= MTD_WRITEABLE
,
58 .mask_flags
= MTD_WRITEABLE
,
65 #endif /* CONFIG_MTD_PARTITIONS */
67 static struct flash_platform_data wrt160nl_flash_data
= {
68 #ifdef CONFIG_MTD_PARTITIONS
69 .parts
= wrt160nl_partitions
,
70 .nr_parts
= ARRAY_SIZE(wrt160nl_partitions
),
74 static struct gpio_led wrt160nl_leds_gpio
[] __initdata
= {
76 .name
= "wrt160nl:blue:power",
77 .gpio
= WRT160NL_GPIO_LED_POWER
,
79 .default_trigger
= "default-on",
81 .name
= "wrt160nl:amber:wps",
82 .gpio
= WRT160NL_GPIO_LED_WPS_AMBER
,
85 .name
= "wrt160nl:blue:wps",
86 .gpio
= WRT160NL_GPIO_LED_WPS_BLUE
,
89 .name
= "wrt160nl:blue:wlan",
90 .gpio
= WRT160NL_GPIO_LED_WLAN
,
95 static struct gpio_button wrt160nl_gpio_buttons
[] __initdata
= {
101 .gpio
= WRT160NL_GPIO_BTN_RESET
,
108 .gpio
= WRT160NL_GPIO_BTN_WPS
,
113 static void __init
wrt160nl_setup(void)
115 ar71xx_add_device_mdio(0x0);
117 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
118 ar71xx_eth0_data
.phy_mask
= 0x01;
120 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
121 ar71xx_eth1_data
.phy_mask
= 0x10;
123 ar71xx_add_device_eth(0);
124 ar71xx_add_device_eth(1);
126 ar71xx_add_device_m25p80(&wrt160nl_flash_data
);
128 ar71xx_add_device_usb();
129 ar913x_add_device_wmac();
131 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wrt160nl_leds_gpio
),
134 ar71xx_add_device_gpio_buttons(-1, WRT160NL_BUTTONS_POLL_INTERVAL
,
135 ARRAY_SIZE(wrt160nl_gpio_buttons
),
136 wrt160nl_gpio_buttons
);
139 MIPS_MACHINE(AR71XX_MACH_WRT160NL
, "Linksys WRT160NL", wrt160nl_setup
);