From: Aaron Lu <aaron.lu@intel.com>
To: Borislav Petkov <bp@alien8.de>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>,
intel-gfx@lists.freedesktop.org,
lkml <linux-kernel@vger.kernel.org>,
dri-devel@lists.freedesktop.org
Subject: Re: i915 backlight
Date: Thu, 01 Aug 2013 17:07:03 +0800 [thread overview]
Message-ID: <51FA2537.5040208@intel.com> (raw)
In-Reply-To: <20130801081215.GB3448@nazgul.tnic>
On 08/01/2013 04:12 PM, Borislav Petkov wrote:
> On Thu, Aug 01, 2013 at 09:13:35AM +0800, Aaron Lu wrote:
>> Can you please run acpi_listen and then press the Fn-Fx key, see if the
>> events are correctly sent out?
>
> Like this?
>
> # acpi_listen
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> ^C
Yes, so the event is correctly sent out.
>
>> From the bug page:
>> https://bugzilla.kernel.org/show_bug.cgi?id=51231#c80
>> I got the impression that both the acpi_video interface and the vendor
>> interface thinkpad_screen are broken. So adding this cmdline here works
>> suggests that either thinkpad_screen works or thinkpad vendor driver
>> doesn't get loaded or doesn't create that interface for some reason.
>>
>> Alternatively, if the intel_backlight interface works(highly possible),
>> you can use xorg.conf to specify the that backlight interface for X.
>>
>> Section "Device"
>> Option "Backlight" "intel_backlight"
>> Identifier "Card0"
>> Driver "intel"
>> BusID "PCI:0:2:0"
>> EndSection
>
> Yeah, that didn't work *but* manually writing to both:
>
> /sys/class/backlight/acpi_video0/brightness
>
> and
>
> /sys/class/backlight/intel_backlight/brightness
>
> works.
Err...we have the event sent out on hotkey press and the interface also
works, but still, using hotkey to adjust brightness level is broken...
I just found an old acer laptop that has similar issue(or even worse: on
X starts, an almost black screen is shown and hotkey adjust doesn't
work), I'll look into this.
>
> The ranges are different, though:
>
> intel_backlight/actual_brightness:1000
> intel_backlight/bl_power:0
> intel_backlight/brightness:1000
> intel_backlight/max_brightness:4437
> intel_backlight/type:raw
>
> acpi_video0/actual_brightness:41
> acpi_video0/bl_power:0
> acpi_video0/brightness:41
> acpi_video0/max_brightness:100
> acpi_video0/type:firmware
Yes, different interface has different brightness ranges and a value in
one range may turn out to be the same actual brightness level of another
value in another range.
>
> I guess I need to write me a dirty script for now ... :-)
:-)
>
> Thanks guys.
>
Thanks,
Aaron
WARNING: multiple messages have this Message-ID (diff)
From: Aaron Lu <aaron.lu@intel.com>
To: Borislav Petkov <bp@alien8.de>
Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org,
lkml <linux-kernel@vger.kernel.org>,
"Rafael J. Wysocki" <rjw@sisk.pl>
Subject: Re: i915 backlight
Date: Thu, 01 Aug 2013 17:07:03 +0800 [thread overview]
Message-ID: <51FA2537.5040208@intel.com> (raw)
In-Reply-To: <20130801081215.GB3448@nazgul.tnic>
On 08/01/2013 04:12 PM, Borislav Petkov wrote:
> On Thu, Aug 01, 2013 at 09:13:35AM +0800, Aaron Lu wrote:
>> Can you please run acpi_listen and then press the Fn-Fx key, see if the
>> events are correctly sent out?
>
> Like this?
>
> # acpi_listen
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> video/brightnessup BRTUP 00000086 00000000
> video/brightnessdown BRTDN 00000087 00000000
> ^C
Yes, so the event is correctly sent out.
>
>> From the bug page:
>> https://bugzilla.kernel.org/show_bug.cgi?id=51231#c80
>> I got the impression that both the acpi_video interface and the vendor
>> interface thinkpad_screen are broken. So adding this cmdline here works
>> suggests that either thinkpad_screen works or thinkpad vendor driver
>> doesn't get loaded or doesn't create that interface for some reason.
>>
>> Alternatively, if the intel_backlight interface works(highly possible),
>> you can use xorg.conf to specify the that backlight interface for X.
>>
>> Section "Device"
>> Option "Backlight" "intel_backlight"
>> Identifier "Card0"
>> Driver "intel"
>> BusID "PCI:0:2:0"
>> EndSection
>
> Yeah, that didn't work *but* manually writing to both:
>
> /sys/class/backlight/acpi_video0/brightness
>
> and
>
> /sys/class/backlight/intel_backlight/brightness
>
> works.
Err...we have the event sent out on hotkey press and the interface also
works, but still, using hotkey to adjust brightness level is broken...
I just found an old acer laptop that has similar issue(or even worse: on
X starts, an almost black screen is shown and hotkey adjust doesn't
work), I'll look into this.
>
> The ranges are different, though:
>
> intel_backlight/actual_brightness:1000
> intel_backlight/bl_power:0
> intel_backlight/brightness:1000
> intel_backlight/max_brightness:4437
> intel_backlight/type:raw
>
> acpi_video0/actual_brightness:41
> acpi_video0/bl_power:0
> acpi_video0/brightness:41
> acpi_video0/max_brightness:100
> acpi_video0/type:firmware
Yes, different interface has different brightness ranges and a value in
one range may turn out to be the same actual brightness level of another
value in another range.
>
> I guess I need to write me a dirty script for now ... :-)
:-)
>
> Thanks guys.
>
Thanks,
Aaron
next prev parent reply other threads:[~2013-08-01 9:07 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-31 16:22 i915 INFO: trying to register non-static key Borislav Petkov
2013-07-31 16:36 ` i915 backlight Borislav Petkov
2013-07-31 21:16 ` Rafael J. Wysocki
2013-08-01 8:07 ` Borislav Petkov
2013-08-02 6:00 ` Aaron Lu
2013-08-02 6:25 ` Josep Lladonosa
2013-08-02 6:36 ` Aaron Lu
2013-08-02 7:25 ` Josep Lladonosa
2013-08-02 6:48 ` Felipe Contreras
2013-08-02 14:03 ` Rafael J. Wysocki
2013-08-02 18:58 ` Felipe Contreras
2013-08-02 20:03 ` Josep Lladonosa
2013-08-02 20:08 ` Felipe Contreras
2013-08-02 20:11 ` Josep Lladonosa
2013-08-02 20:19 ` Borislav Petkov
2013-08-02 21:25 ` Felipe Contreras
2013-08-02 22:23 ` Josep Lladonosa
2013-08-02 23:35 ` Rafael J. Wysocki
2013-08-03 1:01 ` Felipe Contreras
2013-08-02 8:16 ` Borislav Petkov
2013-08-01 1:13 ` Aaron Lu
2013-08-01 8:12 ` Borislav Petkov
2013-08-01 9:07 ` Aaron Lu [this message]
2013-08-01 9:07 ` Aaron Lu
2013-08-02 1:16 ` Aaron Lu
2013-08-02 8:34 ` Borislav Petkov
2013-08-05 7:34 ` Daniel Vetter
2013-08-04 23:06 ` i915 INFO: trying to register non-static key Daniel Vetter
2013-08-04 23:06 ` Daniel Vetter
2013-08-05 9:26 ` Borislav Petkov
2013-08-05 13:23 ` Johannes Stezenbach
2013-08-05 13:27 ` Borislav Petkov
2013-08-05 13:48 ` Johannes Stezenbach
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=51FA2537.5040208@intel.com \
--to=aaron.lu@intel.com \
--cc=bp@alien8.de \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rjw@sisk.pl \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.