Merge branch 'for-linus' of git://oss.sgi.com/xfs/xfs
[pandora-kernel.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/pwm_backlight.h>
27 #include <linux/i2c.h>
28 #include <video/platform_lcd.h>
29
30 #include <linux/mmc/host.h>
31
32 #include <asm/mach/arch.h>
33 #include <asm/mach/map.h>
34 #include <asm/mach/irq.h>
35
36 #include <mach/hardware.h>
37 #include <asm/irq.h>
38 #include <asm/mach-types.h>
39
40 #include <plat/regs-serial.h>
41 #include <mach/regs-lcd.h>
42 #include <mach/regs-clock.h>
43
44 #include <mach/regs-gpio.h>
45 #include <mach/gpio-fns.h>
46 #include <mach/gpio-nrs.h>
47
48 #include <mach/h1940.h>
49 #include <mach/h1940-latch.h>
50 #include <mach/fb.h>
51 #include <plat/udc.h>
52 #include <plat/iic.h>
53
54 #include <plat/gpio-cfg.h>
55 #include <plat/clock.h>
56 #include <plat/devs.h>
57 #include <plat/cpu.h>
58 #include <plat/pll.h>
59 #include <plat/pm.h>
60 #include <plat/mci.h>
61 #include <plat/ts.h>
62
63 #include <sound/uda1380.h>
64
65 #define H1940_LATCH             ((void __force __iomem *)0xF8000000)
66
67 #define H1940_PA_LATCH          S3C2410_CS2
68
69 #define H1940_LATCH_BIT(x)      (1 << ((x) + 16 - S3C_GPIO_END))
70
71 static struct map_desc h1940_iodesc[] __initdata = {
72         [0] = {
73                 .virtual        = (unsigned long)H1940_LATCH,
74                 .pfn            = __phys_to_pfn(H1940_PA_LATCH),
75                 .length         = SZ_16K,
76                 .type           = MT_DEVICE
77         },
78 };
79
80 #define UCON S3C2410_UCON_DEFAULT | S3C2410_UCON_UCLK
81 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB
82 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
83
84 static struct s3c2410_uartcfg h1940_uartcfgs[] __initdata = {
85         [0] = {
86                 .hwport      = 0,
87                 .flags       = 0,
88                 .ucon        = 0x3c5,
89                 .ulcon       = 0x03,
90                 .ufcon       = 0x51,
91         },
92         [1] = {
93                 .hwport      = 1,
94                 .flags       = 0,
95                 .ucon        = 0x245,
96                 .ulcon       = 0x03,
97                 .ufcon       = 0x00,
98         },
99         /* IR port */
100         [2] = {
101                 .hwport      = 2,
102                 .flags       = 0,
103                 .uart_flags  = UPF_CONS_FLOW,
104                 .ucon        = 0x3c5,
105                 .ulcon       = 0x43,
106                 .ufcon       = 0x51,
107         }
108 };
109
110 /* Board control latch control */
111
112 static unsigned int latch_state;
113
114 static void h1940_latch_control(unsigned int clear, unsigned int set)
115 {
116         unsigned long flags;
117
118         local_irq_save(flags);
119
120         latch_state &= ~clear;
121         latch_state |= set;
122
123         __raw_writel(latch_state, H1940_LATCH);
124
125         local_irq_restore(flags);
126 }
127
128 static inline int h1940_gpiolib_to_latch(int offset)
129 {
130         return 1 << (offset + 16);
131 }
132
133 static void h1940_gpiolib_latch_set(struct gpio_chip *chip,
134                                         unsigned offset, int value)
135 {
136         int latch_bit = h1940_gpiolib_to_latch(offset);
137
138         h1940_latch_control(value ? 0 : latch_bit,
139                 value ? latch_bit : 0);
140 }
141
142 static int h1940_gpiolib_latch_output(struct gpio_chip *chip,
143                                         unsigned offset, int value)
144 {
145         h1940_gpiolib_latch_set(chip, offset, value);
146         return 0;
147 }
148
149 static int h1940_gpiolib_latch_get(struct gpio_chip *chip,
150                                         unsigned offset)
151 {
152         return (latch_state >> (offset + 16)) & 1;
153 }
154
155 struct gpio_chip h1940_latch_gpiochip = {
156         .base                   = H1940_LATCH_GPIO(0),
157         .owner                  = THIS_MODULE,
158         .label                  = "H1940_LATCH",
159         .ngpio                  = 16,
160         .direction_output       = h1940_gpiolib_latch_output,
161         .set                    = h1940_gpiolib_latch_set,
162         .get                    = h1940_gpiolib_latch_get,
163 };
164
165 static struct s3c2410_udc_mach_info h1940_udc_cfg __initdata = {
166         .vbus_pin               = S3C2410_GPG(5),
167         .vbus_pin_inverted      = 1,
168         .pullup_pin             = H1940_LATCH_USB_DP,
169 };
170
171 static struct s3c2410_ts_mach_info h1940_ts_cfg __initdata = {
172                 .delay = 10000,
173                 .presc = 49,
174                 .oversampling_shift = 2,
175                 .cfg_gpio = s3c24xx_ts_cfg_gpio,
176 };
177
178 /**
179  * Set lcd on or off
180  **/
181 static struct s3c2410fb_display h1940_lcd __initdata = {
182         .lcdcon5=       S3C2410_LCDCON5_FRM565 | \
183                         S3C2410_LCDCON5_INVVLINE | \
184                         S3C2410_LCDCON5_HWSWP,
185
186         .type =         S3C2410_LCDCON1_TFT,
187         .width =        240,
188         .height =       320,
189         .pixclock =     260000,
190         .xres =         240,
191         .yres =         320,
192         .bpp =          16,
193         .left_margin =  8,
194         .right_margin = 20,
195         .hsync_len =    4,
196         .upper_margin = 8,
197         .lower_margin = 7,
198         .vsync_len =    1,
199 };
200
201 static struct s3c2410fb_mach_info h1940_fb_info __initdata = {
202         .displays = &h1940_lcd,
203         .num_displays = 1,
204         .default_display = 0,
205
206         .lpcsel=        0x02,
207         .gpccon=        0xaa940659,
208         .gpccon_mask=   0xffffffff,
209         .gpcup=         0x0000ffff,
210         .gpcup_mask=    0xffffffff,
211         .gpdcon=        0xaa84aaa0,
212         .gpdcon_mask=   0xffffffff,
213         .gpdup=         0x0000faff,
214         .gpdup_mask=    0xffffffff,
215 };
216
217 static struct platform_device h1940_device_leds = {
218         .name             = "h1940-leds",
219         .id               = -1,
220 };
221
222 static struct platform_device h1940_device_bluetooth = {
223         .name             = "h1940-bt",
224         .id               = -1,
225 };
226
227 static void h1940_set_mmc_power(unsigned char power_mode, unsigned short vdd)
228 {
229         switch (power_mode) {
230         case MMC_POWER_OFF:
231                 gpio_set_value(H1940_LATCH_SD_POWER, 0);
232                 break;
233         case MMC_POWER_UP:
234         case MMC_POWER_ON:
235                 gpio_set_value(H1940_LATCH_SD_POWER, 1);
236                 break;
237         default:
238                 break;
239         };
240 }
241
242 static struct s3c24xx_mci_pdata h1940_mmc_cfg __initdata = {
243         .gpio_detect   = S3C2410_GPF(5),
244         .gpio_wprotect = S3C2410_GPH(8),
245         .set_power     = h1940_set_mmc_power,
246         .ocr_avail     = MMC_VDD_32_33,
247 };
248
249 static int h1940_backlight_init(struct device *dev)
250 {
251         gpio_request(S3C2410_GPB(0), "Backlight");
252
253         gpio_direction_output(S3C2410_GPB(0), 0);
254         s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
255         s3c_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPB0_TOUT0);
256         gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 1);
257
258         return 0;
259 }
260
261 static int h1940_backlight_notify(struct device *dev, int brightness)
262 {
263         if (!brightness) {
264                 gpio_direction_output(S3C2410_GPB(0), 1);
265                 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
266         } else {
267                 gpio_direction_output(S3C2410_GPB(0), 0);
268                 s3c_gpio_setpull(S3C2410_GPB(0), S3C_GPIO_PULL_NONE);
269                 s3c_gpio_cfgpin(S3C2410_GPB(0), S3C2410_GPB0_TOUT0);
270                 gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 1);
271         }
272         return brightness;
273 }
274
275 static void h1940_backlight_exit(struct device *dev)
276 {
277         gpio_direction_output(S3C2410_GPB(0), 1);
278         gpio_set_value(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
279 }
280
281
282 static struct platform_pwm_backlight_data backlight_data = {
283         .pwm_id         = 0,
284         .max_brightness = 100,
285         .dft_brightness = 50,
286         /* tcnt = 0x31 */
287         .pwm_period_ns  = 36296,
288         .init           = h1940_backlight_init,
289         .notify         = h1940_backlight_notify,
290         .exit           = h1940_backlight_exit,
291 };
292
293 static struct platform_device h1940_backlight = {
294         .name = "pwm-backlight",
295         .dev  = {
296                 .parent = &s3c_device_timer[0].dev,
297                 .platform_data = &backlight_data,
298         },
299         .id   = -1,
300 };
301
302 static void h1940_lcd_power_set(struct plat_lcd_data *pd,
303                                         unsigned int power)
304 {
305         int value;
306
307         if (!power) {
308                 gpio_set_value(S3C2410_GPC(0), 0);
309                 /* wait for 3ac */
310                 do {
311                         value = gpio_get_value(S3C2410_GPC(6));
312                 } while (value);
313
314                 gpio_set_value(H1940_LATCH_LCD_P2, 0);
315                 gpio_set_value(H1940_LATCH_LCD_P3, 0);
316                 gpio_set_value(H1940_LATCH_LCD_P4, 0);
317
318                 gpio_direction_output(S3C2410_GPC(1), 0);
319                 gpio_direction_output(S3C2410_GPC(4), 0);
320
321                 gpio_set_value(H1940_LATCH_LCD_P1, 0);
322                 gpio_set_value(H1940_LATCH_LCD_P0, 0);
323
324                 gpio_set_value(S3C2410_GPC(5), 0);
325
326         } else {
327                 gpio_set_value(H1940_LATCH_LCD_P0, 1);
328                 gpio_set_value(H1940_LATCH_LCD_P1, 1);
329
330                 s3c_gpio_cfgpin(S3C2410_GPC(1), S3C_GPIO_SFN(2));
331                 s3c_gpio_cfgpin(S3C2410_GPC(4), S3C_GPIO_SFN(2));
332
333                 gpio_set_value(S3C2410_GPC(5), 1);
334                 gpio_set_value(S3C2410_GPC(0), 1);
335
336                 gpio_set_value(H1940_LATCH_LCD_P3, 1);
337                 gpio_set_value(H1940_LATCH_LCD_P2, 1);
338                 gpio_set_value(H1940_LATCH_LCD_P4, 1);
339         }
340 }
341
342 static struct plat_lcd_data h1940_lcd_power_data = {
343         .set_power      = h1940_lcd_power_set,
344 };
345
346 static struct platform_device h1940_lcd_powerdev = {
347         .name                   = "platform-lcd",
348         .dev.parent             = &s3c_device_lcd.dev,
349         .dev.platform_data      = &h1940_lcd_power_data,
350 };
351
352 static struct uda1380_platform_data uda1380_info = {
353         .gpio_power     = H1940_LATCH_UDA_POWER,
354         .gpio_reset     = S3C2410_GPA(12),
355         .dac_clk        = UDA1380_DAC_CLK_SYSCLK,
356 };
357
358 static struct i2c_board_info h1940_i2c_devices[] = {
359         {
360                 I2C_BOARD_INFO("uda1380", 0x1a),
361                 .platform_data = &uda1380_info,
362         },
363 };
364
365 static struct platform_device *h1940_devices[] __initdata = {
366         &s3c_device_ohci,
367         &s3c_device_lcd,
368         &s3c_device_wdt,
369         &s3c_device_i2c0,
370         &s3c_device_iis,
371         &samsung_asoc_dma,
372         &s3c_device_usbgadget,
373         &h1940_device_leds,
374         &h1940_device_bluetooth,
375         &s3c_device_sdi,
376         &s3c_device_rtc,
377         &s3c_device_timer[0],
378         &h1940_backlight,
379         &h1940_lcd_powerdev,
380         &s3c_device_adc,
381         &s3c_device_ts,
382 };
383
384 static void __init h1940_map_io(void)
385 {
386         s3c24xx_init_io(h1940_iodesc, ARRAY_SIZE(h1940_iodesc));
387         s3c24xx_init_clocks(0);
388         s3c24xx_init_uarts(h1940_uartcfgs, ARRAY_SIZE(h1940_uartcfgs));
389
390         /* setup PM */
391
392 #ifdef CONFIG_PM_H1940
393         memcpy(phys_to_virt(H1940_SUSPEND_RESUMEAT), h1940_pm_return, 1024);
394 #endif
395         s3c_pm_init();
396
397         /* Add latch gpio chip, set latch initial value */
398         h1940_latch_control(0, 0);
399         WARN_ON(gpiochip_add(&h1940_latch_gpiochip));
400 }
401
402 /* H1940 and RX3715 need to reserve this for suspend */
403 static void __init h1940_reserve(void)
404 {
405         memblock_reserve(0x30003000, 0x1000);
406         memblock_reserve(0x30081000, 0x1000);
407 }
408
409 static void __init h1940_init_irq(void)
410 {
411         s3c24xx_init_irq();
412 }
413
414 static void __init h1940_init(void)
415 {
416         u32 tmp;
417
418         s3c24xx_fb_set_platdata(&h1940_fb_info);
419         s3c24xx_mci_set_platdata(&h1940_mmc_cfg);
420         s3c24xx_udc_set_platdata(&h1940_udc_cfg);
421         s3c24xx_ts_set_platdata(&h1940_ts_cfg);
422         s3c_i2c0_set_platdata(NULL);
423
424         /* Turn off suspend on both USB ports, and switch the
425          * selectable USB port to USB device mode. */
426
427         s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST |
428                               S3C2410_MISCCR_USBSUSPND0 |
429                               S3C2410_MISCCR_USBSUSPND1, 0x0);
430
431         tmp =   (0x78 << S3C24XX_PLLCON_MDIVSHIFT)
432               | (0x02 << S3C24XX_PLLCON_PDIVSHIFT)
433               | (0x03 << S3C24XX_PLLCON_SDIVSHIFT);
434         writel(tmp, S3C2410_UPLLCON);
435
436         gpio_request(S3C2410_GPC(0), "LCD power");
437         gpio_request(S3C2410_GPC(1), "LCD power");
438         gpio_request(S3C2410_GPC(4), "LCD power");
439         gpio_request(S3C2410_GPC(5), "LCD power");
440         gpio_request(S3C2410_GPC(6), "LCD power");
441         gpio_request(H1940_LATCH_LCD_P0, "LCD power");
442         gpio_request(H1940_LATCH_LCD_P1, "LCD power");
443         gpio_request(H1940_LATCH_LCD_P2, "LCD power");
444         gpio_request(H1940_LATCH_LCD_P3, "LCD power");
445         gpio_request(H1940_LATCH_LCD_P4, "LCD power");
446         gpio_request(H1940_LATCH_MAX1698_nSHUTDOWN, "LCD power");
447         gpio_direction_output(S3C2410_GPC(0), 0);
448         gpio_direction_output(S3C2410_GPC(1), 0);
449         gpio_direction_output(S3C2410_GPC(4), 0);
450         gpio_direction_output(S3C2410_GPC(5), 0);
451         gpio_direction_input(S3C2410_GPC(6));
452         gpio_direction_output(H1940_LATCH_LCD_P0, 0);
453         gpio_direction_output(H1940_LATCH_LCD_P1, 0);
454         gpio_direction_output(H1940_LATCH_LCD_P2, 0);
455         gpio_direction_output(H1940_LATCH_LCD_P3, 0);
456         gpio_direction_output(H1940_LATCH_LCD_P4, 0);
457         gpio_direction_output(H1940_LATCH_MAX1698_nSHUTDOWN, 0);
458
459         gpio_request(H1940_LATCH_SD_POWER, "SD power");
460         gpio_direction_output(H1940_LATCH_SD_POWER, 0);
461
462         platform_add_devices(h1940_devices, ARRAY_SIZE(h1940_devices));
463
464         i2c_register_board_info(0, h1940_i2c_devices,
465                 ARRAY_SIZE(h1940_i2c_devices));
466 }
467
468 MACHINE_START(H1940, "IPAQ-H1940")
469         /* Maintainer: Ben Dooks <ben-linux@fluff.org> */
470         .boot_params    = S3C2410_SDRAM_PA + 0x100,
471         .map_io         = h1940_map_io,
472         .reserve        = h1940_reserve,
473         .init_irq       = h1940_init_irq,
474         .init_machine   = h1940_init,
475         .timer          = &s3c24xx_timer,
476 MACHINE_END