2 * RouterBoard 500 Platform devices
4 * Copyright (C) 2006 Felix Fietkau <nbd@openwrt.org>
5 * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 #include <linux/kernel.h>
18 #include <linux/export.h>
19 #include <linux/init.h>
20 #include <linux/ctype.h>
21 #include <linux/string.h>
22 #include <linux/platform_device.h>
23 #include <linux/mtd/nand.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/gpio_keys.h>
27 #include <linux/input.h>
28 #include <linux/serial_8250.h>
30 #include <asm/bootinfo.h>
32 #include <asm/mach-rc32434/rc32434.h>
33 #include <asm/mach-rc32434/dma.h>
34 #include <asm/mach-rc32434/dma_v.h>
35 #include <asm/mach-rc32434/eth.h>
36 #include <asm/mach-rc32434/rb.h>
37 #include <asm/mach-rc32434/integ.h>
38 #include <asm/mach-rc32434/gpio.h>
39 #include <asm/mach-rc32434/irq.h>
41 #define ETH0_RX_DMA_ADDR (DMA0_BASE_ADDR + 0 * DMA_CHAN_OFFSET)
42 #define ETH0_TX_DMA_ADDR (DMA0_BASE_ADDR + 1 * DMA_CHAN_OFFSET)
44 extern unsigned int idt_cpu_freq;
46 static struct mpmc_device dev3;
48 void set_latch_u5(unsigned char or_mask, unsigned char nand_mask)
52 spin_lock_irqsave(&dev3.lock, flags);
54 dev3.state = (dev3.state | or_mask) & ~nand_mask;
55 writeb(dev3.state, dev3.base);
57 spin_unlock_irqrestore(&dev3.lock, flags);
59 EXPORT_SYMBOL(set_latch_u5);
61 unsigned char get_latch_u5(void)
65 EXPORT_SYMBOL(get_latch_u5);
67 static struct resource korina_dev0_res[] = {
69 .name = "korina_regs",
70 .start = ETH0_BASE_ADDR,
71 .end = ETH0_BASE_ADDR + sizeof(struct eth_regs),
72 .flags = IORESOURCE_MEM,
75 .start = ETH0_DMA_RX_IRQ,
76 .end = ETH0_DMA_RX_IRQ,
77 .flags = IORESOURCE_IRQ
80 .start = ETH0_DMA_TX_IRQ,
81 .end = ETH0_DMA_TX_IRQ,
82 .flags = IORESOURCE_IRQ
85 .start = ETH0_RX_OVR_IRQ,
86 .end = ETH0_RX_OVR_IRQ,
87 .flags = IORESOURCE_IRQ
90 .start = ETH0_TX_UND_IRQ,
91 .end = ETH0_TX_UND_IRQ,
92 .flags = IORESOURCE_IRQ
94 .name = "korina_dma_rx",
95 .start = ETH0_RX_DMA_ADDR,
96 .end = ETH0_RX_DMA_ADDR + DMA_CHAN_OFFSET - 1,
97 .flags = IORESOURCE_MEM,
99 .name = "korina_dma_tx",
100 .start = ETH0_TX_DMA_ADDR,
101 .end = ETH0_TX_DMA_ADDR + DMA_CHAN_OFFSET - 1,
102 .flags = IORESOURCE_MEM,
106 static struct korina_device korina_dev0_data = {
108 .mac = {0xde, 0xca, 0xff, 0xc0, 0xff, 0xee}
111 static struct platform_device korina_dev0 = {
114 .resource = korina_dev0_res,
115 .num_resources = ARRAY_SIZE(korina_dev0_res),
118 static struct resource cf_slot0_res[] = {
120 .name = "cf_membase",
121 .flags = IORESOURCE_MEM
124 .start = (8 + 4 * 32 + CF_GPIO_NUM), /* 149 */
125 .end = (8 + 4 * 32 + CF_GPIO_NUM),
126 .flags = IORESOURCE_IRQ
130 static struct cf_device cf_slot0_data = {
131 .gpio_pin = CF_GPIO_NUM
134 static struct platform_device cf_slot0 = {
136 .name = "pata-rb532-cf",
137 .dev.platform_data = &cf_slot0_data,
138 .resource = cf_slot0_res,
139 .num_resources = ARRAY_SIZE(cf_slot0_res),
142 /* Resources and device for NAND */
143 static int rb532_dev_ready(struct mtd_info *mtd)
145 return gpio_get_value(GPIO_RDY);
148 static void rb532_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
150 struct nand_chip *chip = mtd->priv;
151 unsigned char orbits, nandbits;
153 if (ctrl & NAND_CTRL_CHANGE) {
154 orbits = (ctrl & NAND_CLE) << 1;
155 orbits |= (ctrl & NAND_ALE) >> 1;
157 nandbits = (~ctrl & NAND_CLE) << 1;
158 nandbits |= (~ctrl & NAND_ALE) >> 1;
160 set_latch_u5(orbits, nandbits);
162 if (cmd != NAND_CMD_NONE)
163 writeb(cmd, chip->IO_ADDR_W);
166 static struct resource nand_slot0_res[] = {
168 .name = "nand_membase",
169 .flags = IORESOURCE_MEM
173 static struct platform_nand_data rb532_nand_data = {
174 .ctrl.dev_ready = rb532_dev_ready,
175 .ctrl.cmd_ctrl = rb532_cmd_ctrl,
178 static struct platform_device nand_slot0 = {
181 .resource = nand_slot0_res,
182 .num_resources = ARRAY_SIZE(nand_slot0_res),
183 .dev.platform_data = &rb532_nand_data,
186 static struct mtd_partition rb532_partition_info[] = {
188 .name = "Routerboard NAND boot",
190 .size = 4 * 1024 * 1024,
193 .offset = MTDPART_OFS_NXTBLK,
194 .size = MTDPART_SIZ_FULL,
198 static struct platform_device rb532_led = {
203 static struct platform_device rb532_button = {
204 .name = "rb532-button",
208 static struct resource rb532_wdt_res[] = {
210 .name = "rb532_wdt_res",
211 .start = INTEG0_BASE_ADDR,
212 .end = INTEG0_BASE_ADDR + sizeof(struct integ),
213 .flags = IORESOURCE_MEM,
217 static struct platform_device rb532_wdt = {
218 .name = "rc32434_wdt",
220 .resource = rb532_wdt_res,
221 .num_resources = ARRAY_SIZE(rb532_wdt_res),
224 static struct plat_serial8250_port rb532_uart_res[] = {
226 .membase = (char *)KSEG1ADDR(REGBASE + UART0BASE),
230 .flags = UPF_BOOT_AUTOCONF,
237 static struct platform_device rb532_uart = {
238 .name = "serial8250",
239 .id = PLAT8250_DEV_PLATFORM,
240 .dev.platform_data = &rb532_uart_res,
243 static struct platform_device *rb532_devs[] = {
253 static void __init parse_mac_addr(char *macstr)
257 for (i = 0; i < 6; i++) {
258 if (i != 5 && *(macstr + 2) != ':')
261 h = hex_to_bin(*macstr++);
265 l = hex_to_bin(*macstr++);
270 korina_dev0_data.mac[i] = (h << 4) + l;
275 /* NAND definitions */
276 #define NAND_CHIP_DELAY 25
278 static void __init rb532_nand_setup(void)
280 switch (mips_machtype) {
281 case MACH_MIKROTIK_RB532A:
282 set_latch_u5(LO_FOFF | LO_CEX,
283 LO_ULED | LO_ALE | LO_CLE | LO_WPX);
286 set_latch_u5(LO_WPX | LO_FOFF | LO_CEX,
287 LO_ULED | LO_ALE | LO_CLE);
291 /* Setup NAND specific settings */
292 rb532_nand_data.chip.nr_chips = 1;
293 rb532_nand_data.chip.nr_partitions = ARRAY_SIZE(rb532_partition_info);
294 rb532_nand_data.chip.partitions = rb532_partition_info;
295 rb532_nand_data.chip.chip_delay = NAND_CHIP_DELAY;
299 static int __init plat_setup_devices(void)
301 /* Look for the CF card reader */
302 if (!readl(IDT434_REG_BASE + DEV1MASK))
303 rb532_devs[2] = NULL; /* disable cf_slot0 at index 2 */
305 cf_slot0_res[0].start =
306 readl(IDT434_REG_BASE + DEV1BASE);
307 cf_slot0_res[0].end = cf_slot0_res[0].start + 0x1000;
310 /* Read the NAND resources from the device controller */
311 nand_slot0_res[0].start = readl(IDT434_REG_BASE + DEV2BASE);
312 nand_slot0_res[0].end = nand_slot0_res[0].start + 0x1000;
314 /* Read and map device controller 3 */
315 dev3.base = ioremap_nocache(readl(IDT434_REG_BASE + DEV3BASE), 1);
318 printk(KERN_ERR "rb532: cannot remap device controller 3\n");
322 /* Initialise the NAND device */
325 /* set the uart clock to the current cpu frequency */
326 rb532_uart_res[0].uartclk = idt_cpu_freq;
328 dev_set_drvdata(&korina_dev0.dev, &korina_dev0_data);
330 return platform_add_devices(rb532_devs, ARRAY_SIZE(rb532_devs));
333 static int __init setup_kmac(char *s)
335 printk(KERN_INFO "korina mac = %s\n", s);
340 __setup("kmac=", setup_kmac);
342 arch_initcall(plat_setup_devices);