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/platform_device.h>
12 #include <linux/mtd/mtd.h>
13 #include <linux/mtd/partitions.h>
14 #include <linux/input.h>
16 #include <asm/mips_machine.h>
17 #include <asm/mach-ar71xx/ar71xx.h>
20 #include "dev-m25p80.h"
22 #define WRT160NL_GPIO_LED_POWER 14
23 #define WRT160NL_GPIO_LED_WPS_AMBER 9
24 #define WRT160NL_GPIO_LED_WPS_BLUE 8
25 #define WRT160NL_GPIO_LED_WLAN 6
27 #define WRT160NL_GPIO_BTN_WPS 7
28 #define WRT160NL_GPIO_BTN_RESET 21
30 #define WRT160NL_BUTTONS_POLL_INTERVAL 20
32 #ifdef CONFIG_MTD_PARTITIONS
33 static struct mtd_partition wrt160nl_partitions
[] = {
38 .mask_flags
= MTD_WRITEABLE
,
51 .mask_flags
= MTD_WRITEABLE
,
56 .mask_flags
= MTD_WRITEABLE
,
63 #endif /* CONFIG_MTD_PARTITIONS */
65 static struct flash_platform_data wrt160nl_flash_data
= {
66 #ifdef CONFIG_MTD_PARTITIONS
67 .parts
= wrt160nl_partitions
,
68 .nr_parts
= ARRAY_SIZE(wrt160nl_partitions
),
72 static struct gpio_led wrt160nl_leds_gpio
[] __initdata
= {
74 .name
= "wrt160nl:blue:power",
75 .gpio
= WRT160NL_GPIO_LED_POWER
,
77 .default_trigger
= "default-on",
79 .name
= "wrt160nl:amber:wps",
80 .gpio
= WRT160NL_GPIO_LED_WPS_AMBER
,
83 .name
= "wrt160nl:blue:wps",
84 .gpio
= WRT160NL_GPIO_LED_WPS_BLUE
,
87 .name
= "wrt160nl:blue:wlan",
88 .gpio
= WRT160NL_GPIO_LED_WLAN
,
93 static struct gpio_button wrt160nl_gpio_buttons
[] __initdata
= {
99 .gpio
= WRT160NL_GPIO_BTN_RESET
,
106 .gpio
= WRT160NL_GPIO_BTN_WPS
,
111 static void __init
wrt160nl_setup(void)
113 ar71xx_add_device_mdio(0x0);
115 ar71xx_eth0_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
116 ar71xx_eth0_data
.phy_mask
= 0x01;
118 ar71xx_eth1_data
.phy_if_mode
= PHY_INTERFACE_MODE_RMII
;
119 ar71xx_eth1_data
.phy_mask
= 0x10;
121 ar71xx_add_device_eth(0);
122 ar71xx_add_device_eth(1);
124 ar71xx_add_device_m25p80(&wrt160nl_flash_data
);
126 ar71xx_add_device_usb();
127 ar91xx_add_device_wmac();
129 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(wrt160nl_leds_gpio
),
132 ar71xx_add_device_gpio_buttons(-1, WRT160NL_BUTTONS_POLL_INTERVAL
,
133 ARRAY_SIZE(wrt160nl_gpio_buttons
),
134 wrt160nl_gpio_buttons
);
137 MIPS_MACHINE(AR71XX_MACH_WRT160NL
, "Linksys WRT160NL", wrt160nl_setup
);