ramips: build sysupgrade image for the V11ST-FE board
[openwrt/svn-archive/archive.git] / target / linux / ramips / files / arch / mips / ralink / rt288x / mach-rt-n15.c
1 /*
2 * Asus RT-N15 board support
3 *
4 * Copyright (C) 2009-2010 Gabor Juhos <juhosg@openwrt.org>
5 *
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.
9 */
10
11 #include <linux/init.h>
12 #include <linux/platform_device.h>
13 #include <linux/mtd/mtd.h>
14 #include <linux/mtd/partitions.h>
15 #include <linux/mtd/physmap.h>
16 #include <linux/rtl8366.h>
17 #include <linux/ethtool.h>
18
19 #include <asm/mach-ralink/machine.h>
20 #include <asm/mach-ralink/dev-gpio-buttons.h>
21 #include <asm/mach-ralink/dev-gpio-leds.h>
22 #include <asm/mach-ralink/rt288x.h>
23 #include <asm/mach-ralink/rt288x_regs.h>
24 #include <asm/mach-ralink/ramips_eth_platform.h>
25
26 #include "devices.h"
27
28 #define RT_N15_GPIO_LED_POWER 11
29 #define RT_N15_GPIO_BUTTON_WPS 0
30 #define RT_N15_GPIO_BUTTON_RESET 12
31
32 #define RT_N15_GPIO_RTL8366_SCK 2
33 #define RT_N15_GPIO_RTL8366_SDA 1
34
35 #define RT_N15_KEYS_POLL_INTERVAL 20
36 #define RT_N15_KEYS_DEBOUNCE_INTERVAL (3 * RT_N15_KEYS_POLL_INTERVAL)
37
38 static struct mtd_partition rt_n15_partitions[] = {
39 {
40 .name = "u-boot",
41 .offset = 0,
42 .size = 0x030000,
43 .mask_flags = MTD_WRITEABLE,
44 }, {
45 .name = "u-boot-env",
46 .offset = 0x030000,
47 .size = 0x010000,
48 .mask_flags = MTD_WRITEABLE,
49 }, {
50 .name = "factory",
51 .offset = 0x040000,
52 .size = 0x010000,
53 .mask_flags = MTD_WRITEABLE,
54 }, {
55 .name = "kernel",
56 .offset = 0x050000,
57 .size = 0x0d0000,
58 }, {
59 .name = "rootfs",
60 .offset = 0x120000,
61 .size = 0x2e0000,
62 }, {
63 .name = "firmware",
64 .offset = 0x050000,
65 .size = 0x3b0000,
66 }
67 };
68
69 static struct gpio_led rt_n15_leds_gpio[] __initdata = {
70 {
71 .name = "rt-n15:blue:power",
72 .gpio = RT_N15_GPIO_LED_POWER,
73 .active_low = 1,
74 }
75 };
76
77 static struct gpio_keys_button rt_n15_gpio_buttons[] __initdata = {
78 {
79 .desc = "reset",
80 .type = EV_KEY,
81 .code = KEY_RESTART,
82 .debounce_interval = RT_N15_KEYS_DEBOUNCE_INTERVAL,
83 .gpio = RT_N15_GPIO_BUTTON_RESET,
84 .active_low = 1,
85 }, {
86 .desc = "wps",
87 .type = EV_KEY,
88 .code = KEY_WPS_BUTTON,
89 .debounce_interval = RT_N15_KEYS_DEBOUNCE_INTERVAL,
90 .gpio = RT_N15_GPIO_BUTTON_WPS,
91 .active_low = 1,
92 }
93 };
94
95 static struct rtl8366_platform_data rt_n15_rtl8366s_data = {
96 .gpio_sda = RT_N15_GPIO_RTL8366_SDA,
97 .gpio_sck = RT_N15_GPIO_RTL8366_SCK,
98 };
99
100 static struct platform_device rt_n15_rtl8366s_device = {
101 .name = RTL8366S_DRIVER_NAME,
102 .id = -1,
103 .dev = {
104 .platform_data = &rt_n15_rtl8366s_data,
105 }
106 };
107
108 static void __init rt_n15_init(void)
109 {
110 rt288x_gpio_init(RT2880_GPIO_MODE_UART0 | RT2880_GPIO_MODE_I2C);
111
112 rt288x_flash0_data.nr_parts = ARRAY_SIZE(rt_n15_partitions);
113 rt288x_flash0_data.parts = rt_n15_partitions;
114 rt288x_register_flash(0);
115
116 ramips_register_gpio_leds(-1, ARRAY_SIZE(rt_n15_leds_gpio),
117 rt_n15_leds_gpio);
118
119 ramips_register_gpio_buttons(-1, RT_N15_KEYS_POLL_INTERVAL,
120 ARRAY_SIZE(rt_n15_gpio_buttons),
121 rt_n15_gpio_buttons);
122
123 platform_device_register(&rt_n15_rtl8366s_device);
124
125 rt288x_register_wifi();
126
127 rt288x_eth_data.speed = SPEED_1000;
128 rt288x_eth_data.duplex = DUPLEX_FULL;
129 rt288x_eth_data.tx_fc = 1;
130 rt288x_eth_data.rx_fc = 1;
131 rt288x_register_ethernet();
132 rt288x_register_wdt();
133 }
134
135 MIPS_MACHINE(RAMIPS_MACH_RT_N15, "RT-N15", "Asus RT-N15", rt_n15_init);