Contribute
Register

KP with my config.plist for the 530 integrated GPU

Status
Not open for further replies.
Joined
Oct 16, 2016
Messages
28
I am having issues with getting acceleration working with the 530 card. My build is almost identical to PastryChef's Golden Skylake Build except for the memory and (current) lack of discrete video card. I have tried adding two different AddProperties blocks and both allow the machine to boot fine but they don't fix the graphics issue by themselves. The problem is when I add the ig-platform-id block. I have tried values of 0x19120000 and 0x191B0000 with both of these AddProperties blocks, and all 4 combinations cause a kernel panic. Using 0a206080 as a value doesn't cause a kernel panic (yay) but it also doesn't fix the screen flickering (aww). I set the iGPU to 512mb which removed a black bar that I had been seeing at the bottom of the screen but the flickering persists.

I am attaching a currently working config.plist without acceleration and my latest attempt with the AddProperties and ig-platform-id added which is giving me a kernel panic. Thanks for your help!

AddProperties Trial 1:
Code:
<key>Devices</key>
<dict>
    <key>AddProperties</key>
    <array>
        <dict>
            <key>Device</key>
            <string>IntelGFX</string>
            <key>Key</key>
            <string>AAPL,GfxYTile</string>
            <key>Value</key>
            <data>
            AQAAAA==
            </data>
        </dict>
    </array>
</dict>

AddPropertiesTrial 2:
Code:
<key>Devices</key>
    <dict>
        <key>AddProperties</key>
        <array>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL,Gfx324</string>
                <key>Value</key>
                <data>
                AQAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL,GfxYTile</string>
                <key>Value</key>
                <data>
                AQAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL00,PanelPowerUp</string>
                <key>Value</key>
                <data>
                MAAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL00,PanelPowerOn</string>
                <key>Value</key>
                <data>
                GQEAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL00,PanelPowerOff</string>
                <key>Value</key>
                <data>
                EQAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL00,PanelPowerDown</string>
                <key>Value</key>
                <data>
                PAAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>AAPL00,PanelCycleDelay</string>
                <key>Value</key>
                <data>
                +gAAAA==
                </data>
            </dict>
            <dict>
                <key>Comment</key>
                <string>Skylake glitch fix © Apple</string>
                <key>Device</key>
                <string>IntelGFX</string>
                <key>Key</key>
                <string>device-colors</string>
                <key>Value</key>
                <data>
                AAIAAKCdnQAAAAAAAAAAAA==
                </data>
            </dict>
        </array>
    </dict>
 

Attachments

  • config-noKernelPanicNoAcceleration.plist
    6.6 KB · Views: 235
  • config-withKernelPanic.plist
    8.8 KB · Views: 236
Last edited:
Status
Not open for further replies.
Back
Top