blob: 4970c402a59431d14c439e7ccfd650de3658539f [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 */
10
11#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>
17
18#include <linux/spi/spi.h>
19#include <linux/spi/ads7846.h>
Dirk Behme19350612007-01-25 16:29:42 -080020#include <linux/workqueue.h>
21#include <linux/delay.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010022
Russell Kinga09e64f2008-08-05 16:14:15 +010023#include <mach/hardware.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010024#include <asm/mach-types.h>
25#include <asm/mach/arch.h>
26#include <asm/mach/map.h>
27
Russell Kinga09e64f2008-08-05 16:14:15 +010028#include <mach/gpio.h>
29#include <mach/mux.h>
30#include <mach/usb.h>
31#include <mach/board.h>
32#include <mach/keypad.h>
33#include <mach/common.h>
34#include <mach/dsp_common.h>
35#include <mach/aic23.h>
36#include <mach/omapfb.h>
37#include <mach/lcd_mipid.h>
Tony Lindgrend8874662008-12-10 17:37:16 -080038#include <mach/mmc.h>
Tony Lindgren9b6553c2006-04-02 17:46:30 +010039
Imre Deak06767fb2007-03-06 18:20:00 +020040#define ADS7846_PENDOWN_GPIO 15
41
Tony Lindgren9b6553c2006-04-02 17:46:30 +010042static void __init omap_nokia770_init_irq(void)
43{
44 /* On Nokia 770, the SleepX signal is masked with an
45 * MPUIO line by default. It has to be unmasked for it
46 * to become functional */
47
48 /* SleepX mask direction */
49 omap_writew((omap_readw(0xfffb5008) & ~2), 0xfffb5008);
50 /* Unmask SleepX signal */
51 omap_writew((omap_readw(0xfffb5004) & ~2), 0xfffb5004);
52
53 omap1_init_common_hw();
54 omap_init_irq();
55}
56
57static int nokia770_keymap[] = {
58 KEY(0, 1, GROUP_0 | KEY_UP),
59 KEY(0, 2, GROUP_1 | KEY_F5),
60 KEY(1, 0, GROUP_0 | KEY_LEFT),
61 KEY(1, 1, GROUP_0 | KEY_ENTER),
62 KEY(1, 2, GROUP_0 | KEY_RIGHT),
63 KEY(2, 0, GROUP_1 | KEY_ESC),
64 KEY(2, 1, GROUP_0 | KEY_DOWN),
65 KEY(2, 2, GROUP_1 | KEY_F4),
66 KEY(3, 0, GROUP_2 | KEY_F7),
67 KEY(3, 1, GROUP_2 | KEY_F8),
68 KEY(3, 2, GROUP_2 | KEY_F6),
69 0
70};
71
72static struct resource nokia770_kp_resources[] = {
73 [0] = {
74 .start = INT_KEYBOARD,
75 .end = INT_KEYBOARD,
76 .flags = IORESOURCE_IRQ,
77 },
78};
79
80static struct omap_kp_platform_data nokia770_kp_data = {
Komal Shah4d246072006-09-29 01:59:20 -070081 .rows = 8,
82 .cols = 8,
83 .keymap = nokia770_keymap,
David Howells6d5aefb2006-12-05 19:36:26 +000084 .keymapsize = ARRAY_SIZE(nokia770_keymap),
Komal Shah4d246072006-09-29 01:59:20 -070085 .delay = 4,
Tony Lindgren9b6553c2006-04-02 17:46:30 +010086};
87
88static struct platform_device nokia770_kp_device = {
89 .name = "omap-keypad",
90 .id = -1,
91 .dev = {
92 .platform_data = &nokia770_kp_data,
93 },
94 .num_resources = ARRAY_SIZE(nokia770_kp_resources),
95 .resource = nokia770_kp_resources,
96};
97
98static struct platform_device *nokia770_devices[] __initdata = {
Tony Lindgrena5246262006-12-07 13:58:17 -080099 &nokia770_kp_device,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100100};
101
Imre Deak06767fb2007-03-06 18:20:00 +0200102static void mipid_shutdown(struct mipid_platform_data *pdata)
103{
104 if (pdata->nreset_gpio != -1) {
105 printk(KERN_INFO "shutdown LCD\n");
David Brownell0b84b5c2008-12-10 17:35:25 -0800106 gpio_set_value(pdata->nreset_gpio, 0);
Imre Deak06767fb2007-03-06 18:20:00 +0200107 msleep(120);
108 }
109}
110
111static struct mipid_platform_data nokia770_mipid_platform_data = {
112 .shutdown = mipid_shutdown,
113};
114
115static void mipid_dev_init(void)
116{
117 const struct omap_lcd_config *conf;
118
119 conf = omap_get_config(OMAP_TAG_LCD, struct omap_lcd_config);
120 if (conf != NULL) {
121 nokia770_mipid_platform_data.nreset_gpio = conf->nreset_gpio;
122 nokia770_mipid_platform_data.data_lines = conf->data_lines;
123 }
124}
125
126static void ads7846_dev_init(void)
127{
Jarkko Nikulaf2d18fe2008-12-10 17:35:30 -0800128 if (gpio_request(ADS7846_PENDOWN_GPIO, "ADS7846 pendown") < 0)
Imre Deak06767fb2007-03-06 18:20:00 +0200129 printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
130}
131
132static int ads7846_get_pendown_state(void)
133{
David Brownell0b84b5c2008-12-10 17:35:25 -0800134 return !gpio_get_value(ADS7846_PENDOWN_GPIO);
Imre Deak06767fb2007-03-06 18:20:00 +0200135}
136
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100137static struct ads7846_platform_data nokia770_ads7846_platform_data __initdata = {
138 .x_max = 0x0fff,
139 .y_max = 0x0fff,
140 .x_plate_ohms = 180,
141 .pressure_max = 255,
142 .debounce_max = 10,
143 .debounce_tol = 3,
Imre Deak06767fb2007-03-06 18:20:00 +0200144 .debounce_rep = 1,
145 .get_pendown_state = ads7846_get_pendown_state,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100146};
147
148static struct spi_board_info nokia770_spi_board_info[] __initdata = {
149 [0] = {
Tony Lindgrena5246262006-12-07 13:58:17 -0800150 .modalias = "lcd_mipid",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100151 .bus_num = 2,
152 .chip_select = 3,
153 .max_speed_hz = 12000000,
Imre Deak06767fb2007-03-06 18:20:00 +0200154 .platform_data = &nokia770_mipid_platform_data,
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100155 },
156 [1] = {
157 .modalias = "ads7846",
158 .bus_num = 2,
159 .chip_select = 0,
160 .max_speed_hz = 2500000,
161 .irq = OMAP_GPIO_IRQ(15),
162 .platform_data = &nokia770_ads7846_platform_data,
163 },
164};
165
166
167/* assume no Mini-AB port */
168
169static struct omap_usb_config nokia770_usb_config __initdata = {
170 .otg = 1,
171 .register_host = 1,
172 .register_dev = 1,
173 .hmc_mode = 16,
174 .pins[0] = 6,
175};
176
Tony Lindgrend8874662008-12-10 17:37:16 -0800177#if defined(CONFIG_MMC_OMAP) || defined(CONFIG_MMC_OMAP_MODULE)
178
179#define NOKIA770_GPIO_MMC_POWER 41
180#define NOKIA770_GPIO_MMC_SWITCH 23
181
182static int nokia770_mmc_set_power(struct device *dev, int slot, int power_on,
183 int vdd)
184{
185 if (power_on)
186 gpio_set_value(NOKIA770_GPIO_MMC_POWER, 1);
187 else
188 gpio_set_value(NOKIA770_GPIO_MMC_POWER, 0);
189
190 return 0;
191}
192
193static int nokia770_mmc_get_cover_state(struct device *dev, int slot)
194{
195 return gpio_get_value(NOKIA770_GPIO_MMC_SWITCH);
196}
197
198static struct omap_mmc_platform_data nokia770_mmc2_data = {
199 .nr_slots = 1,
200 .dma_mask = 0xffffffff,
201 .slots[0] = {
202 .set_power = nokia770_mmc_set_power,
203 .get_cover_state = nokia770_mmc_get_cover_state,
204 .name = "mmcblk",
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100205 },
206};
207
Tony Lindgrend8874662008-12-10 17:37:16 -0800208static struct omap_mmc_platform_data *nokia770_mmc_data[OMAP16XX_NR_MMC];
209
210static void __init nokia770_mmc_init(void)
211{
212 int ret;
213
214 ret = gpio_request(NOKIA770_GPIO_MMC_POWER, "MMC power");
215 if (ret < 0)
216 return;
217 gpio_direction_output(NOKIA770_GPIO_MMC_POWER, 0);
218
219 ret = gpio_request(NOKIA770_GPIO_MMC_SWITCH, "MMC cover");
220 if (ret < 0) {
221 gpio_free(NOKIA770_GPIO_MMC_POWER);
222 return;
223 }
224 gpio_direction_input(NOKIA770_GPIO_MMC_SWITCH);
225
226 /* Only the second MMC controller is used */
227 nokia770_mmc_data[1] = &nokia770_mmc2_data;
228 omap1_init_mmc(nokia770_mmc_data, OMAP16XX_NR_MMC);
229}
230
231#else
232static inline void nokia770_mmc_init(void)
233{
234}
235#endif
236
Tony Lindgrene27a93a2007-12-18 20:58:32 -0800237static struct omap_board_config_kernel nokia770_config[] __initdata = {
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100238 { OMAP_TAG_USB, NULL },
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100239};
240
Tony Lindgrena5246262006-12-07 13:58:17 -0800241#if defined(CONFIG_OMAP_DSP)
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100242/*
243 * audio power control
244 */
245#define HEADPHONE_GPIO 14
246#define AMPLIFIER_CTRL_GPIO 58
247
248static struct clk *dspxor_ck;
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700249static DEFINE_MUTEX(audio_pwr_lock);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100250/*
251 * audio_pwr_state
252 * +--+-------------------------+---------------------------------------+
253 * |-1|down |power-up request -> 0 |
254 * +--+-------------------------+---------------------------------------+
255 * | 0|up |power-down(1) request -> 1 |
256 * | | |power-down(2) request -> (ignore) |
257 * +--+-------------------------+---------------------------------------+
258 * | 1|up, |power-up request -> 0 |
259 * | |received down(1) request |power-down(2) request -> -1 |
260 * +--+-------------------------+---------------------------------------+
261 */
262static int audio_pwr_state = -1;
263
264/*
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700265 * audio_pwr_up / down should be called under audio_pwr_lock
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100266 */
267static void nokia770_audio_pwr_up(void)
268{
269 clk_enable(dspxor_ck);
270
271 /* Turn on codec */
Tony Lindgrena5246262006-12-07 13:58:17 -0800272 aic23_power_up();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100273
David Brownell0b84b5c2008-12-10 17:35:25 -0800274 if (gpio_get_value(HEADPHONE_GPIO))
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100275 /* HP not connected, turn on amplifier */
David Brownell0b84b5c2008-12-10 17:35:25 -0800276 gpio_set_value(AMPLIFIER_CTRL_GPIO, 1);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100277 else
278 /* HP connected, do not turn on amplifier */
279 printk("HP connected\n");
280}
281
David Howells6d5aefb2006-12-05 19:36:26 +0000282static void codec_delayed_power_down(struct work_struct *work)
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100283{
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700284 mutex_lock(&audio_pwr_lock);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100285 if (audio_pwr_state == -1)
Tony Lindgrena5246262006-12-07 13:58:17 -0800286 aic23_power_down();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100287 clk_disable(dspxor_ck);
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700288 mutex_unlock(&audio_pwr_lock);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100289}
290
David Howells6d5aefb2006-12-05 19:36:26 +0000291static DECLARE_DELAYED_WORK(codec_power_down_work, codec_delayed_power_down);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100292
293static void nokia770_audio_pwr_down(void)
294{
295 /* Turn off amplifier */
David Brownell0b84b5c2008-12-10 17:35:25 -0800296 gpio_set_value(AMPLIFIER_CTRL_GPIO, 0);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100297
298 /* Turn off codec: schedule delayed work */
299 schedule_delayed_work(&codec_power_down_work, HZ / 20); /* 50ms */
300}
301
Tony Lindgrena5246262006-12-07 13:58:17 -0800302static int
303nokia770_audio_pwr_up_request(struct dsp_kfunc_device *kdev, int stage)
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100304{
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700305 mutex_lock(&audio_pwr_lock);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100306 if (audio_pwr_state == -1)
307 nokia770_audio_pwr_up();
308 /* force audio_pwr_state = 0, even if it was 1. */
309 audio_pwr_state = 0;
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700310 mutex_unlock(&audio_pwr_lock);
Tony Lindgrena5246262006-12-07 13:58:17 -0800311 return 0;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100312}
313
Tony Lindgrena5246262006-12-07 13:58:17 -0800314static int
315nokia770_audio_pwr_down_request(struct dsp_kfunc_device *kdev, int stage)
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100316{
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700317 mutex_lock(&audio_pwr_lock);
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100318 switch (stage) {
319 case 1:
320 if (audio_pwr_state == 0)
321 audio_pwr_state = 1;
322 break;
323 case 2:
324 if (audio_pwr_state == 1) {
325 nokia770_audio_pwr_down();
326 audio_pwr_state = -1;
327 }
328 break;
329 }
Matthias Kaehlcked41d2192008-06-09 16:24:08 -0700330 mutex_unlock(&audio_pwr_lock);
Tony Lindgrena5246262006-12-07 13:58:17 -0800331 return 0;
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100332}
333
Tony Lindgrena5246262006-12-07 13:58:17 -0800334static struct dsp_kfunc_device nokia770_audio_device = {
335 .name = "audio",
336 .type = DSP_KFUNC_DEV_TYPE_AUDIO,
337 .enable = nokia770_audio_pwr_up_request,
338 .disable = nokia770_audio_pwr_down_request,
339};
340
341static __init int omap_dsp_init(void)
342{
343 int ret;
344
345 dspxor_ck = clk_get(0, "dspxor_ck");
346 if (IS_ERR(dspxor_ck)) {
347 printk(KERN_ERR "couldn't acquire dspxor_ck\n");
348 return PTR_ERR(dspxor_ck);
349 }
350
351 ret = dsp_kfunc_device_register(&nokia770_audio_device);
352 if (ret) {
353 printk(KERN_ERR
354 "KFUNC device registration faild: %s\n",
355 nokia770_audio_device.name);
356 goto out;
357 }
358 return 0;
359 out:
360 return ret;
361}
Daniel Walkerf6f2a5d2008-01-18 17:55:08 -0800362#else
363#define omap_dsp_init() do {} while (0)
Tony Lindgrena5246262006-12-07 13:58:17 -0800364#endif /* CONFIG_OMAP_DSP */
365
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100366static void __init omap_nokia770_init(void)
367{
368 nokia770_config[0].data = &nokia770_usb_config;
369
370 platform_add_devices(nokia770_devices, ARRAY_SIZE(nokia770_devices));
371 spi_register_board_info(nokia770_spi_board_info,
372 ARRAY_SIZE(nokia770_spi_board_info));
373 omap_board_config = nokia770_config;
374 omap_board_config_size = ARRAY_SIZE(nokia770_config);
Imre Deak06767fb2007-03-06 18:20:00 +0200375 omap_gpio_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100376 omap_serial_init();
Jarkko Nikula1ed16a82007-11-07 06:54:32 +0200377 omap_register_i2c_bus(1, 100, NULL, 0);
Tony Lindgrena5246262006-12-07 13:58:17 -0800378 omap_dsp_init();
Imre Deak06767fb2007-03-06 18:20:00 +0200379 ads7846_dev_init();
380 mipid_dev_init();
Tony Lindgrend8874662008-12-10 17:37:16 -0800381 nokia770_mmc_init();
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100382}
383
384static void __init omap_nokia770_map_io(void)
385{
386 omap1_map_common_io();
387}
388
389MACHINE_START(NOKIA770, "Nokia 770")
390 .phys_io = 0xfff00000,
391 .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc,
392 .boot_params = 0x10000100,
393 .map_io = omap_nokia770_map_io,
394 .init_irq = omap_nokia770_init_irq,
395 .init_machine = omap_nokia770_init,
396 .timer = &omap_timer,
397MACHINE_END