From: Aaron Lu <aaron.lu@intel.com>
To: Daniel Vetter <daniel@ffwll.ch>,
Jani Nikula <jani.nikula@linux.intel.com>
Cc: "intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>,
Nico Schottelius <nico-bugzilla.kernel.org@schottelius.org>,
"dri-devel@lists.freedesktop.org"
<dri-devel@lists.freedesktop.org>
Subject: [PATCH] drm/i915: restore backlight precision when converting from opregion
Date: Mon, 28 Apr 2014 11:19:29 +0800 [thread overview]
Message-ID: <535DC8C1.5090407@intel.com> (raw)
When we set backlight on behalf of ACPI opregion, we will convert the
backlight value in the 0-255 range defined in opregion to the actual
hardware level. Commit 22505b82a2 (drm/i915: avoid brightness overflow
when doing scale) is meant to fix the overflow problem when doing the
conversion, but it also caused a problem that the converted hardware
level doesn't quite represent the intended value: say user wants maximum
backlight level(255 in opregion's range), then we will calculate the
actual hardware level to be: level = freq / max * level, where freq is
the hardware's max backlight level(937 on an user's box), and max and
level are all 255. The converted value should be 937 but the above
calculation will yield 765.
To fix this issue, just use 64 bits to do the calculation to keep the
precision and avoid overflow at the same time.
Buglink: https://bugzilla.kernel.org/show_bug.cgi?id=72491
Reported-and-tested-by: Nico Schottelius <nico-bugzilla.kernel.org@schottelius.org>
Signed-off-by: Aaron Lu <aaron.lu@intel.com>
---
drivers/gpu/drm/i915/intel_panel.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_panel.c b/drivers/gpu/drm/i915/intel_panel.c
index a953b081ee38..bdd2f24b7a6b 100644
--- a/drivers/gpu/drm/i915/intel_panel.c
+++ b/drivers/gpu/drm/i915/intel_panel.c
@@ -502,10 +502,7 @@ void intel_panel_set_backlight(struct intel_connector *connector, u32 level,
/* scale to hardware max, but be careful to not overflow */
freq = panel->backlight.max;
- if (freq < max)
- level = level * freq / max;
- else
- level = freq / max * level;
+ level = (u64)level * freq / max;
panel->backlight.level = level;
if (panel->backlight.device)
--
1.9.0
next reply other threads:[~2014-04-28 3:19 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-28 3:19 Aaron Lu [this message]
2014-04-28 13:41 ` [PATCH] drm/i915: restore backlight precision when converting from opregion Daniel Vetter
2014-05-04 7:16 ` [PATCH v2] " Aaron Lu
2014-05-04 7:22 ` Chris Wilson
2014-05-04 7:31 ` Aaron Lu
2014-05-04 10:41 ` Chris Wilson
2014-05-05 1:40 ` [Intel-gfx] " Aaron Lu
2014-05-12 8:55 ` [PATCH v3] " Aaron Lu
2014-05-15 8:59 ` Jani Nikula
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=535DC8C1.5090407@intel.com \
--to=aaron.lu@intel.com \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=nico-bugzilla.kernel.org@schottelius.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