blob: 7155d8ce516a32e1247c4c3b74d51989fc38f149 [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
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010025#include <asm/mach-types.h>
26#include <asm/mach/arch.h>
27#include <asm/mach/map.h>
28
Tony Lindgrence491cf2009-10-20 09:40:47 -070029#include <plat/mux.h>
30#include <plat/usb.h>
31#include <plat/board.h>
32#include <plat/keypad.h>
Tony Lindgren4e653312011-11-10 22:45:17 +010033#include "common.h"
Tony Lindgrence491cf2009-10-20 09:40:47 -070034#include <plat/lcd_mipid.h>
35#include <plat/mmc.h>
36#include <plat/clock.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010037
Imre Deak06767fb2007-03-06 18:20:00 +020038#define ADS7846_PENDOWN_GPIO 15
39
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000040static const unsigned int nokia770_keymap[] = {
41 KEY(1, 0, GROUP_0 | KEY_UP),
42 KEY(2, 0, GROUP_1 | KEY_F5),
43 KEY(0, 1, GROUP_0 | KEY_LEFT),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010044 KEY(1, 1, GROUP_0 | KEY_ENTER),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000045 KEY(2, 1, GROUP_0 | KEY_RIGHT),
46 KEY(0, 2, GROUP_1 | KEY_ESC),
47 KEY(1, 2, GROUP_0 | KEY_DOWN),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010048 KEY(2, 2, GROUP_1 | KEY_F4),
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000049 KEY(0, 3, GROUP_2 | KEY_F7),
50 KEY(1, 3, GROUP_2 | KEY_F8),
51 KEY(2, 3, GROUP_2 | KEY_F6),
Tony Lindgren9b6553c2006-04-02 17:46:30 +010052};
53
54static struct resource nokia770_kp_resources[] = {
55 [0] = {
56 .start = INT_KEYBOARD,
57 .end = INT_KEYBOARD,
58 .flags = IORESOURCE_IRQ,
59 },
60};
61
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000062static const struct matrix_keymap_data nokia770_keymap_data = {
63 .keymap = nokia770_keymap,
64 .keymap_size = ARRAY_SIZE(nokia770_keymap),
65};
66
Tony Lindgren9b6553c2006-04-02 17:46:30 +010067static struct omap_kp_platform_data nokia770_kp_data = {
Komal Shah4d246072006-09-29 01:59:20 -070068 .rows = 8,
69 .cols = 8,
Janusz Krzysztofikda1f0262010-12-20 21:09:22 +000070 .keymap_data = &nokia770_keymap_data,
Komal Shah4d246072006-09-29 01:59:20 -070071 .delay = 4,
Tony Lindgren9b6553c2006-04-02 17:46:30 +010072};
73
74static struct platform_device nokia770_kp_device = {
75 .name = "omap-keypad",
76 .id = -1,
77 .dev = {
78 .platform_data = &nokia770_kp_data,
79 },
80 .num_resources = ARRAY_SIZE(nokia770_kp_resources),
81 .resource = nokia770_kp_resources,
82};
83
84static struct platform_device *nokia770_devices[] __initdata = {
Tony Lindgrena5246262006-12-07 13:58:17 -080085 &nokia770_kp_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +010086};
87
Imre Deak06767fb2007-03-06 18:20:00 +020088static void mipid_shutdown(struct mipid_platform_data *pdata)
89{
90 if (pdata->nreset_gpio != -1) {
91 printk(KERN_INFO "shutdown LCD\n");
David Brownell0b84b5c2008-12-10 17:35:25 -080092 gpio_set_value(pdata->nreset_gpio, 0);
Imre Deak06767fb2007-03-06 18:20:00 +020093 msleep(120);
94 }
95}
96
97static struct mipid_platform_data nokia770_mipid_platform_data = {
98 .shutdown = mipid_shutdown,
99};
100
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100101static void __init mipid_dev_init(void)
Imre Deak06767fb2007-03-06 18:20:00 +0200102{
103 const struct omap_lcd_config *conf;
104
105 conf = omap_get_config(OMAP_TAG_LCD, struct omap_lcd_config);
106 if (conf != NULL) {
107 nokia770_mipid_platform_data.nreset_gpio = conf->nreset_gpio;
108 nokia770_mipid_platform_data.data_lines = conf->data_lines;
109 }
110}
111
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100112static void __init ads7846_dev_init(void)
Imre Deak06767fb2007-03-06 18:20:00 +0200113{
Jarkko Nikulaf2d18fe2008-12-10 17:35:30 -0800114 if (gpio_request(ADS7846_PENDOWN_GPIO, "ADS7846 pendown") < 0)
Imre Deak06767fb2007-03-06 18:20:00 +0200115 printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
116}
117
118static int ads7846_get_pendown_state(void)
119{
David Brownell0b84b5c2008-12-10 17:35:25 -0800120 return !gpio_get_value(ADS7846_PENDOWN_GPIO);
Imre Deak06767fb2007-03-06 18:20:00 +0200121}
122
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100123static struct ads7846_platform_data nokia770_ads7846_platform_data __initdata = {
124 .x_max = 0x0fff,
125 .y_max = 0x0fff,
126 .x_plate_ohms = 180,
127 .pressure_max = 255,
128 .debounce_max = 10,
129 .debounce_tol = 3,
Imre Deak06767fb2007-03-06 18:20:00 +0200130 .debounce_rep = 1,
131 .get_pendown_state = ads7846_get_pendown_state,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100132};
133
134static struct spi_board_info nokia770_spi_board_info[] __initdata = {
135 [0] = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800136 .modalias = "lcd_mipid",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100137 .bus_num = 2,
138 .chip_select = 3,
139 .max_speed_hz = 12000000,
Imre Deak06767fb2007-03-06 18:20:00 +0200140 .platform_data = &nokia770_mipid_platform_data,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100141 },
142 [1] = {
143 .modalias = "ads7846",
144 .bus_num = 2,
145 .chip_select = 0,
146 .max_speed_hz = 2500000,
147 .irq = OMAP_GPIO_IRQ(15),
148 .platform_data = &nokia770_ads7846_platform_data,
149 },
150};
151
Uwe Kleine-König29ab3c72011-02-09 21:40:07 +0100152static void __init hwa742_dev_init(void)
Andrew de Quincey088962c2009-05-28 14:03:31 -0700153{
154 clk_add_alias("hwa_sys_ck", NULL, "bclk", NULL);
Andrew de Quincey088962c2009-05-28 14:03:31 -0700155}
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100156
157/* assume no Mini-AB port */
158
159static struct omap_usb_config nokia770_usb_config __initdata = {
160 .otg = 1,
161 .register_host = 1,
162 .register_dev = 1,
163 .hmc_mode = 16,
164 .pins[0] = 6,
165};
166
Tony Lindgrend8874662008-12-10 17:37:16 -0800167#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
168
169#define NOKIA770_GPIO_MMC_POWER 41
170#define NOKIA770_GPIO_MMC_SWITCH 23
171
172static int nokia770_mmc_set_power(struct device *dev, int slot, int power_on,
173 int vdd)
174{
Ladislav Michlbac5b292009-04-23 11:10:48 -0700175 gpio_set_value(NOKIA770_GPIO_MMC_POWER, power_on);
Tony Lindgrend8874662008-12-10 17:37:16 -0800176 return 0;
177}
178
179static int nokia770_mmc_get_cover_state(struct device *dev, int slot)
180{
181 return gpio_get_value(NOKIA770_GPIO_MMC_SWITCH);
182}
183
184static struct omap_mmc_platform_data nokia770_mmc2_data = {
185 .nr_slots = 1,
186 .dma_mask = 0xffffffff,
Andrew de Quinceye4d24ec2009-06-23 13:30:21 +0300187 .max_freq = 12000000,
Tony Lindgrend8874662008-12-10 17:37:16 -0800188 .slots[0] = {
189 .set_power = nokia770_mmc_set_power,
190 .get_cover_state = nokia770_mmc_get_cover_state,
Andrew de Quinceye4d24ec2009-06-23 13:30:21 +0300191 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
Tony Lindgrend8874662008-12-10 17:37:16 -0800192 .name = "mmcblk",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100193 },
194};
195
Tony Lindgrend8874662008-12-10 17:37:16 -0800196static struct omap_mmc_platform_data *nokia770_mmc_data[OMAP16XX_NR_MMC];
197
198static void __init nokia770_mmc_init(void)
199{
200 int ret;
201
202 ret = gpio_request(NOKIA770_GPIO_MMC_POWER, "MMC power");
203 if (ret < 0)
204 return;
205 gpio_direction_output(NOKIA770_GPIO_MMC_POWER, 0);
206
207 ret = gpio_request(NOKIA770_GPIO_MMC_SWITCH, "MMC cover");
208 if (ret < 0) {
209 gpio_free(NOKIA770_GPIO_MMC_POWER);
210 return;
211 }
212 gpio_direction_input(NOKIA770_GPIO_MMC_SWITCH);
213
214 /* Only the second MMC controller is used */
215 nokia770_mmc_data[1] = &nokia770_mmc2_data;
216 omap1_init_mmc(nokia770_mmc_data, OMAP16XX_NR_MMC);
217}
218
219#else
220static inline void nokia770_mmc_init(void)
221{
222}
223#endif
224
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100225static void __init omap_nokia770_init(void)
226{
Tony Lindgren7b88e622011-10-05 15:14:02 -0700227 /* On Nokia 770, the SleepX signal is masked with an
228 * MPUIO line by default. It has to be unmasked for it
229 * to become functional */
230
231 /* SleepX mask direction */
232 omap_writew((omap_readw(0xfffb5008) & ~2), 0xfffb5008);
233 /* Unmask SleepX signal */
234 omap_writew((omap_readw(0xfffb5004) & ~2), 0xfffb5004);
235
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100236 platform_add_devices(nokia770_devices, ARRAY_SIZE(nokia770_devices));
237 spi_register_board_info(nokia770_spi_board_info,
238 ARRAY_SIZE(nokia770_spi_board_info));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100239 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200240 omap_register_i2c_bus(1, 100, NULL, 0);
Andrew de Quincey088962c2009-05-28 14:03:31 -0700241 hwa742_dev_init();
Imre Deak06767fb2007-03-06 18:20:00 +0200242 ads7846_dev_init();
243 mipid_dev_init();
Tony Lindgrendd0cdd82010-07-05 16:31:30 +0300244 omap1_usb_init(&nokia770_usb_config);
Tony Lindgrend8874662008-12-10 17:37:16 -0800245 nokia770_mmc_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100246}
247
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100248MACHINE_START(NOKIA770, "Nokia 770")
Nicolas Pitre246e3892011-07-05 22:38:15 -0400249 .atag_offset = 0x100,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700250 .map_io = omap16xx_map_io,
251 .init_early = omap1_init_early,
Russell King71ee7da2010-05-23 10:18:16 +0100252 .reserve = omap_reserve,
Tony Lindgren7b88e622011-10-05 15:14:02 -0700253 .init_irq = omap1_init_irq,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100254 .init_machine = omap_nokia770_init,
Tony Lindgrene74984e2011-03-29 15:54:48 -0700255 .timer = &omap1_timer,
Russell Kingbaa95882011-11-05 17:06:28 +0000256 .restart = omap1_restart,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100257MACHINE_END