blob: 69c0acf5aa63cbf9f9f0eaeb89edb0bc52c6590c [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 */
Russell King2f8163b2011-07-26 10:53:52 +010013#include <linux/gpio.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000014#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>
Ladislav Michl561b0362010-02-15 10:03:32 -080019#include <linux/mtd/physmap.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000020#include <linux/delay.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010021#include <linux/workqueue.h>
Jean Delvare9df013b2008-10-14 17:30:02 +020022#include <linux/i2c.h>
David Brownell6a769ed2008-12-10 17:36:33 -080023#include <linux/i2c/at24.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010024#include <linux/input.h>
Paul Walmsley44595982008-03-18 10:04:51 +020025#include <linux/err.h>
26#include <linux/clk.h>
Russell Kingfced80c2008-09-06 12:10:45 +010027#include <linux/io.h>
Tony Lindgren41eb2d82011-10-06 15:43:00 -070028#include <linux/input/matrix_keypad.h>
Tony Lindgren7bd3b612012-10-15 13:53:41 -070029#include <linux/mfd/menelaus.h>
Jon Hunter86c35962012-11-13 16:02:19 -060030#include <linux/omap-dma.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000031
Tony Lindgren1dbae812005-11-10 14:26:51 +000032#include <asm/mach-types.h>
33#include <asm/mach/arch.h>
34#include <asm/mach/map.h>
Tony Lindgren1dbae812005-11-10 14:26:51 +000035
Tomi Valkeinencbf14552011-05-09 10:12:42 +030036#include <video/omapdss.h>
Archit Tanejaa0d8dde2013-02-12 16:46:46 +053037#include <video/omap-panel-data.h>
Tomi Valkeinencbf14552011-05-09 10:12:42 +030038
Tony Lindgrendbc04162012-08-31 10:59:07 -070039#include "common.h"
Tony Lindgren23275d42010-07-05 16:31:37 +030040#include "mux.h"
Paul Walmsley4814ced2010-10-08 11:40:20 -060041#include "control.h"
Afzal Mohammed3ef5d002012-10-05 10:37:27 +053042#include "gpmc.h"
Jon Hunter86c35962012-11-13 16:02:19 -060043#include "gpmc-smc91x.h"
Tony Lindgren23275d42010-07-05 16:31:37 +030044
Paul Walmsley44595982008-03-18 10:04:51 +020045#define H4_FLASH_CS 0
Tony Lindgren40662d772009-03-23 18:07:36 -070046
Tony Lindgren41eb2d82011-10-06 15:43:00 -070047#if defined(CONFIG_KEYBOARD_MATRIX) || defined(CONFIG_KEYBOARD_MATRIX_MODULE)
48static const uint32_t board_matrix_keys[] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +010049 KEY(0, 0, KEY_LEFT),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000050 KEY(1, 0, KEY_RIGHT),
51 KEY(2, 0, KEY_A),
52 KEY(3, 0, KEY_B),
53 KEY(4, 0, KEY_C),
54 KEY(0, 1, KEY_DOWN),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010055 KEY(1, 1, KEY_UP),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000056 KEY(2, 1, KEY_E),
57 KEY(3, 1, KEY_F),
58 KEY(4, 1, KEY_G),
59 KEY(0, 2, KEY_ENTER),
60 KEY(1, 2, KEY_I),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010061 KEY(2, 2, KEY_J),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000062 KEY(3, 2, KEY_K),
63 KEY(4, 2, KEY_3),
64 KEY(0, 3, KEY_M),
65 KEY(1, 3, KEY_N),
66 KEY(2, 3, KEY_O),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010067 KEY(3, 3, KEY_P),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000068 KEY(4, 3, KEY_Q),
69 KEY(0, 4, KEY_R),
70 KEY(1, 4, KEY_4),
71 KEY(2, 4, KEY_T),
72 KEY(3, 4, KEY_U),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010073 KEY(4, 4, KEY_ENTER),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000074 KEY(0, 5, KEY_V),
75 KEY(1, 5, KEY_W),
76 KEY(2, 5, KEY_L),
77 KEY(3, 5, KEY_S),
78 KEY(4, 5, KEY_ENTER),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010079};
80
Tony Lindgren41eb2d82011-10-06 15:43:00 -070081static const struct matrix_keymap_data board_keymap_data = {
82 .keymap = board_matrix_keys,
83 .keymap_size = ARRAY_SIZE(board_matrix_keys),
84};
85
86static unsigned int board_keypad_row_gpios[] = {
87 88, 89, 124, 11, 6, 96
88};
89
90static unsigned int board_keypad_col_gpios[] = {
91 90, 91, 100, 36, 12, 97, 98
92};
93
94static struct matrix_keypad_platform_data board_keypad_platform_data = {
95 .keymap_data = &board_keymap_data,
96 .row_gpios = board_keypad_row_gpios,
97 .num_row_gpios = ARRAY_SIZE(board_keypad_row_gpios),
98 .col_gpios = board_keypad_col_gpios,
99 .num_col_gpios = ARRAY_SIZE(board_keypad_col_gpios),
100 .active_low = 1,
101
102 .debounce_ms = 20,
103 .col_scan_delay_us = 5,
104};
105
106static struct platform_device board_keyboard = {
107 .name = "matrix-keypad",
108 .id = -1,
109 .dev = {
110 .platform_data = &board_keypad_platform_data,
111 },
112};
113static void __init board_mkp_init(void)
114{
115 omap_mux_init_gpio(88, OMAP_PULL_ENA | OMAP_PULL_UP);
116 omap_mux_init_gpio(89, OMAP_PULL_ENA | OMAP_PULL_UP);
117 omap_mux_init_gpio(124, OMAP_PULL_ENA | OMAP_PULL_UP);
118 omap_mux_init_signal("mcbsp2_dr.gpio_11", OMAP_PULL_ENA | OMAP_PULL_UP);
119 if (omap_has_menelaus()) {
120 omap_mux_init_signal("sdrc_a14.gpio0",
121 OMAP_PULL_ENA | OMAP_PULL_UP);
122 omap_mux_init_signal("vlynq_rx0.gpio_15", 0);
123 omap_mux_init_signal("gpio_98", 0);
124 board_keypad_row_gpios[5] = 0;
125 board_keypad_col_gpios[2] = 15;
126 board_keypad_col_gpios[6] = 18;
127 } else {
128 omap_mux_init_signal("gpio_96", OMAP_PULL_ENA | OMAP_PULL_UP);
129 omap_mux_init_signal("gpio_100", 0);
130 omap_mux_init_signal("gpio_98", 0);
131 }
132 omap_mux_init_signal("gpio_90", 0);
133 omap_mux_init_signal("gpio_91", 0);
134 omap_mux_init_signal("gpio_36", 0);
135 omap_mux_init_signal("mcbsp2_clkx.gpio_12", 0);
136 omap_mux_init_signal("gpio_97", 0);
137
138 platform_device_register(&board_keyboard);
139}
140#else
141static inline void board_mkp_init(void)
142{
143}
144#endif
145
Tony Lindgren1dbae812005-11-10 14:26:51 +0000146static struct mtd_partition h4_partitions[] = {
147 /* bootloader (U-Boot, etc) in first sector */
148 {
149 .name = "bootloader",
150 .offset = 0,
151 .size = SZ_128K,
152 .mask_flags = MTD_WRITEABLE, /* force read-only */
153 },
154 /* bootloader params in the next sector */
155 {
156 .name = "params",
157 .offset = MTDPART_OFS_APPEND,
158 .size = SZ_128K,
159 .mask_flags = 0,
160 },
161 /* kernel */
162 {
163 .name = "kernel",
164 .offset = MTDPART_OFS_APPEND,
165 .size = SZ_2M,
166 .mask_flags = 0
167 },
168 /* file system */
169 {
170 .name = "filesystem",
171 .offset = MTDPART_OFS_APPEND,
172 .size = MTDPART_SIZ_FULL,
173 .mask_flags = 0
174 }
175};
176
Ladislav Michl561b0362010-02-15 10:03:32 -0800177static struct physmap_flash_data h4_flash_data = {
Tony Lindgren1dbae812005-11-10 14:26:51 +0000178 .width = 2,
179 .parts = h4_partitions,
180 .nr_parts = ARRAY_SIZE(h4_partitions),
181};
182
183static struct resource h4_flash_resource = {
Tony Lindgren1dbae812005-11-10 14:26:51 +0000184 .flags = IORESOURCE_MEM,
185};
186
187static struct platform_device h4_flash_device = {
Ladislav Michl561b0362010-02-15 10:03:32 -0800188 .name = "physmap-flash",
Tony Lindgren1dbae812005-11-10 14:26:51 +0000189 .id = 0,
190 .dev = {
191 .platform_data = &h4_flash_data,
192 },
193 .num_resources = 1,
194 .resource = &h4_flash_resource,
195};
196
Tony Lindgren1dbae812005-11-10 14:26:51 +0000197static struct platform_device *h4_devices[] __initdata = {
Tony Lindgren1dbae812005-11-10 14:26:51 +0000198 &h4_flash_device,
Tomi Valkeinencbf14552011-05-09 10:12:42 +0300199};
200
201static struct panel_generic_dpi_data h4_panel_data = {
202 .name = "h4",
203};
204
205static struct omap_dss_device h4_lcd_device = {
206 .name = "lcd",
207 .driver_name = "generic_dpi_panel",
208 .type = OMAP_DISPLAY_TYPE_DPI,
209 .phy.dpi.data_lines = 16,
210 .data = &h4_panel_data,
211};
212
213static struct omap_dss_device *h4_dss_devices[] = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100214 &h4_lcd_device,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000215};
216
Tomi Valkeinencbf14552011-05-09 10:12:42 +0300217static struct omap_dss_board_info h4_dss_data = {
218 .num_devices = ARRAY_SIZE(h4_dss_devices),
219 .devices = h4_dss_devices,
220 .default_device = &h4_lcd_device,
221};
222
Paul Walmsley44595982008-03-18 10:04:51 +0200223/* 2420 Sysboot setup (2430 is different) */
224static u32 get_sysboot_value(void)
225{
226 return (omap_ctrl_readl(OMAP24XX_CONTROL_STATUS) &
227 (OMAP2_SYSBOOT_5_MASK | OMAP2_SYSBOOT_4_MASK |
228 OMAP2_SYSBOOT_3_MASK | OMAP2_SYSBOOT_2_MASK |
229 OMAP2_SYSBOOT_1_MASK | OMAP2_SYSBOOT_0_MASK));
230}
231
232/* H4-2420's always used muxed mode, H4-2422's always use non-muxed
233 *
234 * Note: OMAP-GIT doesn't correctly do is_cpu_omap2422 and is_cpu_omap2423
235 * correctly. The macro needs to look at production_id not just hawkeye.
236 */
237static u32 is_gpmc_muxed(void)
238{
239 u32 mux;
240 mux = get_sysboot_value();
241 if ((mux & 0xF) == 0xd)
242 return 1; /* NAND config (could be either) */
243 if (mux & 0x2) /* if mux'ed */
244 return 1;
245 else
246 return 0;
247}
248
Paul Bolle5b6513d2013-03-08 13:06:37 +0100249#if IS_ENABLED(CONFIG_SMC91X)
Jon Hunter86c35962012-11-13 16:02:19 -0600250
251static struct omap_smc91x_platform_data board_smc91x_data = {
252 .cs = 1,
253 .gpio_irq = 92,
254 .flags = GPMC_TIMINGS_SMC91C96 | IORESOURCE_IRQ_LOWLEVEL,
255};
256
257static void __init board_smc91x_init(void)
Tony Lindgren1dbae812005-11-10 14:26:51 +0000258{
Paul Walmsley44595982008-03-18 10:04:51 +0200259 if (is_gpmc_muxed())
Jon Hunter86c35962012-11-13 16:02:19 -0600260 board_smc91x_data.flags |= GPMC_MUX_ADD_DATA;
Paul Walmsley44595982008-03-18 10:04:51 +0200261
Jon Hunter86c35962012-11-13 16:02:19 -0600262 omap_mux_init_gpio(board_smc91x_data.gpio_irq, OMAP_PIN_INPUT);
263 gpmc_smc91x_init(&board_smc91x_data);
Paul Walmsley44595982008-03-18 10:04:51 +0200264}
265
Jon Hunter86c35962012-11-13 16:02:19 -0600266#else
267
268static inline void board_smc91x_init(void)
269{
270}
271
272#endif
273
Paul Walmsley44595982008-03-18 10:04:51 +0200274static void __init h4_init_flash(void)
275{
276 unsigned long base;
277
278 if (gpmc_cs_request(H4_FLASH_CS, SZ_64M, &base) < 0) {
279 printk("Can't request GPMC CS for flash\n");
280 return;
281 }
282 h4_flash_resource.start = base;
283 h4_flash_resource.end = base + SZ_64M - 1;
Tony Lindgren1dbae812005-11-10 14:26:51 +0000284}
285
David Brownell6a769ed2008-12-10 17:36:33 -0800286static struct at24_platform_data m24c01 = {
287 .byte_len = SZ_1K / 8,
288 .page_size = 16,
289};
290
Jean Delvare9df013b2008-10-14 17:30:02 +0200291static struct i2c_board_info __initdata h4_i2c_board_info[] = {
292 {
293 I2C_BOARD_INFO("isp1301_omap", 0x2d),
Jean Delvare9df013b2008-10-14 17:30:02 +0200294 },
David Brownell6a769ed2008-12-10 17:36:33 -0800295 { /* EEPROM on mainboard */
296 I2C_BOARD_INFO("24c01", 0x52),
297 .platform_data = &m24c01,
298 },
299 { /* EEPROM on cpu card */
300 I2C_BOARD_INFO("24c01", 0x57),
301 .platform_data = &m24c01,
302 },
Jean Delvare9df013b2008-10-14 17:30:02 +0200303};
304
Tony Lindgren23275d42010-07-05 16:31:37 +0300305#ifdef CONFIG_OMAP_MUX
306static struct omap_board_mux board_mux[] __initdata = {
307 { .reg_offset = OMAP_MUX_TERMINATOR },
308};
Tony Lindgren23275d42010-07-05 16:31:37 +0300309#endif
310
Tony Lindgren1dbae812005-11-10 14:26:51 +0000311static void __init omap_h4_init(void)
312{
Tony Lindgren23275d42010-07-05 16:31:37 +0300313 omap2420_mux_init(board_mux, OMAP_PACKAGE_ZAF);
314
Tony Lindgren1dbae812005-11-10 14:26:51 +0000315 /*
316 * Make sure the serial ports are muxed on at this point.
317 * You have to mux them off in device drivers later on
318 * if not needed.
319 */
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100320
Tony Lindgren41eb2d82011-10-06 15:43:00 -0700321 board_mkp_init();
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700322 h4_i2c_board_info[0].irq = gpio_to_irq(125);
Jean Delvare9df013b2008-10-14 17:30:02 +0200323 i2c_register_board_info(1, h4_i2c_board_info,
324 ARRAY_SIZE(h4_i2c_board_info));
325
Tony Lindgren1dbae812005-11-10 14:26:51 +0000326 platform_add_devices(h4_devices, ARRAY_SIZE(h4_devices));
Tony Lindgren1dbae812005-11-10 14:26:51 +0000327 omap_serial_init();
Tony Lindgrena4ca9db2011-08-22 23:57:23 -0700328 omap_sdrc_init(NULL, NULL);
Tony Lindgren42924352011-03-10 09:51:29 -0800329 h4_init_flash();
Jon Hunter86c35962012-11-13 16:02:19 -0600330 board_smc91x_init();
Tomi Valkeinencbf14552011-05-09 10:12:42 +0300331
332 omap_display_init(&h4_dss_data);
Tony Lindgren1dbae812005-11-10 14:26:51 +0000333}
334
Tony Lindgren1dbae812005-11-10 14:26:51 +0000335MACHINE_START(OMAP_H4, "OMAP2420 H4 board")
336 /* Maintainer: Paul Mundt <paul.mundt@nokia.com> */
Nicolas Pitre5e52b432011-07-05 22:38:15 -0400337 .atag_offset = 0x100,
Russell King71ee7da2010-05-23 10:18:16 +0100338 .reserve = omap_reserve,
Tony Lindgrene990a402011-09-26 14:52:55 -0700339 .map_io = omap242x_map_io,
Tony Lindgren8f5b5a42011-08-22 23:57:24 -0700340 .init_early = omap2420_init_early,
Tony Lindgrenbe732462011-09-26 15:25:22 -0700341 .init_irq = omap2_init_irq,
Marc Zyngier6b2f55d2011-09-06 10:23:45 +0100342 .handle_irq = omap2_intc_handle_irq,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000343 .init_machine = omap_h4_init,
Shawn Guobbd707a2012-04-26 16:06:50 +0800344 .init_late = omap2420_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700345 .init_time = omap2_sync32k_timer_init,
Paul Walmsley187e3e02012-10-29 20:56:12 -0600346 .restart = omap2xxx_restart,
Tony Lindgren1dbae812005-11-10 14:26:51 +0000347MACHINE_END