ar71xx: add support for RB mAP L-2nD
[openwrt/staging/wigyori.git] / target / linux / ar71xx / files / arch / mips / ath79 / mach-wzr-hp-g300nh2.c
1 /*
2 * Buffalo WZR-HP-G300NH2 board support
3 *
4 * Copyright (C) 2011 Felix Fietkau <nbd@nbd.name>
5 * Copyright (C) 2011 Mark Deneen <mdeneen@gmail.com>
6 *
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.
10 */
11
12 #include <linux/gpio.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15
16 #include <asm/mach-ath79/ath79.h>
17
18 #include "dev-ap9x-pci.h"
19 #include "dev-eth.h"
20 #include "dev-gpio-buttons.h"
21 #include "dev-leds-gpio.h"
22 #include "dev-m25p80.h"
23 #include "dev-usb.h"
24 #include "machtypes.h"
25
26 #define WZRHPG300NH2_MAC_OFFSET 0x20c
27 #define WZRHPG300NH2_KEYS_POLL_INTERVAL 20 /* msecs */
28 #define WZRHPG300NH2_KEYS_DEBOUNCE_INTERVAL (3 * WZRHPG300NH2_KEYS_POLL_INTERVAL)
29
30 static struct mtd_partition wzrhpg300nh2_flash_partitions[] = {
31 {
32 .name = "u-boot",
33 .offset = 0,
34 .size = 0x0040000,
35 .mask_flags = MTD_WRITEABLE,
36 }, {
37 .name = "u-boot-env",
38 .offset = 0x0040000,
39 .size = 0x0010000,
40 .mask_flags = MTD_WRITEABLE,
41 }, {
42 .name = "art",
43 .offset = 0x0050000,
44 .size = 0x0010000,
45 .mask_flags = MTD_WRITEABLE,
46 }, {
47 .name = "firmware",
48 .offset = 0x0060000,
49 .size = 0x1f90000,
50 }, {
51 .name = "user_property",
52 .offset = 0x1ff0000,
53 .size = 0x0010000,
54 .mask_flags = MTD_WRITEABLE,
55 }
56 };
57
58 static struct flash_platform_data wzrhpg300nh2_flash_data = {
59 .parts = wzrhpg300nh2_flash_partitions,
60 .nr_parts = ARRAY_SIZE(wzrhpg300nh2_flash_partitions),
61 };
62
63 static struct gpio_led wzrhpg300nh2_leds_gpio[] __initdata = {
64 {
65 .name = "buffalo:red:diag",
66 .gpio = 16,
67 .active_low = 1,
68 },
69 };
70
71 static struct gpio_led wzrhpg300nh2_wmac_leds_gpio[] = {
72 {
73 .name = "buffalo:blue:usb",
74 .gpio = 4,
75 .active_low = 1,
76 },
77 {
78 .name = "buffalo:orange:security",
79 .gpio = 6,
80 .active_low = 1,
81 },
82 {
83 .name = "buffalo:green:router",
84 .gpio = 7,
85 .active_low = 1,
86 },
87 {
88 .name = "buffalo:blue:movie_engine_on",
89 .gpio = 8,
90 .active_low = 1,
91 },
92 {
93 .name = "buffalo:blue:movie_engine_off",
94 .gpio = 9,
95 .active_low = 1,
96 },
97 };
98
99 /* The AOSS button is wmac gpio 12 */
100 static struct gpio_keys_button wzrhpg300nh2_gpio_keys[] __initdata = {
101 {
102 .desc = "reset",
103 .type = EV_KEY,
104 .code = KEY_RESTART,
105 .debounce_interval = WZRHPG300NH2_KEYS_DEBOUNCE_INTERVAL,
106 .gpio = 1,
107 .active_low = 1,
108 }, {
109 .desc = "usb",
110 .type = EV_KEY,
111 .code = BTN_2,
112 .debounce_interval = WZRHPG300NH2_KEYS_DEBOUNCE_INTERVAL,
113 .gpio = 7,
114 .active_low = 1,
115 }, {
116 .desc = "qos",
117 .type = EV_KEY,
118 .code = BTN_3,
119 .debounce_interval = WZRHPG300NH2_KEYS_DEBOUNCE_INTERVAL,
120 .gpio = 11,
121 .active_low = 0,
122 }, {
123 .desc = "router_on",
124 .type = EV_KEY,
125 .code = BTN_5,
126 .debounce_interval = WZRHPG300NH2_KEYS_DEBOUNCE_INTERVAL,
127 .gpio = 8,
128 .active_low = 0,
129 },
130 };
131
132 static void __init wzrhpg300nh2_setup(void)
133 {
134
135 u8 *eeprom = (u8 *) KSEG1ADDR(0x1f051000);
136 u8 *mac0 = eeprom + WZRHPG300NH2_MAC_OFFSET;
137 /* There is an eth1 but it is not connected to the switch */
138
139 ath79_register_m25p80_multi(&wzrhpg300nh2_flash_data);
140
141 ath79_init_mac(ath79_eth0_data.mac_addr, mac0, 0);
142 ath79_register_mdio(0, ~(BIT(0)));
143
144 ath79_init_mac(ath79_eth0_data.mac_addr, mac0, 0);
145 ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII;
146 ath79_eth0_data.speed = SPEED_1000;
147 ath79_eth0_data.duplex = DUPLEX_FULL;
148 ath79_eth0_data.phy_mask = BIT(0);
149
150 ath79_register_eth(0);
151
152 /* gpio13 is usb power. Turn it on. */
153 gpio_request_one(13, GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
154 "USB power");
155 ath79_register_usb();
156
157 ath79_register_leds_gpio(-1, ARRAY_SIZE(wzrhpg300nh2_leds_gpio),
158 wzrhpg300nh2_leds_gpio);
159 ath79_register_gpio_keys_polled(-1, WZRHPG300NH2_KEYS_POLL_INTERVAL,
160 ARRAY_SIZE(wzrhpg300nh2_gpio_keys),
161 wzrhpg300nh2_gpio_keys);
162 ap9x_pci_setup_wmac_led_pin(0, 5);
163 ap9x_pci_setup_wmac_leds(0, wzrhpg300nh2_wmac_leds_gpio,
164 ARRAY_SIZE(wzrhpg300nh2_wmac_leds_gpio));
165
166 ap91_pci_init(eeprom, mac0);
167 }
168
169 MIPS_MACHINE(ATH79_MACH_WZR_HP_G300NH2, "WZR-HP-G300NH2",
170 "Buffalo WZR-HP-G300NH2", wzrhpg300nh2_setup);