MiniHack Posted July 23, 2014 Share Posted July 23, 2014 Okay, sorry re. last posting. Please see attached for the two different dump scenarios with HDMI connection, where HDMI is primary/Secondary. Many thanks for your help Pike. PS Let me know if the other two scenarios will help (i.e. booting from DP with DP set as primary/secondary). 2 Dumps.zip Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted July 23, 2014 Share Posted July 23, 2014 Thanks. I'll have a look later tonight. 1 Link to comment Share on other sites More sharing options...
MiniHack Posted July 23, 2014 Share Posted July 23, 2014 Cheers Pike. All appreciated. Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted July 23, 2014 Share Posted July 23, 2014 Ok so I had a look tonight. Good news, but let me start by telling you that I normally have to boot with a VGA monitor connected. This since some version of Mavericks (forgot which one it was) and this just to get by a reboot before it shows the desktop. Now I can remove the VGA connector in both 10.9.4 and 10.10 after adding this to boot.c: outb(0x3c4, 1); unsigned char sr1 = inb(0x3c5); outw(0x3c5, ((sr1 | (1<<5)) << 8)); Note that I still need to use the AppleIntelFramebufferAzul binary of DP2, but only because I haven't patched the one of DP4 yet. Tomorrow I will have another look and see if I can finish it. 2 Link to comment Share on other sites More sharing options...
wusa Posted July 24, 2014 Author Share Posted July 24, 2014 Pike R. Alpha, is there any good news with the Intel HD Graphics 4600 (Mobile Version with ID 0x04168086) ? Link to comment Share on other sites More sharing options...
wusa Posted July 25, 2014 Author Share Posted July 25, 2014 Yosemite beta is out, have anyone here tested to see if there is any support for Intel HD 4600 mobile version ? Link to comment Share on other sites More sharing options...
stingray_454 Posted July 25, 2014 Share Posted July 25, 2014 Yosemite beta is out, have anyone here tested to see if there is any support for Intel HD 4600 mobile version ? From what I've heard, the public beta is the exact same version as DP4. Didn't confirm it though. Link to comment Share on other sites More sharing options...
jsl Posted July 26, 2014 Share Posted July 26, 2014 From what I've heard, the public beta is the exact same version as DP4. Didn't confirm it though. In my Hackintosh for Asus Z87 Deluxe-Dual desktop and Asus G750JZ laptop it seems no difference between them. Both are working for desktop Intel HD4600, but no QE/CI for mobile Intel HD4600 yet. Link to comment Share on other sites More sharing options...
iCapa Posted July 27, 2014 Share Posted July 27, 2014 Did someone already got the Intel HD 3000 working? Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted July 27, 2014 Share Posted July 27, 2014 Pike R. Alpha, is there any good news with the Intel HD Graphics 4600 (Mobile Version with ID 0x04168086) ? I'm afraid not. I did port setBootPipe() from DP2 to DP4 but that didn't help. It works alright, but the problem is still there so I am going to wait for the next developer preview (no time at this moment) in the hope that something will change. Link to comment Share on other sites More sharing options...
MiniHack Posted July 28, 2014 Share Posted July 28, 2014 I'm afraid not. I did port setBootPipe() from DP2 to DP4 but that didn't help. It works alright, but the problem is still there so I am going to wait for the next developer preview (no time at this moment) in the hope that something will change. WIll that though potentially help me with my less complex issue of changing graphic port priorities? If so, is it a boot loader patch rather than an Azul binary patch - I can't really see myself patching Clover but if there is a simple binary patch to the Azul kext then I could just put that patch into the Clover config.plist. Thanks anyway for your help Pike - as always I much appreciate your efforts. Link to comment Share on other sites More sharing options...
Allsop Posted July 28, 2014 Share Posted July 28, 2014 New MacBooks coming tomorrow with a cpu refresh. (Haswell refresh?) Think we finally might get official series 9 support with the next DP/Beta. 1 Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted July 29, 2014 Share Posted July 29, 2014 WIll that though potentially help me with my less complex issue of changing graphic port priorities? If so, is it a boot loader patch rather than an Azul binary patch - I can't really see myself patching Clover but if there is a simple binary patch to the Azul kext then I could just put that patch into the Clover config.plist. Thanks anyway for your help Pike - as always I much appreciate your efforts. The patch is rather long – I replaced function setBootPipe() – and it still is doesn't work. Not for the issue with your hardware, not for the issue I am having with my hardware – though I don't expect Apple to revert the frame buffer code to that of DP2 so I will keep having a stab at it. Be it on a low priority for now. @Allsop, There is no new chipset (no series 9) in the latest MacBookPro11.N Only the CPU is being updated. Link to comment Share on other sites More sharing options...
UltraLaser Posted July 29, 2014 Share Posted July 29, 2014 and the gpu -> nvidia 750m Link to comment Share on other sites More sharing options...
wusa Posted July 29, 2014 Author Share Posted July 29, 2014 So, Pike R. Alpha, is there any hope for the Intel HD 4600 Mobile Version (0x04168086) fully support in Yosemite ? Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted July 29, 2014 Share Posted July 29, 2014 Oh absolutely. You will of course have to inject your device_id, since that is not part of the Info.plist, but it should work some time in the near future. I just need to figure out what "mmio" should be set to. After that any writable register should be at our disposal. #define PIPE_DDI_FUNC_CTL_A 0x60400 #define PIPE_DDI_FUNC_CTL_B 0x61400 #define PIPE_DDI_FUNC_CTL_C 0x62400 #define PIPE_DDI_FUNC_CTL_EDP 0x6F400 uint32_t mmio = 0xf0000000; // Needs to be initialised correctly for your setup! printf("PIPE_DDI_FUNC_CTL_A : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_A))); printf("PIPE_DDI_FUNC_CTL_B : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_)); printf("PIPE_DDI_FUNC_CTL_C : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_C))); printf("PIPE_DDI_FUNC_CTL_EDP : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_EDP))); I added this snippet to RevoBoot and got the same values as the intel_reg_dumper command line tool gave me so let the fun begin :-) WARNING: YOU CAN BLOW UP YOUR CPU IF YOU DO SOMETHING WRONG !!! Link to comment Share on other sites More sharing options...
wusa Posted July 31, 2014 Author Share Posted July 31, 2014 Oh absolutely. You will of course have to inject your device_id, since that is not part of the Info.plist, but it should work some time in the near future. I just need to figure out what "mmio" should be set to. After that any writable register should be at our disposal. #define PIPE_DDI_FUNC_CTL_A 0x60400 #define PIPE_DDI_FUNC_CTL_B 0x61400 #define PIPE_DDI_FUNC_CTL_C 0x62400 #define PIPE_DDI_FUNC_CTL_EDP 0x6F400 uint32_t mmio = 0xf0000000; // Needs to be initialised correctly for your setup! printf("PIPE_DDI_FUNC_CTL_A : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_A))); printf("PIPE_DDI_FUNC_CTL_B : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_)); printf("PIPE_DDI_FUNC_CTL_C : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_C))); printf("PIPE_DDI_FUNC_CTL_EDP : 0x%X\n", *(volatile uint32_t *)((volatile char*)(mmio + PIPE_DDI_FUNC_CTL_EDP))); I added this snippet to RevoBoot and got the same values as the intel_reg_dumper command line tool gave me so let the fun begin :-) WARNING: YOU CAN BLOW UP YOUR CPU IF YOU DO SOMETHING WRONG !!! So, Pike R. Alpha, is there any way to apply this patch in Clover ? And btw, is there a way to determine the correct mmio ? Link to comment Share on other sites More sharing options...
wusa Posted August 2, 2014 Author Share Posted August 2, 2014 Is there any good news on the QE/CI of Intel HD 4600 Mobile in Yosemite ? Link to comment Share on other sites More sharing options...
warlikewings Posted August 2, 2014 Share Posted August 2, 2014 Is there any good news on the QE/CI of Intel HD 4600 Mobile in Yosemite ?Let's keep our fingers crossed, and let's not rush pike. Patience. I'm hopeful that support for the mobile 4600 will be coming soon. 1 Link to comment Share on other sites More sharing options...
BiTRiP Posted August 2, 2014 Share Posted August 2, 2014 Well, the desktop version is still not working either. Unless you use the framebuffer from DP2 then its good. But with dp3,dp4 or public beta it just crashes at boot and you're done. Link to comment Share on other sites More sharing options...
WinstonAce Posted August 2, 2014 Share Posted August 2, 2014 Desktop version works fine here... Z97&4790k Injection with clover / ssdt (both work) 1 Link to comment Share on other sites More sharing options...
BiTRiP Posted August 2, 2014 Share Posted August 2, 2014 Weird, my 4770K crashes when loading loginwindow. I have latest Clover with default config.plist (Intel inject enabled) Do you use any other setting or files? I don't have ssdt files. Link to comment Share on other sites More sharing options...
eterea Posted August 3, 2014 Share Posted August 3, 2014 Same problems. Black Screen, or not working. My specs: intel 4750k with 4600. Link to comment Share on other sites More sharing options...
robE Posted August 3, 2014 Share Posted August 3, 2014 Desktop version works fine here... Z97&4790k Injection with clover / ssdt (both work) Can you please upload appleintelframebufferAzul.kext ? Thanks! 1 Link to comment Share on other sites More sharing options...
Pike R. Alpha Posted August 3, 2014 Share Posted August 3, 2014 So, Pike R. Alpha, is there any way to apply this patch in Clover ? And btw, is there a way to determine the correct mmio ? No patch for Clover yet. Might not even be needed. And yes. I am using this: outl(0xcf8, 0x80001010); inl(0xcfc); // (bits 38:29 = mmio) At least now we can read all registers, which by the way helped me to understand what the AppleIntelFramebufferAzul binary is doing. I'm not there yet, but I am getting close. Also. Rebooting at startup may be stopped by removing the -s -v arguments. It may not bring you to the desktop, but it stopped the reboot here. Link to comment Share on other sites More sharing options...
Recommended Posts