[rdc] convert gpio code to use gpiolib, make rdc321x:dmz led work again
[openwrt.git] / target / linux / rdc / files-2.6.30 / arch / x86 / mach-rdc321x / platform.c
1 /*
2  *  Generic RDC321x platform devices
3  *
4  *  Copyright (C) 2007-2009 OpenWrt.org
5  *  Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
6  *  Copyright (C) 2008-2009 Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
7  *
8  *  This program is free software; you can redistribute it and/or
9  *  modify it under the terms of the GNU General Public License
10  *  as published by the Free Software Foundation; either version 2
11  *  of the License, or (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the
20  *  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
21  *  Boston, MA  02110-1301, USA.
22  *
23  */
24
25 #include <linux/init.h>
26 #include <linux/kernel.h>
27 #include <linux/list.h>
28 #include <linux/device.h>
29 #include <linux/platform_device.h>
30 #include <linux/version.h>
31 #include <linux/leds.h>
32 #include <linux/gpio_keys.h>
33 #include <linux/input.h>
34 #include <linux/mtd/map.h>
35 #include <linux/mtd/mtd.h>
36 #include <linux/mtd/physmap.h>
37 #include <linux/root_dev.h>
38
39 #include <asm/rdc321x_gpio.h>
40
41 /* Flash */
42 #ifdef CONFIG_MTD_R8610
43 #define CONFIG_MTD_RDC3210 1
44 #elif defined CONFIG_MTD_RDC3210
45 static struct resource rdc_flash_resource[] = {
46         [0] = {
47                 .start = (u32)-CONFIG_MTD_RDC3210_SIZE,
48                 .end = (u32)-1,
49                 .flags = IORESOURCE_MEM,
50         },
51 };
52
53 static struct platform_device rdc_flash_device = {
54         .name = "rdc321x-flash",
55         .id = -1,
56         .num_resources = ARRAY_SIZE(rdc_flash_resource),
57         .resource = rdc_flash_resource,
58 };
59 #else
60 static struct mtd_partition rdc_flash_parts[15];
61
62 static struct resource rdc_flash_resource = {
63         .end = (u32)-1,
64         .flags = IORESOURCE_MEM,
65 };
66
67 static struct physmap_flash_data rdc_flash_data = {
68         .parts = rdc_flash_parts,
69 };
70
71 static struct platform_device rdc_flash_device = {
72         .name = "physmap-flash",
73         .id = -1,
74         .resource = &rdc_flash_resource,
75         .num_resources = 1,
76         .dev.platform_data = &rdc_flash_data,
77 };
78 #endif
79
80 /* LEDS */
81 static struct gpio_led default_leds[] = {
82         { .name = "rdc321x:dmz", .gpio = 1, .active_low = 1},
83 };
84
85 static struct gpio_led_platform_data rdc321x_led_data = {
86         .num_leds = ARRAY_SIZE(default_leds),
87         .leds = default_leds,
88 };
89
90 static struct platform_device rdc321x_leds = {
91         .name = "leds-gpio",
92         .id = -1,
93         .dev = {
94                 .platform_data = &rdc321x_led_data,
95         }
96 };
97
98 /* Watchdog */
99 static struct platform_device rdc321x_wdt = {
100         .name = "rdc321x-wdt",
101         .id = -1,
102         .num_resources = 0,
103 };
104
105 /* Button */
106 static struct gpio_keys_button rdc321x_gpio_btn[] = {
107         {
108                 .gpio = 0,
109                 .code = BTN_0,
110                 .desc = "Reset",
111                 .active_low = 1,
112         }
113 };
114
115 static struct gpio_keys_platform_data rdc321x_gpio_btn_data = {
116         .buttons = rdc321x_gpio_btn,
117         .nbuttons = ARRAY_SIZE(rdc321x_gpio_btn),
118 };
119
120 static struct platform_device rdc321x_button = {
121         .name = "gpio-keys",
122         .id = -1,
123         .dev = {
124                 .platform_data = &rdc321x_gpio_btn_data,
125         }
126 };
127
128 static struct platform_device *rdc321x_devs[] = {
129         &rdc_flash_device,
130         &rdc321x_leds,
131         &rdc321x_wdt,
132         &rdc321x_button,
133 };
134
135 static int probe_flash_start(struct map_info *the_map)
136 {
137         struct mtd_info *res;
138
139         the_map->virt = ioremap(the_map->phys, the_map->size);
140         if (the_map->virt == NULL)
141                 return 1;
142         for (the_map->bankwidth = 32; the_map->bankwidth; the_map->bankwidth
143                         >>= 1) {
144                 res = do_map_probe("cfi_probe", the_map);
145                 if (res == NULL)
146                         res = do_map_probe("jedec_probe", the_map);
147                 if (res != NULL)
148                         break;
149         }
150         iounmap(the_map->virt);
151         if (res != NULL)
152                 the_map->phys = (u32)-(s32)(the_map->size = res->size);
153         return res == NULL;
154 }
155
156 static int __init rdc_board_setup(void)
157 {
158 #ifndef CONFIG_MTD_RDC3210
159         struct map_info rdc_map_info;
160         u32 the_header[8];
161
162         ROOT_DEV = 0;
163         rdc_map_info.name = rdc_flash_device.name;
164         rdc_map_info.size = 0x800000;   //8MB
165         rdc_map_info.phys = (u32) -rdc_map_info.size;
166         rdc_map_info.bankwidth = 2;
167         rdc_map_info.set_vpp = NULL;
168         simple_map_init(&rdc_map_info);
169         while (probe_flash_start(&rdc_map_info)) {
170                 if (rdc_map_info.size /= 2 < 0x100000)  //1MB
171                         panic("Could not find start of flash!");
172                 rdc_map_info.phys = (u32) -rdc_map_info.size;
173         }
174         rdc_flash_resource.start = rdc_map_info.phys;
175         rdc_flash_data.width = rdc_map_info.bankwidth;
176         rdc_map_info.virt = ioremap_nocache(rdc_map_info.phys, 0x10);
177         if (rdc_map_info.virt == NULL)
178                 panic("Could not ioremap to read device magic!");
179         the_header[0] = ((u32 *)rdc_map_info.virt)[0];
180         the_header[1] = ((u32 *)rdc_map_info.virt)[1];
181         the_header[2] = ((u32 *)rdc_map_info.virt)[2];
182         the_header[3] = ((u32 *)rdc_map_info.virt)[3];
183         iounmap(rdc_map_info.virt);
184         rdc_map_info.virt = ioremap_nocache(rdc_map_info.phys + 0x8000, 0x10);
185         if (rdc_map_info.virt == NULL)
186                 panic("Could not ioremap to read device magic!");
187         the_header[4] = ((u32 *)rdc_map_info.virt)[0];
188         the_header[5] = ((u32 *)rdc_map_info.virt)[1];
189         the_header[6] = ((u32 *)rdc_map_info.virt)[2];
190         the_header[7] = ((u32 *)rdc_map_info.virt)[3];
191         iounmap(rdc_map_info.virt);
192         if (!memcmp(the_header, "GMTK", 4)) {   /* Gemtek */
193                 /* TODO */
194         } else if (!memcmp(the_header + 4, "CSYS", 4)) {        /* Sitecom */
195                 rdc_flash_parts[0].name = "system";
196                 rdc_flash_parts[0].offset = 0;
197                 rdc_flash_parts[0].size = rdc_map_info.size - 0x10000;
198                 rdc_flash_parts[1].name = "config";
199                 rdc_flash_parts[1].offset = 0;
200                 rdc_flash_parts[1].size = 0x8000;
201                 rdc_flash_parts[2].name = "magic";
202                 rdc_flash_parts[2].offset = 0x8000;
203                 rdc_flash_parts[2].size = 0x14;
204                 rdc_flash_parts[3].name = "kernel";
205                 rdc_flash_parts[3].offset = 0x8014;
206                 rdc_flash_parts[3].size = the_header[5];
207                 rdc_flash_parts[4].name = "rootfs";
208                 rdc_flash_parts[4].offset = 0x8014 + the_header[5];
209                 rdc_flash_parts[4].size = rdc_flash_parts[0].size - rdc_flash_parts[4].offset;
210                 rdc_flash_parts[5].name = "bootloader";
211                 rdc_flash_parts[5].offset = rdc_flash_parts[0].size;
212                 rdc_flash_parts[5].size = 0x10000;
213                 rdc_flash_data.nr_parts = 6;
214         } else if (!memcmp(((u8 *)the_header) + 14, "Li", 2)) { /* AMIT */
215                 rdc_flash_parts[0].name = "kernel_parthdr";
216                 rdc_flash_parts[0].offset = 0;
217                 rdc_flash_parts[0].size = 0x10;
218                 rdc_flash_parts[1].name = "kernel";
219                 rdc_flash_parts[1].offset = 0x10;
220                 rdc_flash_parts[1].size = 0xffff0;
221                 rdc_flash_parts[2].name = "rootfs_parthdr";
222                 rdc_flash_parts[2].offset = 0x100000;
223                 rdc_flash_parts[2].size = 0x10;
224                 rdc_flash_parts[3].name = "rootfs";
225                 rdc_flash_parts[3].offset = 0x100010;
226                 rdc_flash_parts[3].size = rdc_map_info.size - 0x160010;
227                 rdc_flash_parts[4].name = "config_parthdr";
228                 rdc_flash_parts[4].offset = rdc_map_info.size - 0x60000;
229                 rdc_flash_parts[4].size = 0x10;
230                 rdc_flash_parts[5].name = "config";
231                 rdc_flash_parts[5].offset = rdc_map_info.size - 0x5fff0;
232                 rdc_flash_parts[5].size = 0xfff0;
233                 rdc_flash_parts[6].name = "recoveryfs_parthdr";
234                 rdc_flash_parts[6].offset = rdc_map_info.size - 0x50000;
235                 rdc_flash_parts[6].size = 0x10;
236                 rdc_flash_parts[7].name = "recoveryfs";
237                 rdc_flash_parts[7].offset = rdc_map_info.size - 0x4fff0;
238                 rdc_flash_parts[7].size = 0x3fff0;
239                 rdc_flash_parts[8].name = "recovery_parthdr";
240                 rdc_flash_parts[8].offset = rdc_map_info.size - 0x10000;
241                 rdc_flash_parts[8].size = 0x10;
242                 rdc_flash_parts[9].name = "recovery";
243                 rdc_flash_parts[9].offset = rdc_map_info.size - 0xfff0;
244                 rdc_flash_parts[9].size = 0x7ff0;
245                 rdc_flash_parts[10].name = "productinfo_parthdr";
246                 rdc_flash_parts[10].offset = rdc_map_info.size - 0x8000;
247                 rdc_flash_parts[10].size = 0x10;
248                 rdc_flash_parts[11].name = "productinfo";
249                 rdc_flash_parts[11].offset = rdc_map_info.size - 0x7ff0;
250                 rdc_flash_parts[11].size = 0x1ff0;
251                 rdc_flash_parts[12].name = "bootloader_parthdr";
252                 rdc_flash_parts[12].offset = rdc_map_info.size - 0x6000;
253                 rdc_flash_parts[12].size = 0x10;
254                 rdc_flash_parts[13].name = "bootloader";
255                 rdc_flash_parts[13].offset = rdc_map_info.size - 0x5ff0;
256                 rdc_flash_parts[13].size = 0x5ff0;
257                 rdc_flash_parts[14].name = "everything";
258                 rdc_flash_parts[14].offset = 0;
259                 rdc_flash_parts[14].size = rdc_map_info.size;
260                 rdc_flash_data.nr_parts = 15;
261         } else {        /* ZyXEL */
262                 rdc_flash_parts[0].name = "kernel";
263                 rdc_flash_parts[0].offset = 0;
264                 rdc_flash_parts[0].size = 0x100000;
265                 rdc_flash_parts[1].name = "rootfs";
266                 rdc_flash_parts[1].offset = 0x100000;
267                 rdc_flash_parts[1].size = rdc_map_info.size - 0x140000;
268                 rdc_flash_parts[2].name = "linux";
269                 rdc_flash_parts[2].offset = 0;
270                 rdc_flash_parts[2].size = rdc_map_info.size - 0x40000;
271                 rdc_flash_parts[3].name = "config";
272                 rdc_flash_parts[3].offset = rdc_map_info.size - 0x40000;
273                 rdc_flash_parts[3].size = 0x10000;
274                 rdc_flash_parts[4].name = "productinfo";
275                 rdc_flash_parts[4].offset = rdc_map_info.size - 0x30000;
276                 rdc_flash_parts[4].size = 0x10000;
277                 rdc_flash_parts[5].name = "bootloader";
278                 rdc_flash_parts[5].offset = rdc_map_info.size - 0x20000;
279                 rdc_flash_parts[5].size = 0x20000;
280                 rdc_flash_data.nr_parts = 6;
281         }
282 #endif
283         return platform_add_devices(rdc321x_devs, ARRAY_SIZE(rdc321x_devs));
284 }
285
286 #ifdef CONFIG_MTD_RDC3210
287 arch_initcall(rdc_board_setup);
288 #else
289 late_initcall(rdc_board_setup);
290 #endif