Bug 89401 - Regression with ASUS backlight brightness buttons
Summary: Regression with ASUS backlight brightness buttons
Status: CLOSED DUPLICATE of bug 70241
Alias: None
Product: ACPI
Classification: Unclassified
Component: Power-Video (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: Aaron Lu
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-12-07 20:26 UTC by Dmitry Tunin
Modified: 2014-12-30 00:52 UTC (History)
3 users (show)

See Also:
Kernel Version: 3.18-rc7
Subsystem:
Regression: Yes
Bisected commit-id:


Attachments
ACPI log (8.95 KB, text/x-log)
2014-12-08 09:33 UTC, Dmitry Tunin
Details
Debug log (9.43 KB, text/x-log)
2014-12-08 14:44 UTC, Dmitry Tunin
Details
Log with acpi_osi= (8.53 KB, text/x-log)
2014-12-08 14:49 UTC, Dmitry Tunin
Details
acpidump (316.62 KB, text/plain)
2014-12-09 06:08 UTC, Dmitry Tunin
Details
memory dump (827 bytes, application/octet-stream)
2014-12-09 07:54 UTC, Dmitry Tunin
Details
i915_opregion (8.00 KB, application/octet-stream)
2014-12-09 07:55 UTC, Dmitry Tunin
Details

Comment 1 Aaron Lu 2014-12-08 06:45:42 UTC
Does the below patch solve your problem? You can try v3.18 kernel.

commit 35d0565b95547ec12d025dc9b1394f22968d113d
Author: Aaron Lu <aaron.lu@intel.com>
Date:   Mon Dec 1 02:09:18 2014 +0100

    ACPI / video: update condition to check if device is in _DOD list

https://lkml.org/lkml/2014/11/29/158
Comment 2 Dmitry Tunin 2014-12-08 08:40:10 UTC
I will test it and report today.
Comment 3 Dmitry Tunin 2014-12-08 09:33:42 UTC
Created attachment 160031 [details]
ACPI log
Comment 4 Dmitry Tunin 2014-12-08 09:42:31 UTC
Aaron,

So, the result is that your DOD patch works in a sense that it removes acpi backlight control and leaves only intel_backlight.
But it disables brightness buttons completely.
Comment 5 Aaron Lu 2014-12-08 12:12:07 UTC
The patch should only affect if acpi_video interface should be created, it shouldn't affect event delivery, and the above commit is meant to restore acpi_video interface, dunno what's going wrong. can you please confirm with my problematic commit, is the event still generated with tool like acpi_listen? Does the intel_backlight work?

BTW, I didn't see what I want. I was expecting output from this line:
 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "dod element[%d] = %d\n", i,
                                   (int)obj->integer.value));
Comment 6 Dmitry Tunin 2014-12-08 12:25:45 UTC
Aaron,

With 3.18 kernel:

1. The event is not generated by Fn+F5 or F6. Other Fns work.
2. Intel_backlight works.

There is no "dod element" in dmesg.

And it is 100% your commit that cause that bug. I noticed it when backported that commit to Ubuntu kernel. Then tested 3.18rc and found that same thing is there.
If I revert it, the problem is gone.
Comment 7 Dmitry Tunin 2014-12-08 12:26:46 UTC
BTW, acpi_video is not created.
Comment 8 Dmitry Tunin 2014-12-08 12:35:43 UTC
In general the idea is good. When both acpi_video and intel_backlight are created, the system does not know which one to use. It can be solved by an option in xorg.conf. But for some reason it has side effects.
Comment 9 Aaron Lu 2014-12-08 13:12:41 UTC
(In reply to Dmitry Tunin from comment #6)
> Aaron,
> 
> With 3.18 kernel:
> 
> 1. The event is not generated by Fn+F5 or F6. Other Fns work.
> 2. Intel_backlight works.
> 
> There is no "dod element" in dmesg.

Do you have CONFIG_ACPI_DEBUG=y in your kernel config?

> 
> And it is 100% your commit that cause that bug. I noticed it when backported
> that commit to Ubuntu kernel. Then tested 3.18rc and found that same thing
> is there.
> If I revert it, the problem is gone.

I have no doubt either, I'm trying to understand what is the problem here and then solve it.

I can understand the commit cause acpi_videoX disappear, but have no idea why that commit would make the event disappear...
Comment 10 Dmitry Tunin 2014-12-08 13:41:01 UTC
Oops. I will rebuild with ACPI_DEBUG and post dmesg again.
Comment 11 Dmitry Tunin 2014-12-08 14:44:00 UTC
Created attachment 160041 [details]
Debug log

If you need anything else, I can do.
Comment 12 Dmitry Tunin 2014-12-08 14:49:38 UTC
Created attachment 160051 [details]
Log with acpi_osi=

This time I added acpi_osi=
There are no more errors.
Comment 13 Aaron Lu 2014-12-09 03:01:20 UTC
Please attach your acpidump:
# acpidump > acpidump.txt
Comment 14 Dmitry Tunin 2014-12-09 06:08:24 UTC
Created attachment 160161 [details]
acpidump
Comment 15 Aaron Lu 2014-12-09 06:27:42 UTC
With the said offending commit, I suppose you have only intel_backlight under /sys/class/backlight directory? And does that interface work? If you run acpi_listen, when you press the hotkey, will there be any output?
Comment 16 Aaron Lu 2014-12-09 07:21:35 UTC
Please attach the memory dump:
# dd if=/dev/mem of=gnvs bs=1 count=$((0x33b)) skip=$((0xB936AA98))

And i915_opregion:
/sys/kernel/debug/dri/0/i915_opregion
Comment 17 Dmitry Tunin 2014-12-09 07:54:08 UTC
Created attachment 160211 [details]
memory dump
Comment 18 Dmitry Tunin 2014-12-09 07:55:02 UTC
Created attachment 160221 [details]
i915_opregion
Comment 19 Dmitry Tunin 2014-12-09 08:33:46 UTC
(In reply to Aaron Lu from comment #15)
> With the said offending commit, I suppose you have only intel_backlight
> under /sys/class/backlight directory? And does that interface work? If you
> run acpi_listen, when you press the hotkey, will there be any output?

As I already mentioned in #6, the intel_backlight interface works. Backlight is controlled.
acpi_listen does not react on Fn+F5 or F6.
Comment 20 Dmitry Tunin 2014-12-09 08:37:11 UTC
To make it 100% clear. Before the DOD commit Fn+F5, F6 created events only with acpi_osi= boot parameter. After the commit there is no event with or without acpi_osi=.
Comment 21 Aaron Lu 2014-12-09 08:48:01 UTC
What happened after adding acpi_osi= to kernel cmdline is beyond my understanding at the moment. If you do not add that cmdline, the events are always not delivered with or without the DOD commit, is it the case?
Comment 22 Dmitry Tunin 2014-12-09 08:49:12 UTC
(In reply to Aaron Lu from comment #21)
> What happened after adding acpi_osi= to kernel cmdline is beyond my
> understanding at the moment. If you do not add that cmdline, the events are
> always not delivered with or without the DOD commit, is it the case?

Correct.
Comment 23 Aaron Lu 2014-12-09 08:52:16 UTC
Besides the backlight hotkey, what other benefits does the acpi_osi= have? Is it a must have for your laptop?
Comment 24 Dmitry Tunin 2014-12-09 08:52:57 UTC
BTW, acpi_osi= is documented. 

http://redsymbol.net/linux-kernel-boot-parameters/

acpi_osi= disables all strings. There must be something in the firmware.
acpi_osi=! may work too.
Comment 25 Dmitry Tunin 2014-12-09 08:55:29 UTC
(In reply to Aaron Lu from comment #23)
> Besides the backlight hotkey, what other benefits does the acpi_osi= have?
> Is it a must have for your laptop?

There is nothing else I could notice. But backlight control is needed anyway.
So it a must have. It could be more convenient for other users, if it is done automatically as a quirk.

But now it is more important to get it working at least some way.
Comment 26 Dmitry Tunin 2014-12-09 09:04:05 UTC
Here is my IMHO, why it may happen.

The UEFI firmware has an OS selection of 2 choices: Win7 or Win8.
I guess that it is supposed that Windows will handle brightness keys.
acpi_osi= disables that.

I do not know where UEFI stores that settings.
Comment 27 Aaron Lu 2014-12-09 09:14:14 UTC
It seems that once the acpi_osi= is added, the event is delivered through keyboard instead of a notify to the LCDD video output device. Below is a simplified code from the acpidump:

        Method (_Q0E, 0, NotSerialized)  // _Qxx: EC Query
        {
            If (LGreaterEqual (MSOS (), OSVT))
            {
                If (^^^GFX0.PRST ())
                {
                    If (LNotEqual (^^^GFX0.LCDD._DCS (), 0x1F))
                    {
                        Return (Zero)
                    }

                    ^^^GFX0.DWBL () /* notify LCDD here */
                }
            }
            Else
            {
                If (ATKP)
                {
                    ^^^^ATKD.IANE (Add (LBTN, 0x20))
                }
            }

            Return (Zero)
        }

from the above asl code, for normal case(when acpi_osi= is not in the cmdline option), the event is delivered in the GFX0.DWBL method, but that require the _DCS method returns 0x1f, which is the reason why it doesn't work today. The problem would occur on any laptops as long as the firmware defines more than 8 output video devices due to the current i915 operation region code implementation. The v1 of the operation regions spec defines that at most 8 output devices are supported but obviously things have changed. Jani has a branch to handle such things:
http://cgit.freedesktop.org/~jani/drm/log/?h=didl
Can you please give it a try?

For the acpi_osi= case, the event should be delivered through ATKD.IANE, which is beyond my understanding.
Comment 28 Dmitry Tunin 2014-12-09 09:21:36 UTC
I started building form jani. I need to do some work and will report later.
Comment 29 Dmitry Tunin 2014-12-09 11:01:12 UTC
I tested jani branch. No difference. No events. Is any output of interest how it handles acpi?

BTW, jani drm patches break building of nouveau and radeon modules. I disabled them in .config, but just to let you know.
Comment 30 Aaron Lu 2014-12-10 02:01:47 UTC

*** This bug has been marked as a duplicate of bug 70241 ***

Note You need to log in before you can comment on or make changes to this bug.