Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound
[deliverable/linux.git] / arch / arm / mach-s3c2410 / mach-h1940.c
1 /* linux/arch/arm/mach-s3c2410/mach-h1940.c
2 *
3 * Copyright (c) 2003-2005 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * http://www.handhelds.org/projects/h1940.html
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 *
12 */
13
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/interrupt.h>
17 #include <linux/list.h>
18 #include <linux/memblock.h>
19 #include <linux/timer.h>
20 #include <linux/init.h>
21 #include <linux/sysdev.h>
22 #include <linux/serial_core.h>
23 #include <linux/platform_device.h>
24 #include <linux/io.h>
25 #include <linux/gpio.h>
26 #include <linux/input.h>
27 #include <linux/gpio_keys.h>
28 #include <linux/pwm_backlight.h>
29 #include <linux/i2c.h>
30 #include <linux/leds.h>
31 #include <linux/pda_power.h>
32 #include <linux/s3c_adc_battery.h>
33 #include <linux/delay.h>
34
35 #include <video/platform_lcd.h>
36
37 #include <linux/mmc/host.h>
38 #include <linux/export.h>
39
40 #include <asm/mach/arch.h>
41 #include <asm/mach/map.h>
42 #include <asm/mach/irq.h>
43
44 #include <mach/hardware.h>
45 #include <asm/irq.h>
46 #include <asm/mach-types.h>
47
48 #include <plat/regs-serial.h>
49 #include <mach/regs-lcd.h>
50 #include <mach/regs-clock.h>
51
52 #include <mach/regs-gpio.h>
53 #include <mach/gpio-fns.h>
54 #include <mach/gpio-nrs.h>
55
56 #include <mach/h1940.h>
57 #include <mach/h1940-latch.h>
58 #include <mach/fb.h>
59 #include <plat/udc.h>
60 #include <plat/iic.h>
61
62 #include <plat/gpio-cfg.h>
63 #include <plat/clock.h>
64 #include <plat/devs.h>
65 #include <plat/cpu.h>
66 #include <plat/pll.h>
67 #include <plat/pm.h>
68 #include <plat/mci.h>
69 #include <plat/ts.h>
70
71 #include <sound/uda1380.h>
72
73 #define H1940_LATCH ((void __force __iomem *)0xF8000000)
74
75 #define H1940_PA_LATCH S3C2410_CS2
76
77 #define H1940_LATCH_BIT(x) (1 << ((x) + 16 - S3C_GPIO_END))
78
79 static struct map_desc h1940_iodesc[] __initdata = {
80 [0] = {
81 .virtual = (unsigned long)H1940_LATCH,
82 .pfn = __phys_to_pfn(H1940_PA_LATCH),
83 .length = SZ_16K,
84 .type = MT_DEVICE
85 },
86 };
87
88 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
89 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
90 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
91
92 static struct s3c2410_uartcfg h1940_uartcfgs[] __initdata = {
93 [0] = {
94 .hwport = 0,
95 .flags = 0,
96 .ucon = 0x3c5,
97 .ulcon = 0x03,
98 .ufcon = 0x51,
99 },
100 [1] = {
101 .hwport = 1,
102 .flags = 0,
103 .ucon = 0x245,
104 .ulcon = 0x03,
105 .ufcon = 0x00,
106 },
107 /* IR port */
108 [2] = {
109 .hwport = 2,
110 .flags = 0,
111 .uart_flags = UPF_CONS_FLOW,
112 .ucon = 0x3c5,
113 .ulcon = 0x43,
114 .ufcon = 0x51,
115 }
116 };
117
118 /* Board control latch control */
119
120 static unsigned int latch_state;
121
122 static void h1940_latch_control(unsigned int clear, unsigned int set)
123 {
124 unsigned long flags;
125
126 local_irq_save(flags);
127
128 latch_state &= ~clear;
129 latch_state |= set;
130
131 __raw_writel(latch_state, H1940_LATCH);
132
133 local_irq_restore(flags);
134 }
135
136 static inline int h1940_gpiolib_to_latch(int offset)
137 {
138 return 1 << (offset + 16);
139 }
140
141 static void h1940_gpiolib_latch_set(struct gpio_chip *chip,
142 unsigned offset, int value)
143 {
144 int latch_bit = h1940_gpiolib_to_latch(offset);
145
146 h1940_latch_control(value ? 0 : latch_bit,
147 value ? latch_bit : 0);
148 }
149
150 static int h1940_gpiolib_latch_output(struct gpio_chip *chip,
151 unsigned offset, int value)
152 {
153 h1940_gpiolib_latch_set(chip, offset, value);
154 return 0;
155 }
156
157 static int h1940_gpiolib_latch_get(struct gpio_chip *chip,
158 unsigned offset)
159 {
160 return (latch_state >> (offset + 16)) & 1;
161 }
162
163 struct gpio_chip h1940_latch_gpiochip = {
164 .base = H1940_LATCH_GPIO(0),
165 .owner = THIS_MODULE,
166 .label = "H1940_LATCH",
167 .ngpio = 16,
168 .direction_output = h1940_gpiolib_latch_output,
169 .set = h1940_gpiolib_latch_set,
170 .get = h1940_gpiolib_latch_get,
171 };
172
173 static struct s3c2410_udc_mach_info h1940_udc_cfg __initdata = {
174 .vbus_pin = S3C2410_GPG(5),
175 .vbus_pin_inverted = 1,
176 .pullup_pin = H1940_LATCH_USB_DP,
177 };
178
179 static struct s3c2410_ts_mach_info h1940_ts_cfg __initdata = {
180 .delay = 10000,
181 .presc = 49,
182 .oversampling_shift = 2,
183 .cfg_gpio = s3c24xx_ts_cfg_gpio,
184 };
185
186 /**
187 * Set lcd on or off
188 **/
189 static struct s3c2410fb_display h1940_lcd __initdata = {
190 .lcdcon5= S3C2410_LCDCON5_FRM565 | \
191 S3C2410_LCDCON5_INVVLINE | \
192 S3C2410_LCDCON5_HWSWP,
193
194 .type = S3C2410_LCDCON1_TFT,
195 .width = 240,
196 .height = 320,
197 .pixclock = 260000,
198 .xres = 240,
199 .yres = 320,
200 .bpp = 16,
201 .left_margin = 8,
202 .right_margin = 20,
203 .hsync_len = 4,
204 .upper_margin = 8,
205 .lower_margin = 7,
206 .vsync_len = 1,
207 };
208
209 static struct s3c2410fb_mach_info h1940_fb_info __initdata = {
210 .displays = &h1940_lcd,
211 .num_displays = 1,
212 .default_display = 0,
213
214 .lpcsel = 0x02,
215 .gpccon = 0xaa940659,
216 .gpccon_mask = 0xffffc0f0,
217 .gpcup = 0x0000ffff,
218 .gpcup_mask = 0xffffffff,
219 .gpdcon = 0xaa84aaa0,
220 .gpdcon_mask = 0xffffffff,
221 .gpdup = 0x0000faff,
222 .gpdup_mask = 0xffffffff,
223 };
224
225 static int power_supply_init(struct device *dev)
226 {
227 return gpio_request(S3C2410_GPF(2), "cable plugged");
228 }
229
230 static int h1940_is_ac_online(void)
231 {
232 return !gpio_get_value(S3C2410_GPF(2));
233 }
234
235 static void power_supply_exit(struct device *dev)
236 {
237 gpio_free(S3C2410_GPF(2));
238 }
239
240 static char *h1940_supplicants[] = {
241 "main-battery",
242 "backup-battery",
243 };
244
245 static struct pda_power_pdata power_supply_info = {
246 .init = power_supply_init,
247 .is_ac_online = h1940_is_ac_online,
248 .exit = power_supply_exit,
249 .supplied_to = h1940_supplicants,
250 .num_supplicants = ARRAY_SIZE(h1940_supplicants),
251 };
252
253 static struct resource power_supply_resources[] = {
254 [0] = {
255 .name = "ac",
256 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE |
257 IORESOURCE_IRQ_HIGHEDGE,
258 .start = IRQ_EINT2,
259 .end = IRQ_EINT2,
260 },
261 };
262
263 static struct platform_device power_supply = {
264 .name = "pda-power",
265 .id = -1,
266 .dev = {
267 .platform_data =
268 &power_supply_info,
269 },
270 .resource = power_supply_resources,
271 .num_resources = ARRAY_SIZE(power_supply_resources),
272 };
273
274 static const struct s3c_adc_bat_thresh bat_lut_noac[] = {
275 { .volt = 4070, .cur = 162, .level = 100},
276 { .volt = 4040, .cur = 165, .level = 95},
277 { .volt = 4016, .cur = 164, .level = 90},
278 { .volt = 3996, .cur = 166, .level = 85},
279 { .volt = 3971, .cur = 168, .level = 80},
280 { .volt = 3951, .cur = 168, .level = 75},
281 { .volt = 3931, .cur = 170, .level = 70},
282 { .volt = 3903, .cur = 172, .level = 65},
283 { .volt = 3886, .cur = 172, .level = 60},
284 { .volt = 3858, .cur = 176, .level = 55},
285 { .volt = 3842, .cur = 176, .level = 50},
286 { .volt = 3818, .cur = 176, .level = 45},
287 { .volt = 3789, .cur = 180, .level = 40},
288 { .volt = 3769, .cur = 180, .level = 35},
289 { .volt = 3749, .cur = 184, .level = 30},
290 { .volt = 3732, .cur = 184, .level = 25},
291 { .volt = 3716, .cur = 184, .level = 20},
292 { .volt = 3708, .cur = 184, .level = 15},
293 { .volt = 3716, .cur = 96, .level = 10},
294 { .volt = 3700, .cur = 96, .level = 5},
295 { .volt = 3684, .cur = 96, .level = 0},
296 };
297
298 static const struct s3c_adc_bat_thresh bat_lut_acin[] = {
299 { .volt = 4130, .cur = 0, .level = 100},
300 { .volt = 3982, .cur = 0, .level = 50},
301 { .volt = 3854, .cur = 0, .level = 10},
302 { .volt = 3841, .cur = 0, .level = 0},
303 };
304
305 int h1940_bat_init(void)
306 {
307 int ret;
308
309 ret = gpio_request(H1940_LATCH_SM803_ENABLE, "h1940-charger-enable");
310 if (ret)
311 return ret;
312 gpio_direction_output(H1940_LATCH_SM803_ENABLE, 0);
313
314 return 0;
315
316 }
317
318 void h1940_bat_exit(void)
319 {
320 gpio_free(H1940_LATCH_SM803_ENABLE);
321 }
322
323 void h1940_enable_charger(void)
324 {
325 gpio_set_value(H1940_LATCH_SM803_ENABLE, 1);
326 }
327
328 void h1940_disable_charger(void)
329 {
330 gpio_set_value(H1940_LATCH_SM803_ENABLE, 0);
331 }
332
333 static struct s3c_adc_bat_pdata h1940_bat_cfg = {
334 .init = h1940_bat_init,
335 .exit = h1940_bat_exit,
336 .enable_charger = h1940_enable_charger,
337 .disable_charger = h1940_disable_charger,
338 .gpio_charge_finished = S3C2410_GPF(3),
339 .gpio_inverted = 1,
340 .lut_noac = bat_lut_noac,
341 .lut_noac_cnt = ARRAY_SIZE(bat_lut_noac),
342 .lut_acin = bat_lut_acin,
343 .lut_acin_cnt = ARRAY_SIZE(bat_lut_acin),
344 .volt_channel = 0,
345 .current_channel = 1,
346 .volt_mult = 4056,
347 .current_mult = 1893,
348 .internal_impedance = 200,
349 .backup_volt_channel = 3,
350 /* TODO Check backup volt multiplier */
351 .backup_volt_mult = 4056,
352 .backup_volt_min = 0,
353 .backup_volt_max = 4149288
354 };
355
356 static struct platform_device h1940_battery = {
357 .name = "s3c-adc-battery",
358 .id = -1,
359 .dev = {
360 .parent = &s3c_device_adc.dev,
361 .platform_data = &h1940_bat_cfg,
362 },
363 };
364
365 DEFINE_SPINLOCK(h1940_blink_spin);
366
367 int h1940_led_blink_set(unsigned gpio, int state,
368 unsigned long *delay_on, unsigned long *delay_off)
369 {
370 int blink_gpio, check_gpio1, check_gpio2;
371
372 switch (gpio) {
373 case H1940_LATCH_LED_GREEN:
374 blink_gpio = S3C2410_GPA(7);
375 check_gpio1 = S3C2410_GPA(1);
376 check_gpio2 = S3C2410_GPA(3);
377 break;
378 case H1940_LATCH_LED_RED:
379 blink_gpio = S3C2410_GPA(1);
380 check_gpio1 = S3C2410_GPA(7);
381 check_gpio2 = S3C2410_GPA(3);
382 break;
383 default:
384 blink_gpio = S3C2410_GPA(3);
385 check_gpio1 = S3C2410_GPA(1);
386 check_gpio1 = S3C2410_GPA(7);
387 break;
388 }
389
390 if (delay_on && delay_off && !*delay_on && !*delay_off)
391 *delay_on = *delay_off = 500;
392
393 spin_lock(&h1940_blink_spin);
394
395 switch (state) {
396 case GPIO_LED_NO_BLINK_LOW:
397 case GPIO_LED_NO_BLINK_HIGH:
398 if (!gpio_get_value(check_gpio1) &&
399 !gpio_get_value(check_gpio2))
400 gpio_set_value(H1940_LATCH_LED_FLASH, 0);
401 gpio_set_value(blink_gpio, 0);
402 if (gpio_is_valid(gpio))
403 gpio_set_value(gpio, state);
404 break;
405 case GPIO_LED_BLINK:
406 if (gpio_is_valid(gpio))
407 gpio_set_value(gpio, 0);
408 gpio_set_value(H1940_LATCH_LED_FLASH, 1);
409 gpio_set_value(blink_gpio, 1);
410 break;
411 }
412
413 spin_unlock(&h1940_blink_spin);
414
415 return 0;
416 }
417 EXPORT_SYMBOL(h1940_led_blink_set);
418
419 static struct gpio_led h1940_leds_desc[] = {
420 {
421 .name = "Green",
422 .default_trigger = "main-battery-full",
423 .gpio = H1940_LATCH_LED_GREEN,
424 .retain_state_suspended = 1,
425 },
426 {
427 .name = "Red",
428 .default_trigger
429 = "main-battery-charging-blink-full-solid",
430 .gpio = H1940_LATCH_LED_RED,
431 .retain_state_suspended = 1,
432 },
433 };
434
435 static struct gpio_led_platform_data h1940_leds_pdata = {
436 .num_leds = ARRAY_SIZE(h1940_leds_desc),
437 .leds = h1940_leds_desc,
438 .gpio_blink_set = h1940_led_blink_set,
439 };
440
441 static struct platform_device h1940_device_leds = {
442 .name = "leds-gpio",
443 .id = -1,
444 .dev = {
445 .platform_data = &h1940_leds_pdata,
446 },
447 };
448
449 static struct platform_device h1940_device_bluetooth = {
450 .name = "h1940-bt",
451 .id = -1,
452 };
453
454 static void h1940_set_mmc_power(unsigned char power_mode, unsigned short vdd)
455 {
456 switch (power_mode) {
457 case MMC_POWER_OFF:
458 gpio_set_value(H1940_LATCH_SD_POWER, 0);
459 break;
460 case MMC_POWER_UP:
461 case MMC_POWER_ON:
462 gpio_set_value(H1940_LATCH_SD_POWER, 1);
463 break;
464 default:
465 break;
466 };
467 }
468
469 static struct s3c24xx_mci_pdata h1940_mmc_cfg __initdata = {
470 .gpio_detect = S3C2410_GPF(5),
471 .gpio_wprotect = S3C2410_GPH(8),
472 .set_power = h1940_set_mmc_power,
473 .ocr_avail = MMC_VDD_32_33,
474 };
475
476 static int h1940_backlight_init(struct device *dev)
477 {
478 gpio_request(S3C2410_GPB(0), "Backlight");
479
480 gpio_direction_output(S3C2410_GPB(0), 0);
481 s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
482 s3c_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPB0_TOUT0);
483 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 1);
484
485 return 0;
486 }
487
488 static int h1940_backlight_notify(struct device *dev, int brightness)
489 {
490 if (!brightness) {
491 gpio_direction_output(S3C2410_GPB(0), 1);
492 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
493 } else {
494 gpio_direction_output(S3C2410_GPB(0), 0);
495 s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
496 s3c_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPB0_TOUT0);
497 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 1);
498 }
499 return brightness;
500 }
501
502 static void h1940_backlight_exit(struct device *dev)
503 {
504 gpio_direction_output(S3C2410_GPB(0), 1);
505 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
506 }
507
508
509 static struct platform_pwm_backlight_data backlight_data = {
510 .pwm_id = 0,
511 .max_brightness = 100,
512 .dft_brightness = 50,
513 /* tcnt = 0x31 */
514 .pwm_period_ns = 36296,
515 .init = h1940_backlight_init,
516 .notify = h1940_backlight_notify,
517 .exit = h1940_backlight_exit,
518 };
519
520 static struct platform_device h1940_backlight = {
521 .name = "pwm-backlight",
522 .dev = {
523 .parent = &s3c_device_timer[0].dev,
524 .platform_data = &backlight_data,
525 },
526 .id = -1,
527 };
528
529 static void h1940_lcd_power_set(struct plat_lcd_data *pd,
530 unsigned int power)
531 {
532 int value, retries = 100;
533
534 if (!power) {
535 gpio_set_value(S3C2410_GPC(0), 0);
536 /* wait for 3ac */
537 do {
538 value = gpio_get_value(S3C2410_GPC(6));
539 } while (value && retries--);
540
541 gpio_set_value(H1940_LATCH_LCD_P2, 0);
542 gpio_set_value(H1940_LATCH_LCD_P3, 0);
543 gpio_set_value(H1940_LATCH_LCD_P4, 0);
544
545 gpio_direction_output(S3C2410_GPC(1), 0);
546 gpio_direction_output(S3C2410_GPC(4), 0);
547
548 gpio_set_value(H1940_LATCH_LCD_P1, 0);
549 gpio_set_value(H1940_LATCH_LCD_P0, 0);
550
551 gpio_set_value(S3C2410_GPC(5), 0);
552
553 } else {
554 gpio_set_value(H1940_LATCH_LCD_P0, 1);
555 gpio_set_value(H1940_LATCH_LCD_P1, 1);
556
557 gpio_direction_input(S3C2410_GPC(1));
558 gpio_direction_input(S3C2410_GPC(4));
559 mdelay(10);
560 s3c_gpio_cfgpin(S3C2410_GPC(1), S3C_GPIO_SFN(2));
561 s3c_gpio_cfgpin(S3C2410_GPC(4), S3C_GPIO_SFN(2));
562
563 gpio_set_value(S3C2410_GPC(5), 1);
564 gpio_set_value(S3C2410_GPC(0), 1);
565
566 gpio_set_value(H1940_LATCH_LCD_P3, 1);
567 gpio_set_value(H1940_LATCH_LCD_P2, 1);
568 gpio_set_value(H1940_LATCH_LCD_P4, 1);
569 }
570 }
571
572 static struct plat_lcd_data h1940_lcd_power_data = {
573 .set_power = h1940_lcd_power_set,
574 };
575
576 static struct platform_device h1940_lcd_powerdev = {
577 .name = "platform-lcd",
578 .dev.parent = &s3c_device_lcd.dev,
579 .dev.platform_data = &h1940_lcd_power_data,
580 };
581
582 static struct uda1380_platform_data uda1380_info = {
583 .gpio_power = H1940_LATCH_UDA_POWER,
584 .gpio_reset = S3C2410_GPA(12),
585 .dac_clk = UDA1380_DAC_CLK_SYSCLK,
586 };
587
588 static struct i2c_board_info h1940_i2c_devices[] = {
589 {
590 I2C_BOARD_INFO("uda1380", 0x1a),
591 .platform_data = &uda1380_info,
592 },
593 };
594
595 #define DECLARE_BUTTON(p, k, n, w) \
596 { \
597 .gpio = p, \
598 .code = k, \
599 .desc = n, \
600 .wakeup = w, \
601 .active_low = 1, \
602 }
603
604 static struct gpio_keys_button h1940_buttons[] = {
605 DECLARE_BUTTON(S3C2410_GPF(0), KEY_POWER, "Power", 1),
606 DECLARE_BUTTON(S3C2410_GPF(6), KEY_ENTER, "Select", 1),
607 DECLARE_BUTTON(S3C2410_GPF(7), KEY_RECORD, "Record", 0),
608 DECLARE_BUTTON(S3C2410_GPG(0), KEY_F11, "Calendar", 0),
609 DECLARE_BUTTON(S3C2410_GPG(2), KEY_F12, "Contacts", 0),
610 DECLARE_BUTTON(S3C2410_GPG(3), KEY_MAIL, "Mail", 0),
611 DECLARE_BUTTON(S3C2410_GPG(6), KEY_LEFT, "Left_arrow", 0),
612 DECLARE_BUTTON(S3C2410_GPG(7), KEY_HOMEPAGE, "Home", 0),
613 DECLARE_BUTTON(S3C2410_GPG(8), KEY_RIGHT, "Right_arrow", 0),
614 DECLARE_BUTTON(S3C2410_GPG(9), KEY_UP, "Up_arrow", 0),
615 DECLARE_BUTTON(S3C2410_GPG(10), KEY_DOWN, "Down_arrow", 0),
616 };
617
618 static struct gpio_keys_platform_data h1940_buttons_data = {
619 .buttons = h1940_buttons,
620 .nbuttons = ARRAY_SIZE(h1940_buttons),
621 };
622
623 static struct platform_device h1940_dev_buttons = {
624 .name = "gpio-keys",
625 .id = -1,
626 .dev = {
627 .platform_data = &h1940_buttons_data,
628 }
629 };
630
631 static struct platform_device *h1940_devices[] __initdata = {
632 &h1940_dev_buttons,
633 &s3c_device_ohci,
634 &s3c_device_lcd,
635 &s3c_device_wdt,
636 &s3c_device_i2c0,
637 &s3c_device_iis,
638 &samsung_asoc_dma,
639 &s3c_device_usbgadget,
640 &h1940_device_leds,
641 &h1940_device_bluetooth,
642 &s3c_device_sdi,
643 &s3c_device_rtc,
644 &s3c_device_timer[0],
645 &h1940_backlight,
646 &h1940_lcd_powerdev,
647 &s3c_device_adc,
648 &s3c_device_ts,
649 &power_supply,
650 &h1940_battery,
651 };
652
653 static void __init h1940_map_io(void)
654 {
655 s3c24xx_init_io(h1940_iodesc, ARRAY_SIZE(h1940_iodesc));
656 s3c24xx_init_clocks(0);
657 s3c24xx_init_uarts(h1940_uartcfgs, ARRAY_SIZE(h1940_uartcfgs));
658
659 /* setup PM */
660
661 #ifdef CONFIG_PM_H1940
662 memcpy(phys_to_virt(H1940_SUSPEND_RESUMEAT), h1940_pm_return, 1024);
663 #endif
664 s3c_pm_init();
665
666 /* Add latch gpio chip, set latch initial value */
667 h1940_latch_control(0, 0);
668 WARN_ON(gpiochip_add(&h1940_latch_gpiochip));
669 }
670
671 /* H1940 and RX3715 need to reserve this for suspend */
672 static void __init h1940_reserve(void)
673 {
674 memblock_reserve(0x30003000, 0x1000);
675 memblock_reserve(0x30081000, 0x1000);
676 }
677
678 static void __init h1940_init_irq(void)
679 {
680 s3c24xx_init_irq();
681 }
682
683 static void __init h1940_init(void)
684 {
685 u32 tmp;
686
687 s3c24xx_fb_set_platdata(&h1940_fb_info);
688 s3c24xx_mci_set_platdata(&h1940_mmc_cfg);
689 s3c24xx_udc_set_platdata(&h1940_udc_cfg);
690 s3c24xx_ts_set_platdata(&h1940_ts_cfg);
691 s3c_i2c0_set_platdata(NULL);
692
693 /* Turn off suspend on both USB ports, and switch the
694 * selectable USB port to USB device mode. */
695
696 s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST |
697 S3C2410_MISCCR_USBSUSPND0 |
698 S3C2410_MISCCR_USBSUSPND1, 0x0);
699
700 tmp = (0x78 << S3C24XX_PLL_MDIV_SHIFT)
701 | (0x02 << S3C24XX_PLL_PDIV_SHIFT)
702 | (0x03 << S3C24XX_PLL_SDIV_SHIFT);
703 writel(tmp, S3C2410_UPLLCON);
704
705 gpio_request(S3C2410_GPC(0), "LCD power");
706 gpio_request(S3C2410_GPC(1), "LCD power");
707 gpio_request(S3C2410_GPC(4), "LCD power");
708 gpio_request(S3C2410_GPC(5), "LCD power");
709 gpio_request(S3C2410_GPC(6), "LCD power");
710 gpio_request(H1940_LATCH_LCD_P0, "LCD power");
711 gpio_request(H1940_LATCH_LCD_P1, "LCD power");
712 gpio_request(H1940_LATCH_LCD_P2, "LCD power");
713 gpio_request(H1940_LATCH_LCD_P3, "LCD power");
714 gpio_request(H1940_LATCH_LCD_P4, "LCD power");
715 gpio_request(H1940_LATCH_MAX1698_nSHUTDOWN, "LCD power");
716 gpio_direction_output(S3C2410_GPC(0), 0);
717 gpio_direction_output(S3C2410_GPC(1), 0);
718 gpio_direction_output(S3C2410_GPC(4), 0);
719 gpio_direction_output(S3C2410_GPC(5), 0);
720 gpio_direction_input(S3C2410_GPC(6));
721 gpio_direction_output(H1940_LATCH_LCD_P0, 0);
722 gpio_direction_output(H1940_LATCH_LCD_P1, 0);
723 gpio_direction_output(H1940_LATCH_LCD_P2, 0);
724 gpio_direction_output(H1940_LATCH_LCD_P3, 0);
725 gpio_direction_output(H1940_LATCH_LCD_P4, 0);
726 gpio_direction_output(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
727
728 gpio_request(H1940_LATCH_SD_POWER, "SD power");
729 gpio_direction_output(H1940_LATCH_SD_POWER, 0);
730
731 platform_add_devices(h1940_devices, ARRAY_SIZE(h1940_devices));
732
733 gpio_request(S3C2410_GPA(1), "Red LED blink");
734 gpio_request(S3C2410_GPA(3), "Blue LED blink");
735 gpio_request(S3C2410_GPA(7), "Green LED blink");
736 gpio_request(H1940_LATCH_LED_FLASH, "LED blink");
737 gpio_direction_output(S3C2410_GPA(1), 0);
738 gpio_direction_output(S3C2410_GPA(3), 0);
739 gpio_direction_output(S3C2410_GPA(7), 0);
740 gpio_direction_output(H1940_LATCH_LED_FLASH, 0);
741
742 i2c_register_board_info(0, h1940_i2c_devices,
743 ARRAY_SIZE(h1940_i2c_devices));
744 }
745
746 MACHINE_START(H1940, "IPAQ-H1940")
747 /* Maintainer: Ben Dooks <ben-linux@fluff.org> */
748 .atag_offset = 0x100,
749 .map_io = h1940_map_io,
750 .reserve = h1940_reserve,
751 .init_irq = h1940_init_irq,
752 .init_machine = h1940_init,
753 .timer = &s3c24xx_timer,
754 MACHINE_END
This page took 0.045505 seconds and 5 git commands to generate.