blob: 924dea54e16d247801a88eede6a3ceab778656d5 [file] [log] [blame]
Tony Lindgren1dbae812005-11-10 14:26:51 +00001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * linux/arch/arm/mach-omap2/board-h4.c
Tony Lindgren1dbae812005-11-10 14:26:51 +00003 *
4 * Copyright (C) 2005 Nokia Corporation
5 * Author: Paul Mundt <paul.mundt@nokia.com>
6 *
7 * Modified from mach-omap/omap1/board-generic.c
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
13
14#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/mtd/mtd.h>
18#include <linux/mtd/partitions.h>
19#include <linux/delay.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010020#include <linux/workqueue.h>
21#include <linux/input.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000022
23#include <asm/hardware.h>
24#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27#include <asm/mach/flash.h>
28
29#include <asm/arch/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010030#include <asm/arch/gpioexpander.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000031#include <asm/arch/mux.h>
32#include <asm/arch/usb.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010033#include <asm/arch/irda.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000034#include <asm/arch/board.h>
35#include <asm/arch/common.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010036#include <asm/arch/keypad.h>
37#include <asm/arch/menelaus.h>
38#include <asm/arch/dma.h>
39#include "prcm-regs.h"
Tony Lindgren1dbae812005-11-10 14:26:51 +000040
41#include <asm/io.h>
42#include <asm/delay.h>
43
Tony Lindgren9b6553c2006-04-02 17:46:30 +010044static unsigned int row_gpios[6] = { 88, 89, 124, 11, 6, 96 };
45static unsigned int col_gpios[7] = { 90, 91, 100, 36, 12, 97, 98 };
46
47static int h4_keymap[] = {
48 KEY(0, 0, KEY_LEFT),
49 KEY(0, 1, KEY_RIGHT),
50 KEY(0, 2, KEY_A),
51 KEY(0, 3, KEY_B),
52 KEY(0, 4, KEY_C),
53 KEY(1, 0, KEY_DOWN),
54 KEY(1, 1, KEY_UP),
55 KEY(1, 2, KEY_E),
56 KEY(1, 3, KEY_F),
57 KEY(1, 4, KEY_G),
58 KEY(2, 0, KEY_ENTER),
59 KEY(2, 1, KEY_I),
60 KEY(2, 2, KEY_J),
61 KEY(2, 3, KEY_K),
62 KEY(2, 4, KEY_3),
63 KEY(3, 0, KEY_M),
64 KEY(3, 1, KEY_N),
65 KEY(3, 2, KEY_O),
66 KEY(3, 3, KEY_P),
67 KEY(3, 4, KEY_Q),
68 KEY(4, 0, KEY_R),
69 KEY(4, 1, KEY_4),
70 KEY(4, 2, KEY_T),
71 KEY(4, 3, KEY_U),
72 KEY(4, 4, KEY_ENTER),
73 KEY(5, 0, KEY_V),
74 KEY(5, 1, KEY_W),
75 KEY(5, 2, KEY_L),
76 KEY(5, 3, KEY_S),
77 KEY(5, 4, KEY_ENTER),
78 0
79};
80
Tony Lindgren1dbae812005-11-10 14:26:51 +000081static struct mtd_partition h4_partitions[] = {
82 /* bootloader (U-Boot, etc) in first sector */
83 {
84 .name = "bootloader",
85 .offset = 0,
86 .size = SZ_128K,
87 .mask_flags = MTD_WRITEABLE, /* force read-only */
88 },
89 /* bootloader params in the next sector */
90 {
91 .name = "params",
92 .offset = MTDPART_OFS_APPEND,
93 .size = SZ_128K,
94 .mask_flags = 0,
95 },
96 /* kernel */
97 {
98 .name = "kernel",
99 .offset = MTDPART_OFS_APPEND,
100 .size = SZ_2M,
101 .mask_flags = 0
102 },
103 /* file system */
104 {
105 .name = "filesystem",
106 .offset = MTDPART_OFS_APPEND,
107 .size = MTDPART_SIZ_FULL,
108 .mask_flags = 0
109 }
110};
111
112static struct flash_platform_data h4_flash_data = {
113 .map_name = "cfi_probe",
114 .width = 2,
115 .parts = h4_partitions,
116 .nr_parts = ARRAY_SIZE(h4_partitions),
117};
118
119static struct resource h4_flash_resource = {
120 .start = H4_CS0_BASE,
121 .end = H4_CS0_BASE + SZ_64M - 1,
122 .flags = IORESOURCE_MEM,
123};
124
125static struct platform_device h4_flash_device = {
126 .name = "omapflash",
127 .id = 0,
128 .dev = {
129 .platform_data = &h4_flash_data,
130 },
131 .num_resources = 1,
132 .resource = &h4_flash_resource,
133};
134
135static struct resource h4_smc91x_resources[] = {
136 [0] = {
137 .start = OMAP24XX_ETHR_START, /* Physical */
138 .end = OMAP24XX_ETHR_START + 0xf,
139 .flags = IORESOURCE_MEM,
140 },
141 [1] = {
142 .start = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ),
143 .end = OMAP_GPIO_IRQ(OMAP24XX_ETHR_GPIO_IRQ),
144 .flags = IORESOURCE_IRQ,
145 },
146};
147
148static struct platform_device h4_smc91x_device = {
149 .name = "smc91x",
150 .id = -1,
151 .num_resources = ARRAY_SIZE(h4_smc91x_resources),
152 .resource = h4_smc91x_resources,
153};
154
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100155/* Select between the IrDA and aGPS module
156 */
157static int h4_select_irda(struct device *dev, int state)
158{
159 unsigned char expa;
160 int err = 0;
161
162 if ((err = read_gpio_expa(&expa, 0x21))) {
163 printk(KERN_ERR "Error reading from I/O expander\n");
164 return err;
165 }
166
167 /* 'P6' enable/disable IRDA_TX and IRDA_RX */
168 if (state & IR_SEL) { /* IrDa */
169 if ((err = write_gpio_expa(expa | 0x01, 0x21))) {
170 printk(KERN_ERR "Error writing to I/O expander\n");
171 return err;
172 }
173 } else {
174 if ((err = write_gpio_expa(expa & ~0x01, 0x21))) {
175 printk(KERN_ERR "Error writing to I/O expander\n");
176 return err;
177 }
178 }
179 return err;
180}
181
Dirk Behme060ebf92007-01-25 16:29:17 -0800182static void set_trans_mode(struct work_struct *work)
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100183{
Dirk Behme060ebf92007-01-25 16:29:17 -0800184 struct omap_irda_config *irda_config =
185 container_of(work, struct omap_irda_config, gpio_expa.work);
186 int mode = irda_config->mode;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100187 unsigned char expa;
188 int err = 0;
189
190 if ((err = read_gpio_expa(&expa, 0x20)) != 0) {
191 printk(KERN_ERR "Error reading from I/O expander\n");
192 }
193
194 expa &= ~0x01;
195
Dirk Behme060ebf92007-01-25 16:29:17 -0800196 if (!(mode & IR_SIRMODE)) { /* MIR/FIR */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100197 expa |= 0x01;
198 }
199
200 if ((err = write_gpio_expa(expa, 0x20)) != 0) {
201 printk(KERN_ERR "Error writing to I/O expander\n");
202 }
203}
204
205static int h4_transceiver_mode(struct device *dev, int mode)
206{
207 struct omap_irda_config *irda_config = dev->platform_data;
208
Dirk Behme060ebf92007-01-25 16:29:17 -0800209 irda_config->mode = mode;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100210 cancel_delayed_work(&irda_config->gpio_expa);
Dirk Behme060ebf92007-01-25 16:29:17 -0800211 PREPARE_DELAYED_WORK(&irda_config->gpio_expa, set_trans_mode);
David Howells6d5aefb2006-12-05 19:36:26 +0000212 schedule_delayed_work(&irda_config->gpio_expa, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100213
214 return 0;
215}
216
217static struct omap_irda_config h4_irda_data = {
218 .transceiver_cap = IR_SIRMODE | IR_MIRMODE | IR_FIRMODE,
219 .transceiver_mode = h4_transceiver_mode,
220 .select_irda = h4_select_irda,
221 .rx_channel = OMAP24XX_DMA_UART3_RX,
222 .tx_channel = OMAP24XX_DMA_UART3_TX,
223 .dest_start = OMAP_UART3_BASE,
224 .src_start = OMAP_UART3_BASE,
225 .tx_trigger = OMAP24XX_DMA_UART3_TX,
226 .rx_trigger = OMAP24XX_DMA_UART3_RX,
227};
228
229static struct resource h4_irda_resources[] = {
230 [0] = {
231 .start = INT_24XX_UART3_IRQ,
232 .end = INT_24XX_UART3_IRQ,
233 .flags = IORESOURCE_IRQ,
234 },
235};
236
237static struct platform_device h4_irda_device = {
238 .name = "omapirda",
239 .id = -1,
240 .dev = {
241 .platform_data = &h4_irda_data,
242 },
243 .num_resources = 1,
244 .resource = h4_irda_resources,
245};
246
247static struct omap_kp_platform_data h4_kp_data = {
248 .rows = 6,
249 .cols = 7,
250 .keymap = h4_keymap,
Komal Shah4d246072006-09-29 01:59:20 -0700251 .keymapsize = ARRAY_SIZE(h4_keymap),
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100252 .rep = 1,
253 .row_gpios = row_gpios,
254 .col_gpios = col_gpios,
255};
256
257static struct platform_device h4_kp_device = {
258 .name = "omap-keypad",
259 .id = -1,
260 .dev = {
261 .platform_data = &h4_kp_data,
262 },
263};
264
265static struct platform_device h4_lcd_device = {
266 .name = "lcd_h4",
267 .id = -1,
268};
269
Tony Lindgren1dbae812005-11-10 14:26:51 +0000270static struct platform_device *h4_devices[] __initdata = {
271 &h4_smc91x_device,
272 &h4_flash_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100273 &h4_irda_device,
274 &h4_kp_device,
275 &h4_lcd_device,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000276};
277
278static inline void __init h4_init_smc91x(void)
279{
280 /* Make sure CS1 timings are correct */
281 GPMC_CONFIG1_1 = 0x00011200;
282 GPMC_CONFIG2_1 = 0x001f1f01;
283 GPMC_CONFIG3_1 = 0x00080803;
284 GPMC_CONFIG4_1 = 0x1c091c09;
285 GPMC_CONFIG5_1 = 0x041f1f1f;
286 GPMC_CONFIG6_1 = 0x000004c4;
287 GPMC_CONFIG7_1 = 0x00000f40 | (0x08000000 >> 24);
288 udelay(100);
289
290 omap_cfg_reg(M15_24XX_GPIO92);
291 if (omap_request_gpio(OMAP24XX_ETHR_GPIO_IRQ) < 0) {
292 printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n",
293 OMAP24XX_ETHR_GPIO_IRQ);
294 return;
295 }
296 omap_set_gpio_direction(OMAP24XX_ETHR_GPIO_IRQ, 1);
297}
298
299static void __init omap_h4_init_irq(void)
300{
Tony Lindgren18f49ea2006-02-08 22:06:47 +0000301 omap2_init_common_hw();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000302 omap_init_irq();
303 omap_gpio_init();
304 h4_init_smc91x();
305}
306
307static struct omap_uart_config h4_uart_config __initdata = {
308 .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)),
309};
310
311static struct omap_mmc_config h4_mmc_config __initdata = {
312 .mmc [0] = {
313 .enabled = 1,
314 .wire4 = 1,
315 .wp_pin = -1,
316 .power_pin = -1,
317 .switch_pin = -1,
318 },
319};
320
321static struct omap_lcd_config h4_lcd_config __initdata = {
Tony Lindgren1dbae812005-11-10 14:26:51 +0000322 .ctrl_name = "internal",
323};
324
325static struct omap_board_config_kernel h4_config[] = {
326 { OMAP_TAG_UART, &h4_uart_config },
327 { OMAP_TAG_MMC, &h4_mmc_config },
328 { OMAP_TAG_LCD, &h4_lcd_config },
329};
330
331static void __init omap_h4_init(void)
332{
333 /*
334 * Make sure the serial ports are muxed on at this point.
335 * You have to mux them off in device drivers later on
336 * if not needed.
337 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100338#if defined(CONFIG_OMAP_IR) || defined(CONFIG_OMAP_IR_MODULE)
339 omap_cfg_reg(K15_24XX_UART3_TX);
340 omap_cfg_reg(K14_24XX_UART3_RX);
341#endif
342
343#if defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
344 if (omap_has_menelaus()) {
345 row_gpios[5] = 0;
346 col_gpios[2] = 15;
347 col_gpios[6] = 18;
348 }
349#endif
350
Tony Lindgren1dbae812005-11-10 14:26:51 +0000351 platform_add_devices(h4_devices, ARRAY_SIZE(h4_devices));
352 omap_board_config = h4_config;
353 omap_board_config_size = ARRAY_SIZE(h4_config);
354 omap_serial_init();
355}
356
357static void __init omap_h4_map_io(void)
358{
Tony Lindgren18f49ea2006-02-08 22:06:47 +0000359 omap2_map_common_io();
Tony Lindgren1dbae812005-11-10 14:26:51 +0000360}
361
362MACHINE_START(OMAP_H4, "OMAP2420 H4 board")
363 /* Maintainer: Paul Mundt <paul.mundt@nokia.com> */
Tony Lindgren1dbae812005-11-10 14:26:51 +0000364 .phys_io = 0x48000000,
365 .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc,
366 .boot_params = 0x80000100,
367 .map_io = omap_h4_map_io,
368 .init_irq = omap_h4_init_irq,
369 .init_machine = omap_h4_init,
370 .timer = &omap_timer,
371MACHINE_END