blob: 8b3b60a215cbdf221a94d5901be79e4bf13d45d7 [file] [log] [blame]
Tony Lindgren9b6553c2006-04-02 17:46:30 +01001/*
2 * linux/arch/arm/mach-omap1/board-nokia770.c
3 *
4 * Modified from board-generic.c
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
Russell King2f8163b2011-07-26 10:53:52 +010010#include <linux/gpio.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010011#include <linux/kernel.h>
12#include <linux/init.h>
Matthias Kaehlcked41d2192008-06-09 16:24:08 -070013#include <linux/mutex.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010014#include <linux/platform_device.h>
15#include <linux/input.h>
16#include <linux/clk.h>
Tomi Valkeinen91773a02009-08-03 15:06:36 +030017#include <linux/omapfb.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010018
19#include <linux/spi/spi.h>
20#include <linux/spi/ads7846.h>
Dirk Behme19350612007-01-25 16:29:42 -080021#include <linux/workqueue.h>
22#include <linux/delay.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010023
Arnd Bergmann22037472012-08-24 15:21:06 +020024#include <linux/platform_data/keypad-omap.h>
25#include <linux/platform_data/lcd-mipid.h>
26
Tony Lindgren9b6553c2006-04-02 17:46:30 +010027#include <asm/mach-types.h>
28#include <asm/mach/arch.h>
29#include <asm/mach/map.h>
30
Tony Lindgren70c494c2012-09-19 10:46:56 -070031#include <mach/mux.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070032#include <plat/clock.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010033
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080034#include <mach/hardware.h>
Tony Lindgrenb924b202012-06-04 00:56:15 -070035#include <mach/usb.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080036
37#include "common.h"
Tony Lindgren68f39e72012-10-15 12:09:43 -070038#include "mmc.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080039
Imre Deak06767fb2007-03-06 18:20:00 +020040#define ADS7846_PENDOWN_GPIO 15
41
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000042static const unsigned int nokia770_keymap[] = {
43 KEY(1, 0, GROUP_0 | KEY_UP),
44 KEY(2, 0, GROUP_1 | KEY_F5),
45 KEY(0, 1, GROUP_0 | KEY_LEFT),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010046 KEY(1, 1, GROUP_0 | KEY_ENTER),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000047 KEY(2, 1, GROUP_0 | KEY_RIGHT),
48 KEY(0, 2, GROUP_1 | KEY_ESC),
49 KEY(1, 2, GROUP_0 | KEY_DOWN),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010050 KEY(2, 2, GROUP_1 | KEY_F4),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000051 KEY(0, 3, GROUP_2 | KEY_F7),
52 KEY(1, 3, GROUP_2 | KEY_F8),
53 KEY(2, 3, GROUP_2 | KEY_F6),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010054};
55
56static struct resource nokia770_kp_resources[] = {
57 [0] = {
58 .start = INT_KEYBOARD,
59 .end = INT_KEYBOARD,
60 .flags = IORESOURCE_IRQ,
61 },
62};
63
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000064static const struct matrix_keymap_data nokia770_keymap_data = {
65 .keymap = nokia770_keymap,
66 .keymap_size = ARRAY_SIZE(nokia770_keymap),
67};
68
Tony Lindgren9b6553c2006-04-02 17:46:30 +010069static struct omap_kp_platform_data nokia770_kp_data = {
Komal Shah4d246072006-09-29 01:59:20 -070070 .rows = 8,
71 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000072 .keymap_data = &nokia770_keymap_data,
Komal Shah4d246072006-09-29 01:59:20 -070073 .delay = 4,
Tony Lindgren9b6553c2006-04-02 17:46:30 +010074};
75
76static struct platform_device nokia770_kp_device = {
77 .name = "omap-keypad",
78 .id = -1,
79 .dev = {
80 .platform_data = &nokia770_kp_data,
81 },
82 .num_resources = ARRAY_SIZE(nokia770_kp_resources),
83 .resource = nokia770_kp_resources,
84};
85
86static struct platform_device *nokia770_devices[] __initdata = {
Tony Lindgrena5246262006-12-07 13:58:17 -080087 &nokia770_kp_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +010088};
89
Imre Deak06767fb2007-03-06 18:20:00 +020090static void mipid_shutdown(struct mipid_platform_data *pdata)
91{
92 if (pdata->nreset_gpio != -1) {
93 printk(KERN_INFO "shutdown LCD\n");
David Brownell0b84b5c2008-12-10 17:35:25 -080094 gpio_set_value(pdata->nreset_gpio, 0);
Imre Deak06767fb2007-03-06 18:20:00 +020095 msleep(120);
96 }
97}
98
99static struct mipid_platform_data nokia770_mipid_platform_data = {
100 .shutdown = mipid_shutdown,
101};
102
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300103static struct omap_lcd_config nokia770_lcd_config __initdata = {
104 .ctrl_name = "hwa742",
105};
106
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100107static void __init mipid_dev_init(void)
Imre Deak06767fb2007-03-06 18:20:00 +0200108{
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300109 nokia770_mipid_platform_data.nreset_gpio = 13;
110 nokia770_mipid_platform_data.data_lines = 16;
Imre Deak06767fb2007-03-06 18:20:00 +0200111
Tomi Valkeinenddba6c72011-09-20 15:23:13 +0300112 omapfb_set_lcd_config(&nokia770_lcd_config);
Imre Deak06767fb2007-03-06 18:20:00 +0200113}
114
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100115static void __init ads7846_dev_init(void)
Imre Deak06767fb2007-03-06 18:20:00 +0200116{
Jarkko Nikulaf2d18fe2008-12-10 17:35:30 -0800117 if (gpio_request(ADS7846_PENDOWN_GPIO, "ADS7846 pendown") < 0)
Imre Deak06767fb2007-03-06 18:20:00 +0200118 printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
119}
120
121static int ads7846_get_pendown_state(void)
122{
David Brownell0b84b5c2008-12-10 17:35:25 -0800123 return !gpio_get_value(ADS7846_PENDOWN_GPIO);
Imre Deak06767fb2007-03-06 18:20:00 +0200124}
125
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100126static struct ads7846_platform_data nokia770_ads7846_platform_data __initdata = {
127 .x_max = 0x0fff,
128 .y_max = 0x0fff,
129 .x_plate_ohms = 180,
130 .pressure_max = 255,
131 .debounce_max = 10,
132 .debounce_tol = 3,
Imre Deak06767fb2007-03-06 18:20:00 +0200133 .debounce_rep = 1,
134 .get_pendown_state = ads7846_get_pendown_state,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100135};
136
137static struct spi_board_info nokia770_spi_board_info[] __initdata = {
138 [0] = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800139 .modalias = "lcd_mipid",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100140 .bus_num = 2,
141 .chip_select = 3,
142 .max_speed_hz = 12000000,
Imre Deak06767fb2007-03-06 18:20:00 +0200143 .platform_data = &nokia770_mipid_platform_data,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100144 },
145 [1] = {
146 .modalias = "ads7846",
147 .bus_num = 2,
148 .chip_select = 0,
149 .max_speed_hz = 2500000,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100150 .platform_data = &nokia770_ads7846_platform_data,
151 },
152};
153
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100154static void __init hwa742_dev_init(void)
Andrew de Quincey088962c2009-05-28 14:03:31 -0700155{
156 clk_add_alias("hwa_sys_ck", NULL, "bclk", NULL);
Andrew de Quincey088962c2009-05-28 14:03:31 -0700157}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100158
159/* assume no Mini-AB port */
160
161static struct omap_usb_config nokia770_usb_config __initdata = {
162 .otg = 1,
163 .register_host = 1,
164 .register_dev = 1,
165 .hmc_mode = 16,
166 .pins[0] = 6,
167};
168
Tony Lindgrend8874662008-12-10 17:37:16 -0800169#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
170
171#define NOKIA770_GPIO_MMC_POWER 41
172#define NOKIA770_GPIO_MMC_SWITCH 23
173
174static int nokia770_mmc_set_power(struct device *dev, int slot, int power_on,
175 int vdd)
176{
Ladislav Michlbac5b292009-04-23 11:10:48 -0700177 gpio_set_value(NOKIA770_GPIO_MMC_POWER, power_on);
Tony Lindgrend8874662008-12-10 17:37:16 -0800178 return 0;
179}
180
181static int nokia770_mmc_get_cover_state(struct device *dev, int slot)
182{
183 return gpio_get_value(NOKIA770_GPIO_MMC_SWITCH);
184}
185
186static struct omap_mmc_platform_data nokia770_mmc2_data = {
187 .nr_slots = 1,
Andrew de Quinceye4d24ec2009-06-23 13:30:21 +0300188 .max_freq = 12000000,
Tony Lindgrend8874662008-12-10 17:37:16 -0800189 .slots[0] = {
190 .set_power = nokia770_mmc_set_power,
191 .get_cover_state = nokia770_mmc_get_cover_state,
Andrew de Quinceye4d24ec2009-06-23 13:30:21 +0300192 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
Tony Lindgrend8874662008-12-10 17:37:16 -0800193 .name = "mmcblk",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100194 },
195};
196
Tony Lindgrend8874662008-12-10 17:37:16 -0800197static struct omap_mmc_platform_data *nokia770_mmc_data[OMAP16XX_NR_MMC];
198
199static void __init nokia770_mmc_init(void)
200{
201 int ret;
202
203 ret = gpio_request(NOKIA770_GPIO_MMC_POWER, "MMC power");
204 if (ret < 0)
205 return;
206 gpio_direction_output(NOKIA770_GPIO_MMC_POWER, 0);
207
208 ret = gpio_request(NOKIA770_GPIO_MMC_SWITCH, "MMC cover");
209 if (ret < 0) {
210 gpio_free(NOKIA770_GPIO_MMC_POWER);
211 return;
212 }
213 gpio_direction_input(NOKIA770_GPIO_MMC_SWITCH);
214
215 /* Only the second MMC controller is used */
216 nokia770_mmc_data[1] = &nokia770_mmc2_data;
217 omap1_init_mmc(nokia770_mmc_data, OMAP16XX_NR_MMC);
218}
219
220#else
221static inline void nokia770_mmc_init(void)
222{
223}
224#endif
225
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100226static void __init omap_nokia770_init(void)
227{
Tony Lindgren7b88e622011-10-05 15:14:02 -0700228 /* On Nokia 770, the SleepX signal is masked with an
229 * MPUIO line by default. It has to be unmasked for it
230 * to become functional */
231
232 /* SleepX mask direction */
233 omap_writew((omap_readw(0xfffb5008) & ~2), 0xfffb5008);
234 /* Unmask SleepX signal */
235 omap_writew((omap_readw(0xfffb5004) & ~2), 0xfffb5004);
236
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100237 platform_add_devices(nokia770_devices, ARRAY_SIZE(nokia770_devices));
Tarun Kanti DebBarma46a0a542012-03-29 08:41:01 -0700238 nokia770_spi_board_info[1].irq = gpio_to_irq(15);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100239 spi_register_board_info(nokia770_spi_board_info,
240 ARRAY_SIZE(nokia770_spi_board_info));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100241 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200242 omap_register_i2c_bus(1, 100, NULL, 0);
Andrew de Quincey088962c2009-05-28 14:03:31 -0700243 hwa742_dev_init();
Imre Deak06767fb2007-03-06 18:20:00 +0200244 ads7846_dev_init();
245 mipid_dev_init();
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300246 omap1_usb_init(&nokia770_usb_config);
Tony Lindgrend8874662008-12-10 17:37:16 -0800247 nokia770_mmc_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100248}
249
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100250MACHINE_START(NOKIA770, "Nokia 770")
Nicolas Pitre246e3892011-07-05 22:38:15 -0400251 .atag_offset = 0x100,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700252 .map_io = omap16xx_map_io,
253 .init_early = omap1_init_early,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700254 .init_irq = omap1_init_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100255 .init_machine = omap_nokia770_init,
Shawn Guo82c3bd02012-04-26 13:49:29 +0800256 .init_late = omap1_init_late,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700257 .timer = &omap1_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000258 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100259MACHINE_END