Contribute
Register

[GUIDE] macOS Monterey + OpenCore 0.7.6 on Z390 Aorus Elite + RX580

Thanks for your contribution, there is the possibility of updating to Monterey in Gigabyte Z490 Aorus Master with i10900k, once I update the internet stops working with the Intel I225-V chipset and it does not recognize the internal or external hdd, a chaos, I decided go back to Bigsur with Time Machine, but would like to upgrade to Monterey.

Thanks and regards
 
@Fory360
You must look for threads about Z490 Aorus Master.
For the Ethernet, see here.
 
Hello, thanks
Updating a Big Sur system to Monterey has been easy and the new system works fine. Pretty much the same setup I use with Big Sur has worked for Monterey. This is a (short) guide using OpenCore 0.7.6.

Hardware
  • Gigabyte Z390 Aorus Elite motherboard: Realtek ALC1220 audio, Intel I219V Ethernet
  • Intel i7 9700 CPU (Intel UHD Graphics 630 iGPU)
  • AMD Radeon RX580 8GB graphics card
  • Wifi and Bluetooth Fenvi FV-T919.
What works well?
  • Radeon RX580 (VDA decoder fully supported)
  • Shutdown, restart and sleep
  • Audio (ALC1220 and HDMI)
  • USB ports (USBMap.kext specific for this motherboard)
  • Airdrop, iMessage.
BIOS settings (version F10h)
  • CFG Lock: Disabled
  • CSM: Disabled
  • VT-d: Disabled
  • Fast Boot: Disabled
  • OS Type: Windows 8/10
  • Platform Power Management: Disabled
  • XHCI Hand-Off: Enabled
  • Network Stack: Disabled
  • Wake on LAN: Disabled
  • Secure Boot: Disabled
  • DVMT Pre-Allocated: 256M or higher
  • Integrated Graphics: Disabled / Enabled (according to SMBIOS).
OpenCore 0.7.6

I have used the latest OpenCore version, 0.7.6, with the same settings that I use for Big Sur. For the installation to be successful, 3 parameters related to security must be set:
  • SecureBootModel=j160 or Default in config.plist (Apple secure boot corresponds to MacPro7,1 and Default sets the same model as in SMBIOS)
  • SIP enabled (csr-active-config=00000000 in config.plist)
  • Gatekeeper enabled (sudo spctl --master-enable in Terminal).
These security options can be changed after installation as they do not appear to be necessary for Monterey to be run.

SMBIOS

SMBIOS model that works best on my Monterey system is MacPro7,1. This Mac model requires:
  • AMD RX580 dGPU as main card
  • Intel 630 iGPU disabled in BIOS
  • RestrictEvents.kext to avoid RAM misconfiguration warnings.
CPUFriend.kext

Although the CPU is well detected with MacPro's SMBIOS, my guess is that it does not run at low frequency as often as it does with iMac19.1. For this reason, I have generated a CPUFriendDataProvider.kext extension from the CPUFriendFriend command to accompany CPUFriend.kext. With these 2 kexts (CPUFriendDataProvider.kext + CPUFriend.kext) the CPU shows correct power management and frequency drops to 800 MHz at system idle.

SSDTs, drivers and tools

SSDTs:
  • SSDT-AWAC-DISABLE: to fix errors with system clock on Z390, B460, Z490 motherboards
  • SSDT-EC-USBX: fake Embedded Controller on Skylake and later, also fix USB power
  • SSDT-PLUG: power management on Haswell and newer CPUs; to configure the plugin-type=1 parameter on the first processor.
  • SSDT-PMC: native NVRAM support on systems that lack it, for example Z390 chipsets
  • SSDT-USBW: to wake from sleep with a single mouse or keyboard touch (this SSDT works with USBWakeFixup.kext) >> very likely not needed if USB device in DeviceProperties has acpi-wake-type=01.
Drivers:
  • CrScreenshotDxe.efi: Screenshots in OpenCore
  • HfsPlus.efi: to recognize HFS+ devices
  • OpenCanopy.efi: graphical picker with themes
  • OpenRuntime.efi: essential driver to run macOS.
Tools:
  • OpenShell.efi: UEFI shell to perform command line tasks from OpenCore
config.plist

Settings are generally the same as for Big Sur. Some significant details:
  • DeviceProperties> Add> PciRoot(0x0)/Pci(0x14,0x0): acpi-wake-type as data=01, to improve wake from sleep
  • Misc> Boot> PickerAttributes = 144 to enable Flavours system
  • NVRAM> 7C436110-AB2A-4BBB-A880-FE41995C9F82> boot-args: alcid=13 for audio (you can also try 11, both layout-id work fine)
  • Misc >> Security >> AllowToggleSip=True to show in the picker the ToggleSIP tool that allows to easily switch between SIP enabled and SIP disabled for the current boot.
Intel UHD 630

I prefer to use MacPro7,1 SMBIOS, it requires iGPU to be disabled in BIOS. This configuration is the one in the EFI-macpro folder.
If you don't have an external graphics card and you need to use the integrated one, you have to use the EFI-intel630 folder that has these modifications:
  • required: enable iGPU in BIOS (and put it as main card)
  • removed RestrictEvents.kext, CPUFriendDataProvider.kext and CPUFriend.kext
  • added in config.plist >> boot-args >> igfxonln=1 -disablegfxfirmware
  • added in config.plist >> DeviceProperties >> code to patch the framebuffer so that the iGPU is well detected.

  • XML:
             <key>PciRoot(0x0)/Pci(0x2,0x0)</key>
                <dict>
                    <key>AAPL,ig-platform-id</key>
                    <data>BwCbPg==</data>
                    <key>framebuffer-patch-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con0-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con1-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con2-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con0-alldata</key>
                    <data>AQAJAAAEAADHAwAA</data>
                    <key>framebuffer-con1-alldata</key>
                    <data>AgAKAAAEAADHAwAA</data>
                    <key>framebuffer-con2-alldata</key>
                    <data>AwQIAAAIAADHAwAA</data>
                    <key>framebuffer-stolenmem    </key>
                    <data>AAAwAQ==</data>
                    <key>hda-gfx</key>
                    <string>onboard-1</string>
                    <key>name</key>
                    <string>Intel UHD Graphics 630</string>
                </dict>
The config.plist file in EFI-intel630 folder is already set in this way.
Note: don't forget to rename the EFI folder from EFI-macpro or EFI-intel630 to EFI.

Installing Monterey

The process is the same for installation and for update:
  • A working EFI folder
  • Download macOS 12 from Software Update
  • Run Install macOS Monterey app
  • The update process has a phase on the Big Sur desktop, 2 reboots to boot from Macintosh HD and a third reboot booting from the target disk with Monterey.
Monterey on the go

Monterey works very well. All hardware works the same as in Big Sur. Performance of the RX580 card has not changed. Wifi and Bluetooth from the Fenvi T-919 card, Ethernet, sound, sleep, etc. work fine too.

Important!

1. Do ResetNVRAM the first time you boot a new EFI.
2. Press spacebar to show auxiliary entries in the picker.

View attachment 536232
for sharing. I tried same way but there is a problem. My usb3 are not working
Plz let me know any solution
I have i9900k +z390+ monterey
 
@AnilBhardwaj
Your motherboard is different than mine, my USB ports map doesn’t work for you. You must create your own map or get it made by any with the same motherboard.
 
Hello Great man @miliuco.

I have updated the EFI of this Post # 1 with my RX550 card.

It works but when I click everything goes jerky.
Videos are not seen with VLC

Could you tell me why?

The system detects the GPU information well...

If I use the old EFI (0.7.1) the problem is solved and everything on the monitor is fluid.

I am attaching both EFIs for comparison.

Thanks in advance.

Hello
 

Attachments

  • EFI-0.7.6.zip
    3.1 MB · Views: 58
  • EFI-old-OC 0.7.1.zip
    9.1 MB · Views: 62
Last edited:
Thank you very much, miliuco, for your guide. Although my hardware is a bit different, I was able to install Monterey via system update. The only changes I made to your EFI-macpro were to substitute RealtekRTL8111.kext for IntelMausi.kext, to get ethernet working, and to use my own values for MLB, ROM, SystemSerialNumber and SystemUUID in config.plist.

You mentioned that you used USBMap.kext, but I don't see it; I see USBPort.kext instead. I mention this because not all my ports are working as expected, and I'm not sure if I should use USBMap or hackintool to try to resolve it. I think I saw somewhere that hackintool produces USBPort.kext.

Would you be so kind as to provide a link to whatever method I should follow?

Thank you very much again for sharing your expertise.
Whay version of RealtekRTL8111.kext did you use? My ethernet not working with Monterey (working on Big Sur before update)
 
Hello! @miliuco i have the same specs the only diferrence is:
Cpu: i7-8700k
Gpu: Amd 5700xt
Os: Monterey
Opencore 0.8.7
My question is after i update to Monterey boot is very slow 3-4 minutes. Your Efi work on my sistem or i need same twicks?:)
Thank you!
 
@rmihai
My EFI must work on your system. Choice a SMBIOS and add serial numbers. Try and comment.
 
I have updated the EFI of this Post # 1 with my RX550 card.
It works but when I click everything goes jerky.
Videos are not seen with VLC
If I use the old EFI (0.7.1) the problem is solved and everything on the monitor is fluid.
Sorry @ifreddy this message of yours has been forgotten here and until today I have not realized that it was not answered.

Are you still with this issue? Have you solved it yet?
 
Updating a Big Sur system to Monterey has been easy and the new system works fine. Pretty much the same setup I use with Big Sur has worked for Monterey. This is a (short) guide using OpenCore 0.7.6.

Hardware
  • Gigabyte Z390 Aorus Elite motherboard: Realtek ALC1220 audio, Intel I219V Ethernet
  • Intel i7 9700 CPU (Intel UHD Graphics 630 iGPU)
  • AMD Radeon RX580 8GB graphics card
  • Wifi and Bluetooth Fenvi FV-T919.
What works well?
  • Radeon RX580 (VDA decoder fully supported)
  • Shutdown, restart and sleep
  • Audio (ALC1220 and HDMI)
  • USB ports (USBMap.kext specific for this motherboard)
  • Airdrop, iMessage.
BIOS settings (version F10h)
  • CFG Lock: Disabled
  • CSM: Disabled
  • VT-d: Disabled
  • Fast Boot: Disabled
  • OS Type: Windows 8/10
  • Platform Power Management: Disabled
  • XHCI Hand-Off: Enabled
  • Network Stack: Disabled
  • Wake on LAN: Disabled
  • Secure Boot: Disabled
  • DVMT Pre-Allocated: 256M or higher
  • Integrated Graphics: Disabled / Enabled (according to SMBIOS).
OpenCore 0.7.6

I have used the latest OpenCore version, 0.7.6, with the same settings that I use for Big Sur. For the installation to be successful, 3 parameters related to security must be set:
  • SecureBootModel=j160 or Default in config.plist (Apple secure boot corresponds to MacPro7,1 and Default sets the same model as in SMBIOS)
  • SIP enabled (csr-active-config=00000000 in config.plist)
  • Gatekeeper enabled (sudo spctl --master-enable in Terminal).
These security options can be changed after installation as they do not appear to be necessary for Monterey to be run.

SMBIOS

SMBIOS model that works best on my Monterey system is MacPro7,1. This Mac model requires:
  • AMD RX580 dGPU as main card
  • Intel 630 iGPU disabled in BIOS
  • RestrictEvents.kext to avoid RAM misconfiguration warnings.
CPUFriend.kext

Although the CPU is well detected with MacPro's SMBIOS, my guess is that it does not run at low frequency as often as it does with iMac19.1. For this reason, I have generated a CPUFriendDataProvider.kext extension from the CPUFriendFriend command to accompany CPUFriend.kext. With these 2 kexts (CPUFriendDataProvider.kext + CPUFriend.kext) the CPU shows correct power management and frequency drops to 800 MHz at system idle.

SSDTs, drivers and tools

SSDTs:
  • SSDT-AWAC-DISABLE: to fix errors with system clock on Z390, B460, Z490 motherboards
  • SSDT-EC-USBX: fake Embedded Controller on Skylake and later, also fix USB power
  • SSDT-PLUG: power management on Haswell and newer CPUs; to configure the plugin-type=1 parameter on the first processor.
  • SSDT-PMC: native NVRAM support on systems that lack it, for example Z390 chipsets
  • SSDT-USBW: to wake from sleep with a single mouse or keyboard touch (this SSDT works with USBWakeFixup.kext) >> very likely not needed if USB device in DeviceProperties has acpi-wake-type=01.
Drivers:
  • CrScreenshotDxe.efi: Screenshots in OpenCore
  • HfsPlus.efi: to recognize HFS+ devices
  • OpenCanopy.efi: graphical picker with themes
  • OpenRuntime.efi: essential driver to run macOS.
Tools:
  • OpenShell.efi: UEFI shell to perform command line tasks from OpenCore
config.plist

Settings are generally the same as for Big Sur. Some significant details:
  • DeviceProperties> Add> PciRoot(0x0)/Pci(0x14,0x0): acpi-wake-type as data=01, to improve wake from sleep
  • Misc> Boot> PickerAttributes = 144 to enable Flavours system
  • NVRAM> 7C436110-AB2A-4BBB-A880-FE41995C9F82> boot-args: alcid=13 for audio (you can also try 11, both layout-id work fine)
  • Misc >> Security >> AllowToggleSip=True to show in the picker the ToggleSIP tool that allows to easily switch between SIP enabled and SIP disabled for the current boot.
Intel UHD 630

I prefer to use MacPro7,1 SMBIOS, it requires iGPU to be disabled in BIOS. This configuration is the one in the EFI-macpro folder.
If you don't have an external graphics card and you need to use the integrated one, you have to use the EFI-intel630 folder that has these modifications:
  • required: enable iGPU in BIOS (and put it as main card)
  • removed RestrictEvents.kext, CPUFriendDataProvider.kext and CPUFriend.kext
  • added in config.plist >> boot-args >> igfxonln=1 -disablegfxfirmware
  • added in config.plist >> DeviceProperties >> code to patch the framebuffer so that the iGPU is well detected.

  • XML:
             <key>PciRoot(0x0)/Pci(0x2,0x0)</key>
                <dict>
                    <key>AAPL,ig-platform-id</key>
                    <data>BwCbPg==</data>
                    <key>framebuffer-patch-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con0-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con1-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con2-enable</key>
                    <data>AQAAAA==</data>
                    <key>framebuffer-con0-alldata</key>
                    <data>AQAJAAAEAADHAwAA</data>
                    <key>framebuffer-con1-alldata</key>
                    <data>AgAKAAAEAADHAwAA</data>
                    <key>framebuffer-con2-alldata</key>
                    <data>AwQIAAAIAADHAwAA</data>
                    <key>framebuffer-stolenmem    </key>
                    <data>AAAwAQ==</data>
                    <key>hda-gfx</key>
                    <string>onboard-1</string>
                    <key>name</key>
                    <string>Intel UHD Graphics 630</string>
                </dict>
The config.plist file in EFI-intel630 folder is already set in this way.
Note: don't forget to rename the EFI folder from EFI-macpro or EFI-intel630 to EFI.

Installing Monterey

The process is the same for installation and for update:
  • A working EFI folder
  • Download macOS 12 from Software Update
  • Run Install macOS Monterey app
  • The update process has a phase on the Big Sur desktop, 2 reboots to boot from Macintosh HD and a third reboot booting from the target disk with Monterey.
Monterey on the go

Monterey works very well. All hardware works the same as in Big Sur. Performance of the RX580 card has not changed. Wifi and Bluetooth from the Fenvi T-919 card, Ethernet, sound, sleep, etc. work fine too.

Important!

1. Do ResetNVRAM the first time you boot a new EFI.
2. Press spacebar to show auxiliary entries in the picker.

View attachment 536232
Good build. I wish to get AMD Radeon RX580, 8GB GPU for my upgrade macOS.
I am currently stay at High Sierra.
My Mobo is Gigabyte Z170XP-SLi, Samsung SSD 120GB, and 16GB Ram.

Can share some of your best experience?
Can my MOBO Z170XP-SLi able to upgrade for macOS Monterey with AMD Radeon RX580 GPU 8GB?
And how about Sapphire Pulse RX580 GPU 4GB, can this Sapphire Pulse RX580 is native too?

What is the different of these 2 GPU "AMD Radeon RX580 GPU 8GB vs Sapphire Pulse RX580 GPU 4GB?
Or both are same?
Thanks.
 
Back
Top