The RB513 CF driver is now a module, enable it by default for the RB1xx profile.
[openwrt/svn-archive/archive.git] / target / linux / adm5120 / files / arch / mips / adm5120 / boards / mikrotik.c
1 /*
2 * $Id$
3 *
4 * Mikrotik RouterBOARD 1xx series
5 *
6 * Copyright (C) 2007 OpenWrt.org
7 * Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
8 *
9 * NAND initialization code was based on a driver for Linux 2.6.19+ which
10 * was derived from the driver for Linux 2.4.xx published by Mikrotik for
11 * their RouterBoard 1xx and 5xx series boards.
12 * Copyright (C) 2007 David Goodenough <david.goodenough@linkchoose.co.uk>
13 * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
14 * The original Mikrotik code seems not to have a license.
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version 2
19 * of the License, or (at your option) any later version.
20 *
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
25 *
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the
28 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
29 * Boston, MA 02110-1301, USA.
30 *
31 */
32
33 #include <linux/kernel.h>
34 #include <linux/init.h>
35 #include <linux/delay.h>
36
37 #include <asm/bootinfo.h>
38 #include <asm/gpio.h>
39
40 #include <adm5120_defs.h>
41 #include <adm5120_irq.h>
42 #include <adm5120_nand.h>
43 #include <adm5120_board.h>
44 #include <adm5120_platform.h>
45 #include <adm5120_cf.h>
46
47 #define RB1XX_NAND_CHIP_DELAY 25
48
49 #define RB150_NAND_BASE 0x1FC80000
50 #define RB150_NAND_SIZE 1
51
52 #define RB150_GPIO_NAND_READY ADM5120_GPIO_PIN0
53 #define RB150_GPIO_NAND_NCE ADM5120_GPIO_PIN1
54 #define RB150_GPIO_NAND_CLE ADM5120_GPIO_P2L2
55 #define RB150_GPIO_NAND_ALE ADM5120_GPIO_P3L2
56
57 #define RB150_NAND_DELAY 100
58
59 #define RB150_NAND_WRITE(v) \
60 writeb((v), (void __iomem *)KSEG1ADDR(RB150_NAND_BASE))
61
62 /*--------------------------------------------------------------------------*/
63
64 static struct adm5120_pci_irq rb1xx_pci_irqs[] __initdata = {
65 PCIIRQ(1, 0, 1, ADM5120_IRQ_PCI0),
66 PCIIRQ(2, 0, 1, ADM5120_IRQ_PCI1),
67 PCIIRQ(3, 0, 1, ADM5120_IRQ_PCI2)
68 };
69
70 static struct mtd_partition rb1xx_nor_parts[] = {
71 {
72 .name = "booter",
73 .offset = 0,
74 .size = 64*1024,
75 .mask_flags = MTD_WRITEABLE,
76 } , {
77 .name = "firmware",
78 .offset = MTDPART_OFS_APPEND,
79 .size = MTDPART_SIZ_FULL,
80 }
81 };
82
83 static struct mtd_partition rb1xx_nand_parts[] = {
84 {
85 .name = "kernel",
86 .offset = 0,
87 .size = 4 * 1024 * 1024,
88 } , {
89 .name = "rootfs",
90 .offset = MTDPART_OFS_NXTBLK,
91 .size = MTDPART_SIZ_FULL
92 }
93 };
94
95 static struct platform_device *rb1xx_devices[] __initdata = {
96 &adm5120_flash0_device,
97 &adm5120_nand_device,
98 };
99
100 /*
101 * We need to use the OLD Yaffs-1 OOB layout, otherwise the RB bootloader
102 * will not be able to find the kernel that we load. So set the oobinfo
103 * when creating the partitions
104 */
105 static struct nand_ecclayout rb1xx_nand_ecclayout = {
106 .eccbytes = 6,
107 .eccpos = { 8, 9, 10, 13, 14, 15 },
108 .oobavail = 9,
109 .oobfree = { { 0, 4 }, { 6, 2 }, { 11, 2 }, { 4, 1 } }
110 };
111
112 static struct resource rb150_nand_resource[] = {
113 [0] = {
114 .start = RB150_NAND_BASE,
115 .end = RB150_NAND_BASE + RB150_NAND_SIZE-1,
116 .flags = IORESOURCE_MEM,
117 },
118 };
119
120 #if 0
121 /*
122 * RB1xx boards have bad network performance with the default VLAN matrixes.
123 * Disable it while the ethernet driver gets fixed.
124 */
125 static unsigned char rb11x_vlans[6] __initdata = {
126 /* FIXME: untested */
127 0x41, 0x00, 0x00, 0x00, 0x00, 0x00
128 };
129
130 static unsigned char rb133_vlans[6] __initdata = {
131 /* FIXME: untested */
132 0x44, 0x42, 0x41, 0x00, 0x00, 0x00
133 };
134
135 static unsigned char rb133c_vlans[6] __initdata = {
136 /* FIXME: untested */
137 0x44, 0x00, 0x00, 0x00, 0x00, 0x00
138 };
139
140 static unsigned char rb15x_vlans[6] __initdata = {
141 /* FIXME: untested */
142 0x41, 0x42, 0x44, 0x48, 0x50, 0x00
143
144 static unsigned char rb192_vlans[6] __initdata = {
145 /* FIXME: untested */
146 0x41, 0x50, 0x48, 0x44, 0x42, 0x00
147 };
148 #else
149 static unsigned char rb_vlans[6] __initdata = {
150 0x7F, 0x00, 0x00, 0x00, 0x00, 0x00
151 };
152 #define rb11x_vlans rb_vlans
153 #define rb133_vlans rb_vlans
154 #define rb133c_vlans rb_vlans
155 #define rb15x_vlans rb_vlans
156 #define rb192_vlans rb_vlans
157 #endif
158
159 /*--------------------------------------------------------------------------*/
160
161 static int rb150_nand_ready(struct mtd_info *mtd)
162 {
163 return gpio_get_value(RB150_GPIO_NAND_READY);
164 }
165
166 static void rb150_nand_cmd_ctrl(struct mtd_info *mtd, int cmd,
167 unsigned int ctrl)
168 {
169 if (ctrl & NAND_CTRL_CHANGE) {
170 gpio_set_value(RB150_GPIO_NAND_CLE, (ctrl & NAND_CLE) ? 1 : 0);
171 gpio_set_value(RB150_GPIO_NAND_ALE, (ctrl & NAND_ALE) ? 1 : 0);
172 gpio_set_value(RB150_GPIO_NAND_NCE, (ctrl & NAND_NCE) ? 0 : 1);
173 }
174
175 udelay(RB150_NAND_DELAY);
176
177 if (cmd != NAND_CMD_NONE)
178 RB150_NAND_WRITE(cmd);
179 }
180
181 /*--------------------------------------------------------------------------*/
182 static struct resource cf_slot0_res[] = {
183 {
184 .name = "cf_membase",
185 .start = ADM5120_EXTIO0_BASE,
186 .end = ADM5120_EXTIO0_BASE + ADM5120_MPMC_SIZE-1 ,
187 .flags = IORESOURCE_MEM
188 }, {
189 .name = "cf_irq",
190 .start = ADM5120_IRQ_GPIO4, /* 5 */
191 .end = ADM5120_IRQ_GPIO4,
192 .flags = IORESOURCE_IRQ
193 }
194 };
195
196 static struct cf_device cf_slot0_data = {
197 .gpio_pin = 4
198 };
199
200 static struct platform_device cf_slot0 = {
201 .id = 0,
202 .name = "rb153-cf",
203 .dev.platform_data = &cf_slot0_data,
204 .resource = cf_slot0_res,
205 .num_resources = ARRAY_SIZE(cf_slot0_res),
206 };
207
208 static struct platform_device *rb153_devices[] __initdata = {
209 &adm5120_flash0_device,
210 &adm5120_nand_device,
211 &cf_slot0,
212 };
213
214 static void __init rb1xx_mac_setup(void)
215 {
216 /* TODO */
217 }
218
219 static void __init rb1xx_flash_setup(void)
220 {
221 /* setup data for flash0 device */
222 adm5120_flash0_data.nr_parts = ARRAY_SIZE(rb1xx_nor_parts);
223 adm5120_flash0_data.parts = rb1xx_nor_parts;
224
225 /* setup data for NAND device */
226 adm5120_nand_data.chip.nr_chips = 1;
227 adm5120_nand_data.chip.nr_partitions = ARRAY_SIZE(rb1xx_nand_parts);
228 adm5120_nand_data.chip.partitions = rb1xx_nand_parts;
229 adm5120_nand_data.chip.ecclayout = &rb1xx_nand_ecclayout;
230 adm5120_nand_data.chip.chip_delay = RB1XX_NAND_CHIP_DELAY;
231 adm5120_nand_data.chip.options = NAND_NO_AUTOINCR;
232 }
233
234 static void __init rb1xx_setup(void)
235 {
236 /* enable NAND flash interface */
237 adm5120_nand_enable();
238
239 /* initialize NAND chip */
240 adm5120_nand_set_spn(1);
241 adm5120_nand_set_wpn(0);
242
243 rb1xx_flash_setup();
244 rb1xx_mac_setup();
245 }
246
247 static void __init rb150_setup(void)
248 {
249 /* setup GPIO pins for NAND flash chip */
250 gpio_request(RB150_GPIO_NAND_READY, "nand-ready");
251 gpio_direction_input(RB150_GPIO_NAND_READY);
252 gpio_request(RB150_GPIO_NAND_NCE, "nand-nce");
253 gpio_direction_output(RB150_GPIO_NAND_NCE, 1);
254 gpio_request(RB150_GPIO_NAND_CLE, "nand-cle");
255 gpio_direction_output(RB150_GPIO_NAND_CLE, 0);
256 gpio_request(RB150_GPIO_NAND_ALE, "nand-ale");
257 gpio_direction_output(RB150_GPIO_NAND_ALE, 0);
258
259 adm5120_nand_device.num_resources = ARRAY_SIZE(rb150_nand_resource);
260 adm5120_nand_device.resource = rb150_nand_resource;
261 adm5120_nand_data.ctrl.cmd_ctrl = rb150_nand_cmd_ctrl;
262 adm5120_nand_data.ctrl.dev_ready = rb150_nand_ready;
263
264 rb1xx_flash_setup();
265 rb1xx_mac_setup();
266 }
267
268 /*--------------------------------------------------------------------------*/
269
270 static struct adm5120_board rb111_board __initdata = {
271 .mach_type = MACH_ADM5120_RB_111,
272 .name = "Mikrotik RouterBOARD 111",
273 .board_setup = rb1xx_setup,
274 .eth_num_ports = 1,
275 .eth_vlans = rb11x_vlans,
276 .num_devices = ARRAY_SIZE(rb1xx_devices),
277 .devices = rb1xx_devices,
278 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
279 .pci_irq_map = rb1xx_pci_irqs,
280 };
281
282 static struct adm5120_board rb112_board __initdata = {
283 .mach_type = MACH_ADM5120_RB_112,
284 .name = "Mikrotik RouterBOARD 112",
285 .board_setup = rb1xx_setup,
286 .eth_num_ports = 1,
287 .eth_vlans = rb11x_vlans,
288 .num_devices = ARRAY_SIZE(rb1xx_devices),
289 .devices = rb1xx_devices,
290 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
291 .pci_irq_map = rb1xx_pci_irqs,
292 };
293
294 static struct adm5120_board rb133_board __initdata = {
295 .mach_type = MACH_ADM5120_RB_133,
296 .name = "Mikrotik RouterBOARD 133",
297 .board_setup = rb1xx_setup,
298 .eth_num_ports = 3,
299 .eth_vlans = rb133_vlans,
300 .num_devices = ARRAY_SIZE(rb1xx_devices),
301 .devices = rb1xx_devices,
302 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
303 .pci_irq_map = rb1xx_pci_irqs,
304 };
305
306 static struct adm5120_board rb133c_board __initdata = {
307 .mach_type = MACH_ADM5120_RB_133C,
308 .name = "Mikrotik RouterBOARD 133C",
309 .board_setup = rb1xx_setup,
310 .eth_num_ports = 1,
311 .eth_vlans = rb133c_vlans,
312 .num_devices = ARRAY_SIZE(rb1xx_devices),
313 .devices = rb1xx_devices,
314 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
315 .pci_irq_map = rb1xx_pci_irqs,
316 };
317
318 static struct adm5120_board rb150_board __initdata = {
319 .mach_type = MACH_ADM5120_RB_150,
320 .name = "Mikrotik RouterBOARD 150",
321 .board_setup = rb150_setup,
322 .eth_num_ports = 5,
323 .eth_vlans = rb15x_vlans,
324 .num_devices = ARRAY_SIZE(rb1xx_devices),
325 .devices = rb1xx_devices,
326 };
327
328 static struct adm5120_board rb153_board __initdata = {
329 .mach_type = MACH_ADM5120_RB_153,
330 .name = "Mikrotik RouterBOARD 153",
331 .board_setup = rb1xx_setup,
332 .eth_num_ports = 5,
333 .eth_vlans = rb15x_vlans,
334 .num_devices = ARRAY_SIZE(rb153_devices),
335 .devices = rb153_devices,
336 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
337 .pci_irq_map = rb1xx_pci_irqs,
338 };
339
340 static struct adm5120_board rb192_board __initdata = {
341 .mach_type = MACH_ADM5120_RB_192,
342 .name = "Mikrotik RouterBOARD 192",
343 .board_setup = rb1xx_setup,
344 .eth_num_ports = 5,
345 .eth_vlans = rb192_vlans,
346 .num_devices = ARRAY_SIZE(rb1xx_devices),
347 .devices = rb1xx_devices,
348 .pci_nr_irqs = ARRAY_SIZE(rb1xx_pci_irqs),
349 .pci_irq_map = rb1xx_pci_irqs,
350 };
351
352 static int __init register_boards(void)
353 {
354 adm5120_board_register(&rb111_board);
355 adm5120_board_register(&rb112_board);
356 adm5120_board_register(&rb133_board);
357 adm5120_board_register(&rb133c_board);
358 adm5120_board_register(&rb150_board);
359 adm5120_board_register(&rb153_board);
360 adm5120_board_register(&rb192_board);
361 return 0;
362 }
363
364 pure_initcall(register_boards);