Linux Samsung SOC development
 help / color / mirror / Atom feed
From: Andrzej Hajda <a.hajda@samsung.com>
To: Inki Dae <inki.dae@samsung.com>, dri-devel@lists.freedesktop.org
Cc: airlied@linux.ie, linux-samsung-soc@vger.kernel.org,
	linux@arm.linux.org.uk
Subject: Re: [PATCH] drm/exynos: update to use component match support
Date: Wed, 10 Sep 2014 12:24:38 +0200	[thread overview]
Message-ID: <541026E6.3020107@samsung.com> (raw)
In-Reply-To: <1409573992-19721-1-git-send-email-inki.dae@samsung.com>

Hi Inki,

To test it properly I have to fix init/remove bugs [1].
Of course these bugs were not introduced by this patch,
but they prevented some basic tests.

[1]: http://permalink.gmane.org/gmane.linux.kernel.samsung-soc/37266

I have tested successfully your patch with trats and universal_c210 boards.

Few additional comments below.

On 09/01/2014 02:19 PM, Inki Dae wrote:
> Update Exynos's DRM driver to use component match support rater than
> add_components.
> 
> Signed-off-by: Inki Dae <inki.dae@samsung.com>
> ---
>  drivers/gpu/drm/exynos/exynos_drm_drv.c |   40 ++++++++++++++-----------------
>  1 file changed, 18 insertions(+), 22 deletions(-)
> 
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> index feee991..dae62c2 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> @@ -503,16 +503,15 @@ static int compare_of(struct device *dev, void *data)
>  	return dev == (struct device *)data;
>  }

Nitpick.

This is not a part of this patch but compare_of suggests it compares OF
nodes but this function compares devices, maybe compare_dev would be better.

>  
> -static int exynos_drm_add_components(struct device *dev, struct master *m)
> +static struct component_match *exynos_drm_match_add(struct device *dev)
>  {
> +	struct component_match *match = NULL;
>  	struct component_dev *cdev;
>  	unsigned int attach_cnt = 0;
>  
>  	mutex_lock(&drm_component_lock);
>  
>  	list_for_each_entry(cdev, &drm_component_list, list) {
> -		int ret;
> -
>  		/*
>  		 * Add components to master only in case that crtc and
>  		 * encoder/connector device objects exist.
> @@ -527,16 +526,10 @@ static int exynos_drm_add_components(struct device *dev, struct master *m)
>  		/*
>  		 * fimd and dpi modules have same device object so add
>  		 * only crtc device object in this case.
> -		 *
> -		 * TODO. if dpi module follows driver-model driver then
> -		 * below codes can be removed.
>  		 */
>  		if (cdev->crtc_dev == cdev->conn_dev) {
> -			ret = component_master_add_child(m, compare_of,
> -					cdev->crtc_dev);
> -			if (ret < 0)
> -				return ret;
> -
> +			component_match_add(dev, &match, compare_of,
> +						cdev->crtc_dev);
>  			goto out_lock;
>  		}
>  
> @@ -546,11 +539,8 @@ static int exynos_drm_add_components(struct device *dev, struct master *m)
>  		 * connector/encoder need pipe number of crtc when they
>  		 * are created.
>  		 */
> -		ret = component_master_add_child(m, compare_of, cdev->crtc_dev);
> -		ret |= component_master_add_child(m, compare_of,
> -							cdev->conn_dev);
> -		if (ret < 0)
> -			return ret;
> +		component_match_add(dev, &match, compare_of, cdev->crtc_dev);
> +		component_match_add(dev, &match, compare_of, cdev->conn_dev);
>  
>  out_lock:
>  		mutex_lock(&drm_component_lock);
> @@ -558,7 +548,7 @@ out_lock:
>  
>  	mutex_unlock(&drm_component_lock);
>  
> -	return attach_cnt ? 0 : -ENODEV;
> +	return attach_cnt ? match : ERR_PTR(-EPROBE_DEFER);
>  }
>  
>  static int exynos_drm_bind(struct device *dev)
> @@ -572,13 +562,13 @@ static void exynos_drm_unbind(struct device *dev)
>  }
>  
>  static const struct component_master_ops exynos_drm_ops = {
> -	.add_components = exynos_drm_add_components,
>  	.bind		= exynos_drm_bind,
>  	.unbind		= exynos_drm_unbind,
>  };
>  
>  static int exynos_drm_platform_probe(struct platform_device *pdev)
>  {
> +	struct component_match *match;
>  	int ret;
>  
>  	pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
> @@ -645,13 +635,19 @@ static int exynos_drm_platform_probe(struct platform_device *pdev)
>  		goto err_unregister_ipp_drv;
>  #endif
>  
> -	ret = component_master_add(&pdev->dev, &exynos_drm_ops);
> -	if (ret < 0)
> -		DRM_DEBUG_KMS("re-tried by last sub driver probed later.\n");
> +	match = exynos_drm_match_add(&pdev->dev);
> +	if (IS_ERR(match)) {
> +		ret = PTR_ERR(match);
> +		goto err_unregister_ipp_dev;
> +	}
>  
> -	return 0;
> +	return component_master_add_with_match(&pdev->dev, &exynos_drm_ops,
> +						match);

In case component_master_add_with_match fails there will be no cleanup -
platform devices and drivers will not be removed.

> +
> +err_unregister_ipp_dev:
>  
>  #ifdef CONFIG_DRM_EXYNOS_IPP
> +	exynos_platform_device_ipp_unregister();

It should not be a part of this patch.

Regards
Andrzej

>  err_unregister_ipp_drv:
>  	platform_driver_unregister(&ipp_driver);
>  err_unregister_gsc_drv:
> 

  reply	other threads:[~2014-09-10 10:24 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01 12:19 [PATCH] drm/exynos: update to use component match support Inki Dae
2014-09-10 10:24 ` Andrzej Hajda [this message]
2014-09-11  1:46   ` Inki Dae
2014-09-11  6:37   ` Inki Dae
2014-09-11  7:05     ` Andrzej Hajda
2014-09-11 12:57 ` [PATCH v2] " Inki Dae
2014-09-11 15:05   ` Andrzej Hajda

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=541026E6.3020107@samsung.com \
    --to=a.hajda@samsung.com \
    --cc=airlied@linux.ie \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=inki.dae@samsung.com \
    --cc=linux-samsung-soc@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    /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