From: Paul Menzel <paulepanter@users.sourceforge.net>
To: Carsten Emde <C.Emde@osadl.org>
Cc: David Airlie <airlied@linux.ie>,
Valdis Kletnieks <Valdis.Kletnieks@vt.edu>,
LKML <linux-kernel@vger.kernel.org>,
DRI <dri-devel@lists.freedesktop.org>,
Thomas Gleixner <tglx@linutronix.de>
Subject: Re: [V2 PATCH 2/2] drivers-gpu-drm-i915-invert-backlight-brightness
Date: Thu, 15 Mar 2012 08:24:41 +0100 [thread overview]
Message-ID: <1331796281.3718.10.camel@mattotaupa> (raw)
In-Reply-To: <20120314234830.227490545@osadl.org>
[-- Attachment #1: Type: text/plain, Size: 4074 bytes --]
Am Donnerstag, den 15.03.2012, 00:35 +0100 schrieb Carsten Emde:
> Einfaches Textdokument-Anlage
> (drivers-gpu-drm-i915-invert-backlight-brightness.patch)
quilt also does not adapt the subject line of the message correctly to
the one of the patch.
> Following the documentation of the Legacy Backlight Brightness (LBB)
> Register in the configuration space of some Intel PCI graphics adapters,
> setting the LBB register with the value 0x0 causes the backlight to be
> turned off, and 0xFF causes the backlight to be set to 100% intensity
> (http://download.intel.com/embedded/processors/Whitepaper/324567.pdf).
> At least one of our test systems, however, turns the backlight off at
> 0xFF and sets it to maximum intensity at 0. In consequence, the screen
> of this systems becomes dark at an early boot stage which makes it
> unusable. The same inversion applies to the BLC_PWM_CTL I915 register.
> This problem was introduced in kernel version 2.6.38 when the PCI device
> of this system was first supported by the i915 KMS module.
>
> This patch adds a module parameter to invert the backlight brightness
> value before writing and after reading which makes the affected notebook
> usable again.
>
> Signed-off-by: Carsten Emde <C.Emde@osadl.org>
>
> ---
> Documentation/kernel-parameters.txt | 9 +++++++++
> drivers/gpu/drm/i915/intel_panel.c | 14 ++++++++++++++
> 2 files changed, 23 insertions(+)
>
> Index: linux-3.3-rc6/Documentation/kernel-parameters.txt
> ===================================================================
> --- linux-3.3-rc6.orig/Documentation/kernel-parameters.txt
> +++ linux-3.3-rc6/Documentation/kernel-parameters.txt
> @@ -966,6 +966,15 @@ bytes respectively. Such letter suffixes
>
> i810= [HW,DRM]
>
> + i915.invert_brightness
> + [DRM] Invert the sense of the variable that is used to
> + set the brightness of the panel backlight. Normally a
> + value of 0 indicates backlight switched off, and the
> + maximum value sets the backlight to maximum brightness.
> + If this parameter is specified, a value of 0 sets the
> + backlight to maximum brightness, and the maximum value
> + switches the backlight off.
> +
> i8k.ignore_dmi [HW] Continue probing hardware even if DMI data
> indicates that the driver is running on unsupported
> hardware.
> Index: linux-3.3-rc6/drivers/gpu/drm/i915/intel_panel.c
> ===================================================================
> --- linux-3.3-rc6.orig/drivers/gpu/drm/i915/intel_panel.c
> +++ linux-3.3-rc6/drivers/gpu/drm/i915/intel_panel.c
> @@ -28,6 +28,7 @@
> * Chris Wilson <chris@chris-wilson.co.uk>
> */
>
> +#include <linux/moduleparam.h>
> #include "intel_drv.h"
>
> #define PCI_LBPC 0xf4 /* legacy/combination backlight modes */
> @@ -191,6 +192,10 @@ u32 intel_panel_get_max_backlight(struct
> return max;
> }
>
> +static bool brightness_inverted;
> +MODULE_PARM_DESC(brightness_inverted, "Backlight brightness value is inverted "
> + "(0 = max brightness, max value = dark)");
Could you elaborate somewhere for example by giving an example what
`dark` means? As a normal user it is not clear to me.
> +module_param_named(brightness_inverted, brightness_inverted, bool, 0600);
> u32 intel_panel_get_backlight(struct drm_device *dev)
> {
> struct drm_i915_private *dev_priv = dev->dev_private;
> @@ -212,6 +217,10 @@ u32 intel_panel_get_backlight(struct drm
> }
>
> DRM_DEBUG_DRIVER("get backlight PWM = %d\n", val);
> + if (brightness_inverted) {
> + u32 max = intel_panel_get_max_backlight(dev);
> + val = max - val;
> + }
> return val;
> }
>
> @@ -229,6 +238,11 @@ static void intel_panel_actually_set_bac
>
> DRM_DEBUG_DRIVER("set backlight PWM = %d\n", level);
>
> + if (brightness_inverted) {
> + u32 max = intel_panel_get_max_backlight(dev);
> + level = max - level;
> + }
> +
> if (HAS_PCH_SPLIT(dev))
> return intel_pch_panel_set_backlight(dev, level);
Thanks,
Paul
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 198 bytes --]
prev parent reply other threads:[~2012-03-15 7:24 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-14 23:35 [V2 PATCH 0/2] Provide workarounds to use DRM/KMS with broken graphics hardware Carsten Emde
2012-03-14 23:35 ` [V2 PATCH 1/2] drivers-gpu-drm-allow-to-load-edid-firmware.patch Carsten Emde
2012-03-15 7:13 ` Paul Menzel
2012-03-15 10:08 ` Thomas Gleixner
2012-03-18 10:54 ` Using quilt to send patches (was: [V2 PATCH 1/2] drivers-gpu-drm-allow-to-load-edid-firmware.patch) Paul Menzel
2012-03-18 10:56 ` Paul Menzel
2012-03-14 23:35 ` [V2 PATCH 2/2] drivers-gpu-drm-i915-invert-backlight-brightness Carsten Emde
2012-03-15 2:42 ` Keith Packard
2012-03-15 7:16 ` Paul Menzel
2012-03-15 7:24 ` Paul Menzel [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=1331796281.3718.10.camel@mattotaupa \
--to=paulepanter@users.sourceforge.net \
--cc=C.Emde@osadl.org \
--cc=Valdis.Kletnieks@vt.edu \
--cc=airlied@linux.ie \
--cc=dri-devel@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
/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