Contribute
Register

MSI GF62VR 7RF with Sierra 10.12.6

Status
Not open for further replies.
I can't control it on bios. but I can control it on windows 10. Is there any way I can control it through mac ?

I suppose on Windows, you're using Notebook Fan Control?
You could use the code in NoteBook Fan Control to port it to ACPI/ACPIPoller.kext/FakeSMC_ACPISensors.kext, much like I did for the ProBook (although I did not use NBC as a base).
 
I suppose on Windows, you're using Notebook Fan Control?
I have MSI dragon center I can control cpu, gpu and keyboard backlight.
 

Attachments

  • 1.jpg
    1.jpg
    116.6 KB · Views: 91
  • 2.jpg
    2.jpg
    132.7 KB · Views: 100
  • 3.jpg
    3.jpg
    98.8 KB · Views: 95
I have MSI dragon center I can control cpu, gpu and keyboard backlight.

That is not really helpful for you as it is not open source.
You might check into Notebook Fan Control to see if has support for your laptop. If so, its code and data can be helpful...
 
That is not really helpful for you as it is not open source.
You might check into Notebook Fan Control to see if has support for your laptop. If so, its code and data can be helpful...
Notebook Fan control ?
I googled it but not sure which one!

Post link please.
 
I installed it for windows. It doesn't have support for my laptop.
 
I installed it for windows. It doesn't have support for my laptop.

Then you need to reverse engineer DSDT/EC/etc.
RW-Everything can be useful to monitor EC data and see if you can correlate parts of it to fan status/controls.
 
I don't know how.

Post link please.
 
I don't know how.

Post link please.

No guide that I know of.
Requires developer skills and a knack for reverse engineering/problem solving.
 
I am trying to disable my Nvidia graphics. When I search for Method (_INI I find these three on ssdt-1



Method (_INI, 0, NotSerialized) // _INI: Initialize
{
Store (LTRX, LTRS)
Store (OBFX, OBFS)
}

———


Method (_INI, 0, NotSerialized) // _INI: Initialize
{
Store (LTRY, LTRS)
Store (OBFY, OBFS)
}
——
Method (_INI, 0, NotSerialized) // _INI: Initialize
{
Store (LTRZ, LTRS)
Store (OBFZ, OBFS)
}
———————

When I search for _OFF I find this on ssdt7 without EC access code

Method (_OFF, 0, Serialized) // _OFF: Power Off
{
If (LEqual (CTXT, Zero))
{
If (LNotEqual (GPRF, One))
{
Store (VGAR, VGAB)
}

Store (One, CTXT)
}
———

Attached dsdt/ssdt
 

Attachments

  • test.zip
    229 KB · Views: 57
Status
Not open for further replies.
Back
Top