From: icenowy@aosc.xyz (Icenowy Zheng)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC] drm/sun4i: rgb: Add 5% tolerance to dot clock frequency check
Date: Wed, 22 Feb 2017 20:46:34 +0800 [thread overview]
Message-ID: <2823101487767594@web44j.yandex.ru> (raw)
In-Reply-To: <20161206172911.z6sbjzgqv3vfcrfh@lukather>
07.12.2016, 05:03, "Maxime Ripard" <maxime.ripard@free-electrons.com>:
> On Thu, Nov 24, 2016 at 07:22:31PM +0800, Chen-Yu Tsai wrote:
>> ?The panels shipped with Allwinner devices are very "generic", i.e.
>> ?they do not have model numbers or reliable sources of information
>> ?for the timings (that we know of) other than the fex files shipped
>> ?on them. The dot clock frequency provided in the fex files have all
>> ?been rounded to the nearest MHz, as that is the unit used in them.
>>
>> ?We were using the simple panel "urt,umsh-8596md-t" as a substitute
>> ?for the A13 Q8 tablets in the absence of a specific model for what
>> ?may be many different but otherwise timing compatible panels. This
>> ?was usable without any visual artifacts or side effects, until the
>> ?dot clock rate check was added in commit bb43d40d7c83 ("drm/sun4i:
>> ?rgb: Validate the clock rate").
>>
>> ?The reason this check fails is because the dotclock frequency for
>> ?this model is 33.26 MHz, which is not achievable with our dot clock
>> ?hardware, and the rate returned by clk_round_rate deviates slightly,
>> ?causing the driver to reject the display mode.
>>
>> ?The LCD panels have some tolerance on the dot clock frequency, even
>> ?if it's not specified in their datasheets.
>>
>> ?This patch adds a 5% tolerence to the dot clock check.
>
> As we discussed already, I really believe this is just as arbitrary as
> the current behaviour.
>
> Some panels require an exact frequency, some have a minimal frequency
> but no maximum, some have a maximum frequency but no minimal, and I
> guess most of them deviates by how much exactly they can take (and
> possibly can take more easily a higher frequency, but are less
> tolerant if you take a frequency lower than the nominal.
>
> And we cannot remove that check entirely, since some bridges will
> report out of range frequencies for higher modes that we know we
> cannot reach.
>
> We could just try to see if the screen pixel clock frequency is out of
> the pixel clock range we can generate, but then we will loop back on
> how much out of range is it exactly, and is it within the screen
> tolerancy.
>
> We have an API to deal with the panel tolerancies in the DRM panel
> framework, we can (and should) use it.
>
> I'm not sure how others usually deal with this though. I think I
> remember Eric telling me that for the RPi they just adjusted the
> timings a bit, but they only really had a single panel to deal with.
>
> Daniel, Eric, Laurent, Sean? Any ideas?
This time I found a non-generic panel, "qiaodian,qd43003c0-40",
available as an accessary of Lichee Pi One/Zero (A13/V3s) boards,
which needs this fix to work.
The problem now is just the driver cannot support several panels.
If you want, here's the panel's datasheet:
https://github.com/Zepan/lichee-pi-zero/blob/master/HardWare/IC/3_Display_LCD_QD043003C0-40-7LED%E4%BA%A7%E5%93%81%E8%A7%84%E6%A0%BC%E4%B9%A6.pdf
>
> Maxime
>
> --
> Maxime Ripard, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> ,
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
WARNING: multiple messages have this Message-ID (diff)
From: Icenowy Zheng <icenowy-ymACFijhrKM@public.gmane.org>
To: Maxime Ripard
<maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>,
Chen-Yu Tsai <wens-jdAy2FN1RRM@public.gmane.org>
Cc: David Airlie <airlied-cv59FeDIM0c@public.gmane.org>,
Daniel Vetter <daniel.vetter-/w4YWyX8dFk@public.gmane.org>,
"linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org"
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
"dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org"
<dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org>,
Eric Anholt <eric-WhKQ6XTQaPysTnJN9+BGXg@public.gmane.org>,
"linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org"
<linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>,
Sean Paul <seanpaul-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>,
Laurent Pinchart
<laurent.pinchart-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>,
"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>
Subject: Re: [PATCH RFC] drm/sun4i: rgb: Add 5% tolerance to dot clock frequency check
Date: Wed, 22 Feb 2017 20:46:34 +0800 [thread overview]
Message-ID: <2823101487767594@web44j.yandex.ru> (raw)
In-Reply-To: <20161206172911.z6sbjzgqv3vfcrfh@lukather>
07.12.2016, 05:03, "Maxime Ripard" <maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>:
> On Thu, Nov 24, 2016 at 07:22:31PM +0800, Chen-Yu Tsai wrote:
>> The panels shipped with Allwinner devices are very "generic", i.e.
>> they do not have model numbers or reliable sources of information
>> for the timings (that we know of) other than the fex files shipped
>> on them. The dot clock frequency provided in the fex files have all
>> been rounded to the nearest MHz, as that is the unit used in them.
>>
>> We were using the simple panel "urt,umsh-8596md-t" as a substitute
>> for the A13 Q8 tablets in the absence of a specific model for what
>> may be many different but otherwise timing compatible panels. This
>> was usable without any visual artifacts or side effects, until the
>> dot clock rate check was added in commit bb43d40d7c83 ("drm/sun4i:
>> rgb: Validate the clock rate").
>>
>> The reason this check fails is because the dotclock frequency for
>> this model is 33.26 MHz, which is not achievable with our dot clock
>> hardware, and the rate returned by clk_round_rate deviates slightly,
>> causing the driver to reject the display mode.
>>
>> The LCD panels have some tolerance on the dot clock frequency, even
>> if it's not specified in their datasheets.
>>
>> This patch adds a 5% tolerence to the dot clock check.
>
> As we discussed already, I really believe this is just as arbitrary as
> the current behaviour.
>
> Some panels require an exact frequency, some have a minimal frequency
> but no maximum, some have a maximum frequency but no minimal, and I
> guess most of them deviates by how much exactly they can take (and
> possibly can take more easily a higher frequency, but are less
> tolerant if you take a frequency lower than the nominal.
>
> And we cannot remove that check entirely, since some bridges will
> report out of range frequencies for higher modes that we know we
> cannot reach.
>
> We could just try to see if the screen pixel clock frequency is out of
> the pixel clock range we can generate, but then we will loop back on
> how much out of range is it exactly, and is it within the screen
> tolerancy.
>
> We have an API to deal with the panel tolerancies in the DRM panel
> framework, we can (and should) use it.
>
> I'm not sure how others usually deal with this though. I think I
> remember Eric telling me that for the RPi they just adjusted the
> timings a bit, but they only really had a single panel to deal with.
>
> Daniel, Eric, Laurent, Sean? Any ideas?
This time I found a non-generic panel, "qiaodian,qd43003c0-40",
available as an accessary of Lichee Pi One/Zero (A13/V3s) boards,
which needs this fix to work.
The problem now is just the driver cannot support several panels.
If you want, here's the panel's datasheet:
https://github.com/Zepan/lichee-pi-zero/blob/master/HardWare/IC/3_Display_LCD_QD043003C0-40-7LED%E4%BA%A7%E5%93%81%E8%A7%84%E6%A0%BC%E4%B9%A6.pdf
>
> Maxime
>
> --
> Maxime Ripard, Free Electrons
> Embedded Linux and Kernel engineering
> http://free-electrons.com
> ,
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
--
You received this message because you are subscribed to the Google Groups "linux-sunxi" group.
To unsubscribe from this group and stop receiving emails from it, send an email to linux-sunxi+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
For more options, visit https://groups.google.com/d/optout.
next prev parent reply other threads:[~2017-02-22 12:46 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-24 11:22 [PATCH RFC] drm/sun4i: rgb: Add 5% tolerance to dot clock frequency check Chen-Yu Tsai
2016-11-24 11:22 ` Chen-Yu Tsai
2016-11-24 11:22 ` Chen-Yu Tsai
2016-11-24 15:15 ` Icenowy Zheng
2016-11-24 15:15 ` Icenowy Zheng
2016-12-06 17:29 ` Maxime Ripard
2016-12-06 17:29 ` Maxime Ripard
2016-12-06 17:29 ` Maxime Ripard
2016-12-07 2:26 ` Chen-Yu Tsai
2016-12-07 2:26 ` Chen-Yu Tsai
2016-12-07 2:26 ` Chen-Yu Tsai
2016-12-07 9:48 ` Laurent Pinchart
2016-12-07 9:48 ` Laurent Pinchart
2016-12-07 9:48 ` Laurent Pinchart
2016-12-09 8:57 ` Maxime Ripard
2016-12-09 8:57 ` Maxime Ripard
2016-12-09 8:57 ` Maxime Ripard
2017-02-23 15:54 ` Sean Paul
2017-02-23 15:54 ` Sean Paul
2017-02-23 15:54 ` Sean Paul
2017-02-24 9:51 ` Lucas Stach
2017-02-24 9:51 ` Lucas Stach
2017-02-24 9:51 ` Lucas Stach
2017-02-24 10:20 ` [linux-sunxi] " Chen-Yu Tsai
2017-02-24 10:20 ` Chen-Yu Tsai
2017-02-24 10:20 ` Chen-Yu Tsai
2017-02-24 23:59 ` Stefan Monnier
2017-02-27 7:47 ` Thierry Reding
2017-02-27 7:47 ` Thierry Reding
2017-02-27 7:47 ` Thierry Reding
2017-02-27 8:26 ` Laurent Pinchart
2017-02-27 8:26 ` Laurent Pinchart
2017-02-27 8:26 ` Laurent Pinchart
2016-12-09 9:36 ` Maxime Ripard
2016-12-09 9:36 ` Maxime Ripard
2016-12-09 9:36 ` Maxime Ripard
2016-12-07 19:16 ` Eric Anholt
2016-12-07 19:16 ` Eric Anholt
2016-12-07 19:32 ` Laurent Pinchart
2016-12-07 19:32 ` Laurent Pinchart
2016-12-07 19:32 ` Laurent Pinchart
2016-12-09 8:39 ` Maxime Ripard
2016-12-09 8:39 ` Maxime Ripard
2016-12-09 8:39 ` Maxime Ripard
2017-02-22 12:46 ` Icenowy Zheng [this message]
2017-02-22 12:46 ` Icenowy Zheng
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=2823101487767594@web44j.yandex.ru \
--to=icenowy@aosc.xyz \
--cc=linux-arm-kernel@lists.infradead.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 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.