]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - arch/arm/mach-omap1/board-nokia770.c
DSP: Move code to use only one dsp_common.h
[linux-2.6-omap-h63xx.git] / arch / arm / mach-omap1 / board-nokia770.c
1 /*
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>
13 #include <linux/platform_device.h>
14 #include <linux/input.h>
15 #include <linux/clk.h>
16
17 #include <linux/spi/spi.h>
18 #include <linux/spi/ads7846.h>
19 #include <linux/workqueue.h>
20 #include <linux/delay.h>
21
22 #include <asm/hardware.h>
23 #include <asm/mach-types.h>
24 #include <asm/mach/arch.h>
25 #include <asm/mach/map.h>
26
27 #include <asm/arch/gpio.h>
28 #include <asm/arch/mux.h>
29 #include <asm/arch/usb.h>
30 #include <asm/arch/board.h>
31 #include <asm/arch/keypad.h>
32 #include <asm/arch/common.h>
33 #include <asm/arch/dsp_common.h>
34 #include <asm/arch/aic23.h>
35 #include <asm/arch/gpio.h>
36 #include <asm/arch/omapfb.h>
37 #include <asm/arch/hwa742.h>
38 #include <asm/arch/lcd_mipid.h>
39 #include <asm/arch/dsp_common.h>
40
41 #define ADS7846_PENDOWN_GPIO    15
42
43 static void __init omap_nokia770_init_irq(void)
44 {
45         /* On Nokia 770, the SleepX signal is masked with an
46          * MPUIO line by default.  It has to be unmasked for it
47          * to become functional */
48
49         /* SleepX mask direction */
50         omap_writew((omap_readw(0xfffb5008) & ~2), 0xfffb5008);
51         /* Unmask SleepX signal */
52         omap_writew((omap_readw(0xfffb5004) & ~2), 0xfffb5004);
53
54         omap1_init_common_hw();
55         omap_init_irq();
56 }
57
58 static int nokia770_keymap[] = {
59         KEY(0, 1, GROUP_0 | KEY_UP),
60         KEY(0, 2, GROUP_1 | KEY_F5),
61         KEY(1, 0, GROUP_0 | KEY_LEFT),
62         KEY(1, 1, GROUP_0 | KEY_ENTER),
63         KEY(1, 2, GROUP_0 | KEY_RIGHT),
64         KEY(2, 0, GROUP_1 | KEY_ESC),
65         KEY(2, 1, GROUP_0 | KEY_DOWN),
66         KEY(2, 2, GROUP_1 | KEY_F4),
67         KEY(3, 0, GROUP_2 | KEY_F7),
68         KEY(3, 1, GROUP_2 | KEY_F8),
69         KEY(3, 2, GROUP_2 | KEY_F6),
70         0
71 };
72
73 static struct resource nokia770_kp_resources[] = {
74         [0] = {
75                 .start  = INT_KEYBOARD,
76                 .end    = INT_KEYBOARD,
77                 .flags  = IORESOURCE_IRQ,
78         },
79 };
80
81 static struct omap_kp_platform_data nokia770_kp_data = {
82         .rows           = 8,
83         .cols           = 8,
84         .keymap         = nokia770_keymap,
85         .keymapsize     = ARRAY_SIZE(nokia770_keymap),
86         .delay          = 4,
87 };
88
89 static struct platform_device nokia770_kp_device = {
90         .name           = "omap-keypad",
91         .id             = -1,
92         .dev            = {
93                 .platform_data = &nokia770_kp_data,
94         },
95         .num_resources  = ARRAY_SIZE(nokia770_kp_resources),
96         .resource       = nokia770_kp_resources,
97 };
98
99 static struct platform_device *nokia770_devices[] __initdata = {
100         &nokia770_kp_device,
101 };
102
103 static void mipid_shutdown(struct mipid_platform_data *pdata)
104 {
105         if (pdata->nreset_gpio != -1) {
106                 printk(KERN_INFO "shutdown LCD\n");
107                 omap_set_gpio_dataout(pdata->nreset_gpio, 0);
108                 msleep(120);
109         }
110 }
111
112 static struct mipid_platform_data nokia770_mipid_platform_data = {
113         .shutdown = mipid_shutdown,
114 };
115
116 static void mipid_dev_init(void)
117 {
118         const struct omap_lcd_config *conf;
119
120         conf = omap_get_config(OMAP_TAG_LCD, struct omap_lcd_config);
121         if (conf != NULL) {
122                 nokia770_mipid_platform_data.nreset_gpio = conf->nreset_gpio;
123                 nokia770_mipid_platform_data.data_lines = conf->data_lines;
124         }
125 }
126
127 static void ads7846_dev_init(void)
128 {
129         if (omap_request_gpio(ADS7846_PENDOWN_GPIO) < 0)
130                 printk(KERN_ERR "can't get ads7846 pen down GPIO\n");
131 }
132
133 static int ads7846_get_pendown_state(void)
134 {
135         return !omap_get_gpio_datain(ADS7846_PENDOWN_GPIO);
136 }
137
138 static struct ads7846_platform_data nokia770_ads7846_platform_data __initdata = {
139         .x_max          = 0x0fff,
140         .y_max          = 0x0fff,
141         .x_plate_ohms   = 180,
142         .pressure_max   = 255,
143         .debounce_max   = 10,
144         .debounce_tol   = 3,
145         .debounce_rep   = 1,
146         .get_pendown_state      = ads7846_get_pendown_state,
147 };
148
149 static struct spi_board_info nokia770_spi_board_info[] __initdata = {
150         [0] = {
151                 .modalias       = "lcd_mipid",
152                 .bus_num        = 2,
153                 .chip_select    = 3,
154                 .max_speed_hz   = 12000000,
155                 .platform_data  = &nokia770_mipid_platform_data,
156         },
157         [1] = {
158                 .modalias       = "ads7846",
159                 .bus_num        = 2,
160                 .chip_select    = 0,
161                 .max_speed_hz   = 2500000,
162                 .irq            = OMAP_GPIO_IRQ(15),
163                 .platform_data  = &nokia770_ads7846_platform_data,
164         },
165 };
166
167 static struct {
168         struct clk *sys_ck;
169 } hwa742;
170
171 static int hwa742_get_clocks(void)
172 {
173         hwa742.sys_ck = clk_get(NULL, "bclk");
174         if (IS_ERR(hwa742.sys_ck)) {
175                 printk(KERN_ERR "can't get HWA742 clock\n");
176                 return PTR_ERR(hwa742.sys_ck);
177         }
178         return 0;
179 }
180
181 static unsigned long hwa742_get_clock_rate(struct device *dev)
182 {
183         return clk_get_rate(hwa742.sys_ck);
184 }
185
186 static void hwa742_power_up(struct device *dev)
187 {
188         clk_enable(hwa742.sys_ck);
189 }
190
191 static void hwa742_power_down(struct device *dev)
192 {
193         clk_disable(hwa742.sys_ck);
194 }
195
196 static struct hwa742_platform_data nokia770_hwa742_platform_data = {
197         .get_clock_rate = hwa742_get_clock_rate,
198         .power_up       = hwa742_power_up,
199         .power_down     = hwa742_power_down,
200         .te_connected   = 1,
201 };
202
203 static void hwa742_dev_init(void)
204 {
205         hwa742_get_clocks();
206         omapfb_set_ctrl_platform_data(&nokia770_hwa742_platform_data);
207 }
208
209 /* assume no Mini-AB port */
210
211 static struct omap_usb_config nokia770_usb_config __initdata = {
212         .otg            = 1,
213         .register_host  = 1,
214         .register_dev   = 1,
215         .hmc_mode       = 16,
216         .pins[0]        = 6,
217 };
218
219 static struct omap_mmc_config nokia770_mmc_config __initdata = {
220         .mmc[0] = {
221                 .enabled        = 0,
222                 .wire4          = 0,
223                 .wp_pin         = -1,
224                 .power_pin      = -1,
225                 .switch_pin     = -1,
226         },
227         .mmc[1] = {
228                 .enabled        = 0,
229                 .wire4          = 0,
230                 .wp_pin         = -1,
231                 .power_pin      = -1,
232                 .switch_pin     = -1,
233         },
234 };
235
236 static struct omap_board_config_kernel nokia770_config[] __initdata = {
237         { OMAP_TAG_USB,         NULL },
238         { OMAP_TAG_MMC,         &nokia770_mmc_config },
239 };
240
241 #if     defined(CONFIG_OMAP_DSP)
242 /*
243  * audio power control
244  */
245 #define HEADPHONE_GPIO          14
246 #define AMPLIFIER_CTRL_GPIO     58
247
248 static struct clk *dspxor_ck;
249 static DECLARE_MUTEX(audio_pwr_sem);
250 /*
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  */
262 static int audio_pwr_state = -1;
263
264 /*
265  * audio_pwr_up / down should be called under audio_pwr_sem
266  */
267 static void nokia770_audio_pwr_up(void)
268 {
269         clk_enable(dspxor_ck);
270
271         /* Turn on codec */
272         aic23_power_up();
273
274         if (omap_get_gpio_datain(HEADPHONE_GPIO))
275                 /* HP not connected, turn on amplifier */
276                 omap_set_gpio_dataout(AMPLIFIER_CTRL_GPIO, 1);
277         else
278                 /* HP connected, do not turn on amplifier */
279                 printk("HP connected\n");
280 }
281
282 static void codec_delayed_power_down(struct work_struct *work)
283 {
284         down(&audio_pwr_sem);
285         if (audio_pwr_state == -1)
286                 aic23_power_down();
287         clk_disable(dspxor_ck);
288         up(&audio_pwr_sem);
289 }
290
291 static DECLARE_DELAYED_WORK(codec_power_down_work, codec_delayed_power_down);
292
293 static void nokia770_audio_pwr_down(void)
294 {
295         /* Turn off amplifier */
296         omap_set_gpio_dataout(AMPLIFIER_CTRL_GPIO, 0);
297
298         /* Turn off codec: schedule delayed work */
299         schedule_delayed_work(&codec_power_down_work, HZ / 20); /* 50ms */
300 }
301
302 static int
303 nokia770_audio_pwr_up_request(struct dsp_kfunc_device *kdev, int stage)
304 {
305         down(&audio_pwr_sem);
306         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;
310         up(&audio_pwr_sem);
311         return 0;
312 }
313
314 static int
315 nokia770_audio_pwr_down_request(struct dsp_kfunc_device *kdev, int stage)
316 {
317         down(&audio_pwr_sem);
318         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         }
330         up(&audio_pwr_sem);
331         return 0;
332 }
333
334 static 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
341 static __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 }
362 #endif  /* CONFIG_OMAP_DSP */
363
364 static void __init omap_nokia770_init(void)
365 {
366         nokia770_config[0].data = &nokia770_usb_config;
367
368         platform_add_devices(nokia770_devices, ARRAY_SIZE(nokia770_devices));
369         spi_register_board_info(nokia770_spi_board_info,
370                                 ARRAY_SIZE(nokia770_spi_board_info));
371         omap_board_config = nokia770_config;
372         omap_board_config_size = ARRAY_SIZE(nokia770_config);
373         omap_gpio_init();
374         omap_serial_init();
375         omap_register_i2c_bus(1, 100, NULL, 0);
376         omap_dsp_init();
377         hwa742_dev_init();
378         ads7846_dev_init();
379         mipid_dev_init();
380 }
381
382 static void __init omap_nokia770_map_io(void)
383 {
384         omap1_map_common_io();
385 }
386
387 MACHINE_START(NOKIA770, "Nokia 770")
388         .phys_io        = 0xfff00000,
389         .io_pg_offst    = ((0xfef00000) >> 18) & 0xfffc,
390         .boot_params    = 0x10000100,
391         .map_io         = omap_nokia770_map_io,
392         .init_irq       = omap_nokia770_init_irq,
393         .init_machine   = omap_nokia770_init,
394         .timer          = &omap_timer,
395 MACHINE_END