2 * linux/arch/arm/mach-s3c64xx/mach-smartq.c
4 * Copyright (C) 2010 Maurus Cuelenaere
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.
12 #include <linux/delay.h>
14 #include <linux/gpio.h>
15 #include <linux/gpio/machine.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/pwm.h>
19 #include <linux/pwm_backlight.h>
20 #include <linux/serial_core.h>
21 #include <linux/serial_s3c.h>
22 #include <linux/spi/spi_gpio.h>
23 #include <linux/usb/gpio_vbus.h>
24 #include <linux/platform_data/s3c-hsotg.h>
26 #include <asm/mach-types.h>
27 #include <asm/mach/map.h>
30 #include <mach/regs-gpio.h>
31 #include <mach/gpio-samsung.h>
34 #include <plat/devs.h>
35 #include <linux/platform_data/i2c-s3c2410.h>
36 #include <plat/gpio-cfg.h>
37 #include <linux/platform_data/hwmon-s3c.h>
38 #include <linux/platform_data/usb-ohci-s3c2410.h>
39 #include <plat/sdhci.h>
40 #include <linux/platform_data/touchscreen-s3c2410.h>
42 #include <video/platform_lcd.h>
43 #include <plat/samsung-time.h>
46 #include "regs-modem.h"
48 #define UCON S3C2410_UCON_DEFAULT
49 #define ULCON (S3C2410_LCON_CS8 | S3C2410_LCON_PNONE)
50 #define UFCON (S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE)
52 static struct s3c2410_uartcfg smartq_uartcfgs
[] __initdata
= {
76 static void smartq_usb_host_powercontrol(int port
, int to
)
78 pr_debug("%s(%d, %d)\n", __func__
, port
, to
);
81 gpio_set_value(S3C64XX_GPL(0), to
);
82 gpio_set_value(S3C64XX_GPL(1), to
);
86 static irqreturn_t
smartq_usb_host_ocirq(int irq
, void *pw
)
88 struct s3c2410_hcd_info
*info
= pw
;
90 if (gpio_get_value(S3C64XX_GPL(10)) == 0) {
91 pr_debug("%s: over-current irq (oc detected)\n", __func__
);
92 s3c2410_usb_report_oc(info
, 3);
94 pr_debug("%s: over-current irq (oc cleared)\n", __func__
);
95 s3c2410_usb_report_oc(info
, 0);
101 static void smartq_usb_host_enableoc(struct s3c2410_hcd_info
*info
, int on
)
105 /* This isn't present on a SmartQ 5 board */
106 if (machine_is_smartq5())
110 ret
= request_irq(gpio_to_irq(S3C64XX_GPL(10)),
111 smartq_usb_host_ocirq
,
112 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
,
113 "USB host overcurrent", info
);
115 pr_err("failed to request usb oc irq: %d\n", ret
);
117 free_irq(gpio_to_irq(S3C64XX_GPL(10)), info
);
121 static struct s3c2410_hcd_info smartq_usb_host_info
= {
123 .flags
= S3C_HCDFLG_USED
129 .power_control
= smartq_usb_host_powercontrol
,
130 .enable_oc
= smartq_usb_host_enableoc
,
133 static struct gpio_vbus_mach_info smartq_usb_otg_vbus_pdata
= {
134 .gpio_vbus
= S3C64XX_GPL(9),
136 .gpio_vbus_inverted
= true,
139 static struct platform_device smartq_usb_otg_vbus_dev
= {
141 .dev
.platform_data
= &smartq_usb_otg_vbus_pdata
,
144 static struct pwm_lookup smartq_pwm_lookup
[] = {
145 PWM_LOOKUP("samsung-pwm", 1, "pwm-backlight.0", NULL
,
146 1000000000 / (1000 * 20), PWM_POLARITY_NORMAL
),
149 static int smartq_bl_init(struct device
*dev
)
151 s3c_gpio_cfgpin(S3C64XX_GPF(15), S3C_GPIO_SFN(2));
156 static struct platform_pwm_backlight_data smartq_backlight_data
= {
157 .max_brightness
= 1000,
158 .dft_brightness
= 600,
160 .init
= smartq_bl_init
,
163 static struct platform_device smartq_backlight_device
= {
164 .name
= "pwm-backlight",
166 .parent
= &samsung_device_pwm
.dev
,
167 .platform_data
= &smartq_backlight_data
,
171 static struct s3c2410_ts_mach_info smartq_touchscreen_pdata __initdata
= {
174 .oversampling_shift
= 4,
177 static struct s3c_sdhci_platdata smartq_internal_hsmmc_pdata
= {
179 .cd_type
= S3C_SDHCI_CD_PERMANENT
,
182 static struct s3c_hwmon_pdata smartq_hwmon_pdata __initdata
= {
183 /* Battery voltage (?-4.2V) */
184 .in
[0] = &(struct s3c_hwmon_chcfg
) {
185 .name
= "smartq:battery-voltage",
189 /* Reference voltage (1.2V) */
190 .in
[1] = &(struct s3c_hwmon_chcfg
) {
191 .name
= "smartq:reference-voltage",
197 static struct dwc2_hsotg_plat smartq_hsotg_pdata
;
199 static int __init
smartq_lcd_setup_gpio(void)
203 ret
= gpio_request(S3C64XX_GPM(3), "LCD power");
208 gpio_direction_output(S3C64XX_GPM(3), 0);
214 static struct spi_gpio_platform_data smartq_lcd_control
= {
215 .sck
= S3C64XX_GPM(1),
216 .mosi
= S3C64XX_GPM(2),
217 .miso
= S3C64XX_GPM(2),
220 static struct platform_device smartq_lcd_control_device
= {
223 .dev
.platform_data
= &smartq_lcd_control
,
226 static void smartq_lcd_power_set(struct plat_lcd_data
*pd
, unsigned int power
)
228 gpio_direction_output(S3C64XX_GPM(3), power
);
231 static struct plat_lcd_data smartq_lcd_power_data
= {
232 .set_power
= smartq_lcd_power_set
,
235 static struct platform_device smartq_lcd_power_device
= {
236 .name
= "platform-lcd",
237 .dev
.parent
= &s3c_device_fb
.dev
,
238 .dev
.platform_data
= &smartq_lcd_power_data
,
241 static struct i2c_board_info smartq_i2c_devs
[] __initdata
= {
242 { I2C_BOARD_INFO("wm8987", 0x1a), },
245 static struct platform_device
*smartq_devices
[] __initdata
= {
246 &s3c_device_hsmmc1
, /* Init iNAND first, ... */
247 &s3c_device_hsmmc0
, /* ... then the external SD card */
256 &s3c_device_usb_hsotg
,
257 &s3c64xx_device_iis0
,
258 &smartq_backlight_device
,
259 &smartq_lcd_control_device
,
260 &smartq_lcd_power_device
,
261 &smartq_usb_otg_vbus_dev
,
264 static void __init
smartq_lcd_mode_set(void)
268 /* set the LCD type */
269 tmp
= __raw_readl(S3C64XX_SPCON
);
270 tmp
&= ~S3C64XX_SPCON_LCD_SEL_MASK
;
271 tmp
|= S3C64XX_SPCON_LCD_SEL_RGB
;
272 __raw_writel(tmp
, S3C64XX_SPCON
);
274 /* remove the LCD bypass */
275 tmp
= __raw_readl(S3C64XX_MODEM_MIFPCON
);
276 tmp
&= ~MIFPCON_LCD_BYPASS
;
277 __raw_writel(tmp
, S3C64XX_MODEM_MIFPCON
);
280 static void smartq_power_off(void)
282 gpio_direction_output(S3C64XX_GPK(15), 1);
285 static int __init
smartq_power_off_init(void)
289 ret
= gpio_request(S3C64XX_GPK(15), "Power control");
291 pr_err("%s: failed to get GPK15\n", __func__
);
296 gpio_direction_output(S3C64XX_GPK(15), 0);
298 pm_power_off
= smartq_power_off
;
303 static int __init
smartq_usb_host_init(void)
307 ret
= gpio_request(S3C64XX_GPL(0), "USB power control");
309 pr_err("%s: failed to get GPL0\n", __func__
);
313 ret
= gpio_request(S3C64XX_GPL(1), "USB host power control");
315 pr_err("%s: failed to get GPL1\n", __func__
);
319 if (!machine_is_smartq5()) {
320 /* This isn't present on a SmartQ 5 board */
321 ret
= gpio_request(S3C64XX_GPL(10), "USB host overcurrent");
323 pr_err("%s: failed to get GPL10\n", __func__
);
329 gpio_direction_output(S3C64XX_GPL(0), 0);
330 gpio_direction_output(S3C64XX_GPL(1), 0);
331 if (!machine_is_smartq5())
332 gpio_direction_input(S3C64XX_GPL(10));
334 s3c_device_ohci
.dev
.platform_data
= &smartq_usb_host_info
;
339 gpio_free(S3C64XX_GPL(1));
341 gpio_free(S3C64XX_GPL(0));
345 static int __init
smartq_wifi_init(void)
349 ret
= gpio_request(S3C64XX_GPK(1), "wifi control");
351 pr_err("%s: failed to get GPK1\n", __func__
);
355 ret
= gpio_request(S3C64XX_GPK(2), "wifi reset");
357 pr_err("%s: failed to get GPK2\n", __func__
);
358 gpio_free(S3C64XX_GPK(1));
363 gpio_direction_output(S3C64XX_GPK(1), 1);
366 gpio_direction_output(S3C64XX_GPK(2), 0);
368 gpio_set_value(S3C64XX_GPK(2), 1);
369 gpio_direction_input(S3C64XX_GPK(2));
374 static struct map_desc smartq_iodesc
[] __initdata
= {};
375 void __init
smartq_map_io(void)
377 s3c64xx_init_io(smartq_iodesc
, ARRAY_SIZE(smartq_iodesc
));
378 s3c64xx_set_xtal_freq(12000000);
379 s3c64xx_set_xusbxti_freq(12000000);
380 s3c24xx_init_uarts(smartq_uartcfgs
, ARRAY_SIZE(smartq_uartcfgs
));
381 samsung_set_timer_source(SAMSUNG_PWM3
, SAMSUNG_PWM4
);
383 smartq_lcd_mode_set();
386 static struct gpiod_lookup_table smartq_audio_gpios
= {
387 .dev_id
= "smartq-audio",
389 GPIO_LOOKUP("GPL", 12, "headphone detect", 0),
390 GPIO_LOOKUP("GPK", 12, "amplifiers shutdown", 0),
395 void __init
smartq_machine_init(void)
397 s3c_i2c0_set_platdata(NULL
);
398 dwc2_hsotg_set_platdata(&smartq_hsotg_pdata
);
399 s3c_hwmon_set_platdata(&smartq_hwmon_pdata
);
400 s3c_sdhci1_set_platdata(&smartq_internal_hsmmc_pdata
);
401 s3c_sdhci2_set_platdata(&smartq_internal_hsmmc_pdata
);
402 s3c64xx_ts_set_platdata(&smartq_touchscreen_pdata
);
404 i2c_register_board_info(0, smartq_i2c_devs
,
405 ARRAY_SIZE(smartq_i2c_devs
));
407 WARN_ON(smartq_lcd_setup_gpio());
408 WARN_ON(smartq_power_off_init());
409 WARN_ON(smartq_usb_host_init());
410 WARN_ON(smartq_wifi_init());
412 pwm_add_table(smartq_pwm_lookup
, ARRAY_SIZE(smartq_pwm_lookup
));
413 platform_add_devices(smartq_devices
, ARRAY_SIZE(smartq_devices
));
415 gpiod_add_lookup_table(&smartq_audio_gpios
);
416 platform_device_register_simple("smartq-audio", -1, NULL
, 0);