Certain backlight levels (253) cause the dispaly on my SMD to flicker, how can I fix it?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Certain backlight levels (253) cause the dispaly on my SMD to flicker, how can I fix it?

548 Views
Philip_FSL
Contributor IV

In order to correct this situation, a recommended solution is to change the PWM period used for controlling the backlight.  In the Freescale BSP the can be achieved for the SMD with the following patch:

diff --git a/arch/arm/mach-mx5/mx53_smd.c b/arch/arm/mach-mx5/mx53_smd.c

index 46188fd..f4bbe5a 100644

--- a/arch/arm/mach-mx5/mx53_smd.c

+++ b/arch/arm/mach-mx5/mx53_smd.c

@@ -499,7 +499,7 @@ static struct platform_pwm_backlight_data mxc_pwm_backlight_data = {

        .pwm_id = 1,

        .max_brightness = 255,

        .dft_brightness = 128,

-       .pwm_period_ns = 50000,

+       .pwm_period_ns = 45454,

};

Labels (1)
0 Kudos
0 Replies