ar71xx: populate LED3 on the JA76PF board
[openwrt/staging/yousong.git] / target / linux / ar71xx / files / arch / mips / ar71xx / mach-ja76pf.c
1 /*
2 * jjPlus JA76PF board support
3 */
4
5 #include <asm/mach-ar71xx/ar71xx.h>
6 #include <linux/platform_device.h>
7 #include <linux/i2c.h>
8 #include <linux/i2c-gpio.h>
9
10 #include "machtype.h"
11 #include "devices.h"
12 #include "dev-m25p80.h"
13 #include "dev-gpio-buttons.h"
14 #include "dev-pb42-pci.h"
15 #include "dev-usb.h"
16 #include "dev-leds-gpio.h"
17
18 #define JA76PF_KEYS_POLL_INTERVAL 20 /* msecs */
19 #define JA76PF_KEYS_DEBOUNCE_INTERVAL (3 * JA76PF_KEYS_POLL_INTERVAL)
20
21 #define JA76PF_GPIO_I2C_SCL 0
22 #define JA76PF_GPIO_I2C_SDA 1
23 #define JA76PF_GPIO_LED_1 5
24 #define JA76PF_GPIO_LED_2 4
25 #define JA76PF_GPIO_LED_3 3
26 #define JA76PF_GPIO_BTN_RESET 11
27
28 static struct gpio_led ja76pf_leds_gpio[] __initdata = {
29 {
30 .name = "ja76pf:green:led1",
31 .gpio = JA76PF_GPIO_LED_1,
32 .active_low = 1,
33 }, {
34 .name = "ja76pf:green:led2",
35 .gpio = JA76PF_GPIO_LED_2,
36 .active_low = 1,
37 }, {
38 .name = "ja76pf:green:led3",
39 .gpio = JA76PF_GPIO_LED_3,
40 .active_low = 1,
41 }
42 };
43
44 static struct gpio_keys_button ja76pf_gpio_keys[] __initdata = {
45 {
46 .desc = "reset",
47 .type = EV_KEY,
48 .code = KEY_RESTART,
49 .debounce_interval = JA76PF_KEYS_DEBOUNCE_INTERVAL,
50 .gpio = JA76PF_GPIO_BTN_RESET,
51 .active_low = 1,
52 }
53 };
54
55 static struct i2c_gpio_platform_data ja76pf_i2c_gpio_data = {
56 .sda_pin = JA76PF_GPIO_I2C_SDA,
57 .scl_pin = JA76PF_GPIO_I2C_SCL,
58 };
59
60 static struct platform_device ja76pf_i2c_gpio_device = {
61 .name = "i2c-gpio",
62 .id = 0,
63 .dev = {
64 .platform_data = &ja76pf_i2c_gpio_data,
65 }
66 };
67
68 #define JA76PF_WAN_PHYMASK (1 << 4)
69 #define JA76PF_LAN_PHYMASK ((1 << 0) | (1 << 1) | (1 << 2) | (1 < 3))
70 #define JA76PF_MDIO_PHYMASK (JA76PF_LAN_PHYMASK | JA76PF_WAN_PHYMASK)
71
72 static void __init ja76pf_init(void)
73 {
74 ar71xx_add_device_m25p80(NULL);
75
76 ar71xx_add_device_mdio(~JA76PF_MDIO_PHYMASK);
77
78 ar71xx_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
79 ar71xx_eth0_data.phy_mask = JA76PF_LAN_PHYMASK;
80
81 ar71xx_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
82 ar71xx_eth1_data.phy_mask = JA76PF_WAN_PHYMASK;
83 ar71xx_eth1_data.speed = SPEED_1000;
84 ar71xx_eth1_data.duplex = DUPLEX_FULL;
85
86 ar71xx_add_device_eth(0);
87 ar71xx_add_device_eth(1);
88
89 platform_device_register(&ja76pf_i2c_gpio_device);
90
91 ar71xx_add_device_leds_gpio(-1, ARRAY_SIZE(ja76pf_leds_gpio),
92 ja76pf_leds_gpio);
93
94 ar71xx_register_gpio_keys_polled(-1, JA76PF_KEYS_POLL_INTERVAL,
95 ARRAY_SIZE(ja76pf_gpio_keys),
96 ja76pf_gpio_keys);
97
98 ar71xx_add_device_usb();
99 pb42_pci_init();
100 }
101
102 MIPS_MACHINE(AR71XX_MACH_JA76PF, "JA76PF", "jjPlus JA76PF", ja76pf_init);