Jump to content

[GUIDE] Intel HD Graphics 5500 on OS X Yosemite 10.10.3

Intel HD Graphics 5500 Intel HD Graphics 5300 ig-platform-id Broadwell Integrated Graphics Card

  • Please log in to reply
48 replies to this topic

#1
Austere.J

Austere.J

    InsanelyMac Protégé

  • Members
  • PipPip
  • 55 posts
  • Gender:Male

After several weeks' work with @lisai9093, now it's time to post a guide. :)  

 

GUIDE: Intel HD Graphics 5500 on OS X Yosemite 10.10.3  

 

Snip20150416_7.png

 

Before we get started:

 

The basic idea to make Broadwell's integrated graphics card work does not change. If you have Intel HD Graphics 5300 or other IGPU models supported by AppleIntelBDWGraphicsFramebuffer.kext, you can try it by yourself.

 

Brief Introduction:

 

The basic idea to let Intel HD Graphics 5500 work is still injecting AAPL, ig-platform-id.

 

However, Apple raised the minimum stolen memory in the AppleIntelBDWGraphicsFramebuffer binary of OS X Yosemite 10.10.3. Kernel panic will happen if the DVMT pre-allocated memory in BIOS settings is lower than 66MB. This is not a big deal for Desktop PCs users, because one can easily change the DVMT pre-allocated memory in BIOS.

 

But this is catastrophic for laptop users, because

(1) the default value of DVMT pre-allocated memory in most laptops BIOS is 32MB.

(2) OEM will not unlock these advanced settings/menus for us.

(3) We can try to modify BIOS but cannot pass the security check during flashing modified BIOS.

 

Detailed Step-by-step guide:

 

STEP 1: Check the current DVMT pre-allocated memory size.

Open the Screen Resolution window, click the Advanced settings and check Dedicated Video Memory.

 

Snip20150416_5.png

 

After I played with changing DVMT pre-allocated memory in BIOS, the following pattern can be found.

If Dedicated Video Memory = 0MB, then DVMT pre-allocated memory in BIOS settings is 32MB.

If Dedicated Video Memory = 32MB, then DVMT pre-allocated memory in BIOS settings is 64MB.

If Dedicated Video Memory = 64MB, then DVMT pre-allocated memory in BIOS settings is 96MB.

If Dedicated Video Memory = 128MB, then DVMT pre-allocated memory in BIOS settings is 128MB.

 

TABLES: Relationship between Dedicated Video Memory detected by OS and DVMT pre-allocated memory in BIOS settings.

Snip20150416_9.png

In general, if DVMT pre-allocated memory in BIOS settings is less or equal to 96MB, the StolenMemory that could be detected by OS is (DVMT - 32) MB.

If DVMT pre-allocated memory in BIOS settings is larger or equal to 128MB, the StolenMemory that could be detected by OS is (DVMT) MB. (equal to the value of DVMT pre-allocated memory)

 

Now let's come back to our main topic, Dedicated Video Memory >=64MB (i.e. DVMT pre-allocated memory >= 96MB) will pass the assertion/kernel panic.

Note that OS X can not boot on some laptops if DVMT pre-allocated memory is >= 128MB.

Therefore, if your current DVMT pre-allocated memory size <= 64MB (i.e. Dedicated Video Memory <= 32MB), you can either choose using our patch in STEP 2.1 or changing DVMT pre-allocated setting in STEP 2.2

 

STEP 2.1: Apply the patch to pass the Stolen Memory assertion.

 

We need to patch AppleIntelBDWGraphicsFramebuffer binary file.

Find 39CF763C and replace it with 39CF773C.

 

After using this patch, in theory you don't have to change your BIOS settings. You can try to inject ig-platform-id and see what happens.

If you encounter some problems, try to modify Framebuffer data in AppleIntelBDWGraphicsFramebuffer binary.

Detailed information on Broadwell's framebuffer can be found on this page.

 

STEP 2.2: Using EFI Shell to change DVMT settings in BIOS.

 

(1) Prepare a bootable USB drive with EFI Shell

Prepare a USB stick and format it with FAT32 filesystem.

Download this EFI shell and you can find a folder named BOOT after extracting.

Copy this BOOT folder to your USB stick.

 

(2) Dump/Fetch a completed BIOS file.

You can use specific BIOS utility to save a copy of your BIOS on Desktop.

e.g. For AMI Aptio UEFI BIOS, you can use AMI BIOS Utility.

 

(3) Extract BIOS Settings from a BIOS file.

Download UEFITools from https://github.com/L...FITool/releases

Open your BIOS file with UEFITools.

Find the module labeled with Setup and extract the PE32 image section in this module as a binary file.

 

Snip20150416_2.png

 

Now, you will have a binary file on your Desktop. In my case, I name it Setup.bin.

Next, download the Universal IFR Extractor (Windows version only) from http://donovan6000.b...-extractor.html or from here: Universal IFR Extractor.exe.

 

Open the Universal IFR Extractor in Windows, open the binary you just extracted from UEFITools and click Extract to save the BIOS settings in plain text format.

Snip20150416_3.png

 

Now open the extracted setup IFR.txt and find the keyword "DVMT".

And you can find the variable representing DVMT pre-allocated memory and its values.

 

Snip20150416_4.png

 

In this case, DVMT pre-allocated memory's variable is 0x1C3. The value of 96MB is 0x3. Record these two values.

Next, restart your computer and boot from the USB drive with EFI Shell.

Here, we use setup_var command to change our BIOS settings.

syntax: setup_var address value

OK, now type the command in EFI shell.

In this case, the command is setup_var 0x1C3 0x3. (Change the value of 0x1C3 to 0x3, which means changing the DVMT to 96MB.)

After changing the DVMT pre-allocated memory, go back to Windows and double check whether your current Dedicated Video Memory is 64MB. (96 - 32 = 64MB)

STEP 3: Injecting AAPL, ig-platform-id

You can use either Clover or DSDT/SSDTs to inject AAPL, ig-platform-id.

 

If you want to use Clover, let InjectIntel = True and ig-platform-id=0x16160002.

 

If you want to use DSDT/SSDT to inject AAPL, ig-platform-id, 0x16160002 is working fine.

Then open your DSDT, find Device (GFX0) or Device (IGPU) or Name (_ADR, 0x00020000) and add the Device-Specific Method.

Method (_DSM, 4, NotSerialized)
                    {
                        If (LEqual (Arg2, Zero))
                        {
                            Return (Buffer (One)
                            {
                                0x03
                            })
                        }

                        Return (Package (0x08)
                        {
                            "device-id", 
                            Buffer (0x04)
                            {
                                0x16, 0x16, 0x00, 0x00
                            }, 

                            "AAPL,ig-platform-id", 
                            Buffer (0x04)
                            {
                                0x02, 0x00, 0x16, 0x16
                            }, 

                            "model", 
                            Buffer (0x17)
                            {
                                "Intel HD Graphics 5500"
                            }, 

                            "hda-gfx", 
                            Buffer (0x0A)
                            {
                                "onboard-1"
                            }
                        })
                    }

Place your DSDT in /EFI/Clover/ACPI/Patched/

Restart your computer and you will find Intel HD Graphics 5500 is working now.

 

Some Issues you may encounter:

(1) Garbled Screen Issue

Enable Legacy Support in your BIOS settings.

 

(2) Screen Freeze Issue (GPU hang and restart)

Using FakeSMC 5.3.820 or other 5.x.xxx version will decrease the opportunity to freeze.

(Note that please delete CPUSensors.kext from FakeSMC.kext if you get kernel panic related to CPUSensors.kext)

 

Reference and Special Thanks:

Thanks to Rehabman for his advice on garbled screen issue.

Thanks to nguyenmac for his clues on freeze issue.

Thanks to sontrg for his direction to BIOS modification.

Thanks to Google for providing information. Thanks to the-darkvoid for his QHD+ Guide on HD4600.



#2
lisai9093

lisai9093

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 230 posts
  • Gender:Male

SF
 



#3
daxuexinsheng

daxuexinsheng

    InsanelyMac Protégé

  • Members
  • Pip
  • 18 posts

Congratulations ! Thanks for your efforts.



#4
Austere.J

Austere.J

    InsanelyMac Protégé

  • Members
  • PipPip
  • 55 posts
  • Gender:Male

FIXED: Page layout issue.



#5
Allan

Allan

    V.I.P. Member

  • Supervisors
  • 11,279 posts
  • Gender:Male

Nice guide! Thanks for share  ;)



#6
avin7000

avin7000

    avi

  • Members
  • PipPipPip
  • 121 posts
  • Gender:Male

:o

 

Does this mean, I can install OS X on those Broadwell / Intel Core 5th Gen laptops!? 



#7
Allan

Allan

    V.I.P. Member

  • Supervisors
  • 11,279 posts
  • Gender:Male

:o

 

Does this mean, I can install OS X on those Broadwell / Intel Core 5th Gen laptops!? 

 

Yes!  :)



#8
avin7000

avin7000

    avi

  • Members
  • PipPipPip
  • 121 posts
  • Gender:Male

Yes!  :)

Great!!! I have been waiting to upgrade from my old setup, now since this is working, I can finally do it. 

 

How often is screen freeze issues?



#9
Allan

Allan

    V.I.P. Member

  • Supervisors
  • 11,279 posts
  • Gender:Male

How often is screen freeze issues?

 

I don't know. But for decrease this issue, use FakeSMC 5.xxx



#10
Mirone

Mirone

    InsanelyMacaholic

  • Retired
  • 3,585 posts
  • Gender:Male
  • Location:Brazil

You did a good job!



#11
ryman

ryman

    InsanelyMac Protégé

  • Members
  • PipPip
  • 66 posts
  • Gender:Male
The patch in grub does not work for me. I got the following message:

offset 0x18c: is 0x01
setting offset 0x18c to 0x03
error: can't set variable using EFI (error: 0x000000000000001a).

Yoga 2 Pro - i7 - HD4400

Thanks in advance!

#12
emueller

emueller

    InsanelyMac Protégé

  • Members
  • Pip
  • 5 posts

The patch in grub does not work for me. I got the following message:

offset 0x18c: is 0x01
setting offset 0x18c to 0x03
error: can't set variable using EFI (error: 0x000000000000001a).

Yoga 2 Pro - i7 - HD4400

Thanks in advance!

 

Have a look at:

http://www.insanelym...yoga +pro +qhd+

 

You may have to revert your bios to the attached version.



#13
xzones2015

xzones2015

    InsanelyMac Protégé

  • Members
  • Pip
  • 5 posts

hei what is the tool for dumping ami bios



#14
Jake Lo

Jake Lo

    InsanelyMac Protégé

  • Members
  • PipPip
  • 77 posts

Try AMI Flash Utility or Universal BIOS Backup ToolKit



#15
henser paredes

henser paredes

    InsanelyMac Protégé

  • Members
  • PipPip
  • 65 posts
  • Gender:Male
  • Location:Barquisimeto
  • Interests:OSX

Hello there i have recently bought a  Dell inspiron 15 3000  Model  3543 
 
it has a  
 
Core i3 Broadwell  5005U @ 2.0 Ghz  Cpu
 
and the graphics gpu are Intel HD 5500 Graphics 
 
 
i attach 2 images to make it clear 
 
21044766642_8bf2f9a76f_c.jpg
 
 
and a capture of my dedicated video memory

 

 

21044803842_15376fc4a7_o.png

 

 

so i need help i read the tutorial and says that if i have 128  i just need to edit  and use the first step  and  2.1 Only? or i have to  do all the steps and modifying my bios?

 

 

i read that this issue is fixed in el capitan,  may i know if i just  need to wait until the release of the  os, or it just el capitan fixes the freezes of the igpu?

 

i am a little bit confused and i will be so grateful if you can help me?

 

 

Thanks in Advance, Regards Henser Paredes



#16
midi ッ

midi ッ

    InsanelyMac Legend

  • Members
  • PipPipPipPipPipPipPip
  • 878 posts
  • Gender:Male
  • Location:Earth

Try to boot it at first, had a freeze? try option 2.1, if not, try 2.2.

JUST TRY!



#17
henser paredes

henser paredes

    InsanelyMac Protégé

  • Members
  • PipPip
  • 65 posts
  • Gender:Male
  • Location:Barquisimeto
  • Interests:OSX

Okay i  have tried without this tutorial, but  the installer doesn't boot, so i will follow the steps and try,  may i know where to download 10.10.3 since i only have 10.10 on my mac app store ?



#18
Slice

Slice

    InsanelyMac V.I.P.

  • Local Moderators
  • 6,017 posts
  • Gender:Male
  • Location:Moscow

Looking at these dumps
http://www.insanelym...atform-id-info/
I have a doubt that 
ig-platform-id=0x16160002

can be used in 10.10.5. The value is unknown for Yosemite.



#19
henser paredes

henser paredes

    InsanelyMac Protégé

  • Members
  • PipPip
  • 65 posts
  • Gender:Male
  • Location:Barquisimeto
  • Interests:OSX

hello again, may i know wich app to use to  Patch binary file? text edit or some other app to replace   (Find 39CF763C and replace it with 39CF773C.)



#20
Jake Lo

Jake Lo

    InsanelyMac Protégé

  • Members
  • PipPip
  • 77 posts

Looking at these dumps
http://www.insanelym...atform-id-info/
I have a doubt that 
ig-platform-id=0x16160002

can be used in 10.10.5. The value is unknown for Yosemite.

that link refers to Haswell HD 4400/4600, not Broadwell HD5500

 

 

hello again, may i know wich app to use to  Patch binary file? text edit or some other app to replace   (Find 39CF763C and replace it with 39CF773C.)

Try Hexfiend or 0xED







Also tagged with one or more of these keywords: Intel HD Graphics 5500, Intel HD Graphics 5300, ig-platform-id, Broadwell, Integrated Graphics Card


0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

© 2016 InsanelyMac  |   News  |   Forum  |   Downloads  |   OSx86 Wiki  |   Mac Netbook  |   PHP hosting by CatN  |   Designed by Ed Gain  |   Logo by irfan  |   Privacy Policy