hybrid-graphics-linux team mailing list archive
-
hybrid-graphics-linux team
-
Mailing list archive
-
Message #00266
Re: can`t turn on nvdia card on asus u30jc
Can you check if rebooting into windows turns the nvidia card on?
It may be that the \_SB.PCI0.PEG1.GFX0.DON method needs to report back to
the _T_0 scope...
Someone modified the acpi_call method to call it with parameters for an Asus
EEEPC laptop (see mailing list archives). It may be that the ASUS U30JC
model needs a similar procedure to store the status of the DON and DOFF
method calls.
If (LEqual (_T_0, 0x03))
{
And (Local0, 0x03, Local0)
If (LEqual (Local0, 0x01))
{
\_SB.PCI0.PEG1.GFX0.DON ()
Return (0x01)
}
Else
{
If (LEqual (Local0, 0x02))
{
\_SB.PCI0.PEG1.GFX0.DOFF ()
Return (0x00)
}
Else
{
Return
(\_SB.PCI0.PEG1.GFX0.DSTA ())
}
}
Return (0x01)
}
On Wed, Aug 25, 2010 at 5:04 AM, Leonid Popov <me@xxxxxxxxxxxxxxx> wrote:
> I have compilied acpi_call module and run test_off.sh
> I see that battery present rate decreased. (about 1300 mW)
> But after reboot I can`t see nvida card in lspci output and I can`t enable
> it
> by echo '\_SB.PCI0.PEG1.GFX0.DON' > /proc/acpi/call
> ===================
> laptop ~ # echo '\_SB.PCI0.PEG1.GFX0.DON' > /proc/acpi/call
> laptop ~ # cat /proc/acpi/call
> oklaptop ~ #
> laptop ~ # lspci | grep VGA
> 00:02.0 VGA compatible controller: Intel Corporation Core Processor
> Integrated
> Graphics Controller (rev 12)
> laptop ~ #
> ===================
>
> But battery rate is higher than when card was off and it does not reduce
> when
> I run
> echo '\_SB.PCI0.PEG1.GFX0.DOFF' > /proc/acpi/call
> ===================
> laptop ~ # grep rate /proc/acpi/battery/BAT0/state
> present rate: 15554 mW
> laptop ~ # echo '\_SB.PCI0.PEG1.GFX0.DOFF' > /proc/acpi/call
> laptop ~ # cat /proc/acpi/call
> oklaptop ~ # grep rate /proc/acpi/battery/BAT0/state
> present rate: 15686 mW
> laptop ~ # echo '\_SB.PCI0.PEG1.GFX0.DON' > /proc/acpi/call
> laptop ~ # cat /proc/acpi/call
> oklaptop ~ # grep rate /proc/acpi/battery/BAT0/state
> present rate: 15433 mW
> laptop ~ #
>
> ===================
>
>
> --
> Leonid Popov
>
> _______________________________________________
> Mailing list: https://launchpad.net/~hybrid-graphics-linux<https://launchpad.net/%7Ehybrid-graphics-linux>
> Post to : hybrid-graphics-linux@xxxxxxxxxxxxxxxxxxx
> Unsubscribe : https://launchpad.net/~hybrid-graphics-linux<https://launchpad.net/%7Ehybrid-graphics-linux>
> More help : https://help.launchpad.net/ListHelp
>
References