Saturday, 21 August 2010

Howto Linux hybrid graphics Asus N71Jv

Linux Hybrid Graphics: Using acpi_call module to switch on/off discrete graphics card in Linux
Asus N71JV - TY079V



./test_off.sh

Trying \_SB.PCI0.P0P1.VGA._OFF: failed

Trying \_SB_.PCI0.OVGA.ATPX: failed

Trying \_SB_.PCI0.OVGA.XTPX: failed

Trying \_SB.PCI0.P0P2.PEGP._OFF: failed

Trying \_SB.PCI0.MXR0.MXM0._OFF: failed

Trying \_SB.PCI0.PEG1.GFX0._OFF: works!



Asus N71Jv 1.0



00:02.0 VGA compatible controller [0300]: Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] (rev 12)

01:00.0 VGA compatible controller [0300]: nVidia Corporation Device [10de:0a35] (rev a2)

Friday, 20 August 2010

Howto Linux hybrid graphics HP Pavilion dm4-1063cl

Linux Hybrid Graphics: Using acpi_call module to switch on/off discrete graphics card in Linux
HP Pavilion dm4-1063cl
with Intel (integrated) and ATI (Discrete)
Compiling acpi_call and here's the result:

Trying \_SB.PCI0.P0P1.VGA._OFF: failed
Trying \_SB_.PCI0.OVGA.ATPX: failed
Trying \_SB_.PCI0.OVGA.XTPX: failed
Trying \_SB.PCI0.P0P2.PEGP._OFF: works!

Here is an init script with this to disable the discrete card for now, because the battery drains quicly with the two cards on.

#!/bin/bash
insmod /home/mansor/acpi_call/acpi_call.ko
echo '\_SB.PCI0.P0P2.PEGP._OFF' > /proc/acpi/call

Tuesday, 17 August 2010

Asus N82JV hybrid graphics Linux

On a Asus N82JV

Trying \_SB.PCI0.PEG1.GFX0._OFF: works!

A "grep rate /proc/acpi/battery/BAT0/state" command showed a difference of about 7.5W in battery usage.

Acer Aspire 4745G hybrid graphics Linux

Acer Aspire 4745G, Ubuntu 10.04 64bit.

here's the output after installing the acpi_call.ko module and running the test_off script:

Trying \_SB.PCI0.P0P1.VGA._OFF: failed
Trying \_SB_.PCI0.OVGA.ATPX: failed
Trying \_SB_.PCI0.OVGA.XTPX: failed
Trying \_SB.PCI0.P0P2.PEGP._OFF: works!

it disabled the discrete ati hd 5470 graphics leaving only the intel integrated graphics.