OMAPDSS: picodlp: add missing #include <linux/module.h>
[deliverable/linux.git] / arch / arm / mach-omap2 / board-h4.c
1 /*
2 * linux/arch/arm/mach-omap2/board-h4.c
3 *
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/mtd/physmap.h>
20 #include <linux/delay.h>
21 #include <linux/workqueue.h>
22 #include <linux/i2c.h>
23 #include <linux/i2c/at24.h>
24 #include <linux/input.h>
25 #include <linux/err.h>
26 #include <linux/clk.h>
27 #include <linux/io.h>
28
29 #include <mach/hardware.h>
30 #include <asm/mach-types.h>
31 #include <asm/mach/arch.h>
32 #include <asm/mach/map.h>
33
34 #include <mach/gpio.h>
35 #include <plat/usb.h>
36 #include <plat/board.h>
37 #include <plat/common.h>
38 #include <plat/keypad.h>
39 #include <plat/menelaus.h>
40 #include <plat/dma.h>
41 #include <plat/gpmc.h>
42
43 #include <video/omapdss.h>
44 #include <video/omap-panel-generic-dpi.h>
45
46 #include "mux.h"
47 #include "control.h"
48
49 #define H4_FLASH_CS 0
50 #define H4_SMC91X_CS 1
51
52 #define H4_ETHR_GPIO_IRQ 92
53
54 static unsigned int row_gpios[6] = { 88, 89, 124, 11, 6, 96 };
55 static unsigned int col_gpios[7] = { 90, 91, 100, 36, 12, 97, 98 };
56
57 static const unsigned int h4_keymap[] = {
58 KEY(0, 0, KEY_LEFT),
59 KEY(1, 0, KEY_RIGHT),
60 KEY(2, 0, KEY_A),
61 KEY(3, 0, KEY_B),
62 KEY(4, 0, KEY_C),
63 KEY(0, 1, KEY_DOWN),
64 KEY(1, 1, KEY_UP),
65 KEY(2, 1, KEY_E),
66 KEY(3, 1, KEY_F),
67 KEY(4, 1, KEY_G),
68 KEY(0, 2, KEY_ENTER),
69 KEY(1, 2, KEY_I),
70 KEY(2, 2, KEY_J),
71 KEY(3, 2, KEY_K),
72 KEY(4, 2, KEY_3),
73 KEY(0, 3, KEY_M),
74 KEY(1, 3, KEY_N),
75 KEY(2, 3, KEY_O),
76 KEY(3, 3, KEY_P),
77 KEY(4, 3, KEY_Q),
78 KEY(0, 4, KEY_R),
79 KEY(1, 4, KEY_4),
80 KEY(2, 4, KEY_T),
81 KEY(3, 4, KEY_U),
82 KEY(4, 4, KEY_ENTER),
83 KEY(0, 5, KEY_V),
84 KEY(1, 5, KEY_W),
85 KEY(2, 5, KEY_L),
86 KEY(3, 5, KEY_S),
87 KEY(4, 5, KEY_ENTER),
88 };
89
90 static struct mtd_partition h4_partitions[] = {
91 /* bootloader (U-Boot, etc) in first sector */
92 {
93 .name = "bootloader",
94 .offset = 0,
95 .size = SZ_128K,
96 .mask_flags = MTD_WRITEABLE, /* force read-only */
97 },
98 /* bootloader params in the next sector */
99 {
100 .name = "params",
101 .offset = MTDPART_OFS_APPEND,
102 .size = SZ_128K,
103 .mask_flags = 0,
104 },
105 /* kernel */
106 {
107 .name = "kernel",
108 .offset = MTDPART_OFS_APPEND,
109 .size = SZ_2M,
110 .mask_flags = 0
111 },
112 /* file system */
113 {
114 .name = "filesystem",
115 .offset = MTDPART_OFS_APPEND,
116 .size = MTDPART_SIZ_FULL,
117 .mask_flags = 0
118 }
119 };
120
121 static struct physmap_flash_data h4_flash_data = {
122 .width = 2,
123 .parts = h4_partitions,
124 .nr_parts = ARRAY_SIZE(h4_partitions),
125 };
126
127 static struct resource h4_flash_resource = {
128 .flags = IORESOURCE_MEM,
129 };
130
131 static struct platform_device h4_flash_device = {
132 .name = "physmap-flash",
133 .id = 0,
134 .dev = {
135 .platform_data = &h4_flash_data,
136 },
137 .num_resources = 1,
138 .resource = &h4_flash_resource,
139 };
140
141 static const struct matrix_keymap_data h4_keymap_data = {
142 .keymap = h4_keymap,
143 .keymap_size = ARRAY_SIZE(h4_keymap),
144 };
145
146 static struct omap_kp_platform_data h4_kp_data = {
147 .rows = 6,
148 .cols = 7,
149 .keymap_data = &h4_keymap_data,
150 .rep = true,
151 .row_gpios = row_gpios,
152 .col_gpios = col_gpios,
153 };
154
155 static struct platform_device h4_kp_device = {
156 .name = "omap-keypad",
157 .id = -1,
158 .dev = {
159 .platform_data = &h4_kp_data,
160 },
161 };
162
163 static struct platform_device *h4_devices[] __initdata = {
164 &h4_flash_device,
165 &h4_kp_device,
166 };
167
168 static struct panel_generic_dpi_data h4_panel_data = {
169 .name = "h4",
170 };
171
172 static struct omap_dss_device h4_lcd_device = {
173 .name = "lcd",
174 .driver_name = "generic_dpi_panel",
175 .type = OMAP_DISPLAY_TYPE_DPI,
176 .phy.dpi.data_lines = 16,
177 .data = &h4_panel_data,
178 };
179
180 static struct omap_dss_device *h4_dss_devices[] = {
181 &h4_lcd_device,
182 };
183
184 static struct omap_dss_board_info h4_dss_data = {
185 .num_devices = ARRAY_SIZE(h4_dss_devices),
186 .devices = h4_dss_devices,
187 .default_device = &h4_lcd_device,
188 };
189
190 /* 2420 Sysboot setup (2430 is different) */
191 static u32 get_sysboot_value(void)
192 {
193 return (omap_ctrl_readl(OMAP24XX_CONTROL_STATUS) &
194 (OMAP2_SYSBOOT_5_MASK | OMAP2_SYSBOOT_4_MASK |
195 OMAP2_SYSBOOT_3_MASK | OMAP2_SYSBOOT_2_MASK |
196 OMAP2_SYSBOOT_1_MASK | OMAP2_SYSBOOT_0_MASK));
197 }
198
199 /* H4-2420's always used muxed mode, H4-2422's always use non-muxed
200 *
201 * Note: OMAP-GIT doesn't correctly do is_cpu_omap2422 and is_cpu_omap2423
202 * correctly. The macro needs to look at production_id not just hawkeye.
203 */
204 static u32 is_gpmc_muxed(void)
205 {
206 u32 mux;
207 mux = get_sysboot_value();
208 if ((mux & 0xF) == 0xd)
209 return 1; /* NAND config (could be either) */
210 if (mux & 0x2) /* if mux'ed */
211 return 1;
212 else
213 return 0;
214 }
215
216 static inline void __init h4_init_debug(void)
217 {
218 int eth_cs;
219 unsigned long cs_mem_base;
220 unsigned int muxed, rate;
221 struct clk *gpmc_fck;
222
223 eth_cs = H4_SMC91X_CS;
224
225 gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */
226 if (IS_ERR(gpmc_fck)) {
227 WARN_ON(1);
228 return;
229 }
230
231 clk_enable(gpmc_fck);
232 rate = clk_get_rate(gpmc_fck);
233 clk_disable(gpmc_fck);
234 clk_put(gpmc_fck);
235
236 if (is_gpmc_muxed())
237 muxed = 0x200;
238 else
239 muxed = 0;
240
241 /* Make sure CS1 timings are correct */
242 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1,
243 0x00011000 | muxed);
244
245 if (rate >= 160000000) {
246 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01);
247 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803);
248 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a);
249 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
250 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
251 } else if (rate >= 130000000) {
252 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
253 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
254 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
255 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F);
256 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4);
257 } else {/* rate = 100000000 */
258 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00);
259 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802);
260 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09);
261 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F);
262 gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2);
263 }
264
265 if (gpmc_cs_request(eth_cs, SZ_16M, &cs_mem_base) < 0) {
266 printk(KERN_ERR "Failed to request GPMC mem for smc91x\n");
267 goto out;
268 }
269
270 udelay(100);
271
272 omap_mux_init_gpio(92, 0);
273 if (debug_card_init(cs_mem_base, H4_ETHR_GPIO_IRQ) < 0)
274 gpmc_cs_free(eth_cs);
275
276 out:
277 clk_disable(gpmc_fck);
278 clk_put(gpmc_fck);
279 }
280
281 static void __init h4_init_flash(void)
282 {
283 unsigned long base;
284
285 if (gpmc_cs_request(H4_FLASH_CS, SZ_64M, &base) < 0) {
286 printk("Can't request GPMC CS for flash\n");
287 return;
288 }
289 h4_flash_resource.start = base;
290 h4_flash_resource.end = base + SZ_64M - 1;
291 }
292
293 static struct omap_usb_config h4_usb_config __initdata = {
294 /* S1.10 OFF -- usb "download port"
295 * usb0 switched to Mini-B port and isp1105 transceiver;
296 * S2.POS3 = ON, S2.POS4 = OFF ... to enable battery charging
297 */
298 .register_dev = 1,
299 .pins[0] = 3,
300 /* .hmc_mode = 0x14,*/ /* 0:dev 1:host 2:disable */
301 .hmc_mode = 0x00, /* 0:dev|otg 1:disable 2:disable */
302 };
303
304 static void __init omap_h4_init_early(void)
305 {
306 omap2_init_common_infrastructure();
307 omap2_init_common_devices(NULL, NULL);
308 }
309
310 static void __init omap_h4_init_irq(void)
311 {
312 omap2_init_irq();
313 }
314
315 static struct at24_platform_data m24c01 = {
316 .byte_len = SZ_1K / 8,
317 .page_size = 16,
318 };
319
320 static struct i2c_board_info __initdata h4_i2c_board_info[] = {
321 {
322 I2C_BOARD_INFO("isp1301_omap", 0x2d),
323 .irq = OMAP_GPIO_IRQ(125),
324 },
325 { /* EEPROM on mainboard */
326 I2C_BOARD_INFO("24c01", 0x52),
327 .platform_data = &m24c01,
328 },
329 { /* EEPROM on cpu card */
330 I2C_BOARD_INFO("24c01", 0x57),
331 .platform_data = &m24c01,
332 },
333 };
334
335 #ifdef CONFIG_OMAP_MUX
336 static struct omap_board_mux board_mux[] __initdata = {
337 { .reg_offset = OMAP_MUX_TERMINATOR },
338 };
339 #endif
340
341 static void __init omap_h4_init(void)
342 {
343 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAF);
344
345 /*
346 * Make sure the serial ports are muxed on at this point.
347 * You have to mux them off in device drivers later on
348 * if not needed.
349 */
350
351 #if defined(CONFIG_KEYBOARD_OMAP) || defined(CONFIG_KEYBOARD_OMAP_MODULE)
352 omap_mux_init_gpio(88, OMAP_PULL_ENA | OMAP_PULL_UP);
353 omap_mux_init_gpio(89, OMAP_PULL_ENA | OMAP_PULL_UP);
354 omap_mux_init_gpio(124, OMAP_PULL_ENA | OMAP_PULL_UP);
355 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
356 if (omap_has_menelaus()) {
357 omap_mux_init_signal("sdrc_a14.gpio0",
358 OMAP_PULL_ENA | OMAP_PULL_UP);
359 omap_mux_init_signal("vlynq_rx0.gpio_15", 0);
360 omap_mux_init_signal("gpio_98", 0);
361 row_gpios[5] = 0;
362 col_gpios[2] = 15;
363 col_gpios[6] = 18;
364 } else {
365 omap_mux_init_signal("gpio_96", OMAP_PULL_ENA | OMAP_PULL_UP);
366 omap_mux_init_signal("gpio_100", 0);
367 omap_mux_init_signal("gpio_98", 0);
368 }
369 omap_mux_init_signal("gpio_90", 0);
370 omap_mux_init_signal("gpio_91", 0);
371 omap_mux_init_signal("gpio_36", 0);
372 omap_mux_init_signal("mcbsp2_clkx.gpio_12", 0);
373 omap_mux_init_signal("gpio_97", 0);
374 #endif
375
376 i2c_register_board_info(1, h4_i2c_board_info,
377 ARRAY_SIZE(h4_i2c_board_info));
378
379 platform_add_devices(h4_devices, ARRAY_SIZE(h4_devices));
380 omap2_usbfs_init(&h4_usb_config);
381 omap_serial_init();
382 h4_init_flash();
383
384 omap_display_init(&h4_dss_data);
385 }
386
387 static void __init omap_h4_map_io(void)
388 {
389 omap2_set_globals_242x();
390 omap242x_map_common_io();
391 }
392
393 MACHINE_START(OMAP_H4, "OMAP2420 H4 board")
394 /* Maintainer: Paul Mundt <paul.mundt@nokia.com> */
395 .boot_params = 0x80000100,
396 .reserve = omap_reserve,
397 .map_io = omap_h4_map_io,
398 .init_early = omap_h4_init_early,
399 .init_irq = omap_h4_init_irq,
400 .init_machine = omap_h4_init,
401 .timer = &omap2_timer,
402 MACHINE_END
This page took 0.038167 seconds and 5 git commands to generate.