ramips: rt305x: remove CONFIG_MTD_PARTITION ifdefery from machine files
[openwrt/staging/chunkeey.git] / target / linux / ramips / files / arch / mips / ralink / rt305x / mach-mofi3500-3gn.c
1 /*
2 * MoFi Network MOFI3500-3GN board support
3 *
4 * Copyright (C) 2011 Layne Edwards <ledwards76@gmail.com>
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
17 #include <asm/mach-ralink/machine.h>
18 #include <asm/mach-ralink/dev-gpio-buttons.h>
19 #include <asm/mach-ralink/dev-gpio-leds.h>
20 #include <asm/mach-ralink/rt305x.h>
21 #include <asm/mach-ralink/rt305x_regs.h>
22
23 #include "devices.h"
24
25 #define MOFI3500_3GN_GPIO_LED_USB 8
26 #define MOFI3500_3GN_GPIO_LED_3G 11
27 #define MOFI3500_3GN_GPIO_LED_STATUS 12
28 #define MOFI3500_3GN_GPIO_LED_WPS 14
29
30 #define MOFI3500_3GN_GPIO_BUTTON_RESET 10
31 #define MOFI3500_3GN_GPIO_BUTTON_CONNECT 7
32 #define MOFI3500_3GN_GPIO_BUTTON_WPS 0
33
34 #define MOFI3500_3GN_BUTTONS_POLL_INTERVAL 20
35
36 static struct mtd_partition mofi3500_3gn_partitions[] = {
37 {
38 .name = "u-boot",
39 .offset = 0,
40 .size = 0x030000,
41 .mask_flags = MTD_WRITEABLE,
42 }, {
43 .name = "config",
44 .offset = 0x030000,
45 .size = 0x010000,
46 .mask_flags = MTD_WRITEABLE,
47 }, {
48 .name = "factory",
49 .offset = 0x040000,
50 .size = 0x010000,
51 .mask_flags = MTD_WRITEABLE,
52 }, {
53 .name = "kernel",
54 .offset = 0x050000,
55 .size = 0x0d0000,
56 }, {
57 .name = "rootfs",
58 .offset = 0x120000,
59 .size = 0x6e0000,
60 }, {
61 .name = "firmware",
62 .offset = 0x050000,
63 .size = 0x7b0000,
64 }
65 };
66
67 static struct physmap_flash_data mofi3500_3gn_flash_data = {
68 .nr_parts = ARRAY_SIZE(mofi3500_3gn_partitions),
69 .parts = mofi3500_3gn_partitions,
70 };
71
72 static struct gpio_led mofi3500_3gn_leds_gpio[] __initdata = {
73 {
74 .name = "mofi3500-3gn:green:usb",
75 .gpio = MOFI3500_3GN_GPIO_LED_USB,
76 .active_low = 1,
77 }, {
78 .name = "mofi3500-3gn:green:3g",
79 .gpio = MOFI3500_3GN_GPIO_LED_3G,
80 .active_low = 1,
81 }, {
82 .name = "mofi3500-3gn:green:status",
83 .gpio = MOFI3500_3GN_GPIO_LED_STATUS,
84 .active_low = 1,
85 }, {
86 .name = "mofi3500-3gn:green:wps",
87 .gpio = MOFI3500_3GN_GPIO_LED_WPS,
88 .active_low = 1,
89 }
90 };
91
92 static struct gpio_button mofi3500_3gn_gpio_buttons[] __initdata = {
93 {
94 .desc = "reset",
95 .type = EV_KEY,
96 .code = KEY_RESTART,
97 .threshold = 3,
98 .gpio = MOFI3500_3GN_GPIO_BUTTON_RESET,
99 .active_low = 1,
100 }, {
101 .desc = "connect",
102 .type = EV_KEY,
103 .code = KEY_CONNECT,
104 .threshold = 3,
105 .gpio = MOFI3500_3GN_GPIO_BUTTON_CONNECT,
106 .active_low = 1,
107 }, {
108 .desc = "wps",
109 .type = EV_KEY,
110 .code = KEY_WPS_BUTTON,
111 .threshold = 3,
112 .gpio = MOFI3500_3GN_GPIO_BUTTON_WPS,
113 .active_low = 1,
114 }
115 };
116
117 #define MOFI3500_3GN_GPIO_MODE \
118 ((RT305X_GPIO_MODE_GPIO << RT305X_GPIO_MODE_UART0_SHIFT) | \
119 RT305X_GPIO_MODE_MDIO)
120
121 static void __init mofi3500_3gn_init(void)
122 {
123 rt305x_gpio_init(MOFI3500_3GN_GPIO_MODE);
124
125 rt305x_register_flash(0, &mofi3500_3gn_flash_data);
126 rt305x_esw_data.vlan_config = RT305X_ESW_VLAN_CONFIG_LLLLW;
127 rt305x_register_ethernet();
128 ramips_register_gpio_leds(-1, ARRAY_SIZE(mofi3500_3gn_leds_gpio),
129 mofi3500_3gn_leds_gpio);
130 ramips_register_gpio_buttons(-1, MOFI3500_3GN_BUTTONS_POLL_INTERVAL,
131 ARRAY_SIZE(mofi3500_3gn_gpio_buttons),
132 mofi3500_3gn_gpio_buttons);
133 rt305x_register_wifi();
134 rt305x_register_wdt();
135 rt305x_register_usb();
136 }
137
138 MIPS_MACHINE(RAMIPS_MACH_MOFI3500_3GN, "MOFI3500-3GN", "MoFi Network MOFI3500-3GN",
139 mofi3500_3gn_init);