ARM: S5PV210: Set 1000ns as PWM backlight period on SMDKV210
authorJingoo Han <jg1.han@samsung.com>
Thu, 8 Dec 2011 01:08:38 +0000 (10:08 +0900)
committerKukjin Kim <kgene.kim@samsung.com>
Thu, 8 Dec 2011 01:09:30 +0000 (10:09 +0900)
The SMDK board uses LT3591 as backlight LED driver of LTE480WV LCD.
According to the LT3591 datasheet, the switching frequency should
be 1MHz. So, PWM period is calculated by following formula:

PWM period = 1/switching frequency
   = 1/1MHz
   = 1000ns

Thus, the PWM backlight period should be 1000ns.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
arch/arm/mach-s5pv210/mach-smdkv210.c

index a9106c3..8662ef6 100644 (file)
@@ -273,6 +273,7 @@ static struct samsung_bl_gpio_info smdkv210_bl_gpio_info = {
 
 static struct platform_pwm_backlight_data smdkv210_bl_data = {
        .pwm_id = 3,
+       .pwm_period_ns = 1000,
 };
 
 static void __init smdkv210_map_io(void)