From: Keith Packard <keithp@keithp.com>
To: Joel Heaton <jheaton5@comcast.net>, intel-gfx@lists.freedesktop.org
Subject: Re: Screen goes blank @30 seconds into boot
Date: Thu, 26 Jan 2012 10:11:02 -0800 [thread overview]
Message-ID: <86d3a6bah5.fsf@sumi.keithp.com> (raw)
In-Reply-To: <1327578888.2530.1.camel@aragorn.hsd1.ga.comcast.net.>
[-- Attachment #1.1: Type: text/plain, Size: 2492 bytes --]
On Thu, 26 Jan 2012 06:54:48 -0500, Joel Heaton <jheaton5@comcast.net> wrote:
> System: Dell Inspiron One
> Chipset: intel H61 Express
> CPU: Intel Pentium Dual Core Intel Core i3/i5i7 (this machine is
> probably an i3
> Video: Intel HD/HD 2000/HD 3000
> Max Resolution: 1920x1080
> OS-1 Windows 7 (shipped with this OS)
> OS-2 Debian Sid liquorix kernel 3.2
> DE: lxde no DM I start x manually
> =========================================
> When booting the screen goes blank about 80% through the boot cycle.
> The system is still running, I can log in blind and execute reboot
> command.
Is the monitor backlight on or off? If off, can you try finding a bright
light and shining it on the monitor to see if the image is present, but
the backlight simply disabled?
> I ssh into the system from another computer.
> kern.log reports "Firmware Bug: ACPI: No _BQC method, cannot determine
> initial brightness"
The last bug we saw with this was a system that did leave the monitor
off. Here's a patch that fixed that machine:
Keith Packard <keithp@keithp.com> (December 31) (lkml me patch sent)
Subject: [PATCH] acpi/video: Don't restore backlight to 0 at boot time
To: linux-kernel@vger.kernel.org
Cc: Keith Packard <keithp@keithp.com>, Bdale Garbee <bdale@gag.com>, Matthew Garrett <mjg@redhat.com>
Date: Sat, 31 Dec 2011 00:52:27 -0800
If the initial ACPI reported backlight level is zero, or larger than
max_level, then ignore it and set the level back to the current level
instead. This avoids ending up with a black screen on an HP Pavilion
G series G4 notebook QE040UA#ABA.
Reported-by: Bdale Garbee <bdale@gag.com>
Cc: Bdale Garbee <bdale@gag.com>
Cc: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
---
drivers/acpi/video.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
index 08a44b5..688f342 100644
--- a/drivers/acpi/video.c
+++ b/drivers/acpi/video.c
@@ -711,7 +711,7 @@ acpi_video_init_brightness(struct acpi_video_device *device)
* when invoked for the first time, i.e. level_old is invalid.
* set the backlight to max_level in this case
*/
- if (use_bios_initial_backlight) {
+ if (use_bios_initial_backlight && 0 < level_old && level_old <= max_level) {
for (i = 2; i < br->count; i++)
if (level_old == br->levels[i])
level = level_old;
--
1.7.7.3
--
keith.packard@intel.com
[-- Attachment #1.2: Type: application/pgp-signature, Size: 827 bytes --]
[-- Attachment #2: Type: text/plain, Size: 159 bytes --]
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2012-01-26 18:11 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1327578888.2530.1.camel@aragorn.hsd1.ga.comcast.net.>
2012-01-26 13:19 ` HD {, 2000, 3000}: Screen goes blank @30 seconds into boot Paul Menzel
2012-01-26 14:56 ` Daniel Vetter
2012-01-26 18:11 ` Keith Packard [this message]
2012-02-22 11:03 ` Jonathan Nieder
2012-02-22 21:20 ` jheaton5
2012-01-26 11:54 Joel Heaton
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=86d3a6bah5.fsf@sumi.keithp.com \
--to=keithp@keithp.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=jheaton5@comcast.net \
/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