blob: a2c5abcd7c84e56d53c441059cf526294883c294 [file] [log] [blame]
Marek Vasutec70e8a2006-12-06 17:13:57 -08001/*
2 * linux/arch/arm/mach-omap1/board-palmz71.c
3 *
4 * Modified from board-generic.c
5 *
6 * Support for the Palm Zire71 PDA.
7 *
8 * Original version : Laurent Gonzalez
9 *
10 * Modified for zire71 : Marek Vasut
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/delay.h>
Russell King2f8163b2011-07-26 10:53:52 +010018#include <linux/gpio.h>
Marek Vasutec70e8a2006-12-06 17:13:57 -080019#include <linux/kernel.h>
20#include <linux/init.h>
21#include <linux/platform_device.h>
22#include <linux/notifier.h>
23#include <linux/clk.h>
24#include <linux/irq.h>
25#include <linux/input.h>
26#include <linux/interrupt.h>
27#include <linux/mtd/mtd.h>
28#include <linux/mtd/partitions.h>
Ladislav Michl561b0362010-02-15 10:03:32 -080029#include <linux/mtd/physmap.h>
Tomi Valkeinenddba6c72011-09-20 15:23:13 +030030#include <linux/omapfb.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080031#include <linux/spi/spi.h>
32#include <linux/spi/ads7846.h>
Marek Vasutec70e8a2006-12-06 17:13:57 -080033
Marek Vasutec70e8a2006-12-06 17:13:57 -080034#include <asm/mach-types.h>
35#include <asm/mach/arch.h>
36#include <asm/mach/map.h>
Marek Vasutec70e8a2006-12-06 17:13:57 -080037
Ladislav Michl561b0362010-02-15 10:03:32 -080038#include <plat/flash.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/mux.h>
40#include <plat/usb.h>
41#include <plat/dma.h>
42#include <plat/tc.h>
43#include <plat/board.h>
44#include <plat/irda.h>
45#include <plat/keypad.h>
Marek Vasutec70e8a2006-12-06 17:13:57 -080046
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080047#include <mach/hardware.h>
48
49#include "common.h"
Marek Vasutec70e8a2006-12-06 17:13:57 -080050
Tony Lindgrenb2830812009-03-23 18:07:35 -070051#define PALMZ71_USBDETECT_GPIO 0
52#define PALMZ71_PENIRQ_GPIO 6
53#define PALMZ71_MMC_WP_GPIO 8
54#define PALMZ71_HDQ_GPIO 11
55
56#define PALMZ71_HOTSYNC_GPIO OMAP_MPUIO(1)
57#define PALMZ71_CABLE_GPIO OMAP_MPUIO(2)
58#define PALMZ71_SLIDER_GPIO OMAP_MPUIO(3)
59#define PALMZ71_MMC_IN_GPIO OMAP_MPUIO(4)
60
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000061static const unsigned int palmz71_keymap[] = {
Marek Vasutec70e8a2006-12-06 17:13:57 -080062 KEY(0, 0, KEY_F1),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000063 KEY(1, 0, KEY_F2),
64 KEY(2, 0, KEY_F3),
65 KEY(3, 0, KEY_F4),
66 KEY(4, 0, KEY_POWER),
67 KEY(0, 1, KEY_LEFT),
Marek Vasutec70e8a2006-12-06 17:13:57 -080068 KEY(1, 1, KEY_DOWN),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000069 KEY(2, 1, KEY_UP),
70 KEY(3, 1, KEY_RIGHT),
71 KEY(4, 1, KEY_ENTER),
72 KEY(0, 2, KEY_CAMERA),
73};
74
75static const struct matrix_keymap_data palmz71_keymap_data = {
76 .keymap = palmz71_keymap,
77 .keymap_size = ARRAY_SIZE(palmz71_keymap),
Marek Vasutec70e8a2006-12-06 17:13:57 -080078};
79
80static struct omap_kp_platform_data palmz71_kp_data = {
81 .rows = 8,
82 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000083 .keymap_data = &palmz71_keymap_data,
84 .rep = true,
Marek Vasutec70e8a2006-12-06 17:13:57 -080085 .delay = 80,
86};
87
88static struct resource palmz71_kp_resources[] = {
89 [0] = {
90 .start = INT_KEYBOARD,
91 .end = INT_KEYBOARD,
92 .flags = IORESOURCE_IRQ,
93 },
94};
95
96static struct platform_device palmz71_kp_device = {
97 .name = "omap-keypad",
98 .id = -1,
99 .dev = {
100 .platform_data = &palmz71_kp_data,
101 },
102 .num_resources = ARRAY_SIZE(palmz71_kp_resources),
103 .resource = palmz71_kp_resources,
104};
105
106static struct mtd_partition palmz71_rom_partitions[] = {
107 /* PalmOS "Small ROM", contains the bootloader and the debugger */
108 {
109 .name = "smallrom",
110 .offset = 0,
111 .size = 0xa000,
112 .mask_flags = MTD_WRITEABLE,
113 },
114 /* PalmOS "Big ROM", a filesystem with all the OS code and data */
115 {
116 .name = "bigrom",
117 .offset = SZ_128K,
118 /*
119 * 0x5f0000 bytes big in the multi-language ("EFIGS") version,
120 * 0x7b0000 bytes in the English-only ("enUS") version.
121 */
122 .size = 0x7b0000,
123 .mask_flags = MTD_WRITEABLE,
124 },
125};
126
Ladislav Michl561b0362010-02-15 10:03:32 -0800127static struct physmap_flash_data palmz71_rom_data = {
Marek Vasutec70e8a2006-12-06 17:13:57 -0800128 .width = 2,
Ladislav Michl561b0362010-02-15 10:03:32 -0800129 .set_vpp = omap1_set_vpp,
Marek Vasutec70e8a2006-12-06 17:13:57 -0800130 .parts = palmz71_rom_partitions,
131 .nr_parts = ARRAY_SIZE(palmz71_rom_partitions),
132};
133
134static struct resource palmz71_rom_resource = {
135 .start = OMAP_CS0_PHYS,
136 .end = OMAP_CS0_PHYS + SZ_8M - 1,
137 .flags = IORESOURCE_MEM,
138};
139
140static struct platform_device palmz71_rom_device = {
Ladislav Michl561b0362010-02-15 10:03:32 -0800141 .name = "physmap-flash",
Marek Vasutec70e8a2006-12-06 17:13:57 -0800142 .id = -1,
143 .dev = {
144 .platform_data = &palmz71_rom_data,
145 },
146 .num_resources = 1,
147 .resource = &palmz71_rom_resource,
148};
149
150static struct platform_device palmz71_lcd_device = {
151 .name = "lcd_palmz71",
152 .id = -1,
153};
154
155static struct omap_irda_config palmz71_irda_config = {
156 .transceiver_cap = IR_SIRMODE,
157 .rx_channel = OMAP_DMA_UART3_RX,
158 .tx_channel = OMAP_DMA_UART3_TX,
159 .dest_start = UART3_THR,
160 .src_start = UART3_RHR,
161 .tx_trigger = 0,
162 .rx_trigger = 0,
163};
164
165static struct resource palmz71_irda_resources[] = {
166 [0] = {
167 .start = INT_UART3,
168 .end = INT_UART3,
169 .flags = IORESOURCE_IRQ,
170 },
171};
172
173static struct platform_device palmz71_irda_device = {
174 .name = "omapirda",
175 .id = -1,
176 .dev = {
177 .platform_data = &palmz71_irda_config,
178 },
179 .num_resources = ARRAY_SIZE(palmz71_irda_resources),
180 .resource = palmz71_irda_resources,
181};
182
183static struct platform_device palmz71_spi_device = {
184 .name = "spi_palmz71",
185 .id = -1,
186};
187
Marek Vasutec70e8a2006-12-06 17:13:57 -0800188static struct omap_backlight_config palmz71_backlight_config = {
189 .default_intensity = 0xa0,
190};
191
192static struct platform_device palmz71_backlight_device = {
193 .name = "omap-bl",
194 .id = -1,
195 .dev = {
196 .platform_data = &palmz71_backlight_config,
197 },
198};
199
200static struct platform_device *devices[] __initdata = {
201 &palmz71_rom_device,
202 &palmz71_kp_device,
Marek Vasutec70e8a2006-12-06 17:13:57 -0800203 &palmz71_lcd_device,
204 &palmz71_irda_device,
205 &palmz71_spi_device,
206 &palmz71_backlight_device,
207};
208
209static int
210palmz71_get_pendown_state(void)
211{
David Brownell0b84b5c2008-12-10 17:35:25 -0800212 return !gpio_get_value(PALMZ71_PENIRQ_GPIO);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800213}
214
215static const struct ads7846_platform_data palmz71_ts_info = {
216 .model = 7846,
217 .vref_delay_usecs = 100, /* internal, no capacitor */
218 .x_plate_ohms = 419,
219 .y_plate_ohms = 486,
220 .get_pendown_state = palmz71_get_pendown_state,
221};
222
223static struct spi_board_info __initdata palmz71_boardinfo[] = { {
224 /* MicroWire (bus 2) CS0 has an ads7846e */
225 .modalias = "ads7846",
226 .platform_data = &palmz71_ts_info,
Marek Vasutec70e8a2006-12-06 17:13:57 -0800227 .max_speed_hz = 120000 /* max sample rate at 3V */
228 * 26 /* command + data + overhead */,
229 .bus_num = 2,
230 .chip_select = 0,
231} };
232
233static struct omap_usb_config palmz71_usb_config __initdata = {
234 .register_dev = 1, /* Mini-B only receptacle */
235 .hmc_mode = 0,
236 .pins[0] = 2,
237};
238
Marek Vasutec70e8a2006-12-06 17:13:57 -0800239static struct omap_lcd_config palmz71_lcd_config __initdata = {
240 .ctrl_name = "internal",
241};
242
Marek Vasutec70e8a2006-12-06 17:13:57 -0800243static irqreturn_t
244palmz71_powercable(int irq, void *dev_id)
245{
David Brownell0b84b5c2008-12-10 17:35:25 -0800246 if (gpio_get_value(PALMZ71_USBDETECT_GPIO)) {
Marek Vasutec70e8a2006-12-06 17:13:57 -0800247 printk(KERN_INFO "PM: Power cable connected\n");
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100248 irq_set_irq_type(gpio_to_irq(PALMZ71_USBDETECT_GPIO),
249 IRQ_TYPE_EDGE_FALLING);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800250 } else {
251 printk(KERN_INFO "PM: Power cable disconnected\n");
Thomas Gleixner6845664a2011-03-24 13:25:22 +0100252 irq_set_irq_type(gpio_to_irq(PALMZ71_USBDETECT_GPIO),
253 IRQ_TYPE_EDGE_RISING);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800254 }
255 return IRQ_HANDLED;
256}
257
258static void __init
259omap_mpu_wdt_mode(int mode)
260{
261 if (mode)
262 omap_writew(0x8000, OMAP_WDT_TIMER_MODE);
263 else {
264 omap_writew(0x00f5, OMAP_WDT_TIMER_MODE);
265 omap_writew(0x00a0, OMAP_WDT_TIMER_MODE);
266 }
267}
268
269static void __init
270palmz71_gpio_setup(int early)
271{
272 if (early) {
273 /* Only set GPIO1 so we have a working serial */
David Brownelle918edf2008-12-10 17:35:26 -0800274 gpio_direction_output(1, 1);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800275 } else {
276 /* Set MMC/SD host WP pin as input */
Jarkko Nikulaf2d18fe2008-12-10 17:35:30 -0800277 if (gpio_request(PALMZ71_MMC_WP_GPIO, "MMC WP") < 0) {
Marek Vasutec70e8a2006-12-06 17:13:57 -0800278 printk(KERN_ERR "Could not reserve WP GPIO!\n");
279 return;
280 }
David Brownell40e39252008-12-10 17:35:26 -0800281 gpio_direction_input(PALMZ71_MMC_WP_GPIO);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800282
283 /* Monitor the Power-cable-connected signal */
Jarkko Nikulaf2d18fe2008-12-10 17:35:30 -0800284 if (gpio_request(PALMZ71_USBDETECT_GPIO, "USB detect") < 0) {
Marek Vasutec70e8a2006-12-06 17:13:57 -0800285 printk(KERN_ERR
286 "Could not reserve cable signal GPIO!\n");
287 return;
288 }
David Brownell40e39252008-12-10 17:35:26 -0800289 gpio_direction_input(PALMZ71_USBDETECT_GPIO);
David Brownell15f74b02008-12-10 17:35:26 -0800290 if (request_irq(gpio_to_irq(PALMZ71_USBDETECT_GPIO),
Marek Vasutec70e8a2006-12-06 17:13:57 -0800291 palmz71_powercable, IRQF_SAMPLE_RANDOM,
292 "palmz71-cable", 0))
293 printk(KERN_ERR
294 "IRQ request for power cable failed!\n");
David Brownell15f74b02008-12-10 17:35:26 -0800295 palmz71_powercable(gpio_to_irq(PALMZ71_USBDETECT_GPIO), 0);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800296 }
297}
298
299static void __init
300omap_palmz71_init(void)
301{
Janusz Krzysztofikc33da3a2009-10-22 14:47:42 -0700302 /* mux pins for uarts */
303 omap_cfg_reg(UART1_TX);
304 omap_cfg_reg(UART1_RTS);
305 omap_cfg_reg(UART2_TX);
306 omap_cfg_reg(UART2_RTS);
307 omap_cfg_reg(UART3_TX);
308 omap_cfg_reg(UART3_RX);
309
Marek Vasutec70e8a2006-12-06 17:13:57 -0800310 palmz71_gpio_setup(1);
311 omap_mpu_wdt_mode(0);
312
Marek Vasutec70e8a2006-12-06 17:13:57 -0800313 platform_add_devices(devices, ARRAY_SIZE(devices));
314
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700315 palmz71_boardinfo[0].irq = gpio_to_irq(PALMZ71_PENIRQ_GPIO);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800316 spi_register_board_info(palmz71_boardinfo,
317 ARRAY_SIZE(palmz71_boardinfo));
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300318 omap1_usb_init(&palmz71_usb_config);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800319 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200320 omap_register_i2c_bus(1, 100, NULL, 0);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800321 palmz71_gpio_setup(0);
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300322
323 omapfb_set_lcd_config(&palmz71_lcd_config);
Marek Vasutec70e8a2006-12-06 17:13:57 -0800324}
325
Marek Vasutec70e8a2006-12-06 17:13:57 -0800326MACHINE_START(OMAP_PALMZ71, "OMAP310 based Palm Zire71")
Nicolas Pitre246e3892011-07-05 22:38:15 -0400327 .atag_offset = 0x100,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700328 .map_io = omap15xx_map_io,
329 .init_early = omap1_init_early,
Russell King71ee7da2010-05-23 10:18:16 +0100330 .reserve = omap_reserve,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700331 .init_irq = omap1_init_irq,
Russell King71ee7da2010-05-23 10:18:16 +0100332 .init_machine = omap_palmz71_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700333 .timer = &omap1_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000334 .restart = omap1_restart,
Marek Vasutec70e8a2006-12-06 17:13:57 -0800335MACHINE_END