All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yakir Yang <ykk@rock-chips.com>
To: Thierry Reding <treding@nvidia.com>
Cc: linux-rockchip@lists.infradead.org, Mark Yao <yzq@rock-chips.com>,
	daniel.vetter@ffwll.ch, dianders@chromium.org,
	dri-devel@lists.freedesktop.org, tfiga@chromium.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] drm/rockchip: vop: do axi reset in vop initial time
Date: Thu, 2 Jun 2016 11:11:41 +0800	[thread overview]
Message-ID: <574FA3ED.3000107@rock-chips.com> (raw)
In-Reply-To: <20160601151956.GA29316@ulmo.ba.sec>


On 06/01/2016 11:19 PM, Thierry Reding wrote:
> On Wed, Jun 01, 2016 at 05:19:12PM +0800, Yakir Yang wrote:
>> There is a bug in RK3399 VOP, when bootloader/kernel only enable
>> VOP Big or VOP Little to display, then VOP IOMMU would failed to
>> reset at the initial time and VOP register couldn't write rightly.
>>
>> After do the pure reset of VOP module, then things back to right.
>>
>> Signed-off-by: Yakir Yang <ykk@rock-chips.com>
>> ---
>>   drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 15 ++++++++++++++-
>>   1 file changed, 14 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> index 1c4d5b5..4150323 100644
>> --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> @@ -1292,7 +1292,7 @@ static int vop_initial(struct vop *vop)
>>   {
>>   	const struct vop_data *vop_data = vop->data;
>>   	const struct vop_reg_data *init_table = vop_data->init_table;
>> -	struct reset_control *ahb_rst;
>> +	struct reset_control *ahb_rst, *axi_rst;
>>   	int i, ret;
>>   
>>   	vop->hclk = devm_clk_get(vop->dev, "hclk_vop");
>> @@ -1331,6 +1331,19 @@ static int vop_initial(struct vop *vop)
>>   	}
>>   
>>   	/*
>> +	 * do aclk_reset, reset all vop registers.
>> +	 */
>> +	axi_rst = devm_reset_control_get(vop->dev, "axi");
> I don't think you want the managed version here since you only store
> this in a local variable and hence aren't going to need it afterwards.
> Just use reset_control_get() and ...

Great, but seems Mark would not accept this fix now :(
Maybe I should found the root cause why my bootloader/kernel would 
broken the VOP.

Thanks,
- Yakir
>> +	if (IS_ERR(axi_rst)) {
>> +		dev_err(vop->dev, "failed to get axi reset\n");
>> +		ret = PTR_ERR(axi_rst);
>> +		goto err_disable_aclk;
>> +	}
>> +	reset_control_assert(axi_rst);
>> +	usleep_range(10, 20);
>> +	reset_control_deassert(axi_rst);
> call reset_control_put() here.
>
>> +
>> +	/*
>>   	 * do hclk_reset, reset all vop registers.
>>   	 */
>>   	ahb_rst = devm_reset_control_get(vop->dev, "ahb");
> This uses the same pattern, so you might want to consider reworking this
> as well, though it should be a separate patch.
>
> Thierry


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

WARNING: multiple messages have this Message-ID (diff)
From: Yakir Yang <ykk@rock-chips.com>
To: Thierry Reding <treding@nvidia.com>
Cc: Mark Yao <yzq@rock-chips.com>, Heiko Stuebner <heiko@sntech.de>,
	tfiga@chromium.org, David Airlie <airlied@linux.ie>,
	daniel.vetter@ffwll.ch, dianders@chromium.org,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-rockchip@lists.infradead.org
Subject: Re: [PATCH] drm/rockchip: vop: do axi reset in vop initial time
Date: Thu, 2 Jun 2016 11:11:41 +0800	[thread overview]
Message-ID: <574FA3ED.3000107@rock-chips.com> (raw)
In-Reply-To: <20160601151956.GA29316@ulmo.ba.sec>


On 06/01/2016 11:19 PM, Thierry Reding wrote:
> On Wed, Jun 01, 2016 at 05:19:12PM +0800, Yakir Yang wrote:
>> There is a bug in RK3399 VOP, when bootloader/kernel only enable
>> VOP Big or VOP Little to display, then VOP IOMMU would failed to
>> reset at the initial time and VOP register couldn't write rightly.
>>
>> After do the pure reset of VOP module, then things back to right.
>>
>> Signed-off-by: Yakir Yang <ykk@rock-chips.com>
>> ---
>>   drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 15 ++++++++++++++-
>>   1 file changed, 14 insertions(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> index 1c4d5b5..4150323 100644
>> --- a/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> +++ b/drivers/gpu/drm/rockchip/rockchip_drm_vop.c
>> @@ -1292,7 +1292,7 @@ static int vop_initial(struct vop *vop)
>>   {
>>   	const struct vop_data *vop_data = vop->data;
>>   	const struct vop_reg_data *init_table = vop_data->init_table;
>> -	struct reset_control *ahb_rst;
>> +	struct reset_control *ahb_rst, *axi_rst;
>>   	int i, ret;
>>   
>>   	vop->hclk = devm_clk_get(vop->dev, "hclk_vop");
>> @@ -1331,6 +1331,19 @@ static int vop_initial(struct vop *vop)
>>   	}
>>   
>>   	/*
>> +	 * do aclk_reset, reset all vop registers.
>> +	 */
>> +	axi_rst = devm_reset_control_get(vop->dev, "axi");
> I don't think you want the managed version here since you only store
> this in a local variable and hence aren't going to need it afterwards.
> Just use reset_control_get() and ...

Great, but seems Mark would not accept this fix now :(
Maybe I should found the root cause why my bootloader/kernel would 
broken the VOP.

Thanks,
- Yakir
>> +	if (IS_ERR(axi_rst)) {
>> +		dev_err(vop->dev, "failed to get axi reset\n");
>> +		ret = PTR_ERR(axi_rst);
>> +		goto err_disable_aclk;
>> +	}
>> +	reset_control_assert(axi_rst);
>> +	usleep_range(10, 20);
>> +	reset_control_deassert(axi_rst);
> call reset_control_put() here.
>
>> +
>> +	/*
>>   	 * do hclk_reset, reset all vop registers.
>>   	 */
>>   	ahb_rst = devm_reset_control_get(vop->dev, "ahb");
> This uses the same pattern, so you might want to consider reworking this
> as well, though it should be a separate patch.
>
> Thierry

  reply	other threads:[~2016-06-02  3:11 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-01  9:19 [PATCH] drm/rockchip: vop: do axi reset in vop initial time Yakir Yang
2016-06-01  9:19 ` Yakir Yang
2016-06-01  9:49 ` Mark yao
2016-06-01  9:49   ` Mark yao
2016-06-01 15:19 ` Thierry Reding
2016-06-01 15:19   ` Thierry Reding
2016-06-02  3:11   ` Yakir Yang [this message]
2016-06-02  3:11     ` Yakir Yang

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=574FA3ED.3000107@rock-chips.com \
    --to=ykk@rock-chips.com \
    --cc=daniel.vetter@ffwll.ch \
    --cc=dianders@chromium.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=tfiga@chromium.org \
    --cc=treding@nvidia.com \
    --cc=yzq@rock-chips.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.