Linux ARM-MSM sub-architecture
 help / color / mirror / Atom feed
From: David Heidelberg <david@ixit.cz>
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Sean Paul <seanpaul@chromium.org>,
	robdclark <robdclark@gmail.com>,
	linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v2] drm/msm/dsi: do not use uninitialized kms
Date: Wed, 07 Jul 2021 15:04:39 +0200	[thread overview]
Message-ID: <RNLVVQ.PJPJRVYNANTG1@ixit.cz> (raw)
In-Reply-To: <4df2c14e-5e59-0faa-48f8-5425f2c26a8f@linaro.org>

Thank you,

tried your proposed solution, works for me (also seems better).

Sending another patch.
Best regards
David Heidelberg

On Wed, Jul 7 2021 at 02:17:14 +0300, Dmitry Baryshkov 
<dmitry.baryshkov@linaro.org> wrote:
> On 06/07/2021 02:36, David Heidelberg wrote:
>> Without this patch boot ends at NULL ptr exception at 
>> msm_dsi_manager_setup_encoder
>> on devices like Nexus 7 with MDP4 version 4.4.
>> 
>> Fixes: 03436e3ec69c ("drm/msm/dsi: Move setup_encoder to 
>> modeset_init")
>> 
>> Signed-off-by: David Heidelberg <david@ixit.cz>
> 
> Being not an expert in the mdp4 sources, I suspect that the fix is 
> not quite correct. I'd suggest setting priv->kms in the 
> mdp4_kms_init() before calling modeset_init().
> 
>> ---
>> 
>> v2: typo in Fixes commit reference
>> 
>>   drivers/gpu/drm/msm/dsi/dsi_manager.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>> 
>> diff --git a/drivers/gpu/drm/msm/dsi/dsi_manager.c 
>> b/drivers/gpu/drm/msm/dsi/dsi_manager.c
>> index 4ebfedc4a9ac..8114612b34b0 100644
>> --- a/drivers/gpu/drm/msm/dsi/dsi_manager.c
>> +++ b/drivers/gpu/drm/msm/dsi/dsi_manager.c
>> @@ -230,7 +230,7 @@ void msm_dsi_manager_setup_encoder(int id)
>>   	struct msm_kms *kms = priv->kms;
>>   	struct drm_encoder *encoder = msm_dsi_get_encoder(msm_dsi);
>>   \x7f-	if (encoder && kms->funcs->set_encoder_mode)
>> +	if (encoder && kms && kms->funcs->set_encoder_mode)
>>   		kms->funcs->set_encoder_mode(kms, encoder,
>>   					     dsi_mgr_is_cmd_mode(msm_dsi));
>>   }
>> 
> 
> 
> --
> With best wishes
> Dmitry



      reply	other threads:[~2021-07-07 13:05 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-05 23:36 [PATCH v2] drm/msm/dsi: do not use uninitialized kms David Heidelberg
2021-07-06 23:17 ` Dmitry Baryshkov
2021-07-07 13:04   ` David Heidelberg [this message]

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=RNLVVQ.PJPJRVYNANTG1@ixit.cz \
    --to=david@ixit.cz \
    --cc=dmitry.baryshkov@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=robdclark@gmail.com \
    --cc=seanpaul@chromium.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