Jump to content
FCU4ever

[Asus G73sw] How to enable keyboard backlight

Recommended Posts

[ref]FCU4ever[/ref], I am not on my machine right now to help you with your DSDT right now, but if you are using emilydinesh fn kext, try removing it and reboot.

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

[ref]FCU4ever[/ref],


Based on this info

 

2019-03-30 09:30:42.011132+0100 0x493 Default 0x0 0 kernel: (ACPIDebug) ACPIDebug: "EC _Q0E enter"
2019-03-30 09:30:42.011255+0100 0x493 Default 0x0 0 kernel: (ACPIDebug) ACPIDebug: "EC _Q0E exit"
2019-03-30 09:30:43.180490+0100 0x83 Default 0x0 0 kernel: (ACPIDebug) ACPIDebug: "EC _Q0F enter"
2019-03-30 09:30:43.180601+0100 0x83 Default 0x0 0 kernel: (ACPIDebug) ACPIDebug: "EC _Q0F exit"

 

I've patched your DSDT as per

 

      Method (_Q0E, 0, NotSerialized)  
       {
           If (ATKP)
           {
               \_SB.ATKD.IANE (0x20)
           }
       }
       Method (_Q0F, 0, NotSerialized) 
       {
           If (ATKP)
           {
               \_SB.ATKD.IANE (0x10)
           }
       }

 

Check if works

 

DSDT.aml.zip

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

[ref]onemanosx[/ref],

Okay. The reason I am asking is because that after adding the brightness patch from Rehabman to my DSDT the brightness bar has indeed been added to systempreference but also the brightness of the screen is a lot lower than before the patch. Maybe that is the reason I cant control the brightness with te Fn keys after different patches?

Link to comment
Share on other sites

[ref]FCU4ever[/ref], if you are using RH brightness kext and ssdt, you are able to adjust the intensity of brightness. But I have not looked into that.

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

[ref]onemanosx[/ref],

I found this patch. This patch is used for an Asus laptop with Nvidia Graphics card to get the brightness slider working. My laptop is also an Asus and I have the Nvidia Geforce GTX460m inside.

 

begin
Scope (\_SB)\n
{\n
   Device (PNLF)\n
   {\n
           Name (_HID, EisaId ("APP0002"))\n
           Name (_CID, "backlight")\n
           Name (_UID, 0x0E)\n
           Name (_STA, 0x0B)\n
           Method (_BCL, 0, NotSerialized)\n
           {\n
               Return (^^PCI0.PEG0.GFX0.LCDD._BCL ())\n
           }\n

           Method (_BCM, 1, NotSerialized)\n
           {\n
               Store (^^PCI0.PEG0.GFX0.GCBL (Arg0), Local0)\n
               Subtract (0x0F, Local0, LBTN)\n
               ^^PCI0.SBRG.EC0.STBR ()
           }\n

           Method (_BQC, 0, NotSerialized)\n
           {\n
               Return (LBTN)\n
           }\n

           Method (_DOS, 1, NotSerialized)\n
           {\n
               ^^PCI0.PEG0.GFX0._DOS (Arg0)\n
           }\n
   }\n
}\n
end;

 

But with this patch I've got 3 compiling errors..... Maybe you can help me?

DSDT.aml.zip

Link to comment
Share on other sites

[ref]FCU4ever[/ref], no idea since i never used asusFN kext. I had a working slider and Fn keys just by using voodoops2controller and dsdt patch for my old laptop with nvidia graphics http://Olarila.com/forum/viewtopic.php?f=28&t=8768

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

[ref]FCU4ever[/ref], similar patch as in your dsdt


Add this patch to the latest DSDT that I had uploaded and remove AsusFN kext from your S/L/E or L/E or Clover/Kexts/Other. Rebuild permissions and reboot.


(might also need to rebuild permissions again and reboot 2nd time)

 

into method label _Q0E replace_content
begin
// Brightness Down\n
Notify(\_SB.PCI0.SBRG.PS2K, 0x0205)\n
Notify(\_SB.PCI0.SBRG.PS2K, 0x0285)\n
end;
into method label _Q0F replace_content
begin
// Brightness Up\n
Notify(\_SB.PCI0.SBRG.PS2K, 0x0206)\n
Notify(\_SB.PCI0.SBRG.PS2K, 0x0286)\n
end;

 

In some cases, slider wont adjust brightness. But working FNkeys will adjust the brightness accordingly.


If this doesnt work, then I dont know.

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

[ref]onemanosx[/ref],

I've patched the DSDT you've send me. Copied the DSDT to Clover/ACPI/Patched. Removed AsusFN kext. Rebuild permissions, reboot -> Slider appear and the FN buttons let the slider go up and down but the brightness isn't going up or down. Rebuild permissions again and reboot. Still no luck. Also the other FN buttons don't work without Asus FNkeys kext.

Link to comment
Share on other sites

[ref]FCU4ever[/ref], maybe you need to mod the AsusFN kext plist.


I cant help with that. Never used it. On a good note, the slider and brightness keys are working though it didnt change the brightness :mrgreen:

Donate

Gitter Chat


Acer Aspire V15 Nitro- Black Edition VN7-592G/HM170 Chipset

Intel i7-6700HQ, 8GB RAM (UEFI Clover Catalina)


MSI B360 Gaming Arctic

Intel i5-8600 16GB RAM Asus Radeon RX580 8GB (UEFI Clover Catalina)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.





×
  • Create New...