blob: c3aa6f2e5546e0f4da1907c01fb768996bdccd07 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Brian Swetland495f71d2006-06-26 16:16:03 -07002/*
3 * linux/arch/arm/mach-omap1/board-fsample.c
4 *
5 * Modified from board-perseus2.c
6 *
7 * Original OMAP730 support by Jean Pihet <j-pihet@ti.com>
8 * Updated for 2.6 by Kevin Hilman <kjh@hilman.org>
Brian Swetland495f71d2006-06-26 16:16:03 -07009 */
Russell King2f8163b2011-07-26 10:53:52 +010010#include <linux/gpio.h>
Brian Swetland495f71d2006-06-26 16:16:03 -070011#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/platform_device.h>
14#include <linux/delay.h>
15#include <linux/mtd/mtd.h>
Boris Brezillonc7921bb2018-09-07 00:38:46 +020016#include <linux/mtd/platnand.h>
Ladislav Michl561b0362010-02-15 10:03:32 -080017#include <linux/mtd/physmap.h>
Brian Swetland495f71d2006-06-26 16:16:03 -070018#include <linux/input.h>
Ladislav Michl3bc48012009-12-11 16:16:33 -080019#include <linux/smc91x.h>
Tomi Valkeinenddba6c72011-09-20 15:23:13 +030020#include <linux/omapfb.h>
Brian Swetland495f71d2006-06-26 16:16:03 -070021
Brian Swetland495f71d2006-06-26 16:16:03 -070022#include <asm/mach-types.h>
23#include <asm/mach/arch.h>
Brian Swetland495f71d2006-06-26 16:16:03 -070024#include <asm/mach/map.h>
25
Tony Lindgren54b693d2012-10-02 13:39:28 -070026#include <mach/tc.h>
Tony Lindgren70c494c2012-09-19 10:46:56 -070027#include <mach/mux.h>
Arnd Bergmann100f9632015-01-30 10:45:33 +010028#include "flash.h"
Arnd Bergmann22037472012-08-24 15:21:06 +020029#include <linux/platform_data/keypad-omap.h>
Tony Lindgrend9558b12009-03-23 18:07:32 -070030
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080031#include <mach/hardware.h>
32
33#include "iomap.h"
34#include "common.h"
Tony Lindgren21d182b2012-10-31 14:02:46 -070035#include "fpga.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080036
Tony Lindgrend9558b12009-03-23 18:07:32 -070037/* fsample is pretty close to p2-sample */
38
39#define fsample_cpld_read(reg) __raw_readb(reg)
40#define fsample_cpld_write(val, reg) __raw_writeb(val, reg)
41
42#define FSAMPLE_CPLD_BASE 0xE8100000
43#define FSAMPLE_CPLD_SIZE SZ_4K
44#define FSAMPLE_CPLD_START 0x05080000
45
46#define FSAMPLE_CPLD_REG_A (FSAMPLE_CPLD_BASE + 0x00)
47#define FSAMPLE_CPLD_SWITCH (FSAMPLE_CPLD_BASE + 0x02)
48#define FSAMPLE_CPLD_UART (FSAMPLE_CPLD_BASE + 0x02)
49#define FSAMPLE_CPLD_REG_B (FSAMPLE_CPLD_BASE + 0x04)
50#define FSAMPLE_CPLD_VERSION (FSAMPLE_CPLD_BASE + 0x06)
51#define FSAMPLE_CPLD_SET_CLR (FSAMPLE_CPLD_BASE + 0x06)
52
53#define FSAMPLE_CPLD_BIT_BT_RESET 0
54#define FSAMPLE_CPLD_BIT_LCD_RESET 1
55#define FSAMPLE_CPLD_BIT_CAM_PWDN 2
56#define FSAMPLE_CPLD_BIT_CHARGER_ENABLE 3
57#define FSAMPLE_CPLD_BIT_SD_MMC_EN 4
58#define FSAMPLE_CPLD_BIT_aGPS_PWREN 5
59#define FSAMPLE_CPLD_BIT_BACKLIGHT 6
60#define FSAMPLE_CPLD_BIT_aGPS_EN_RESET 7
61#define FSAMPLE_CPLD_BIT_aGPS_SLEEPx_N 8
62#define FSAMPLE_CPLD_BIT_OTG_RESET 9
63
64#define fsample_cpld_set(bit) \
65 fsample_cpld_write((((bit) & 15) << 4) | 0x0f, FSAMPLE_CPLD_SET_CLR)
66
67#define fsample_cpld_clear(bit) \
68 fsample_cpld_write(0xf0 | ((bit) & 15), FSAMPLE_CPLD_SET_CLR)
Brian Swetland495f71d2006-06-26 16:16:03 -070069
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000070static const unsigned int fsample_keymap[] = {
71 KEY(0, 0, KEY_UP),
72 KEY(1, 0, KEY_RIGHT),
73 KEY(2, 0, KEY_LEFT),
74 KEY(3, 0, KEY_DOWN),
75 KEY(4, 0, KEY_ENTER),
76 KEY(0, 1, KEY_F10),
77 KEY(1, 1, KEY_SEND),
78 KEY(2, 1, KEY_END),
79 KEY(3, 1, KEY_VOLUMEDOWN),
80 KEY(4, 1, KEY_VOLUMEUP),
81 KEY(5, 1, KEY_RECORD),
82 KEY(0, 2, KEY_F9),
83 KEY(1, 2, KEY_3),
84 KEY(2, 2, KEY_6),
85 KEY(3, 2, KEY_9),
86 KEY(4, 2, KEY_KPDOT),
87 KEY(0, 3, KEY_BACK),
88 KEY(1, 3, KEY_2),
89 KEY(2, 3, KEY_5),
90 KEY(3, 3, KEY_8),
91 KEY(4, 3, KEY_0),
92 KEY(5, 3, KEY_KPSLASH),
93 KEY(0, 4, KEY_HOME),
94 KEY(1, 4, KEY_1),
95 KEY(2, 4, KEY_4),
96 KEY(3, 4, KEY_7),
97 KEY(4, 4, KEY_KPASTERISK),
98 KEY(5, 4, KEY_POWER),
Brian Swetland495f71d2006-06-26 16:16:03 -070099};
100
Ladislav Michl3bc48012009-12-11 16:16:33 -0800101static struct smc91x_platdata smc91x_info = {
102 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
103 .leda = RPC_LED_100_10,
104 .ledb = RPC_LED_TX_RX,
105};
106
Brian Swetland495f71d2006-06-26 16:16:03 -0700107static struct resource smc91x_resources[] = {
108 [0] = {
109 .start = H2P2_DBG_FPGA_ETHR_START, /* Physical */
110 .end = H2P2_DBG_FPGA_ETHR_START + 0xf,
111 .flags = IORESOURCE_MEM,
112 },
113 [1] = {
Alistair Buxton372b1c32009-09-18 04:09:39 +0100114 .start = INT_7XX_MPU_EXT_NIRQ,
Brian Swetland495f71d2006-06-26 16:16:03 -0700115 .end = 0,
Russell Kinge7b3dc72008-01-14 22:30:10 +0000116 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE,
Brian Swetland495f71d2006-06-26 16:16:03 -0700117 },
118};
119
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800120static void __init fsample_init_smc91x(void)
121{
Tony Lindgren4c98dc62012-10-02 12:39:09 -0700122 __raw_writeb(1, H2P2_DBG_FPGA_LAN_RESET);
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800123 mdelay(50);
Tony Lindgren4c98dc62012-10-02 12:39:09 -0700124 __raw_writeb(__raw_readb(H2P2_DBG_FPGA_LAN_RESET) & ~1,
Tony Lindgrenc2cdaff2010-12-07 16:26:55 -0800125 H2P2_DBG_FPGA_LAN_RESET);
126 mdelay(50);
127}
128
Brian Swetland495f71d2006-06-26 16:16:03 -0700129static struct mtd_partition nor_partitions[] = {
130 /* bootloader (U-Boot, etc) in first sector */
131 {
132 .name = "bootloader",
133 .offset = 0,
134 .size = SZ_128K,
135 .mask_flags = MTD_WRITEABLE, /* force read-only */
136 },
137 /* bootloader params in the next sector */
138 {
139 .name = "params",
140 .offset = MTDPART_OFS_APPEND,
141 .size = SZ_128K,
142 .mask_flags = 0,
143 },
144 /* kernel */
145 {
146 .name = "kernel",
147 .offset = MTDPART_OFS_APPEND,
148 .size = SZ_2M,
149 .mask_flags = 0
150 },
151 /* rest of flash is a file system */
152 {
153 .name = "rootfs",
154 .offset = MTDPART_OFS_APPEND,
155 .size = MTDPART_SIZ_FULL,
156 .mask_flags = 0
157 },
158};
159
Ladislav Michl561b0362010-02-15 10:03:32 -0800160static struct physmap_flash_data nor_data = {
Brian Swetland495f71d2006-06-26 16:16:03 -0700161 .width = 2,
Ladislav Michl561b0362010-02-15 10:03:32 -0800162 .set_vpp = omap1_set_vpp,
Brian Swetland495f71d2006-06-26 16:16:03 -0700163 .parts = nor_partitions,
164 .nr_parts = ARRAY_SIZE(nor_partitions),
165};
166
167static struct resource nor_resource = {
168 .start = OMAP_CS0_PHYS,
169 .end = OMAP_CS0_PHYS + SZ_32M - 1,
170 .flags = IORESOURCE_MEM,
171};
172
173static struct platform_device nor_device = {
Ladislav Michl561b0362010-02-15 10:03:32 -0800174 .name = "physmap-flash",
Brian Swetland495f71d2006-06-26 16:16:03 -0700175 .id = 0,
176 .dev = {
177 .platform_data = &nor_data,
178 },
179 .num_resources = 1,
180 .resource = &nor_resource,
181};
182
Ladislav Michl414f552a2009-12-11 16:16:33 -0800183#define FSAMPLE_NAND_RB_GPIO_PIN 62
184
Boris Brezillon47bd59e2018-09-06 14:05:13 +0200185static int nand_dev_ready(struct nand_chip *chip)
Ladislav Michl414f552a2009-12-11 16:16:33 -0800186{
187 return gpio_get_value(FSAMPLE_NAND_RB_GPIO_PIN);
188}
189
Ladislav Michl414f552a2009-12-11 16:16:33 -0800190static struct platform_nand_data nand_data = {
191 .chip = {
192 .nr_chips = 1,
193 .chip_offset = 0,
194 .options = NAND_SAMSUNG_LP_OPTIONS,
Ladislav Michl414f552a2009-12-11 16:16:33 -0800195 },
196 .ctrl = {
Paul Walmsley31cde042012-04-13 06:34:31 -0600197 .cmd_ctrl = omap1_nand_cmd_ctl,
Ladislav Michl414f552a2009-12-11 16:16:33 -0800198 .dev_ready = nand_dev_ready,
199 },
Brian Swetland495f71d2006-06-26 16:16:03 -0700200};
201
202static struct resource nand_resource = {
203 .start = OMAP_CS3_PHYS,
204 .end = OMAP_CS3_PHYS + SZ_4K - 1,
205 .flags = IORESOURCE_MEM,
206};
207
208static struct platform_device nand_device = {
Ladislav Michl414f552a2009-12-11 16:16:33 -0800209 .name = "gen_nand",
Brian Swetland495f71d2006-06-26 16:16:03 -0700210 .id = 0,
211 .dev = {
212 .platform_data = &nand_data,
213 },
214 .num_resources = 1,
215 .resource = &nand_resource,
216};
217
218static struct platform_device smc91x_device = {
219 .name = "smc91x",
220 .id = 0,
Ladislav Michl3bc48012009-12-11 16:16:33 -0800221 .dev = {
222 .platform_data = &smc91x_info,
223 },
Brian Swetland495f71d2006-06-26 16:16:03 -0700224 .num_resources = ARRAY_SIZE(smc91x_resources),
225 .resource = smc91x_resources,
226};
227
228static struct resource kp_resources[] = {
229 [0] = {
Alistair Buxton372b1c32009-09-18 04:09:39 +0100230 .start = INT_7XX_MPUIO_KEYPAD,
231 .end = INT_7XX_MPUIO_KEYPAD,
Brian Swetland495f71d2006-06-26 16:16:03 -0700232 .flags = IORESOURCE_IRQ,
233 },
234};
235
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000236static const struct matrix_keymap_data fsample_keymap_data = {
237 .keymap = fsample_keymap,
238 .keymap_size = ARRAY_SIZE(fsample_keymap),
239};
240
Brian Swetland495f71d2006-06-26 16:16:03 -0700241static struct omap_kp_platform_data kp_data = {
Komal Shah4d246072006-09-29 01:59:20 -0700242 .rows = 8,
243 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +0000244 .keymap_data = &fsample_keymap_data,
Komal Shah4d246072006-09-29 01:59:20 -0700245 .delay = 4,
Brian Swetland495f71d2006-06-26 16:16:03 -0700246};
247
248static struct platform_device kp_device = {
249 .name = "omap-keypad",
250 .id = -1,
251 .dev = {
252 .platform_data = &kp_data,
253 },
254 .num_resources = ARRAY_SIZE(kp_resources),
255 .resource = kp_resources,
256};
257
Brian Swetland495f71d2006-06-26 16:16:03 -0700258static struct platform_device *devices[] __initdata = {
259 &nor_device,
260 &nand_device,
261 &smc91x_device,
262 &kp_device,
Brian Swetland495f71d2006-06-26 16:16:03 -0700263};
264
Bhumika Goyald25c70c2017-08-22 11:55:50 +0530265static const struct omap_lcd_config fsample_lcd_config = {
Brian Swetland495f71d2006-06-26 16:16:03 -0700266 .ctrl_name = "internal",
267};
268
Brian Swetland495f71d2006-06-26 16:16:03 -0700269static void __init omap_fsample_init(void)
270{
Brian Swetland495f71d2006-06-26 16:16:03 -0700271 /* Early, board-dependent init */
272
273 /*
274 * Hold GSM Reset until needed
275 */
Alistair Buxtonb51988d2009-09-22 07:34:13 +0100276 omap_writew(omap_readw(OMAP7XX_DSP_M_CTL) & ~1, OMAP7XX_DSP_M_CTL);
Brian Swetland495f71d2006-06-26 16:16:03 -0700277
278 /*
279 * UARTs -> done automagically by 8250 driver
280 */
281
282 /*
283 * CSx timings, GPIO Mux ... setup
284 */
285
286 /* Flash: CS0 timings setup */
Alistair Buxtonb51988d2009-09-22 07:34:13 +0100287 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_0);
288 omap_writel(0x00000088, OMAP7XX_FLASH_ACFG_0);
Brian Swetland495f71d2006-06-26 16:16:03 -0700289
290 /*
291 * Ethernet support through the debug board
292 * CS1 timings setup
293 */
Alistair Buxtonb51988d2009-09-22 07:34:13 +0100294 omap_writel(0x0000fff3, OMAP7XX_FLASH_CFG_1);
295 omap_writel(0x00000000, OMAP7XX_FLASH_ACFG_1);
Brian Swetland495f71d2006-06-26 16:16:03 -0700296
297 /*
298 * Configure MPU_EXT_NIRQ IO in IO_CONF9 register,
299 * It is used as the Ethernet controller interrupt
300 */
Tony Lindgren7b88e622011-10-05 15:14:02 -0700301 omap_writel(omap_readl(OMAP7XX_IO_CONF_9) & 0x1FFFFFFF,
302 OMAP7XX_IO_CONF_9);
303
304 fsample_init_smc91x();
305
Sasha Levin04494102012-11-08 15:23:09 -0500306 BUG_ON(gpio_request(FSAMPLE_NAND_RB_GPIO_PIN, "NAND ready") < 0);
Tony Lindgren7b88e622011-10-05 15:14:02 -0700307 gpio_direction_input(FSAMPLE_NAND_RB_GPIO_PIN);
308
309 omap_cfg_reg(L3_1610_FLASH_CS2B_OE);
310 omap_cfg_reg(M8_1610_FLASH_CS2B_WE);
311
312 /* Mux pins for keypad */
313 omap_cfg_reg(E2_7XX_KBR0);
314 omap_cfg_reg(J7_7XX_KBR1);
315 omap_cfg_reg(E1_7XX_KBR2);
316 omap_cfg_reg(F3_7XX_KBR3);
317 omap_cfg_reg(D2_7XX_KBR4);
318 omap_cfg_reg(C2_7XX_KBC0);
319 omap_cfg_reg(D3_7XX_KBC1);
320 omap_cfg_reg(E4_7XX_KBC2);
321 omap_cfg_reg(F4_7XX_KBC3);
322 omap_cfg_reg(E3_7XX_KBC4);
323
324 platform_add_devices(devices, ARRAY_SIZE(devices));
325
Tony Lindgren7b88e622011-10-05 15:14:02 -0700326 omap_serial_init();
327 omap_register_i2c_bus(1, 100, NULL, 0);
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300328
329 omapfb_set_lcd_config(&fsample_lcd_config);
Tony Lindgren7b88e622011-10-05 15:14:02 -0700330}
331
332/* Only FPGA needs to be mapped here. All others are done with ioremap */
333static struct map_desc omap_fsample_io_desc[] __initdata = {
334 {
335 .virtual = H2P2_DBG_FPGA_BASE,
336 .pfn = __phys_to_pfn(H2P2_DBG_FPGA_START),
337 .length = H2P2_DBG_FPGA_SIZE,
338 .type = MT_DEVICE
339 },
340 {
341 .virtual = FSAMPLE_CPLD_BASE,
342 .pfn = __phys_to_pfn(FSAMPLE_CPLD_START),
343 .length = FSAMPLE_CPLD_SIZE,
344 .type = MT_DEVICE
345 }
346};
347
348static void __init omap_fsample_map_io(void)
349{
350 omap15xx_map_io();
351 iotable_init(omap_fsample_io_desc,
352 ARRAY_SIZE(omap_fsample_io_desc));
Brian Swetland495f71d2006-06-26 16:16:03 -0700353}
354
355MACHINE_START(OMAP_FSAMPLE, "OMAP730 F-Sample")
356/* Maintainer: Brian Swetland <swetland@google.com> */
Nicolas Pitre246e3892011-07-05 22:38:15 -0400357 .atag_offset = 0x100,
Brian Swetland495f71d2006-06-26 16:16:03 -0700358 .map_io = omap_fsample_map_io,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700359 .init_early = omap1_init_early,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700360 .init_irq = omap1_init_irq,
Tony Lindgrenb6943312015-05-20 09:01:21 -0700361 .handle_irq = omap1_handle_irq,
Brian Swetland495f71d2006-06-26 16:16:03 -0700362 .init_machine = omap_fsample_init,
Shawn Guo82c3bd02012-04-26 13:49:29 +0800363 .init_late = omap1_init_late,
Stephen Warren6bb27d72012-11-08 12:40:59 -0700364 .init_time = omap1_timer_init,
Russell Kingbaa95882011-11-05 17:06:28 +0000365 .restart = omap1_restart,
Brian Swetland495f71d2006-06-26 16:16:03 -0700366MACHINE_END