From: Daniel Vetter <daniel@ffwll.ch>
To: Chon Ming Lee <chon.ming.lee@intel.com>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 1/2] drm/i915: Modify DP set clock to accomodate more eDP timings.
Date: Fri, 30 Aug 2013 09:13:56 +0200 [thread overview]
Message-ID: <20130830071356.GD9374@phenom.ffwll.local> (raw)
In-Reply-To: <1377885465-23851-1-git-send-email-chon.ming.lee@intel.com>
On Sat, Aug 31, 2013 at 01:57:44AM +0800, Chon Ming Lee wrote:
> eDP 1.4 supports 4-5 extra link rates in additional to current 2 link
> rate. Create a structure to store the DPLL divisor data to improve
> readability.
>
> Signed-off-by: Chon Ming Lee <chon.ming.lee@intel.com>
This is a neat idea and I agree it'll be much better when we add edp link
rates. Small comments below:
> ---
> drivers/gpu/drm/i915/intel_dp.c | 48 +++++++++++++++++++-------------------
> 1 files changed, 24 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c
> index 2151d13..ab8a5ff 100644
> --- a/drivers/gpu/drm/i915/intel_dp.c
> +++ b/drivers/gpu/drm/i915/intel_dp.c
> @@ -38,6 +38,19 @@
>
> #define DP_LINK_CHECK_TIMEOUT (10 * 1000)
>
> +struct dp_link_dpll{
> + int link_bw;
> + struct dpll dpll;
> +};
> +
> +static const struct dp_link_dpll gen4_dpll[] =
> + {{ DP_LINK_BW_1_62, {2,23,8,2,10,0,0,0,0}},
> + { DP_LINK_BW_2_7, {1,14,2,1,10,0,0,0,0}}};
Usually we only indent by one tab here. Also please use c99 initializers
and you don't need to explicitly initialize to 0. And a bit more space
helps readbility further imo:
static const struct dp_link_dpll gen4_dpll[] =
{
{ DP_LINK_BW_1_62,
{ .p1 = 2, .p2 = 10, .n = 2, .m1 = 23, .m2 = 8 }},
/* more ... */
};
> +
> +static const struct dp_link_dpll pch_dpll[] =
> + {{ DP_LINK_BW_1_62, {1,12,9,2,10,0,0,0,0}},
> + { DP_LINK_BW_2_7, {2,14,8,1,10,0,0,0,0}}};
> +
> /**
> * is_edp - is the given port attached to an eDP panel (either CPU or PCH)
> * @intel_dp: DP struct
> @@ -649,37 +662,24 @@ intel_dp_set_clock(struct intel_encoder *encoder,
> struct intel_crtc_config *pipe_config, int link_bw)
> {
> struct drm_device *dev = encoder->base.dev;
> + int i;
>
> if (IS_G4X(dev)) {
> - if (link_bw == DP_LINK_BW_1_62) {
> - pipe_config->dpll.p1 = 2;
> - pipe_config->dpll.p2 = 10;
> - pipe_config->dpll.n = 2;
> - pipe_config->dpll.m1 = 23;
> - pipe_config->dpll.m2 = 8;
> - } else {
> - pipe_config->dpll.p1 = 1;
> - pipe_config->dpll.p2 = 10;
> - pipe_config->dpll.n = 1;
> - pipe_config->dpll.m1 = 14;
> - pipe_config->dpll.m2 = 2;
> + for(i = 0; i < sizeof(gen4_dpll) / sizeof(struct dp_link_dpll); i++) {
> + if (link_bw == gen4_dpll[i].link_bw){
> + pipe_config->dpll = gen4_dpll[i].dpll;
> + break;
> + }
> }
> pipe_config->clock_set = true;
> } else if (IS_HASWELL(dev)) {
> /* Haswell has special-purpose DP DDI clocks. */
> } else if (HAS_PCH_SPLIT(dev)) {
> - if (link_bw == DP_LINK_BW_1_62) {
> - pipe_config->dpll.n = 1;
> - pipe_config->dpll.p1 = 2;
> - pipe_config->dpll.p2 = 10;
> - pipe_config->dpll.m1 = 12;
> - pipe_config->dpll.m2 = 9;
> - } else {
> - pipe_config->dpll.n = 2;
> - pipe_config->dpll.p1 = 1;
> - pipe_config->dpll.p2 = 10;
> - pipe_config->dpll.m1 = 14;
> - pipe_config->dpll.m2 = 8;
> + for(i = 0; i < sizeof(pch_dpll) / sizeof(struct dp_link_dpll); i++) {
> + if (link_bw == pch_dpll[i].link_bw){
> + pipe_config->dpll = pch_dpll[i].dpll;
> + break;
> + }
I'd add temporary variables here to first select the right platform (and
size of the array) and then only have one for loop to fish out the right
value.
Cheers, Daniel
> }
> pipe_config->clock_set = true;
> } else if (IS_VALLEYVIEW(dev)) {
> --
> 1.7.7.6
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
next prev parent reply other threads:[~2013-08-30 7:13 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-30 17:57 [PATCH 1/2] drm/i915: Modify DP set clock to accomodate more eDP timings Chon Ming Lee
2013-08-30 7:13 ` Daniel Vetter [this message]
2013-08-30 7:28 ` Jani Nikula
2013-09-01 15:26 ` Lee, Chon Ming
2013-08-30 17:57 ` [PATCH 2/2] drm/i915: Move Valleyview DP DPLL divisor calc to intel_dp_set_clock Chon Ming Lee
2013-08-30 8:00 ` Jani Nikula
2013-09-01 15:42 ` Lee, Chon Ming
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=20130830071356.GD9374@phenom.ffwll.local \
--to=daniel@ffwll.ch \
--cc=chon.ming.lee@intel.com \
--cc=intel-gfx@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