From: Chris Wilson <chris@chris-wilson.co.uk>
To: Simon Que <sque@chromium.org>,
Jesse Barnes <jbarnes@virtuousgeek.org>,
Eric Anholt <eric@anholt.net>,
intel-gfx@lists.freedesktop.org
Cc: Olof Johansson <olofj@chromium.org>,
Mandeep Baines <msb@chromium.org>,
Bryan Freed <bfreed@chromium.org>
Subject: Re: [PATCH v2] CHROMIUM: i915: Added default LVDS options for the no-VBT case
Date: Mon, 27 Sep 2010 22:37:39 +0100 [thread overview]
Message-ID: <89kc63$i6ldq7@fmsmga002.fm.intel.com> (raw)
In-Reply-To: <AANLkTimsXYGEbJ9cQL8y6Z4RUYO2YLxSBcfa4Yu2utfp@mail.gmail.com>
On Mon, 27 Sep 2010 14:06:17 -0700, Simon Que <sque@chromium.org> wrote:
> Hello,
>
> I've updated my patch for default LVDS options, based on feedback from
> Chris Wilson. Updates that I've made:
> - Removed Kconfig option that enables dither bit being set -- because
> we can assume that we want dither enabled for all architectures
> anyway. No need to have an option to turn it off.
> - In the parse function, the dither bit is now set to 1 by default.
> That will be used by the case where VBT exists but the LVDS section
> does not.
>
> Thanks,
> Simon
>
> ===============================================================
> Subject: [PATCH] CHROMIUM: i915: Added default LVDS options for the no-VBT case
>
> Added a function that sets the LVDS values to default settings (currently only
> dither bit) when there is no VBT (video BIOS table) found. Also updated dither
> bit in parse function to be set by default.
>
> Signed-off-by: Simon Que <sque@chromium.org>
>
> BUG=none
> TEST=Splash screen looks dithered upon boot.
>
> Change-Id: If19c763824ee938ad107f655d8d94c65e39cfa56
> ---
> drivers/gpu/drm/i915/intel_bios.c | 10 +++++++++-
> 1 files changed, 9 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_bios.c
> b/drivers/gpu/drm/i915/intel_bios.c
> index 70c9d4b..6cb872c 100644
> --- a/drivers/gpu/drm/i915/intel_bios.c
> +++ b/drivers/gpu/drm/i915/intel_bios.c
> @@ -120,7 +120,7 @@ parse_lfp_panel_data(struct drm_i915_private *dev_priv,
> struct drm_display_mode *temp_mode;
>
> /* Defaults if we can't find VBT info */
> - dev_priv->lvds_dither = 0;
> + dev_priv->lvds_dither = 1;
> dev_priv->lvds_vbt = 0;
>
> lvds_options = find_section(bdb, BDB_LVDS_OPTIONS);
> @@ -501,6 +501,13 @@ parse_device_mapping(struct drm_i915_private *dev_priv,
> }
> return;
> }
> +
> +static void
> +get_no_vbt_default_settings(struct drm_i915_private *dev_priv)
> +{
> + dev_priv->lvds_dither = 1;
> +}
So we still end up doing this initialisation twice and confuse the issue
with less-than-clear naming.
init_vbt_defaults(dev_priv) ?
And then we could move *all* the initialisation from the separate routines
there. The counter-argument is that we then set the values in two different
places and so it becomes easy to loose track of when we need to update
them. Perhaps:
static void init_lfp_panel_data(dev_priv)
{
dev_priv->lvds_dither = 1;
...
}
static void parse_lfp_panel_data(dev_priv, bios)
{
...
}
static void init_vbt_defaults(dev_priv)
{
init_lfp_panel_data(dev_priv);
...
}
> +
> /**
> * intel_init_bios - initialize VBIOS settings & find VBT
> * @dev: DRM device
> @@ -541,6 +548,7 @@ intel_init_bios(struct drm_device *dev)
> if (!vbt) {
> DRM_ERROR("VBT signature missing\n");
> pci_unmap_rom(pdev, bios);
> + get_no_vbt_default_settings(dev_priv);
> return -1;
> }
I'd prefer:
init_vbt_defaults(dev_priv)
if (!vbt) {
...
return -1;
}
That way we can do all the initialisation upfront and know that the values
are good whether or not the VBT is complete.
-Chris
--
Chris Wilson, Intel Open Source Technology Centre
next prev parent reply other threads:[~2010-09-27 21:37 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-27 21:06 [PATCH v2] CHROMIUM: i915: Added default LVDS options for the no-VBT case Simon Que
2010-09-27 21:37 ` Chris Wilson [this message]
[not found] ` <AANLkTimObwqbucUdxCuuSLsv6OQKoFccpXiB9K1+CUcU@mail.gmail.com>
2010-09-28 19:06 ` Chris Wilson
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='89kc63$i6ldq7@fmsmga002.fm.intel.com' \
--to=chris@chris-wilson.co.uk \
--cc=bfreed@chromium.org \
--cc=eric@anholt.net \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jbarnes@virtuousgeek.org \
--cc=msb@chromium.org \
--cc=olofj@chromium.org \
--cc=sque@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