Contribute
Register

general problems with pavilion dv6 6154nr

Status
Not open for further replies.
Joined
Feb 23, 2014
Messages
24
Motherboard
Gigabyte Z390 UD
CPU
i7 8700
Graphics
UHD 630
ok i'm running mountain lion 10.8.2 on my
hp pavilion dv6 6154nr
intel i5 @ 2.30ghz
intel hd 3000 and amd radeon 6490m(disabled the amd)
insydeh20 bios f.1b
i've managed to get bluetooth,trackpad(with 2 finger scrolling),usb 2.0 and 3.0 working

but i'm stuck trying to get brightness control,audio,3 and 4 finger gestures, sleep mode(it does not sleep even when i close the lid) to work. I also read that ill have to change my wifi card for it to work, i have intel centrino wireless card. And my battery runs down super fast
im much of a newbie so i don't know much about dsdt and ssdt patches and theres no dsdt available for my laptop model. Is there anyway to fix these problems?
someone please help me:banghead:.
 
ok i'm running mountain lion 10.8.2 on my
hp pavilion dv6 6154nr
intel i5 @ 2.30ghz
intel hd 3000 and amd radeon 6490m(disabled the amd)
insydeh20 bios f.1b
i've managed to get bluetooth,trackpad(with 2 finger scrolling),usb 2.0 and 3.0 working

but i'm stuck trying to get brightness control,audio,3 and 4 finger gestures, sleep mode(it does not sleep even when i close the lid) to work. I also read that ill have to change my wifi card for it to work, i have intel centrino wireless card. And my battery runs down super fast
im much of a newbie so i don't know much about dsdt and ssdt patches and theres no dsdt available for my laptop model. Is there anyway to fix these problems?
someone please help me:banghead:.

Here's some links:
http://www.tonymacx86.com/mountain-...nagement-sandy-bridge-ivy-bridge-laptops.html

Synaptics: https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller

WiFi: Compatible chipsets and the procedures for making them work are covered here: http://www.tonymacx86.com/network/104850-guide-airport-pcie-half-mini-v2.html
 
Thanks a lot for the links I tried the power management installation with multibeast and got a KP upon restartAnd I'm pretty sure I had kernel patcher module installed I've tried various boot arguments and still can't get it to boot Do I have to reinstall the os or .....Thank you for your help so far
 

Attachments

  • image.jpg
    image.jpg
    220.6 KB · Views: 142
Thanks a lot for the links I tried the power management installation with multibeast and got a KP upon restartAnd I'm pretty sure I had kernel patcher module installed I've tried various boot arguments and still can't get it to boot Do I have to reinstall the os or .....Thank you for your help so far

Make sure you're using the Multibeast for ML.

You'll probably need to start over. The KP you have is not common and I don't recognize the cause.
 
Thanks a lot
I was able to go through with the power management installation after reinstalling without a KP
but then I don't still see the battery meter and I can't still control my brightness
can you please help me with this.
 
Thanks a lot
I was able to go through with the power management installation after reinstalling without a KP
but then I don't still see the battery meter and I can't still control my brightness
can you please help me with this.

Battery status: http://www.tonymacx86.com/mavericks-laptop-support/116102-how-patch-dsdt-working-battery-status.html

HD3000/HD4000 Brightness Fix:
DSDT Patches from here: https://github.com/RehabMan/Laptop-DSDT-Patch

Apply:
"Rename GFX0 to IGPU"
"Brightness Fix (HD3000/HD4000)"
- rename patch must be done first and to all DSDT/SSDT that contain references to GFX0 that you're including in your final SSDT set
- Brightness patch must be done to the DSDT or SSDT that contains the definition for Device GFX0 (search for 'Device (GFX0)'
- Place DSDT and SSDT (if necessary) into a place where the bootloader will load them. For Clover, EFI/CLOVER/ACPI/patched (DSDT.aml, SSDT-x.aml where 'x' is a number). For Chameleon, /Extra/ssdt.aml, /Exra/ssdt-1.aml, /Extra/ssdt-2.aml, etc.

Install: https://github.com/RehabMan/OS-X-ACPI-Backlight
 
Thanks man
You've saved me a lot
I have installed the briightness patch and it works when I drag the slider in system preferences but I can't use my keyboard shortcuts which are f2 and 63 without the function key pressed even after installing you voodoops2 kext is there anyway to adjust this
Thanks so far
 
Ok I found that function + right shift increases the brightness and there's no other combination that changes the brightness otherwise someone pls help I really need to have my keyboard shortcuts working
 
Thanks man
You've saved me a lot
I have installed the briightness patch and it works when I drag the slider in system preferences but I can't use my keyboard shortcuts which are f2 and 63 without the function key pressed even after installing you voodoops2 kext is there anyway to adjust this
Thanks so far

Which ps2 drivers are you using?

If you have Synaptics trackpad and are using mine here: https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller

As far as getting brightness buttons working, first use the debug VoodooPS2Controller to see if they generate PS2 codes or not (probably not). Monitor system.log with Console.app while you press each key. If they generate a ps2 code, see custom keyboard mapping via Info.plist: https://github.com/RehabMan/OS-X-Voodoo-PS2-Controller/wiki/How-to-Use-Custom-Keyboard-Mapping

If no ps2 codes in system.log, then they are likely handled via ACPI. See here: https://github.com/RehabMan/OS-X-ACPI-Debug, install the kext, apply "Add DSDT Debug Methods" and "Instrument EC Queries". Look in system.log as you press the key to determine which _Qxx methods handle the keys.

Then patch DSDT:

Assuming _Q10 is brightness down, and _Q11 is up.
Code:
into method label _Q10 replace_content
begin
// Brightness Down\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0205)\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0285)\n
end;
into method label _Q11 replace_content
begin
// Brightness Up\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0206)\n
    Notify(\_SB.PCI0.LPCB.PS2K, 0x0286)\n
end;
 
Thanks for your help once again
I didn't see any ps2 code on monitoring the brightness buttons through system.log and so I'm stuck with the ACPI debug method however I don't have Xcode installed and I'm not much of a programmer,is there anyway to build ACPIDebug.kext without Xcode or is there a final version of this kext somewhere I can download
thank you for your help so far
 
Status
Not open for further replies.
Back
Top