Merge with /home/tmlind/src/kernel/linux-2.6
[pandora-kernel.git] / arch / arm / mach-omap1 / board-h3.c
1 /*
2  * linux/arch/arm/mach-omap1/board-h3.c
3  *
4  * This file contains OMAP1710 H3 specific code.
5  *
6  * Copyright (C) 2004 Texas Instruments, Inc.
7  * Copyright (C) 2002 MontaVista Software, Inc.
8  * Copyright (C) 2001 RidgeRun, Inc.
9  * Author: RidgeRun, Inc.
10  *         Greg Lonnon (glonnon@ridgerun.com) or info@ridgerun.com
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License version 2 as
14  * published by the Free Software Foundation.
15  */
16
17 #include <linux/types.h>
18 #include <linux/init.h>
19 #include <linux/major.h>
20 #include <linux/kernel.h>
21 #include <linux/platform_device.h>
22 #include <linux/errno.h>
23 #include <linux/workqueue.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/nand.h>
26 #include <linux/mtd/partitions.h>
27 #include <linux/input.h>
28
29 #include <asm/setup.h>
30 #include <asm/page.h>
31 #include <asm/hardware.h>
32 #include <asm/mach-types.h>
33 #include <asm/mach/arch.h>
34 #include <asm/mach/flash.h>
35 #include <asm/mach/map.h>
36
37 #include <asm/arch/gpio.h>
38 #include <asm/arch/gpioexpander.h>
39 #include <asm/arch/irqs.h>
40 #include <asm/arch/mux.h>
41 #include <asm/arch/tc.h>
42 #include <asm/arch/irda.h>
43 #include <asm/arch/usb.h>
44 #include <asm/arch/keypad.h>
45 #include <asm/arch/dma.h>
46 #include <asm/arch/common.h>
47 #include <asm/arch/mcbsp.h>
48 #include <asm/arch/omap-alsa.h>
49
50 extern int omap_gpio_init(void);
51
52 static int h3_keymap[] = {
53         KEY(0, 0, KEY_LEFT),
54         KEY(0, 1, KEY_RIGHT),
55         KEY(0, 2, KEY_3),
56         KEY(0, 3, KEY_F10),
57         KEY(0, 4, KEY_F5),
58         KEY(0, 5, KEY_9),
59         KEY(1, 0, KEY_DOWN),
60         KEY(1, 1, KEY_UP),
61         KEY(1, 2, KEY_2),
62         KEY(1, 3, KEY_F9),
63         KEY(1, 4, KEY_F7),
64         KEY(1, 5, KEY_0),
65         KEY(2, 0, KEY_ENTER),
66         KEY(2, 1, KEY_6),
67         KEY(2, 2, KEY_1),
68         KEY(2, 3, KEY_F2),
69         KEY(2, 4, KEY_F6),
70         KEY(2, 5, KEY_HOME),
71         KEY(3, 0, KEY_8),
72         KEY(3, 1, KEY_5),
73         KEY(3, 2, KEY_F12),
74         KEY(3, 3, KEY_F3),
75         KEY(3, 4, KEY_F8),
76         KEY(3, 5, KEY_END),
77         KEY(4, 0, KEY_7),
78         KEY(4, 1, KEY_4),
79         KEY(4, 2, KEY_F11),
80         KEY(4, 3, KEY_F1),
81         KEY(4, 4, KEY_F4),
82         KEY(4, 5, KEY_ESC),
83         KEY(5, 0, KEY_F13),
84         KEY(5, 1, KEY_F14),
85         KEY(5, 2, KEY_F15),
86         KEY(5, 3, KEY_F16),
87         KEY(5, 4, KEY_SLEEP),
88         0
89 };
90
91
92 static struct mtd_partition nor_partitions[] = {
93         /* bootloader (U-Boot, etc) in first sector */
94         {
95               .name             = "bootloader",
96               .offset           = 0,
97               .size             = SZ_128K,
98               .mask_flags       = MTD_WRITEABLE, /* force read-only */
99         },
100         /* bootloader params in the next sector */
101         {
102               .name             = "params",
103               .offset           = MTDPART_OFS_APPEND,
104               .size             = SZ_128K,
105               .mask_flags       = 0,
106         },
107         /* kernel */
108         {
109               .name             = "kernel",
110               .offset           = MTDPART_OFS_APPEND,
111               .size             = SZ_2M,
112               .mask_flags       = 0
113         },
114         /* file system */
115         {
116               .name             = "filesystem",
117               .offset           = MTDPART_OFS_APPEND,
118               .size             = MTDPART_SIZ_FULL,
119               .mask_flags       = 0
120         }
121 };
122
123 static struct flash_platform_data nor_data = {
124         .map_name       = "cfi_probe",
125         .width          = 2,
126         .parts          = nor_partitions,
127         .nr_parts       = ARRAY_SIZE(nor_partitions),
128 };
129
130 static struct resource nor_resource = {
131         /* This is on CS3, wherever it's mapped */
132         .flags          = IORESOURCE_MEM,
133 };
134
135 static struct platform_device nor_device = {
136         .name           = "omapflash",
137         .id             = 0,
138         .dev            = {
139                 .platform_data  = &nor_data,
140         },
141         .num_resources  = 1,
142         .resource       = &nor_resource,
143 };
144
145 static struct mtd_partition nand_partitions[] = {
146 #if 0
147         /* REVISIT: enable these partitions if you make NAND BOOT work */
148         {
149                 .name           = "xloader",
150                 .offset         = 0,
151                 .size           = 64 * 1024,
152                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
153         },
154         {
155                 .name           = "bootloader",
156                 .offset         = MTDPART_OFS_APPEND,
157                 .size           = 256 * 1024,
158                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
159         },
160         {
161                 .name           = "params",
162                 .offset         = MTDPART_OFS_APPEND,
163                 .size           = 192 * 1024,
164         },
165         {
166                 .name           = "kernel",
167                 .offset         = MTDPART_OFS_APPEND,
168                 .size           = 2 * SZ_1M,
169         },
170 #endif
171         {
172                 .name           = "filesystem",
173                 .size           = MTDPART_SIZ_FULL,
174                 .offset         = MTDPART_OFS_APPEND,
175         },
176 };
177
178 /* dip switches control NAND chip access:  8 bit, 16 bit, or neither */
179 static struct nand_platform_data nand_data = {
180         .options        = NAND_SAMSUNG_LP_OPTIONS,
181         .parts          = nand_partitions,
182         .nr_parts       = ARRAY_SIZE(nand_partitions),
183 };
184
185 static struct resource nand_resource = {
186         .flags          = IORESOURCE_MEM,
187 };
188
189 static struct platform_device nand_device = {
190         .name           = "omapnand",
191         .id             = 0,
192         .dev            = {
193                 .platform_data  = &nand_data,
194         },
195         .num_resources  = 1,
196         .resource       = &nand_resource,
197 };
198
199 static struct resource smc91x_resources[] = {
200         [0] = {
201                 .start  = OMAP1710_ETHR_START,          /* Physical */
202                 .end    = OMAP1710_ETHR_START + 0xf,
203                 .flags  = IORESOURCE_MEM,
204         },
205         [1] = {
206                 .start  = OMAP_GPIO_IRQ(40),
207                 .end    = OMAP_GPIO_IRQ(40),
208                 .flags  = IORESOURCE_IRQ,
209         },
210 };
211
212 static struct platform_device smc91x_device = {
213         .name           = "smc91x",
214         .id             = 0,
215         .num_resources  = ARRAY_SIZE(smc91x_resources),
216         .resource       = smc91x_resources,
217 };
218
219 #define GPTIMER_BASE            0xFFFB1400
220 #define GPTIMER_REGS(x) (0xFFFB1400 + (x * 0x800))
221 #define GPTIMER_REGS_SIZE       0x46
222
223 static struct resource intlat_resources[] = {
224         [0] = {
225                 .start  = GPTIMER_REGS(0),            /* Physical */
226                 .end    = GPTIMER_REGS(0) + GPTIMER_REGS_SIZE,
227                 .flags  = IORESOURCE_MEM,
228         },
229         [1] = {
230                 .start  = INT_1610_GPTIMER1,
231                 .end    = INT_1610_GPTIMER1,
232                 .flags  = IORESOURCE_IRQ,
233         },
234 };
235
236 static struct platform_device intlat_device = {
237         .name      = "omap_intlat",
238         .id          = 0,
239         .num_resources  = ARRAY_SIZE(intlat_resources),
240         .resource       = intlat_resources,
241 };
242
243 static struct resource h3_kp_resources[] = {
244         [0] = {
245                 .start  = INT_KEYBOARD,
246                 .end    = INT_KEYBOARD,
247                 .flags  = IORESOURCE_IRQ,
248         },
249 };
250
251 static struct omap_kp_platform_data h3_kp_data = {
252         .rows           = 8,
253         .cols           = 8,
254         .keymap         = h3_keymap,
255         .keymapsize     = ARRAY_SIZE(h3_keymap),
256         .rep            = 1,
257         .delay          = 9,
258         .dbounce        = 1,
259 };
260
261 static struct platform_device h3_kp_device = {
262         .name           = "omap-keypad",
263         .id             = -1,
264         .dev            = {
265                 .platform_data = &h3_kp_data,
266         },
267         .num_resources  = ARRAY_SIZE(h3_kp_resources),
268         .resource       = h3_kp_resources,
269 };
270
271
272 /* Select between the IrDA and aGPS module
273  */
274 static int h3_select_irda(struct device *dev, int state)
275 {
276         unsigned char expa;
277         int err = 0;
278
279         if ((err = read_gpio_expa(&expa, 0x26))) {
280                 printk(KERN_ERR "Error reading from I/O EXPANDER \n");
281                 return err;
282         }
283
284         /* 'P6' enable/disable IRDA_TX and IRDA_RX */
285         if (state & IR_SEL) { /* IrDA */
286                 if ((err = write_gpio_expa(expa | 0x40, 0x26))) {
287                         printk(KERN_ERR "Error writing to I/O EXPANDER \n");
288                         return err;
289                 }
290         } else {
291                 if ((err = write_gpio_expa(expa & ~0x40, 0x26))) {
292                         printk(KERN_ERR "Error writing to I/O EXPANDER \n");
293                         return err;
294                 }
295         }
296         return err;
297 }
298
299 static void set_trans_mode(void *data)
300 {
301         int *mode = data;
302         unsigned char expa;
303         int err = 0;
304
305         if ((err = read_gpio_expa(&expa, 0x27)) != 0) {
306                 printk(KERN_ERR "Error reading from I/O expander\n");
307         }
308
309         expa &= ~0x03;
310
311         if (*mode & IR_SIRMODE) {
312                 expa |= 0x01;
313         } else { /* MIR/FIR */
314                 expa |= 0x03;
315         }
316
317         if ((err = write_gpio_expa(expa, 0x27)) != 0) {
318                 printk(KERN_ERR "Error writing to I/O expander\n");
319         }
320 }
321
322 static int h3_transceiver_mode(struct device *dev, int mode)
323 {
324         struct omap_irda_config *irda_config = dev->platform_data;
325
326         cancel_delayed_work(&irda_config->gpio_expa);
327         PREPARE_WORK(&irda_config->gpio_expa, set_trans_mode, &mode);
328         schedule_work(&irda_config->gpio_expa);
329
330         return 0;
331 }
332
333 static struct omap_irda_config h3_irda_data = {
334         .transceiver_cap        = IR_SIRMODE | IR_MIRMODE | IR_FIRMODE,
335         .transceiver_mode       = h3_transceiver_mode,
336         .select_irda            = h3_select_irda,
337         .rx_channel             = OMAP_DMA_UART3_RX,
338         .tx_channel             = OMAP_DMA_UART3_TX,
339         .dest_start             = UART3_THR,
340         .src_start              = UART3_RHR,
341         .tx_trigger             = 0,
342         .rx_trigger             = 0,
343 };
344
345 static struct resource h3_irda_resources[] = {
346         [0] = {
347                 .start  = INT_UART3,
348                 .end    = INT_UART3,
349                 .flags  = IORESOURCE_IRQ,
350         },
351 };
352
353 static u64 irda_dmamask = 0xffffffff;
354
355 static struct platform_device h3_irda_device = {
356         .name           = "omapirda",
357         .id             = 0,
358         .dev            = {
359                 .platform_data  = &h3_irda_data,
360                 .dma_mask       = &irda_dmamask,
361         },
362         .num_resources  = ARRAY_SIZE(h3_irda_resources),
363         .resource       = h3_irda_resources,
364 };
365
366 static struct platform_device h3_lcd_device = {
367         .name           = "lcd_h3",
368         .id             = -1,
369 };
370
371 static struct omap_mcbsp_reg_cfg mcbsp_regs = {
372         .spcr2 = FREE | FRST | GRST | XRST | XINTM(3),
373         .spcr1 = RINTM(3) | RRST,
374         .rcr2  = RPHASE | RFRLEN2(OMAP_MCBSP_WORD_8) |
375                 RWDLEN2(OMAP_MCBSP_WORD_16) | RDATDLY(1),
376         .rcr1  = RFRLEN1(OMAP_MCBSP_WORD_8) | RWDLEN1(OMAP_MCBSP_WORD_16),
377         .xcr2  = XPHASE | XFRLEN2(OMAP_MCBSP_WORD_8) |
378                 XWDLEN2(OMAP_MCBSP_WORD_16) | XDATDLY(1) | XFIG,
379         .xcr1  = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16),
380         .srgr1 = FWID(15),
381         .srgr2 = GSYNC | CLKSP | FSGM | FPER(31),
382
383         .pcr0  = CLKRM | SCLKME | FSXP | FSRP | CLKXP | CLKRP,
384         //.pcr0 = CLKXP | CLKRP,        /* mcbsp: slave */
385 };
386
387 static struct omap_alsa_codec_config alsa_config = {
388         .name                   = "H3 TSC2101",
389         .mcbsp_regs_alsa        = &mcbsp_regs,
390         .codec_configure_dev    = NULL, // tsc2101_configure,
391         .codec_set_samplerate   = NULL, // tsc2101_set_samplerate,
392         .codec_clock_setup      = NULL, // tsc2101_clock_setup,
393         .codec_clock_on         = NULL, // tsc2101_clock_on,
394         .codec_clock_off        = NULL, // tsc2101_clock_off,
395         .get_default_samplerate = NULL, // tsc2101_get_default_samplerate,
396 };
397
398 static struct platform_device h3_mcbsp1_device = {
399         .name   = "omap_alsa_mcbsp",
400         .id     = 1,
401         .dev = {
402                 .platform_data  = &alsa_config,
403         },
404 };
405
406 static struct platform_device *devices[] __initdata = {
407         &nor_device,
408         &nand_device,
409         &smc91x_device,
410         &intlat_device,
411         &h3_irda_device,
412         &h3_kp_device,
413         &h3_lcd_device,
414         &h3_mcbsp1_device,
415 };
416
417 static struct omap_usb_config h3_usb_config __initdata = {
418         /* usb1 has a Mini-AB port and external isp1301 transceiver */
419         .otg        = 2,
420
421 #ifdef CONFIG_USB_GADGET_OMAP
422         .hmc_mode       = 19,   /* 0:host(off) 1:dev|otg 2:disabled */
423 #elif  defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
424         /* NONSTANDARD CABLE NEEDED (B-to-Mini-B) */
425         .hmc_mode       = 20,   /* 1:dev|otg(off) 1:host 2:disabled */
426 #endif
427
428         .pins[1]        = 3,
429 };
430
431 static struct omap_mmc_config h3_mmc_config __initdata = {
432         .mmc[0] = {
433                 .enabled        = 1,
434                 .power_pin      = -1,   /* tps65010 GPIO4 */
435                 .switch_pin     = OMAP_MPUIO(1),
436         },
437 };
438
439 static struct omap_uart_config h3_uart_config __initdata = {
440         .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
441 };
442
443 static struct omap_lcd_config h3_lcd_config __initdata = {
444         .ctrl_name      = "internal",
445 };
446
447 static struct omap_board_config_kernel h3_config[] = {
448         { OMAP_TAG_USB,         &h3_usb_config },
449         { OMAP_TAG_MMC,         &h3_mmc_config },
450         { OMAP_TAG_UART,        &h3_uart_config },
451         { OMAP_TAG_LCD,         &h3_lcd_config },
452 };
453
454 #define H3_NAND_RB_GPIO_PIN     10
455
456 static int nand_dev_ready(struct nand_platform_data *data)
457 {
458         return omap_get_gpio_datain(H3_NAND_RB_GPIO_PIN);
459 }
460
461 static void __init h3_init(void)
462 {
463         /* Here we assume the NOR boot config:  NOR on CS3 (possibly swapped
464          * to address 0 by a dip switch), NAND on CS2B.  The NAND driver will
465          * notice whether a NAND chip is enabled at probe time.
466          *
467          * H3 support NAND-boot, with a dip switch to put NOR on CS2B and NAND
468          * (which on H2 may be 16bit) on CS3.  Try detecting that in code here,
469          * to avoid probing every possible flash configuration...
470          */
471         nor_resource.end = nor_resource.start = omap_cs3_phys();
472         nor_resource.end += SZ_32M - 1;
473
474         nand_resource.end = nand_resource.start = OMAP_CS2B_PHYS;
475         nand_resource.end += SZ_4K - 1;
476         if (!(omap_request_gpio(H3_NAND_RB_GPIO_PIN)))
477                 nand_data.dev_ready = nand_dev_ready;
478
479         /* GPIO10 Func_MUX_CTRL reg bit 29:27, Configure V2 to mode1 as GPIO */
480         /* GPIO10 pullup/down register, Enable pullup on GPIO10 */
481         omap_cfg_reg(V2_1710_GPIO10);
482
483         platform_add_devices(devices, ARRAY_SIZE(devices));
484         omap_board_config = h3_config;
485         omap_board_config_size = ARRAY_SIZE(h3_config);
486         omap_serial_init();
487 }
488
489 static void __init h3_init_smc91x(void)
490 {
491         omap_cfg_reg(W15_1710_GPIO40);
492         if (omap_request_gpio(40) < 0) {
493                 printk("Error requesting gpio 40 for smc91x irq\n");
494                 return;
495         }
496 }
497
498 void h3_init_irq(void)
499 {
500         omap1_init_common_hw();
501         omap_init_irq();
502         omap_gpio_init();
503         h3_init_smc91x();
504 }
505
506 static void __init h3_map_io(void)
507 {
508         omap1_map_common_io();
509 }
510
511 MACHINE_START(OMAP_H3, "TI OMAP1710 H3 board")
512         /* Maintainer: Texas Instruments, Inc. */
513         .phys_io        = 0xfff00000,
514         .io_pg_offst    = ((0xfef00000) >> 18) & 0xfffc,
515         .boot_params    = 0x10000100,
516         .map_io         = h3_map_io,
517         .init_irq       = h3_init_irq,
518         .init_machine   = h3_init,
519         .timer          = &omap_timer,
520 MACHINE_END