[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180620053300.GJ15126@tuxbook-pro>
Date: Tue, 19 Jun 2018 22:33:00 -0700
From: Bjorn Andersson <bjorn.andersson@...aro.org>
To: Kiran Gunda <kgunda@...eaurora.org>
Cc: jingoohan1@...il.com, lee.jones@...aro.org,
b.zolnierkie@...sung.com, dri-devel@...ts.freedesktop.org,
Daniel Thompson <daniel.thompson@...aro.org>,
linux-fbdev@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-arm-msm@...r.kernel.org, linux-leds@...r.kernel.org
Subject: Re: [PATCH V3 6/7] backlight: qcom-wled: add support for short
circuit handling
On Tue 19 Jun 04:13 PDT 2018, Kiran Gunda wrote:
> Handle the short circuit interrupt and check if the short circuit
> interrupt is valid. Re-enable the module to check if it goes
> away. Disable the module altogether if the short circuit event
> persists.
>
> Signed-off-by: Kiran Gunda <kgunda@...eaurora.org>
> ---
> drivers/video/backlight/qcom-wled.c | 130 +++++++++++++++++++++++++++++++++++-
> 1 file changed, 127 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/video/backlight/qcom-wled.c b/drivers/video/backlight/qcom-wled.c
[..]
> struct wled {
> const char *name;
> struct device *dev;
> struct regmap *regmap;
> + struct mutex lock; /* Lock to avoid race from ISR */
> + ktime_t last_short_event;
> u16 ctrl_addr;
> u16 sink_addr;
> u32 brightness;
> u32 max_brightness;
> + u32 short_count;
> const int *version;
> + bool disabled_by_short;
> + bool has_short_detect;
The use of feature flags, instead of checking the version, like this is
good!
>
> struct wled_config cfg;
> int (*wled_set_brightness)(struct wled *wled, u16 brightness);
Reviewed-by: Bjorn Andersson <bjorn.andersson@...aro.org>
Regards,
Bjorn
Powered by blists - more mailing lists