All of lore.kernel.org
 help / color / mirror / Atom feed
From: Sebastian Reichel <sre@kernel.org>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 06/21] drm/omap: encoder-tfp410: Convert to the GPIO descriptors API
Date: Mon, 11 Jun 2018 16:10:36 +0200	[thread overview]
Message-ID: <20180611141036.ympbdvakfmuvc46r@earth.universe> (raw)
In-Reply-To: <20180606093650.26034-7-laurent.pinchart@ideasonboard.com>


[-- Attachment #1.1: Type: text/plain, Size: 3908 bytes --]

Hi,

On Wed, Jun 06, 2018 at 12:36:35PM +0300, Laurent Pinchart wrote:
> The GPIO descriptor API is favoured over the plain GPIO API for consumer
> drivers. Using it simplifies the driver code.
> 
> As the descriptor API handles the active-low flag internally we need to
> invert the polarity of all GPIO operations in the driver.
> 
> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> ---

Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>

-- Sebastian

>  drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c | 51 ++++++-----------------
>  1 file changed, 13 insertions(+), 38 deletions(-)
> 
> diff --git a/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c b/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c
> index c7398428228f..b91e45c0bfdd 100644
> --- a/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c
> +++ b/drivers/gpu/drm/omapdrm/displays/encoder-tfp410.c
> @@ -13,14 +13,13 @@
>  #include <linux/module.h>
>  #include <linux/platform_device.h>
>  #include <linux/slab.h>
> -#include <linux/of_gpio.h>
>  
>  #include "../dss/omapdss.h"
>  
>  struct panel_drv_data {
>  	struct omap_dss_device dssdev;
>  
> -	int pd_gpio;
> +	struct gpio_desc *pd_gpio;
>  
>  	struct videomode vm;
>  };
> @@ -57,8 +56,8 @@ static int tfp410_enable(struct omap_dss_device *dssdev)
>  	if (r)
>  		return r;
>  
> -	if (gpio_is_valid(ddata->pd_gpio))
> -		gpio_set_value_cansleep(ddata->pd_gpio, 1);
> +	if (ddata->pd_gpio)
> +		gpiod_set_value_cansleep(ddata->pd_gpio, 0);
>  
>  	dssdev->state = OMAP_DSS_DISPLAY_ACTIVE;
>  
> @@ -73,8 +72,8 @@ static void tfp410_disable(struct omap_dss_device *dssdev)
>  	if (!omapdss_device_is_enabled(dssdev))
>  		return;
>  
> -	if (gpio_is_valid(ddata->pd_gpio))
> -		gpio_set_value_cansleep(ddata->pd_gpio, 0);
> +	if (ddata->pd_gpio)
> +		gpiod_set_value_cansleep(ddata->pd_gpio, 0);
>  
>  	src->ops->disable(src);
>  
> @@ -119,30 +118,11 @@ static const struct omap_dss_device_ops tfp410_ops = {
>  	.set_timings	= tfp410_set_timings,
>  };
>  
> -static int tfp410_probe_of(struct platform_device *pdev)
> -{
> -	struct panel_drv_data *ddata = platform_get_drvdata(pdev);
> -	struct device_node *node = pdev->dev.of_node;
> -	int gpio;
> -
> -	gpio = of_get_named_gpio(node, "powerdown-gpios", 0);
> -
> -	if (gpio_is_valid(gpio) || gpio == -ENOENT) {
> -		ddata->pd_gpio = gpio;
> -	} else {
> -		if (gpio != -EPROBE_DEFER)
> -			dev_err(&pdev->dev, "failed to parse PD gpio\n");
> -		return gpio;
> -	}
> -
> -	return 0;
> -}
> -
>  static int tfp410_probe(struct platform_device *pdev)
>  {
>  	struct panel_drv_data *ddata;
>  	struct omap_dss_device *dssdev;
> -	int r;
> +	struct gpio_desc *gpio;
>  
>  	ddata = devm_kzalloc(&pdev->dev, sizeof(*ddata), GFP_KERNEL);
>  	if (!ddata)
> @@ -150,20 +130,15 @@ static int tfp410_probe(struct platform_device *pdev)
>  
>  	platform_set_drvdata(pdev, ddata);
>  
> -	r = tfp410_probe_of(pdev);
> -	if (r)
> -		return r;
> -
> -	if (gpio_is_valid(ddata->pd_gpio)) {
> -		r = devm_gpio_request_one(&pdev->dev, ddata->pd_gpio,
> -				GPIOF_OUT_INIT_LOW, "tfp410 PD");
> -		if (r) {
> -			dev_err(&pdev->dev, "Failed to request PD GPIO %d\n",
> -					ddata->pd_gpio);
> -			return r;
> -		}
> +	/* Powerdown GPIO */
> +	gpio = devm_gpiod_get_optional(&pdev->dev, "powerdown", GPIOD_OUT_HIGH);
> +	if (IS_ERR(gpio)) {
> +		dev_err(&pdev->dev, "failed to parse powerdown gpio\n");
> +		return PTR_ERR(gpio);
>  	}
>  
> +	ddata->pd_gpio = gpio;
> +
>  	dssdev = &ddata->dssdev;
>  	dssdev->ops = &tfp410_ops;
>  	dssdev->dev = &pdev->dev;
> -- 
> Regards,
> 
> Laurent Pinchart
> 
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2018-06-11 14:10 UTC|newest]

Thread overview: 44+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-06  9:36 [PATCH 00/21] omapdrm: Rework the HPD-related operations Laurent Pinchart
2018-06-06  9:36 ` [PATCH 01/21] drm/omap: dss: Remove unused omap_dss_driver operations Laurent Pinchart
2018-06-11 13:50   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 02/21] drm/omap: dss: Remove omap_dss_driver .[gs]et_mirror operations Laurent Pinchart
2018-06-11 14:02   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 03/21] drm/omap: Remove unnecessary display output sanity checks Laurent Pinchart
2018-06-11 14:03   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 04/21] drm/omap: Check omap_dss_device type based on the output_type field Laurent Pinchart
2018-06-11 22:48   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 05/21] drm/omap: connector-hdmi: Convert to the GPIO descriptors API Laurent Pinchart
2018-06-11 14:08   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 06/21] drm/omap: encoder-tfp410: " Laurent Pinchart
2018-06-11 14:10   ` Sebastian Reichel [this message]
2018-06-06  9:36 ` [PATCH 07/21] drm/omap: panel-nec-nl8048hl11: " Laurent Pinchart
2018-06-11 14:12   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 08/21] drm/omap: panel-sony-acx565akm: " Laurent Pinchart
2018-06-11 14:14   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 09/21] drm/omap: panel-tpo-td028ttec1: Drop unneeded linux/gpio.h header Laurent Pinchart
2018-06-11 14:14   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 10/21] drm/omap: panel-tpo-td043mtea1: Convert to the GPIO descriptors API Laurent Pinchart
2018-06-11 14:25   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 11/21] drm/omap: Move most omap_dss_driver operations to omap_dss_device_ops Laurent Pinchart
2018-06-11 15:53   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 12/21] drm/omap: dss: Add device operations flags Laurent Pinchart
2018-06-11 16:09   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 13/21] drm/omap: Don't call .detect() operation recursively Laurent Pinchart
2018-06-11 16:09   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 14/21] drm/omap: Don't call HPD registration operations recursively Laurent Pinchart
2018-06-11 22:17   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 15/21] drm/omap: Remove unneeded safety checks in the HPD operations Laurent Pinchart
2018-06-11 22:19   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 16/21] drm/omap: Merge HPD enable operation with HPD callback registration Laurent Pinchart
2018-06-11 22:26   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 17/21] drm/omap: Move HPD disconnection handling to omap_connector Laurent Pinchart
2018-06-11 22:33   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 18/21] drm/omap: Don't call EDID read operation recursively Laurent Pinchart
2018-06-11 22:47   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 19/21] drm/omap: Get from CRTC to display device directly Laurent Pinchart
2018-06-11 22:50   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 20/21] drm/omap: Pass both output and display omap_dss_device to encoder init Laurent Pinchart
2018-06-11 23:56   ` Sebastian Reichel
2018-06-06  9:36 ` [PATCH 21/21] drm/omap: Don't call HDMI mode and infoframe operations recursively Laurent Pinchart
2018-06-11 23:55   ` Sebastian Reichel
2018-08-13 10:12   ` Tomi Valkeinen

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=20180611141036.ympbdvakfmuvc46r@earth.universe \
    --to=sre@kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=tomi.valkeinen@ti.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.