dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Tomi Valkeinen <tomi.valkeinen@ti.com>
To: Andrzej Hajda <a.hajda@samsung.com>,
	Archit Taneja <architt@codeaurora.org>,
	dri-devel@lists.freedesktop.org,
	Andrey Gusakov <andrey.gusakov@cogentembedded.com>
Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
Subject: Re: [PATCH 4/7] drm/bridge: tc358767: fix initial DP0/1_SRCCTRL value
Date: Tue, 27 Nov 2018 13:38:09 +0200	[thread overview]
Message-ID: <6b08ded4-0aba-4409-492c-193e675bf131@ti.com> (raw)
In-Reply-To: <7ae152b4-5c3c-ba20-204d-02b63294b056@samsung.com>

On 19/11/18 09:29, Andrzej Hajda wrote:
> On 29.10.2018 12:46, Tomi Valkeinen wrote:
>> Initially DP0_SRCCTRL is set to a static value which includes
>> DP0_SRCCTRL_LANES_2 and DP0_SRCCTRL_BW27, even when only 1 lane of
>> 1.62Gbps speed is used. DP1_SRCCTRL is configured to a magic number.
>>
>> This patch changes the configuration as follows:
>>
>> Configure DP0_SRCCTRL by using tc_srcctrl() which provides the correct
>> value.
>>
>> DP1_SRCCTRL needs to bits to be set to the same value as DP0_SRCCTRL:
> 
> s/to/two/
> 
> 
>> SSCG and BW27. All other bits can be zero.
>>
>> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
>> ---
>>  drivers/gpu/drm/bridge/tc358767.c | 11 +++++------
>>  1 file changed, 5 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/bridge/tc358767.c b/drivers/gpu/drm/bridge/tc358767.c
>> index fee53422c31f..ab299f4debfa 100644
>> --- a/drivers/gpu/drm/bridge/tc358767.c
>> +++ b/drivers/gpu/drm/bridge/tc358767.c
>> @@ -836,12 +836,11 @@ static int tc_main_link_setup(struct tc_data *tc)
>>  	if (!tc->mode)
>>  		return -EINVAL;
>>  
>> -	/* from excel file - DP0_SrcCtrl */
>> -	tc_write(DP0_SRCCTRL, DP0_SRCCTRL_SCRMBLDIS | DP0_SRCCTRL_EN810B |
>> -		 DP0_SRCCTRL_LANESKEW | DP0_SRCCTRL_LANES_2 |
>> -		 DP0_SRCCTRL_BW27 | DP0_SRCCTRL_AUTOCORRECT);
>> -	/* from excel file - DP1_SrcCtrl */
>> -	tc_write(DP1_SRCCTRL, 0x00003083);
>> +	tc_write(DP0_SRCCTRL, tc_srcctrl(tc));
>> +	/* SSCG and BW27 on DP1 must be set to the same as on DP0 */
>> +	tc_write(DP1_SRCCTRL,
>> +		 (tc->link.spread ? DP0_SRCCTRL_SSCG : 0) |
>> +		 ((tc->link.base.rate != 162000) ? DP0_SRCCTRL_BW27 : 0));
> 
> 
> Wouldn't  be better then to modify tc_srcctrl to support DP0 and DP1:
> 
>     tc_write(DP0_SRCCTRL, tc_srcctrl(tc, 0));
> 
>     tc_write(DP1_SRCCTRL, tc_srcctrl(tc, 1));

In a normal case I would agree. But on this IC, there's only a single
DisplayPort output, DP0. However, for some reason, DP1_SRCCTRL also
needs to be configured (and the register is not even in the docs) for
DP0 to work. Possibly there are IC versions with two DP ports, but I
don't know how DP1_SRCCTRL needs to be configured on those.

So I'd rather keep the normal configuration (for DP0 with tc_srcctrl)
separate from setting these magical bits in DP1_SRCCTRL needed to make
the IC work.

 Tomi

-- 
Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki.
Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2018-11-27 11:38 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-29 11:46 [PATCH 0/7] drm/bridge: tc358767: small fixes Tomi Valkeinen
2018-10-29 11:46 ` [PATCH 1/7] drm/bridge: tc358767: add bus flags Tomi Valkeinen
2018-11-19  7:37   ` Andrzej Hajda
2018-10-29 11:46 ` [PATCH 2/7] drm/bridge: tc358767: add defines for DP1_SRCCTRL & PHY_2LANE Tomi Valkeinen
2018-11-19  7:37   ` Andrzej Hajda
2018-10-29 11:46 ` [PATCH 3/7] drm/bridge: tc358767: fix single lane configuration Tomi Valkeinen
2018-11-19  7:36   ` Andrzej Hajda
2018-10-29 11:46 ` [PATCH 4/7] drm/bridge: tc358767: fix initial DP0/1_SRCCTRL value Tomi Valkeinen
2018-11-19  7:29   ` Andrzej Hajda
2018-11-27 11:38     ` Tomi Valkeinen [this message]
2018-10-29 11:46 ` [PATCH 5/7] drm/bridge: tc358767: reject modes which require too much BW Tomi Valkeinen
2018-11-19  7:36   ` Andrzej Hajda
2018-11-27 11:45     ` Tomi Valkeinen
2018-10-29 11:47 ` [PATCH 6/7] drm/bridge: tc358767: fix output H/V syncs Tomi Valkeinen
2018-11-19  7:33   ` Andrzej Hajda
2018-11-27 11:56     ` Tomi Valkeinen
2018-10-29 11:47 ` [PATCH 7/7] drm/bridge: tc358767: use DP connector if no panel set Tomi Valkeinen
2018-11-19  7:34   ` 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=6b08ded4-0aba-4409-492c-193e675bf131@ti.com \
    --to=tomi.valkeinen@ti.com \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=a.hajda@samsung.com \
    --cc=andrey.gusakov@cogentembedded.com \
    --cc=architt@codeaurora.org \
    --cc=dri-devel@lists.freedesktop.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;
as well as URLs for NNTP newsgroup(s).