Contribute
Register

MSI GS70 Development Thread

Status
Not open for further replies.
Good point. No difference though unfortunately.

I've been reading through the _OFF method, trying to understand what's happening in it. From the ACPIDebug outputs in post 77, it seems there are two configurations. When _OFF is called, ESGX sets ESGO and clears ESGI. When _ON is called, ESGX sets ESGI and clears ESGO. The third case (ESGN set) never seems to happen.

So perhaps 'I' is integrated and 'O' is optimus and the states are active low? But ESGN is also zero in both cases.

On boot, the next value CTXT is Zero. Therefore it branches. GPRF is also zero so it branches again. Next it stores VGAR into VGAB. I think this is a temporary buffer since VGAB is initially zeros and seems to be put back into VGAR in _ON.

When _ON runs, GPRF = 0, CMDR = 0 -> Local0 = 0. VGAR is a little different though.
Code:
VGAR[7] = 0x10,  VGAB[7] = 0x00
VGAR[14] = 0xF5,  VGAB[14] = 0x00
VGAR[18] = 0x80,  VGAB[18] = 0x00
VGAR[19] = 0x7F,  VGAB[19] = 0x00
VGAR[26] = 0x90,  VGAB[26] = 0x00
VGAR[27] = 0x7F,  VGAB[27] = 0x00
VGAR[32] = 0xE0,  VGAB[32] = 0x00
VGAR[46] = 0xF6,  VGAB[46] = 0x00
VGAR[55] = 0xFF,  VGAB[55] = 0x00
VGAR[123] = 0x20,  VGAB[123] = 0x10
VGAR[165] = 0x1F,  VGAB[165] = 0x3F

Then VGAR gets overwritten by VGAB. On exit, CMDR is still zero.

This time, calling _OFF from _WAK, CTXT is one, so it doesn't branch. _OFF jumps straight to SGOF.

So all _OFF and _ON are doing is pretty much storing some (not sure what) parameters to a buffer and handing off to SGON/OF to disable the hardware. I'll debug that next.
 
Here's a little bit on SGOF:

On boot:

PVID = 0x8086
IVID = 0xFFFF

So I'm guessing PVID probably stands for PCIe Vendor ID (hence Intel)

DVID = 0x10DE
IVID = 0xFFFF

Therefore DVID probably means Discrete Vendor ID (NVIDIA in this case)

When SGON is called implicitly by _ON in _PTS, we get the following:

PVID = 0x8086
IVID = 0xFFFF
VCNP = 1

On _WAK:

PVID = 0x8086
IVID = 0xFFFF
DVID = 0xFFFF
IVID = 0xFFFF

Shouldn't DVID be reading 0x10DE if it was switched on from _PTS?

Also, I added a debug to the top of SGOF:

Code:
Method (SGOF, 0, Serialized)
        {
            \RMDT.P2 ("CCHK (Zero)", CCHK (Zero))
            If (LEqual (CCHK (Zero), Zero))
            {
                Return (Zero)
            }

It seems to me like this is being used to check whether the card is already off. So when "DVID" returns 0xFFFF, this is equal to "IVID". When this happens, Local5 = 0 -> CCHK returns 0. When CCHK returns 0 to SGOF, SGOF returns 0 because it thinks the card is already switched off. Even though it really isn't.

I'm going to get rid of _ON from _PTS and see what happens.
 
FIXED!!!

Thank you immensely Rehabman. I don't think this would have ever worked without your insight.

Here is what needed to be done.

First, both _ON and _OFF are included
Code:
External (_SB_.PCI0.PEG0.PEGP._ON, MethodObj)
External (_SB_.PCI0.PEG0.PEGP._OFF, MethodObj)

Next, ESGX was commented out from _OFF in SSDT-11.dsl
Code:
Method (_OFF, 0, Serialized)  // _OFF: Power Off
        {
            //\_SB.PCI0.LPCB.EC.ESGX (Zero)
            If (LEqual (CTXT, Zero))
            {
                If (LNotEqual (GPRF, One))
                {
                    Store (VGAR, VGAB)
                }


                Store (One, CTXT)
            }


            SGOF ()
        }

Thirdly, the check mentioned in the previous post needed to be removed from SGOF in SSDT-10.dsl
Code:
Method (SGOF, 0, Serialized)
        {
            /*
            If (LEqual (CCHK (Zero), Zero))
            {
                Return (Zero)
            }
            */
            Store (LCTL, ELCT)
            Store (SVID, HVID)

Finally, the implementation in the DSDT. _OFF was placed at the end of _WAK (haven't checked if this is necessary but Rehabman raised a good point). HOWEVER, the ESGX method MUST BE CALLED BEFORE IT. Like this:
Code:
\_SB.PCI0.LPCB.EC.ESGX (Zero)
\_SB.PCI0.PEG0.PEGP._OFF ()

Next. Put _OFF into PCI0._INI. This will not work if ESGX hasn't been removed from _OFF in the SSDT. Very simple:
Code:
Method (_INI, 0, NotSerialized)  // _INI: Initialize
{
        Store (0x07D0, OSYS)
        \_SB.PCI0.PEG0.PEGP._OFF ()
}

Lastly. Call ESGX from _REG, but put it in a EC region check:
Code:
If (LAnd (LEqual (Arg0, 3), Arg1))
                {
                    \_SB.PCI0.LPCB.EC.ESGX (Zero)
                }

That's it. God, this absolutely destroyed my brain.
 
Nice work... Glad you have it fixed.
 
Nice work... Glad you have it fixed.

That's high praise. Wouldn't have happened without your amazing debug tool though...

I'll update the first post with all the current files.
 
Hello all,

I also have a GS70. As I work towards a perfect hackintosh I'm working on sleep/wake.

Screen sleep / wake works fine.
Computer sleep / week doesn't:
  • Computer goes to sleep. Sleep LED is flashing on laptop
  • After clicking the power button I have a black screen for ˜10 seconds. Afterwards the computer reboots completely.

I have tried different darkwake settings including 10, but I can't get my notebook to wake up properly.

Any ideas?

Edit: I'm on Yosemite 10.10.3 btw. I extracted DSDT, patched it for backlight etc. Audio isn't working perfectly either yet. Also I have a 16-bit color problem. Gradients look horrible. The problem doesn't exist on external monitors. Do you have any problems with color depth?
 
Hello all,

I also have a GS70. As I work towards a perfect hackintosh I'm working on sleep/wake.

Screen sleep / wake works fine.
Computer sleep / week doesn't:
  • Computer goes to sleep. Sleep LED is flashing on laptop
  • After clicking the power button I have a black screen for ˜10 seconds. Afterwards the computer reboots completely.

I have tried different darkwake settings including 10, but I can't get my notebook to wake up properly.

Any ideas?

Edit: I'm on Yosemite 10.10.3 btw. I extracted DSDT, patched it for backlight etc. Audio isn't working perfectly either yet. Also I have a 16-bit color problem. Gradients look horrible. The problem doesn't exist on external monitors. Do you have any problems with color depth?

http://www.tonymacx86.com/yosemite-laptop-support/152573-guide-patching-laptop-dsdt-ssdts.html

http://www.tonymacx86.com/yosemite-laptop-support/146870-guide-native-power-management-laptops.html
 
Hey everyone,
i got working the keyboard backlit correctly, with 3 zones, effects etc:)
after a little research it was quite simple, thanks to unix dev:)
1. install npm/node.js https://nodejs.org
2. get wearefractals MSI§Keyboard tools https://github.com/wearefractal/msi-keyboard
3. unpack .zip and cd into it via terminal
3. sudo npm install (install xcode if asked)
4. cd to examples diretory
5. sudo node blablabla.js

for more info the the documentation on github
thanks to https://github.com/stevelacy
Have a nice day
Jakob
 
Hey there,
i'm trying hard to get brightness working and to disable NVDA via DSDT/SSDT, without any success.
Any ideas, opinions? I'll post my patched DSDT/SSDT and the original.
Patches applied:
-GFX0 to IGPU
-Brightness(Haswell) to SSDT8
-Added _OFF() to SSDT9
-deleted _DSM etc
DSDT and SSDT is loading, see bootlog:
Code:
0:100  0:100  MemLog inited, TSC freq: 25939890030:100  0:000  
0:100  0:000  Now is 7.7.2015,  19:16:21 (GMT+2047)
0:100  0:000  Starting Clover rev 3241 on American Megatrends EFI
0:100  0:000  SelfDevicePath=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000) @BEE77118
0:100  0:000  SelfDirPath = \EFI\BOOT
0:100  0:000  Total Memory Slots Count = 2
0:100  0:000  Type 17 Index = 0
0:100  0:000  Ignoring insane frequency value 0MHz
0:100  0:000  SmbiosTable.Type17->Speed = 0MHz
0:100  0:000  SmbiosTable.Type17->Size = 0MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 ChannelA-DIMM0
0:100  0:000  Type 17 Index = 1
0:100  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:100  0:000  SmbiosTable.Type17->Size = 8192MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 ChannelB-DIMM0
0:100  0:000  Boot status=0
0:100  0:000  Clover revision: 3241  running on GS70 2QE
0:100  0:000  ... with board MS-1773
0:100  0:000  CPU Vendor = 756E6547 Model=306C3
0:100  0:000  The CPU supported turbo
0:100  0:000  BrandString = Intel(R) Core(TM) i7-4720HQ CPU @ 2.60GHz
0:100  0:000  MSR 0xE2 before patch 1E008405
0:100  0:000  MSR 0xE2 is locked, PM patches will be turned on
0:100  0:000  MSR 0xE4              00021814
0:100  0:000  MSR 0xCE              00080838_F3011A00
0:100  0:000  non-usable FLEX_RATIO = 50000
0:100  0:000  corrected FLEX_RATIO = 40000
0:100  0:000  MSR 0x1B0             00000000
0:100  0:000  FSBFrequency=100MHz DMIvalue=100000kHz
0:100  0:000  Corrected FSBFrequency=100MHz
0:100  0:000  Vendor/Model/Stepping: 0x756E6547/0x3C/0x3
0:100  0:000  Family/ExtFamily: 0x6/0x0
0:100  0:000  MaxDiv/MinDiv: 26.0/8
0:100  0:000  Turbo: 34/34/35/36
0:100  0:000  Features: 0xBFEBFBFF
0:100  0:000  Threads: 8
0:100  0:000  Cores: 4
0:100  0:000  FSB: 100 MHz
0:100  0:000  CPU: 2600 MHz
0:100  0:000  TSC: 2600 MHz
0:100  0:000  PIS: 400 MHz
0:100  0:000  PCI (00|00:00.00) : 8086 0C04 class=060000
0:100  0:000  PCI (00|00:01.00) : 8086 0C01 class=060400
0:100  0:000  PCI (00|01:00.00) : 10DE 13D8 class=030200
0:100  0:000  PCI (00|00:02.00) : 8086 0416 class=030000
0:100  0:000  Found GFX model=Intel HD Graphics 4600
0:100  0:000  PCI (00|00:03.00) : 8086 0C0C class=040300
0:100  0:000  PCI (00|00:14.00) : 8086 8C31 class=0C0330
0:100  0:000  PCI (00|00:16.00) : 8086 8C3A class=078000
0:100  0:000  PCI (00|00:16.01) : FFFF FFFF class=FFFFFF
0:100  0:000  PCI (00|00:1A.00) : 8086 8C2D class=0C0320
0:100  0:000  PCI (00|00:1B.00) : 8086 8C20 class=040300
0:100  0:000  PCI (00|00:1C.00) : 8086 8C10 class=060400
0:100  0:000  PCI (00|00:1C.02) : 8086 8C14 class=060400
0:100  0:000  PCI (00|03:00.00) : 10EC 5249 class=FF0000
0:100  0:000  PCI (00|00:1C.03) : 8086 8C16 class=060400
0:100  0:000  PCI (00|04:00.00) : 1969 E091 class=020000
0:100  0:000  LAN 0, Vendor=1969, MMIO=F7A00000
0:100  0:000  PCI (00|00:1C.04) : 8086 8C18 class=060400
0:100  0:000  PCI (00|05:00.00) : 168C 003E class=028000
0:100  0:000  PCI (00|00:1D.00) : 8086 8C26 class=0C0320
0:100  0:000  PCI (00|00:1F.00) : 8086 8C4B class=060100
0:100  0:000  PCI (00|00:1F.02) : 8086 8C03 class=010601
0:100  0:000  PCI (00|00:1F.03) : 8086 8C22 class=0C0500
0:100  0:000  PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF
0:100  0:000  Clover load options size = 0 bytes
0:125  0:025  Using OEM config.plist at path: EFI\CLOVER\config.plist
0:125  0:000  EFI\CLOVER\config.plist loaded: Success
0:127  0:002  Found theme directory: EMBEDDED
0:128  0:001  Found theme directory: RANDOM
0:129  0:001  Loading early settings
0:129  0:000  timeout set to 5
0:129  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:129  0:000  KextsToPatch: 15 requested
0:129  0:000  KextToPatch 0: disabled:AppleIntelFramebufferAzul (Enable 96MB DVMT-prealloc, 0x0a2e0008) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 1: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204, 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 2: disabled:AppleIntelFramebufferAzul (Enable 128MB DVMT-prealloc, 0x0a2e0008) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 3: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105(12), 0x0a260005 0x0a260006, 0x0d220003, 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 4: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204(12), 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 5: AppleIntelFramebufferAzul (Enable 9MB cursor bytes, 0x0a260006) Kext bin patch, data len: 20
0:129  0:000  KextToPatch 6: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204, 0x0a260005 0x0a260006) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 7: IOGraphicsFamily (Boot graphics glitch, 10.10.2/10.10.3) Kext bin patch, data len: 5
0:129  0:000  KextToPatch 8: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105, 0x0a260005 0x0a260006, 0x0d220003, 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 9: disabled:IOAHCIBlockStorage (Enable TRIM for SSD) Kext bin patch, data len: 11
0:129  0:000  KextToPatch 10: AppleIntelFramebufferAzul (0x0a260006 9MB cursor bytes patch) Kext bin patch, data len: 20
0:129  0:000  KextToPatch 11: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204(12), 0x0a260005 0x0a260006) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 12: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105, 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 13: disabled:AppleIntelFrameBufferAzul (Enable internal display after sleep for 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 16
0:129  0:000  KextToPatch 14: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105(12), 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  LoadDrivers() start
0:136  0:006  Loading CsmVideoDxe-64.efi  status=Success
0:137  0:000   - driver needs connecting
0:137  0:000  Loading FSInject-64.efi  status=Success
0:137  0:000  Loading OsxAptioFix2Drv-64.efi  status=Success
0:138  0:000  Loading OsxFatBinaryDrv-64.efi  status=Success
0:139  0:000  Loading PartitionDxe-64.efi  status=Success
0:139  0:000   - driver needs connecting
0:139  0:000  Loading VBoxHfs-64.efi  status=Success
0:140  0:000   - driver needs connecting
0:140  0:000  3 drivers needs connecting ...
0:140  0:000  PlatformDriverOverrideProtocol->GetDriver overriden
0:140  0:000  Partition driver loaded: 
0:140  0:000  Video driver loaded: disconnect Success
0:258  0:117  Searching for invalid DiskIo BY_DRIVER connects: not found, all ok
0:271  0:013  CsmVideoDriverBindingStart
0:271  0:000  Enable the device status=Unsupported
0:271  0:000  attributes Restored
0:271  0:000  CsmVideoDriverBindingStart end Unsupported
0:271  0:000  CsmVideoDriverBindingStart
0:271  0:000  mixed support=40010
0:271  0:000  Controller is [030000]
0:271  0:000  Check for VBE
0:273  0:002   found Detail Timing 1920x1080
0:273  0:000  timing string after 0xFE:N173HGE-E11
 
0:273  0:000  timing string after 0xFE:CMN
         
0:273  0:000  timing string after 0xFE:N173HGE-E11
 
0:273  0:000    0 1280x1024 attr=9B - ok, edid-
0:273  0:000    1 1024x768 attr=9B - ok, edid-, 1024x768, working, highest, pref=1
0:273  0:000    2 640x480 attr=9B - ok, edid-, 640x480, working
0:274  0:000    3 800x600 attr=9B - ok, edid-, 800x600, working
0:274  0:000    4 1920x1080 attr=9B - ok, edid+, working, highest, pref=4
0:274  0:000  CsmVideo: New mode: 4 1920x1080 - set
0:457  0:183   - SetMode pref 4 (4) = Success
0:457  0:000  CsmVideoCheckForVbe - Success
0:458  0:000  CsmVideoDriverBindingStart end Success
0:458  0:000  CsmVideo: New mode: 2 640x480 - blocking that switch
0:602  0:143  LoadDrivers() end
0:602  0:000  Dump SMC keys from NVRAM:
0:608  0:005  SetScreenResolution: 1920x1080 - already set
0:608  0:000  Console modes reported: 4, available modes:
0:608  0:000    Mode 1: 80x25 (current mode)
0:608  0:000    Mode 2: 80x25
0:608  0:000    Mode 3: 100x31
0:608  0:000    Mode 4: 240x56
0:608  0:000  reinit: self device path=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000)
0:609  0:000  MAC address of LAN #0= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #1= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #2= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #3= 44:8A:5B:6D:BC:73:
0:609  0:000  ScanSPD() start
0:609  0:000  SMBus CmdReg: 0x3
0:609  0:000  Scanning SMBus [8086:8C22], mmio: 0xF7C19004, ioport: 0xF040, hostc: 0x11
0:609  0:000  Slots to scan [8]...
0:635  0:026  SPD[2]: Type 11 @0x52 
0:644  0:008  Not using XMP because it is not present
0:644  0:000  DDR speed 1600MHz 
0:644  0:000  Slot: 2 Type 24 8192MB 1600MHz Vendor=Hynix Semiconductor PartNo=HMT41GS6BFR8A-PBN0 SerialNo=000E060B0F020D0A 
0:674  0:030  ScanSPD() end
0:674  0:000  Get Acpi Tables List from RSDT:
0:674  0:000   Found table: FACP  MEGABOOK len=132
0:674  0:000   Found table: APIC  MEGABOOK len=146
0:674  0:000   Found table: FPDT  MEGABOOK len=68
0:674  0:000   Found table: ASF!   HCG len=165
0:674  0:000   Found table: MSDM  MEGABOOK len=85
0:674  0:000   Found table: SSDT  sensrhub len=552
0:674  0:000   Found table: SSDT  zpodd len=399
0:674  0:000   Found table: SLIC  MEGABOOK len=374
0:674  0:000   Found table: SSDT  Cpu0Ist len=1337
0:674  0:000   Found table: SSDT  CpuPm len=2776
0:674  0:000   Found table: MCFG  MEGABOOK len=60
0:674  0:000   Found table: HPET  MEGABOOK len=56
0:674  0:000   Found table: SSDT  SataTabl len=789
0:674  0:000   Found table: SSDT  SaSsdt  len=13652
0:674  0:000   Found table: SSDT  SgPeg len=5267
0:674  0:000   Found table: MSFF  MEGABOOK len=41
0:674  0:000   Found table: BGRT  MEGABOOK len=56
0:674  0:000   Found table: DMAR  HSW  len=184
0:674  0:000   Found table: SSDT  OptTabl len=5476
0:674  0:000  Calibrated TSC frequency =2593989003 =2593MHz
0:674  0:000  Loading main settings
0:674  0:000  USB FixOwnership: true
0:674  0:000  Config set Fixes will override FixMask mask!
0:674  0:000     final mask=90100100
0:674  0:000  Config set PluginType=1
0:674  0:000  Config set ChassisType=0x8
0:675  0:000  found 11 volumes with blockIO
0:675  0:000   0. Volume:
0:675  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)
0:675  0:000   1. Volume:
0:675  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)
0:690  0:015   2. Volume:
0:690  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,1F1A8B95-0852-457F-8FD9-37262222D7FC,0x800,0x12C000)
0:691  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:691  0:000   3. Volume:
0:691  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(2,GPT,8E03533F-84C9-4709-93C8-6128CEB7B471,0x12C800,0x96000)
0:691  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:693  0:001   4. Volume:
0:693  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(3,GPT,786F8754-8F4B-4476-AD8D-897A64863C05,0x1C2800,0x40000)
0:693  0:000   5. Volume:
0:693  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,ACD25137-712A-44AA-B557-8DB78C8F048B,0x202800,0xEC79800)
0:694  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:694  0:000   6. Volume:
0:694  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000)
0:694  0:000    Result of bootcode detection: bootable unknown (legacy)
0:703  0:008    This is SelfVolume !!
0:703  0:000   7. Volume:
0:703  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:703  0:000   8. Volume:
0:703  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(3,GPT,25147DF0-60F7-46BA-90B5-4F38C1718FA1,0xB9B1C80,0x135F20)
0:704  0:000   9. Volume:
0:704  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(4,GPT,45FE5655-A8D9-4C36-B60F-3BCD9652F8E8,0xBAE8000,0xBEBC000)
0:704  0:000  10. Volume:
0:704  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(5,GPT,B19D4A4D-1557-4C32-A04C-B8221604642E,0x179A4000,0x7A1000)
0:705  0:000  no default theme, get random theme theme.plist
0:712  0:006  Using theme 'RANDOM' (EFI\CLOVER\themes\RANDOM)
0:712  0:000  Choosing theme RANDOM
0:712  0:000  found boot-args in NVRAM:kext-dev-mode=1, size=16
0:712  0:000  ...found arg:kext-dev-mode=1
0:712  0:000  Custom entries start
0:712  0:000  Custom entries finish
0:712  0:000  Scanning loaders...
0:712  0:000   0: 'Whole Disc Boot' no file system
0:712  0:000   1: 'Whole Disc Boot' no file system
0:712  0:000   2: 'WinRE tools'
0:712  0:000   3: 'SYSTEM'
0:713  0:000      AddLoaderEntry for Volume Name=SYSTEM
0:713  0:000    Icon 18 (icons\vol_internal_ntfs.icns) not found
0:713  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:713  0:000      AddLoaderEntry for Volume Name=SYSTEM
0:713  0:000    Icon 19 (icons\vol_internal_ext3.icns) not found
0:713  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:714  0:000   4: 'Legacy HD3' no file system
0:714  0:000   5: 'OS_Install'
0:714  0:000   6: 'EFI'
0:714  0:000   7: 'OSX'
0:752  0:037      AddLoaderEntry for Volume Name=OSX
0:763  0:010      Check if volume Is Hibernated:
0:763  0:000      Check sleep image 'by signature':
0:797  0:033      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found
0:797  0:000      using default sleep image name = \private\var\vm\sleepimage
0:806  0:009      Reading first 512 bytes of sleepimage ...
0:819  0:013   OurBlockIoRead: Lba=14C5B88, Offset=298B71000 (BlockSize=512)
0:819  0:000   sig lion: 7A7A7A7A
0:819  0:000   sig snow: 0
0:819  0:000   no valid sleep image offset was found
0:819  0:000      Reading completed -> Success
0:819  0:000       sleepimage offset could not be acquired
0:819  0:000       hibernated: no - sign
0:819  0:000    Icon 17 (icons\vol_internal_hfs.icns) not found
0:819  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:832  0:012   8: 'Recovery HD'
0:833  0:001      AddLoaderEntry for Volume Name=Recovery HD
0:843  0:009    Icon 20 (icons\vol_recovery.icns) not found
0:843  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:844  0:000   9: 'Legacy HD4' no file system
0:844  0:000  10: 'Legacy HD5' no file system
0:844  0:000  Custom legacy start
0:844  0:000  Custom legacy end
0:844  0:000  Scanning legacy ...
0:844  0:000   0: 'Whole Disc Boot' (legacy) not legacy
0:844  0:000   1: 'Whole Disc Boot' (legacy) not legacy
0:844  0:000   2: 'WinRE tools' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from WinRE tools' OSType=2 Icon=vista,win
0:844  0:000   3: 'SYSTEM' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from SYSTEM' OSType=2 Icon=vista,win
0:844  0:000   4: 'Legacy HD3' (legacy) not legacy
0:844  0:000   5: 'OS_Install' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from OS_Install' OSType=2 Icon=vista,win
0:844  0:000   6: 'EFI' (legacy) not legacy
0:844  0:000   7: 'OSX' (legacy) not legacy
0:844  0:000   8: 'Recovery HD' (legacy) not legacy
0:844  0:000   9: 'Legacy HD4' (legacy) not legacy
0:844  0:000  10: 'Legacy HD5' (legacy) not legacy
0:844  0:000  Custom tool start
0:844  0:000  Custom tool end
0:844  0:000    Icon 8 (icons\tool_shell.png) not found
0:844  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:845  0:001  found tool \EFI\CLOVER\tools\Shell64U.efi
0:845  0:000  Checking EFI partition Volume 3 for Clover
0:846  0:001   Found Clover
0:846  0:000    Icon 2 (icons\func_clover.png) not found
0:846  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:846  0:000  Checking EFI partition Volume 6 for Clover
0:847  0:000   Found Clover
0:847  0:000    Icon 1 (icons\func_options.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 0 (icons\func_about.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 5 (icons\func_reset.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 6 (icons\func_shutdown.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000  GetEfiBootDeviceFromNvram:
0:848  0:000   efi-boot-device-data: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:848  0:000   Volume: 'PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)'
0:848  0:000   LoaderPath: '<null string>'
0:848  0:000   Guid = 0F2E0810-14F2-4D9E-AB56-3E92F37E21DF
0:848  0:000   volume: partition = PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:848  0:000   searching for that partition
0:848  0:000    found entry 2. 'Boot Mac OS X from OSX', Volume 'OSX'
0:848  0:000  Boot redirected to Entry 2. 'Boot Mac OS X from OSX'
0:848  0:000  DefaultIndex=2 and MainMenu.EntryCount=14
0:848  0:000  banner file not read
0:982  0:134    Icon 22 (<null string>) not found
0:982  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:982  0:000    Icon 23 (<null string>) not found
0:982  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
1:012  0:030  Found Mouse device:
1:012  0:000    Icon 11 (icons\pointer.png) not found
1:012  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
1:013  0:000  GUI ready
2:477  1:463  BootOption of the entry is empty
2:477  0:000  StartLoader() start
2:477  0:000  Finally: Bus=99768kHz CPU=2593MHz
2:477  0:000  Kernel and Kext Patches at BA7BD2F0:
2:477  0:000      Allowed: y
2:477  0:000      Debug: n
2:477  0:000      KernelCpu: y
2:477  0:000      Lapic: n
2:477  0:000      Haswell-E: n
2:477  0:000      AICPUPM: y
2:477  0:000      AppleRTC: y
2:477  0:000      KernelPm: y
2:477  0:000      FakeCPUID: 0x0
2:477  0:000      ATIController: null
2:477  0:000      ATIDataLength: 0
2:477  0:000      0 Kexts to load
2:477  0:000      15 Kexts to patch
2:477  0:000        KextPatch[0]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[1]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[2]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[3]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[4]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[5]: 20 bytes, AppleIntelFramebufferAzul
2:477  0:000        KextPatch[6]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[7]: 5 bytes, IOGraphicsFamily
2:477  0:000        KextPatch[8]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[9]: 11 bytes, disabled:IOAHCIBlockStorage
2:477  0:000        KextPatch[10]: 20 bytes, AppleIntelFramebufferAzul
2:477  0:000        KextPatch[11]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[12]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[13]: 16 bytes, disabled:AppleIntelFrameBufferAzul
2:477  0:000        KextPatch[14]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000  Loading boot.efi  status=Success
2:698  0:221  GetOSVersion: : 10.10
2:698  0:000  insert table 9 for dev 0:0
2:698  0:000  insert table 9 for dev 0:0
2:698  0:000  Detected alternating SMBIOS channel banks
2:698  0:000  Channels: 1
2:698  0:000  Interleave: 0 1 2 3 4 5 6 7
2:698  0:000  SMBIOS Type 17 Index = 0 => 0 0:
2:698  0:000  BANK0 DIMM0 EMPTY
2:698  0:000  SMBIOS Type 17 Index = 1 => 1 1:
2:698  0:000  BANK0 DIMM1 EMPTY
2:698  0:000  NumberOfMemoryDevices = 2
2:698  0:000  Table 131 is present, CPUType=31
2:698  0:000  Change to: 705
2:698  0:000  RSDT 0xCB33A028
2:698  0:000  FADT from RSDT: 0xCB33A160
2:698  0:000  XSDT 0xCB33A0A0
2:698  0:000  FADT from XSDT: 0xCB348BA8
2:698  0:000  Xsdt reallocation done
2:698  0:000  old FADT length=10C
2:698  0:000  Found OperationRegion(GNVS, SystemMemory, CB9D6C18, ...)
2:699  0:000  Found OperationRegion(MCHT, SystemMemory, FED10000, ...)
2:699  0:000  Found OperationRegion(RCRB, SystemMemory, FED1C000, ...)
2:699  0:000  Found OperationRegion(XHCP, SystemMemory, 0, ...)
2:699  0:000  Found OperationRegion(MCA1, SystemMemory, F7FE0000, ...)
2:699  0:000  Found OperationRegion(MCA1, SystemMemory, F7FE0000, ...)
2:699  0:000  Found OperationRegion(CPSB, SystemMemory, CB332E18, ...)
2:699  0:000  Found OperationRegion(MBAR, SystemMemory, 0, ...)
2:699  0:000  Found OperationRegion(TMMB, SystemMemory, FED40000, ...)
2:719  0:020  DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml
2:725  0:006  Apply DsdtFixMask=0x90100100 new way
2:725  0:000     drop _DSM mask=0x0004
2:725  0:000  ========= Auto patch DSDT Starting ========
2:725  0:000  VideoCard devID=0x4168086
2:725  0:000  DisplayADR1[0] = 0x20000, DisplayADR2[0] = 0xFFFE
2:725  0:000  USBADR[0] = 0x140000 and PCIe = 0xFFFE
2:725  0:000  USBADR[1] = 0x1A0000 and PCIe = 0xFFFE
2:835  0:109  Found Airport Atheros at 0x1C0004, 0x0, DeviceID=0x003E
2:835  0:000  USBADR[2] = 0x1D0000 and PCIe = 0xFFFE
2:835  0:000  first CPU found at 7A04 offset 7A08
2:835  0:000  score candidate at 7A00
2:835  0:000  score inserted in acpi_cpu_score _PR_
2:835  0:000  Found ACPI CPU: CPU0 And CPU1 And CPU2 And CPU3 And CPU4 And CPU5 And CPU6 And CPU7 
  within the score: _PR_
2:835  0:000  Found PCIROOTUID = 0
2:835  0:000  Start Display0 Fix
2:835  0:000  add device PEG0
2:835  0:000  add device GFX0
2:835  0:000  Creating DSM for Intel card
2:835  0:000  now inserting Video device
2:835  0:000  ... into created bridge
2:836  0:000  patch Display #0 of Vendor=0x8086 in DSDT new way
2:836  0:000  OperationRegion (GNVS...) corrected to addr=0xCB9D6C18
2:836  0:000  OperationRegion (MCHT...) corrected to addr=0xFED10000
2:836  0:000    indirect name=SRCB
2:836  0:000  OperationRegion (RCRB...) corrected to addr=0xFED1C000
2:836  0:000  OperationRegion (XHCP...) corrected to addr=0x0
2:836  0:000    indirect name=SRMB
2:836  0:000  OperationRegion (MCA1...) corrected to addr=0xF7FE0000
2:836  0:000    indirect name=SRMB
2:836  0:000  OperationRegion (MCA1...) corrected to addr=0xF7FE0000
2:836  0:000  OperationRegion (CPSB...) corrected to addr=0xCB332E18
2:836  0:000  OperationRegion (MBAR...) corrected to addr=0x0
2:836  0:000  OperationRegion (TMMB...) corrected to addr=0xFED40000
2:836  0:000  ========= Auto patch DSDT Finished ========
2:836  0:000  Drop tables from Xsdt, SIGN=SSDT TableID= Length=0
2:836  0:000   Xsdt has tables count=19 
2:836  0:000   Table: SSDT  sensrhub  552 dropped
2:836  0:000   Table: SSDT  zpodd  399 dropped
2:836  0:000   Table: SSDT  Cpu0Ist  1337 dropped
2:836  0:000   Table: SSDT  CpuPm  2776 dropped
2:836  0:000   Table: SSDT  SataTabl  789 dropped
2:836  0:000   Table: SSDT  SaSsdt   13652 dropped
2:836  0:000   Table: SSDT  SgPeg  5267 dropped
2:836  0:000   Table: SSDT  OptTabl  5476 dropped
2:836  0:000  corrected XSDT length=124
2:836  0:000  Inserting SSDT-8.AML from EFI\CLOVER\ACPI\patched ... Success
2:836  0:000  Inserting SSDT-9.AML from EFI\CLOVER\ACPI\patched ... Success
2:837  0:000  Inserting SSDT-10.AML from EFI\CLOVER\ACPI\patched ... Success
2:839  0:002   CPUBase=0 and ApicCPUBase=1 ApicCPUNum=8
2:839  0:000  EdidDiscovered size=128
2:839  0:000  00 | 00 FF FF FF FF FF FF 00 0D AE 35 17 00 00 00 00 
2:839  0:000  16 | 32 16 01 04 95 26 15 78 02 D4 95 A3 55 50 9D 27 
2:839  0:000  32 | 0F 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 
2:839  0:000  48 | 01 01 01 01 01 01 B4 3B 80 4A 71 38 34 40 30 20 
2:839  0:000  64 | 35 00 7E D7 10 00 00 18 00 00 00 FE 00 4E 31 37 
2:839  0:000  80 | 33 48 47 45 2D 45 31 31 0A 20 00 00 00 FE 00 43 
2:839  0:000  96 | 4D 4E 0A 20 20 20 20 20 20 20 20 20 00 00 00 FE 
2:839  0:000  112 | 00 4E 31 37 33 48 47 45 2D 45 31 31 0A 20 00 E0 
2:839  0:000  Intel Intel HD Graphics 4600 [8086:0416] :: PciRoot(0x0)\Pci(0x2,0x0)
2:839  0:000  Intel GFX revision  =0x6
2:839  0:000  HDA Controller [8086:0C0C] :: PciRoot(0x0)\Pci(0x3,0x0) => codec not detected
2:949  0:109  USB Controller [8086:8C31] :: PciRoot(0x0)\Pci(0x14,0x0)
2:949  0:000  USB Controller [8086:8C2D] :: PciRoot(0x0)\Pci(0x1A,0x0)
2:949  0:000  HDA Controller [8086:8C20] :: PciRoot(0x0)\Pci(0x1B,0x0) => codec not detected
3:058  0:109  LAN Controller [1969:E091] :: PciRoot(0x0)\Pci(0x1C,0x3)\Pci(0x0,0x0)
3:058  0:000  USB Controller [8086:8C26] :: PciRoot(0x0)\Pci(0x1D,0x0)
3:058  0:000  stringlength = 3246
3:058  0:000  CurrentMode: Width=1920 Height=1080
3:058  0:000  FSInjection: using kexts path: 'EFI\CLOVER\kexts\10.10'FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: BEDE4E98
3:061  0:002  
3:063  0:002  MSR 0x1B0   set to        00000000
3:063  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.10
3:088  0:024    Extra kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext
3:101  0:012      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext\Contents\PlugIns\ApplePS2Controller.kext
3:105  0:003      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext\Contents\PlugIns\ApplePS2Keyboard.kext
3:108  0:003    Extra kext: EFI\CLOVER\kexts\10.10\ACPIBacklight.kext
3:116  0:008    Extra kext: EFI\CLOVER\kexts\10.10\ACPIBatteryManager.kext
3:120  0:003    Extra kext: EFI\CLOVER\kexts\10.10\ACPISensors.kext
3:123  0:003    Extra kext: EFI\CLOVER\kexts\10.10\CPUSensors.kext
3:127  0:003    Extra kext: EFI\CLOVER\kexts\10.10\FakePCIID_HD4600_HD4400.kext
3:128  0:001    Extra kext: EFI\CLOVER\kexts\10.10\FakePCIID.kext
3:131  0:003    Extra kext: EFI\CLOVER\kexts\10.10\FakeSMC.kext
3:136  0:004    Extra kext: EFI\CLOVER\kexts\10.10\GenericUSBXHCI.kext
3:140  0:003    Extra kext: EFI\CLOVER\kexts\10.10\NullCPUPowerManagement.kext
3:143  0:003    Extra kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext
3:148  0:004      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Keyboard.kext
3:152  0:004      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Mouse.kext
3:156  0:003      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Trackpad.kext
3:160  0:004    Extra kext: EFI\CLOVER\kexts\10.10\VoodooHDA.kext
3:190  0:030  Custom boot is disabled
3:191  0:000  Closing log
I've tried with multiple times, taking new ACPI dumps etc. The original one is from Clover/Linux.

Any ideas/help?
Jakob

EDID: Just got brightness working, forgot to turn off Display and IGPU fixes by Clover. Still, NVDA shows up:/ whyyyy?
 

Attachments

  • origin.zip
    59.7 KB · Views: 128
  • patched.zip
    30.4 KB · Views: 110
Hey there,
i'm trying hard to get brightness working and to disable NVDA via DSDT/SSDT, without any success.
Any ideas, opinions? I'll post my patched DSDT/SSDT and the original.
Patches applied:
-GFX0 to IGPU
-Brightness(Haswell) to SSDT8
-Added _OFF() to SSDT9
-deleted _DSM etc
DSDT and SSDT is loading, see bootlog:
Code:
0:100  0:100  MemLog inited, TSC freq: 25939890030:100  0:000  
0:100  0:000  Now is 7.7.2015,  19:16:21 (GMT+2047)
0:100  0:000  Starting Clover rev 3241 on American Megatrends EFI
0:100  0:000  SelfDevicePath=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000) @BEE77118
0:100  0:000  SelfDirPath = \EFI\BOOT
0:100  0:000  Total Memory Slots Count = 2
0:100  0:000  Type 17 Index = 0
0:100  0:000  Ignoring insane frequency value 0MHz
0:100  0:000  SmbiosTable.Type17->Speed = 0MHz
0:100  0:000  SmbiosTable.Type17->Size = 0MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 ChannelA-DIMM0
0:100  0:000  Type 17 Index = 1
0:100  0:000  SmbiosTable.Type17->Speed = 1600MHz
0:100  0:000  SmbiosTable.Type17->Size = 8192MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 ChannelB-DIMM0
0:100  0:000  Boot status=0
0:100  0:000  Clover revision: 3241  running on GS70 2QE
0:100  0:000  ... with board MS-1773
0:100  0:000  CPU Vendor = 756E6547 Model=306C3
0:100  0:000  The CPU supported turbo
0:100  0:000  BrandString = Intel(R) Core(TM) i7-4720HQ CPU @ 2.60GHz
0:100  0:000  MSR 0xE2 before patch 1E008405
0:100  0:000  MSR 0xE2 is locked, PM patches will be turned on
0:100  0:000  MSR 0xE4              00021814
0:100  0:000  MSR 0xCE              00080838_F3011A00
0:100  0:000  non-usable FLEX_RATIO = 50000
0:100  0:000  corrected FLEX_RATIO = 40000
0:100  0:000  MSR 0x1B0             00000000
0:100  0:000  FSBFrequency=100MHz DMIvalue=100000kHz
0:100  0:000  Corrected FSBFrequency=100MHz
0:100  0:000  Vendor/Model/Stepping: 0x756E6547/0x3C/0x3
0:100  0:000  Family/ExtFamily: 0x6/0x0
0:100  0:000  MaxDiv/MinDiv: 26.0/8
0:100  0:000  Turbo: 34/34/35/36
0:100  0:000  Features: 0xBFEBFBFF
0:100  0:000  Threads: 8
0:100  0:000  Cores: 4
0:100  0:000  FSB: 100 MHz
0:100  0:000  CPU: 2600 MHz
0:100  0:000  TSC: 2600 MHz
0:100  0:000  PIS: 400 MHz
0:100  0:000  PCI (00|00:00.00) : 8086 0C04 class=060000
0:100  0:000  PCI (00|00:01.00) : 8086 0C01 class=060400
0:100  0:000  PCI (00|01:00.00) : 10DE 13D8 class=030200
0:100  0:000  PCI (00|00:02.00) : 8086 0416 class=030000
0:100  0:000  Found GFX model=Intel HD Graphics 4600
0:100  0:000  PCI (00|00:03.00) : 8086 0C0C class=040300
0:100  0:000  PCI (00|00:14.00) : 8086 8C31 class=0C0330
0:100  0:000  PCI (00|00:16.00) : 8086 8C3A class=078000
0:100  0:000  PCI (00|00:16.01) : FFFF FFFF class=FFFFFF
0:100  0:000  PCI (00|00:1A.00) : 8086 8C2D class=0C0320
0:100  0:000  PCI (00|00:1B.00) : 8086 8C20 class=040300
0:100  0:000  PCI (00|00:1C.00) : 8086 8C10 class=060400
0:100  0:000  PCI (00|00:1C.02) : 8086 8C14 class=060400
0:100  0:000  PCI (00|03:00.00) : 10EC 5249 class=FF0000
0:100  0:000  PCI (00|00:1C.03) : 8086 8C16 class=060400
0:100  0:000  PCI (00|04:00.00) : 1969 E091 class=020000
0:100  0:000  LAN 0, Vendor=1969, MMIO=F7A00000
0:100  0:000  PCI (00|00:1C.04) : 8086 8C18 class=060400
0:100  0:000  PCI (00|05:00.00) : 168C 003E class=028000
0:100  0:000  PCI (00|00:1D.00) : 8086 8C26 class=0C0320
0:100  0:000  PCI (00|00:1F.00) : 8086 8C4B class=060100
0:100  0:000  PCI (00|00:1F.02) : 8086 8C03 class=010601
0:100  0:000  PCI (00|00:1F.03) : 8086 8C22 class=0C0500
0:100  0:000  PCI (00|00:1F.06) : FFFF FFFF class=FFFFFF
0:100  0:000  Clover load options size = 0 bytes
0:125  0:025  Using OEM config.plist at path: EFI\CLOVER\config.plist
0:125  0:000  EFI\CLOVER\config.plist loaded: Success
0:127  0:002  Found theme directory: EMBEDDED
0:128  0:001  Found theme directory: RANDOM
0:129  0:001  Loading early settings
0:129  0:000  timeout set to 5
0:129  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:129  0:000  KextsToPatch: 15 requested
0:129  0:000  KextToPatch 0: disabled:AppleIntelFramebufferAzul (Enable 96MB DVMT-prealloc, 0x0a2e0008) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 1: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204, 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 2: disabled:AppleIntelFramebufferAzul (Enable 128MB DVMT-prealloc, 0x0a2e0008) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 3: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105(12), 0x0a260005 0x0a260006, 0x0d220003, 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 4: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204(12), 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 5: AppleIntelFramebufferAzul (Enable 9MB cursor bytes, 0x0a260006) Kext bin patch, data len: 20
0:129  0:000  KextToPatch 6: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204, 0x0a260005 0x0a260006) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 7: IOGraphicsFamily (Boot graphics glitch, 10.10.2/10.10.3) Kext bin patch, data len: 5
0:129  0:000  KextToPatch 8: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105, 0x0a260005 0x0a260006, 0x0d220003, 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 9: disabled:IOAHCIBlockStorage (Enable TRIM for SSD) Kext bin patch, data len: 11
0:129  0:000  KextToPatch 10: AppleIntelFramebufferAzul (0x0a260006 9MB cursor bytes patch) Kext bin patch, data len: 20
0:129  0:000  KextToPatch 11: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0204(12), 0x0a260005 0x0a260006) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 12: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105, 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  KextToPatch 13: disabled:AppleIntelFrameBufferAzul (Enable internal display after sleep for 0x0a2e000a, 0x0a26000a) Kext bin patch, data len: 16
0:129  0:000  KextToPatch 14: disabled:AppleIntelFramebufferAzul (HDMI-audio, port 0105(12), 0x0a2e0008, 0x0a16000c, 0x0a2e000d, 0x0a26000d) Kext bin patch, data len: 12
0:129  0:000  LoadDrivers() start
0:136  0:006  Loading CsmVideoDxe-64.efi  status=Success
0:137  0:000   - driver needs connecting
0:137  0:000  Loading FSInject-64.efi  status=Success
0:137  0:000  Loading OsxAptioFix2Drv-64.efi  status=Success
0:138  0:000  Loading OsxFatBinaryDrv-64.efi  status=Success
0:139  0:000  Loading PartitionDxe-64.efi  status=Success
0:139  0:000   - driver needs connecting
0:139  0:000  Loading VBoxHfs-64.efi  status=Success
0:140  0:000   - driver needs connecting
0:140  0:000  3 drivers needs connecting ...
0:140  0:000  PlatformDriverOverrideProtocol->GetDriver overriden
0:140  0:000  Partition driver loaded: 
0:140  0:000  Video driver loaded: disconnect Success
0:258  0:117  Searching for invalid DiskIo BY_DRIVER connects: not found, all ok
0:271  0:013  CsmVideoDriverBindingStart
0:271  0:000  Enable the device status=Unsupported
0:271  0:000  attributes Restored
0:271  0:000  CsmVideoDriverBindingStart end Unsupported
0:271  0:000  CsmVideoDriverBindingStart
0:271  0:000  mixed support=40010
0:271  0:000  Controller is [030000]
0:271  0:000  Check for VBE
0:273  0:002   found Detail Timing 1920x1080
0:273  0:000  timing string after 0xFE:N173HGE-E11
 
0:273  0:000  timing string after 0xFE:CMN
         
0:273  0:000  timing string after 0xFE:N173HGE-E11
 
0:273  0:000    0 1280x1024 attr=9B - ok, edid-
0:273  0:000    1 1024x768 attr=9B - ok, edid-, 1024x768, working, highest, pref=1
0:273  0:000    2 640x480 attr=9B - ok, edid-, 640x480, working
0:274  0:000    3 800x600 attr=9B - ok, edid-, 800x600, working
0:274  0:000    4 1920x1080 attr=9B - ok, edid+, working, highest, pref=4
0:274  0:000  CsmVideo: New mode: 4 1920x1080 - set
0:457  0:183   - SetMode pref 4 (4) = Success
0:457  0:000  CsmVideoCheckForVbe - Success
0:458  0:000  CsmVideoDriverBindingStart end Success
0:458  0:000  CsmVideo: New mode: 2 640x480 - blocking that switch
0:602  0:143  LoadDrivers() end
0:602  0:000  Dump SMC keys from NVRAM:
0:608  0:005  SetScreenResolution: 1920x1080 - already set
0:608  0:000  Console modes reported: 4, available modes:
0:608  0:000    Mode 1: 80x25 (current mode)
0:608  0:000    Mode 2: 80x25
0:608  0:000    Mode 3: 100x31
0:608  0:000    Mode 4: 240x56
0:608  0:000  reinit: self device path=PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000)
0:609  0:000  MAC address of LAN #0= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #1= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #2= 44:8A:5B:6D:BC:73:
0:609  0:000  MAC address of LAN #3= 44:8A:5B:6D:BC:73:
0:609  0:000  ScanSPD() start
0:609  0:000  SMBus CmdReg: 0x3
0:609  0:000  Scanning SMBus [8086:8C22], mmio: 0xF7C19004, ioport: 0xF040, hostc: 0x11
0:609  0:000  Slots to scan [8]...
0:635  0:026  SPD[2]: Type 11 @0x52 
0:644  0:008  Not using XMP because it is not present
0:644  0:000  DDR speed 1600MHz 
0:644  0:000  Slot: 2 Type 24 8192MB 1600MHz Vendor=Hynix Semiconductor PartNo=HMT41GS6BFR8A-PBN0 SerialNo=000E060B0F020D0A 
0:674  0:030  ScanSPD() end
0:674  0:000  Get Acpi Tables List from RSDT:
0:674  0:000   Found table: FACP  MEGABOOK len=132
0:674  0:000   Found table: APIC  MEGABOOK len=146
0:674  0:000   Found table: FPDT  MEGABOOK len=68
0:674  0:000   Found table: ASF!   HCG len=165
0:674  0:000   Found table: MSDM  MEGABOOK len=85
0:674  0:000   Found table: SSDT  sensrhub len=552
0:674  0:000   Found table: SSDT  zpodd len=399
0:674  0:000   Found table: SLIC  MEGABOOK len=374
0:674  0:000   Found table: SSDT  Cpu0Ist len=1337
0:674  0:000   Found table: SSDT  CpuPm len=2776
0:674  0:000   Found table: MCFG  MEGABOOK len=60
0:674  0:000   Found table: HPET  MEGABOOK len=56
0:674  0:000   Found table: SSDT  SataTabl len=789
0:674  0:000   Found table: SSDT  SaSsdt  len=13652
0:674  0:000   Found table: SSDT  SgPeg len=5267
0:674  0:000   Found table: MSFF  MEGABOOK len=41
0:674  0:000   Found table: BGRT  MEGABOOK len=56
0:674  0:000   Found table: DMAR  HSW  len=184
0:674  0:000   Found table: SSDT  OptTabl len=5476
0:674  0:000  Calibrated TSC frequency =2593989003 =2593MHz
0:674  0:000  Loading main settings
0:674  0:000  USB FixOwnership: true
0:674  0:000  Config set Fixes will override FixMask mask!
0:674  0:000     final mask=90100100
0:674  0:000  Config set PluginType=1
0:674  0:000  Config set ChassisType=0x8
0:675  0:000  found 11 volumes with blockIO
0:675  0:000   0. Volume:
0:675  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)
0:675  0:000   1. Volume:
0:675  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)
0:690  0:015   2. Volume:
0:690  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,1F1A8B95-0852-457F-8FD9-37262222D7FC,0x800,0x12C000)
0:691  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:691  0:000   3. Volume:
0:691  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(2,GPT,8E03533F-84C9-4709-93C8-6128CEB7B471,0x12C800,0x96000)
0:691  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:693  0:001   4. Volume:
0:693  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(3,GPT,786F8754-8F4B-4476-AD8D-897A64863C05,0x1C2800,0x40000)
0:693  0:000   5. Volume:
0:693  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,ACD25137-712A-44AA-B557-8DB78C8F048B,0x202800,0xEC79800)
0:694  0:000    Result of bootcode detection: bootable Windows (vista,win)
0:694  0:000   6. Volume:
0:694  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(1,GPT,1195FCA3-82C3-4B49-BFB9-C6249D0BD005,0x28,0x64000)
0:694  0:000    Result of bootcode detection: bootable unknown (legacy)
0:703  0:008    This is SelfVolume !!
0:703  0:000   7. Volume:
0:703  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:703  0:000   8. Volume:
0:703  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(3,GPT,25147DF0-60F7-46BA-90B5-4F38C1718FA1,0xB9B1C80,0x135F20)
0:704  0:000   9. Volume:
0:704  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(4,GPT,45FE5655-A8D9-4C36-B60F-3BCD9652F8E8,0xBAE8000,0xBEBC000)
0:704  0:000  10. Volume:
0:704  0:000    PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(5,GPT,B19D4A4D-1557-4C32-A04C-B8221604642E,0x179A4000,0x7A1000)
0:705  0:000  no default theme, get random theme theme.plist
0:712  0:006  Using theme 'RANDOM' (EFI\CLOVER\themes\RANDOM)
0:712  0:000  Choosing theme RANDOM
0:712  0:000  found boot-args in NVRAM:kext-dev-mode=1, size=16
0:712  0:000  ...found arg:kext-dev-mode=1
0:712  0:000  Custom entries start
0:712  0:000  Custom entries finish
0:712  0:000  Scanning loaders...
0:712  0:000   0: 'Whole Disc Boot' no file system
0:712  0:000   1: 'Whole Disc Boot' no file system
0:712  0:000   2: 'WinRE tools'
0:712  0:000   3: 'SYSTEM'
0:713  0:000      AddLoaderEntry for Volume Name=SYSTEM
0:713  0:000    Icon 18 (icons\vol_internal_ntfs.icns) not found
0:713  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:713  0:000      AddLoaderEntry for Volume Name=SYSTEM
0:713  0:000    Icon 19 (icons\vol_internal_ext3.icns) not found
0:713  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:714  0:000   4: 'Legacy HD3' no file system
0:714  0:000   5: 'OS_Install'
0:714  0:000   6: 'EFI'
0:714  0:000   7: 'OSX'
0:752  0:037      AddLoaderEntry for Volume Name=OSX
0:763  0:010      Check if volume Is Hibernated:
0:763  0:000      Check sleep image 'by signature':
0:797  0:033      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Not Found
0:797  0:000      using default sleep image name = \private\var\vm\sleepimage
0:806  0:009      Reading first 512 bytes of sleepimage ...
0:819  0:013   OurBlockIoRead: Lba=14C5B88, Offset=298B71000 (BlockSize=512)
0:819  0:000   sig lion: 7A7A7A7A
0:819  0:000   sig snow: 0
0:819  0:000   no valid sleep image offset was found
0:819  0:000      Reading completed -> Success
0:819  0:000       sleepimage offset could not be acquired
0:819  0:000       hibernated: no - sign
0:819  0:000    Icon 17 (icons\vol_internal_hfs.icns) not found
0:819  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:832  0:012   8: 'Recovery HD'
0:833  0:001      AddLoaderEntry for Volume Name=Recovery HD
0:843  0:009    Icon 20 (icons\vol_recovery.icns) not found
0:843  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:844  0:000   9: 'Legacy HD4' no file system
0:844  0:000  10: 'Legacy HD5' no file system
0:844  0:000  Custom legacy start
0:844  0:000  Custom legacy end
0:844  0:000  Scanning legacy ...
0:844  0:000   0: 'Whole Disc Boot' (legacy) not legacy
0:844  0:000   1: 'Whole Disc Boot' (legacy) not legacy
0:844  0:000   2: 'WinRE tools' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from WinRE tools' OSType=2 Icon=vista,win
0:844  0:000   3: 'SYSTEM' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from SYSTEM' OSType=2 Icon=vista,win
0:844  0:000   4: 'Legacy HD3' (legacy) not legacy
0:844  0:000   5: 'OS_Install' (vista,win) add legacy
0:844  0:000   added 'Boot Windows from OS_Install' OSType=2 Icon=vista,win
0:844  0:000   6: 'EFI' (legacy) not legacy
0:844  0:000   7: 'OSX' (legacy) not legacy
0:844  0:000   8: 'Recovery HD' (legacy) not legacy
0:844  0:000   9: 'Legacy HD4' (legacy) not legacy
0:844  0:000  10: 'Legacy HD5' (legacy) not legacy
0:844  0:000  Custom tool start
0:844  0:000  Custom tool end
0:844  0:000    Icon 8 (icons\tool_shell.png) not found
0:844  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:845  0:001  found tool \EFI\CLOVER\tools\Shell64U.efi
0:845  0:000  Checking EFI partition Volume 3 for Clover
0:846  0:001   Found Clover
0:846  0:000    Icon 2 (icons\func_clover.png) not found
0:846  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:846  0:000  Checking EFI partition Volume 6 for Clover
0:847  0:000   Found Clover
0:847  0:000    Icon 1 (icons\func_options.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 0 (icons\func_about.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 5 (icons\func_reset.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000    Icon 6 (icons\func_shutdown.png) not found
0:847  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:847  0:000  GetEfiBootDeviceFromNvram:
0:848  0:000   efi-boot-device-data: PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:848  0:000   Volume: 'PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)'
0:848  0:000   LoaderPath: '<null string>'
0:848  0:000   Guid = 0F2E0810-14F2-4D9E-AB56-3E92F37E21DF
0:848  0:000   volume: partition = PciRoot(0x0)\Pci(0x1F,0x2)\Sata(0x4,0xFFFF,0x0)\HD(2,GPT,0F2E0810-14F2-4D9E-AB56-3E92F37E21DF,0x64028,0xB94DC58)
0:848  0:000   searching for that partition
0:848  0:000    found entry 2. 'Boot Mac OS X from OSX', Volume 'OSX'
0:848  0:000  Boot redirected to Entry 2. 'Boot Mac OS X from OSX'
0:848  0:000  DefaultIndex=2 and MainMenu.EntryCount=14
0:848  0:000  banner file not read
0:982  0:134    Icon 22 (<null string>) not found
0:982  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
0:982  0:000    Icon 23 (<null string>) not found
0:982  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
1:012  0:030  Found Mouse device:
1:012  0:000    Icon 11 (icons\pointer.png) not found
1:012  0:000    Theme path EFI\CLOVER\themes\RANDOM, ThemeDir=BEDDEC58
1:013  0:000  GUI ready
2:477  1:463  BootOption of the entry is empty
2:477  0:000  StartLoader() start
2:477  0:000  Finally: Bus=99768kHz CPU=2593MHz
2:477  0:000  Kernel and Kext Patches at BA7BD2F0:
2:477  0:000      Allowed: y
2:477  0:000      Debug: n
2:477  0:000      KernelCpu: y
2:477  0:000      Lapic: n
2:477  0:000      Haswell-E: n
2:477  0:000      AICPUPM: y
2:477  0:000      AppleRTC: y
2:477  0:000      KernelPm: y
2:477  0:000      FakeCPUID: 0x0
2:477  0:000      ATIController: null
2:477  0:000      ATIDataLength: 0
2:477  0:000      0 Kexts to load
2:477  0:000      15 Kexts to patch
2:477  0:000        KextPatch[0]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[1]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[2]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[3]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[4]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[5]: 20 bytes, AppleIntelFramebufferAzul
2:477  0:000        KextPatch[6]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[7]: 5 bytes, IOGraphicsFamily
2:477  0:000        KextPatch[8]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[9]: 11 bytes, disabled:IOAHCIBlockStorage
2:477  0:000        KextPatch[10]: 20 bytes, AppleIntelFramebufferAzul
2:477  0:000        KextPatch[11]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[12]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000        KextPatch[13]: 16 bytes, disabled:AppleIntelFrameBufferAzul
2:477  0:000        KextPatch[14]: 12 bytes, disabled:AppleIntelFramebufferAzul
2:477  0:000  Loading boot.efi  status=Success
2:698  0:221  GetOSVersion: : 10.10
2:698  0:000  insert table 9 for dev 0:0
2:698  0:000  insert table 9 for dev 0:0
2:698  0:000  Detected alternating SMBIOS channel banks
2:698  0:000  Channels: 1
2:698  0:000  Interleave: 0 1 2 3 4 5 6 7
2:698  0:000  SMBIOS Type 17 Index = 0 => 0 0:
2:698  0:000  BANK0 DIMM0 EMPTY
2:698  0:000  SMBIOS Type 17 Index = 1 => 1 1:
2:698  0:000  BANK0 DIMM1 EMPTY
2:698  0:000  NumberOfMemoryDevices = 2
2:698  0:000  Table 131 is present, CPUType=31
2:698  0:000  Change to: 705
2:698  0:000  RSDT 0xCB33A028
2:698  0:000  FADT from RSDT: 0xCB33A160
2:698  0:000  XSDT 0xCB33A0A0
2:698  0:000  FADT from XSDT: 0xCB348BA8
2:698  0:000  Xsdt reallocation done
2:698  0:000  old FADT length=10C
2:698  0:000  Found OperationRegion(GNVS, SystemMemory, CB9D6C18, ...)
2:699  0:000  Found OperationRegion(MCHT, SystemMemory, FED10000, ...)
2:699  0:000  Found OperationRegion(RCRB, SystemMemory, FED1C000, ...)
2:699  0:000  Found OperationRegion(XHCP, SystemMemory, 0, ...)
2:699  0:000  Found OperationRegion(MCA1, SystemMemory, F7FE0000, ...)
2:699  0:000  Found OperationRegion(MCA1, SystemMemory, F7FE0000, ...)
2:699  0:000  Found OperationRegion(CPSB, SystemMemory, CB332E18, ...)
2:699  0:000  Found OperationRegion(MBAR, SystemMemory, 0, ...)
2:699  0:000  Found OperationRegion(TMMB, SystemMemory, FED40000, ...)
2:719  0:020  DSDT found in Clover volume OEM folder: EFI\CLOVER\ACPI\patched\DSDT.aml
2:725  0:006  Apply DsdtFixMask=0x90100100 new way
2:725  0:000     drop _DSM mask=0x0004
2:725  0:000  ========= Auto patch DSDT Starting ========
2:725  0:000  VideoCard devID=0x4168086
2:725  0:000  DisplayADR1[0] = 0x20000, DisplayADR2[0] = 0xFFFE
2:725  0:000  USBADR[0] = 0x140000 and PCIe = 0xFFFE
2:725  0:000  USBADR[1] = 0x1A0000 and PCIe = 0xFFFE
2:835  0:109  Found Airport Atheros at 0x1C0004, 0x0, DeviceID=0x003E
2:835  0:000  USBADR[2] = 0x1D0000 and PCIe = 0xFFFE
2:835  0:000  first CPU found at 7A04 offset 7A08
2:835  0:000  score candidate at 7A00
2:835  0:000  score inserted in acpi_cpu_score _PR_
2:835  0:000  Found ACPI CPU: CPU0 And CPU1 And CPU2 And CPU3 And CPU4 And CPU5 And CPU6 And CPU7 
  within the score: _PR_
2:835  0:000  Found PCIROOTUID = 0
2:835  0:000  Start Display0 Fix
2:835  0:000  add device PEG0
2:835  0:000  add device GFX0
2:835  0:000  Creating DSM for Intel card
2:835  0:000  now inserting Video device
2:835  0:000  ... into created bridge
2:836  0:000  patch Display #0 of Vendor=0x8086 in DSDT new way
2:836  0:000  OperationRegion (GNVS...) corrected to addr=0xCB9D6C18
2:836  0:000  OperationRegion (MCHT...) corrected to addr=0xFED10000
2:836  0:000    indirect name=SRCB
2:836  0:000  OperationRegion (RCRB...) corrected to addr=0xFED1C000
2:836  0:000  OperationRegion (XHCP...) corrected to addr=0x0
2:836  0:000    indirect name=SRMB
2:836  0:000  OperationRegion (MCA1...) corrected to addr=0xF7FE0000
2:836  0:000    indirect name=SRMB
2:836  0:000  OperationRegion (MCA1...) corrected to addr=0xF7FE0000
2:836  0:000  OperationRegion (CPSB...) corrected to addr=0xCB332E18
2:836  0:000  OperationRegion (MBAR...) corrected to addr=0x0
2:836  0:000  OperationRegion (TMMB...) corrected to addr=0xFED40000
2:836  0:000  ========= Auto patch DSDT Finished ========
2:836  0:000  Drop tables from Xsdt, SIGN=SSDT TableID= Length=0
2:836  0:000   Xsdt has tables count=19 
2:836  0:000   Table: SSDT  sensrhub  552 dropped
2:836  0:000   Table: SSDT  zpodd  399 dropped
2:836  0:000   Table: SSDT  Cpu0Ist  1337 dropped
2:836  0:000   Table: SSDT  CpuPm  2776 dropped
2:836  0:000   Table: SSDT  SataTabl  789 dropped
2:836  0:000   Table: SSDT  SaSsdt   13652 dropped
2:836  0:000   Table: SSDT  SgPeg  5267 dropped
2:836  0:000   Table: SSDT  OptTabl  5476 dropped
2:836  0:000  corrected XSDT length=124
2:836  0:000  Inserting SSDT-8.AML from EFI\CLOVER\ACPI\patched ... Success
2:836  0:000  Inserting SSDT-9.AML from EFI\CLOVER\ACPI\patched ... Success
2:837  0:000  Inserting SSDT-10.AML from EFI\CLOVER\ACPI\patched ... Success
2:839  0:002   CPUBase=0 and ApicCPUBase=1 ApicCPUNum=8
2:839  0:000  EdidDiscovered size=128
2:839  0:000  00 | 00 FF FF FF FF FF FF 00 0D AE 35 17 00 00 00 00 
2:839  0:000  16 | 32 16 01 04 95 26 15 78 02 D4 95 A3 55 50 9D 27 
2:839  0:000  32 | 0F 50 54 00 00 00 01 01 01 01 01 01 01 01 01 01 
2:839  0:000  48 | 01 01 01 01 01 01 B4 3B 80 4A 71 38 34 40 30 20 
2:839  0:000  64 | 35 00 7E D7 10 00 00 18 00 00 00 FE 00 4E 31 37 
2:839  0:000  80 | 33 48 47 45 2D 45 31 31 0A 20 00 00 00 FE 00 43 
2:839  0:000  96 | 4D 4E 0A 20 20 20 20 20 20 20 20 20 00 00 00 FE 
2:839  0:000  112 | 00 4E 31 37 33 48 47 45 2D 45 31 31 0A 20 00 E0 
2:839  0:000  Intel Intel HD Graphics 4600 [8086:0416] :: PciRoot(0x0)\Pci(0x2,0x0)
2:839  0:000  Intel GFX revision  =0x6
2:839  0:000  HDA Controller [8086:0C0C] :: PciRoot(0x0)\Pci(0x3,0x0) => codec not detected
2:949  0:109  USB Controller [8086:8C31] :: PciRoot(0x0)\Pci(0x14,0x0)
2:949  0:000  USB Controller [8086:8C2D] :: PciRoot(0x0)\Pci(0x1A,0x0)
2:949  0:000  HDA Controller [8086:8C20] :: PciRoot(0x0)\Pci(0x1B,0x0) => codec not detected
3:058  0:109  LAN Controller [1969:E091] :: PciRoot(0x0)\Pci(0x1C,0x3)\Pci(0x0,0x0)
3:058  0:000  USB Controller [8086:8C26] :: PciRoot(0x0)\Pci(0x1D,0x0)
3:058  0:000  stringlength = 3246
3:058  0:000  CurrentMode: Width=1920 Height=1080
3:058  0:000  FSInjection: using kexts path: 'EFI\CLOVER\kexts\10.10'FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: BEDE4E98
3:061  0:002  
3:063  0:002  MSR 0x1B0   set to        00000000
3:063  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.10
3:088  0:024    Extra kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext
3:101  0:012      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext\Contents\PlugIns\ApplePS2Controller.kext
3:105  0:003      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\ApplePS2ElanTouchpad.kext\Contents\PlugIns\ApplePS2Keyboard.kext
3:108  0:003    Extra kext: EFI\CLOVER\kexts\10.10\ACPIBacklight.kext
3:116  0:008    Extra kext: EFI\CLOVER\kexts\10.10\ACPIBatteryManager.kext
3:120  0:003    Extra kext: EFI\CLOVER\kexts\10.10\ACPISensors.kext
3:123  0:003    Extra kext: EFI\CLOVER\kexts\10.10\CPUSensors.kext
3:127  0:003    Extra kext: EFI\CLOVER\kexts\10.10\FakePCIID_HD4600_HD4400.kext
3:128  0:001    Extra kext: EFI\CLOVER\kexts\10.10\FakePCIID.kext
3:131  0:003    Extra kext: EFI\CLOVER\kexts\10.10\FakeSMC.kext
3:136  0:004    Extra kext: EFI\CLOVER\kexts\10.10\GenericUSBXHCI.kext
3:140  0:003    Extra kext: EFI\CLOVER\kexts\10.10\NullCPUPowerManagement.kext
3:143  0:003    Extra kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext
3:148  0:004      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Keyboard.kext
3:152  0:004      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Mouse.kext
3:156  0:003      Extra PlugIn kext: EFI\CLOVER\kexts\10.10\VoodooPS2Controller.kext\Contents\PlugIns\VoodooPS2Trackpad.kext
3:160  0:004    Extra kext: EFI\CLOVER\kexts\10.10\VoodooHDA.kext
3:190  0:030  Custom boot is disabled
3:191  0:000  Closing log
I've tried with multiple times, taking new ACPI dumps etc. The original one is from Clover/Linux.

Any ideas/help?
Jakob

EDID: Just got brightness working, forgot to turn off Display and IGPU fixes by Clover. Still, NVDA shows up:/ whyyyy?

http://www.tonymacx86.com/yosemite-...bling-discrete-graphics-dual-gpu-laptops.html
 
Status
Not open for further replies.
Back
Top