From: Robert Jarzmik <robert.jarzmik@free.fr>
To: Lee Jones <lee.jones@linaro.org>,
Daniel Thompson <daniel.thompson@linaro.org>,
Jingoo Han <jingoohan1@gmail.com>,
Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: linux-fbdev@vger.kernel.org, linux-kernel@vger.kernel.org,
Robert Jarzmik <robert.jarzmik@free.fr>
Subject: [PATCH 2/3] backlight: tdo24m: add the reset line gpio
Date: Fri, 06 Oct 2017 19:58:24 +0000 [thread overview]
Message-ID: <20171006195826.27500-2-robert.jarzmik@free.fr> (raw)
In-Reply-To: <20171006195826.27500-1-robert.jarzmik@free.fr>
The Toppoly panels have a global reset line. Add an optional gpio
control for this line, for platforms which have the ability to drive it.
Signed-off-by: Robert Jarzmik <robert.jarzmik@free.fr>
---
drivers/video/backlight/tdo24m.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/video/backlight/tdo24m.c b/drivers/video/backlight/tdo24m.c
index e4bd63e9db6b..e4b2dfabf192 100644
--- a/drivers/video/backlight/tdo24m.c
+++ b/drivers/video/backlight/tdo24m.c
@@ -10,6 +10,7 @@
*/
#include <linux/module.h>
+#include <linux/gpio/consumer.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/device.h>
@@ -32,6 +33,7 @@ struct tdo24m {
struct spi_message msg;
struct spi_transfer xfer;
uint8_t *buf;
+ struct gpio_desc *xres;
int (*adj_mode)(struct tdo24m *lcd, int mode);
int color_invert;
@@ -364,6 +366,7 @@ static int tdo24m_probe(struct spi_device *spi)
if (lcd->buf = NULL)
return -ENOMEM;
+ lcd->xres = devm_gpiod_get(&spi->dev, "reset", GPIOD_OUT_LOW);
m = &lcd->msg;
x = &lcd->xfer;
--
2.11.0
next prev parent reply other threads:[~2017-10-06 19:58 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-06 19:58 [PATCH 1/3] backlight: tdo24m: fix the spi cs between transfers Robert Jarzmik
2017-10-06 19:58 ` Robert Jarzmik [this message]
2017-10-06 19:58 ` [PATCH 3/3] backlight: tdo24m: add model and status sysfs entries Robert Jarzmik
2017-10-09 11:14 ` [PATCH 1/3] backlight: tdo24m: fix the spi cs between transfers Daniel Thompson
2017-10-09 18:30 ` Robert Jarzmik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20171006195826.27500-2-robert.jarzmik@free.fr \
--to=robert.jarzmik@free.fr \
--cc=b.zolnierkie@samsung.com \
--cc=daniel.thompson@linaro.org \
--cc=jingoohan1@gmail.com \
--cc=lee.jones@linaro.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox