Cyberdevs Posted June 7, 2017 Share Posted June 7, 2017 Thank you! You're Welcome Link to comment Share on other sites More sharing options...
Ciro82 Posted June 7, 2017 Share Posted June 7, 2017 Thanks for clover 4081. RX480 works out of the box in high Sierra, no kext, no modifications necessary You still need an helper card or iGpu primary? Link to comment Share on other sites More sharing options...
Cyberdevs Posted June 7, 2017 Share Posted June 7, 2017 You still need an helper card or iGpu primary? I believe so! unless you use a modified ROM Link to comment Share on other sites More sharing options...
asdesoso Posted June 7, 2017 Share Posted June 7, 2017 How can I enable audio via AppleHDA on ALC892? Thanks for your attention. Cheers. Link to comment Share on other sites More sharing options...
Helipilot2 Posted June 7, 2017 Share Posted June 7, 2017 You still need an helper card or iGpu primary? Yep IGPU primary is still necessary Link to comment Share on other sites More sharing options...
Kynyo Posted June 7, 2017 Share Posted June 7, 2017 Did someone managed to solve AppleACPI error on Haswell with Z87? Still not able to boot. Link to comment Share on other sites More sharing options...
Dedox Posted June 7, 2017 Share Posted June 7, 2017 Did someone managed to solve AppleACPI error on Haswell with Z87? Still not able to boot. The end of our Motherboard + CPU? We have already lost audio (i have to use a USB adapter), let's hope we don't have to change our entire motherboard+cpu+ram! Link to comment Share on other sites More sharing options...
Kynyo Posted June 7, 2017 Share Posted June 7, 2017 I hope not! Its still a great motherboard with 16MB BIOS chip. Audio its still working using AppleALC alongside Lilu. Link to comment Share on other sites More sharing options...
Guest ricoc90 Posted June 7, 2017 Share Posted June 7, 2017 How can you use nvidia web? Or you update directly from Sierra? I'm not using Nvidia's web drivers, since there ain't any for 10.13. The GT-710 works OOB Link to comment Share on other sites More sharing options...
MacPato Posted June 7, 2017 Share Posted June 7, 2017 my 750 GTX is working OOB, needed Webdrivers for 10.12, so this is good news! 1 Link to comment Share on other sites More sharing options...
GIEBELWALD Posted June 7, 2017 Share Posted June 7, 2017 I think it's just wait. Personally click on install macos an continue then open terminal and do diskutil list for 2 or 3 times because I saw that requires much time to appear all partitions and spontaneously opened install macos then I quit install macos and open disk utility and no more loading disks stuck. This is kind of working for me. With Terminal open and some "diskutil list" I am able to open the "Disk Utility". Also I can open "Install macOS". In "Disk Utility", after a 5+ minutes I can see my Harddisk. But when I try to Erase that Disk nothing happens. It's very slow at that point. In "install macOS" the Disk appears, but is grayed out. I use Clover r4081 with afps.efi inside UEFI64 folder. CPU is a Devils Canyon on GA-Z97-D3H. Any Ideas? Link to comment Share on other sites More sharing options...
cecekpawon Posted June 7, 2017 Share Posted June 7, 2017 Ozmosis users please share your experience here http://www.insanelymac.com/forum/topic/291655-ozmosis/page-235?do=findComment&comment=2437535 Link to comment Share on other sites More sharing options...
Matthew82 Posted June 7, 2017 Share Posted June 7, 2017 Hi, I don't know whether this is somewhat off-topic, if so, feel free to contact me and delete the post. As for XCPM for unsupported CPUs patches of 10.13, please try this one: 1) Patch for _cpuid_set_info: The disassembled code looks like this: ffffff80003a1326 8a 05 21 5d 75 00 movb 0x755d21(%rip), %al ffffff80003a132c 04 72 addb $0x72, %al ffffff80003a132e 3c d0 cmpb $-0x30, %al ffffff80003a1330 77 50 ja 0xffffff80003a1382 Alright, so that add is what we want to patch, and it's only needed for Broadwell-E CPUs, the patch will be: 5d 75 00 04 72 3c d0 77 50 0f b6 c0 to 5d 75 00 04 6a 3c d0 77 50 0f b6 c0 2) Patch for _xcpm_bootstrap: The disassembled code looks like this: ffffff80003d08c3 89 d8 movl %ebx, %eax ffffff80003d08c5 04 c4 addb $-0x3c, %al ffffff80003d08c7 3c 22 cmpb $0x22, %al ffffff80003d08c9 77 22 ja 0xffffff80003d08ed And the patch will be: 89 d8 04 c4 3c 22 77 22 to 89 d8 04 xx 3c 22 77 22 Note: The xx is your exact platform CPUID, for example, the default one is 0x3C and I want it to be Ivy Bridge which is 0x3A, and the desired patch is: 89 d8 04 c4 3c 22 77 22 to 89 d8 04 c6 3c 22 77 22 3) Instant reboot fix Look at these ones: ffffff80003d107e 48 8d 3d 9b e1 65 00 leaq _xcpm_pkg_scope_msrs(%rip), %rdi ffffff80003d1085 be 07 00 00 00 movl $0x7, %esi ffffff80003d108a 31 d2 xorl %edx, %edx ffffff80003d108c e8 8f fc ff ff callq 0xffffff80003d0d20 ffffff80003d1091 83 fb 00 cmpl $0x0, %ebx ffffff80003d1094 74 05 je 0xffffff80003d109b ffffff80003d1096 45 20 e5 andb %r12b, %r13b ffffff80003d1099 74 13 je 0xffffff80003d10ae ffffff80003d109b 48 8d 3d ce e2 65 00 leaq _xcpm_core_scope_msrs(%rip), %rdi ffffff80003d10a2 be 03 00 00 00 movl $0x3, %esi ffffff80003d10a7 31 d2 xorl %edx, %edx ffffff80003d10a9 e8 72 fc ff ff callq 0xffffff80003d0d20 ffffff80003d10ae 48 8d 3d 4b e3 65 00 leaq _xcpm_SMT_scope_msrs(%rip), %rdi ffffff80003d10b5 be 0b 00 00 00 movl $0xb, %esi ffffff80003d10ba 31 d2 xorl %edx, %edx ffffff80003d10bc e8 5f fc ff ff callq 0xffffff80003d0d20 Alright, so the patches will be: # _xcpm_SMT_scope_msrs be 0b 00 00 00 5d e9 08 00 00 00 -> be 0b 00 00 00 5d c3 90 90 90 90 and be 0b 00 00 00 31 d2 e8 5f fc ff ff -> be 0b 00 00 00 31 d2 90 90 90 90 90 # _xcpm_core_scope_msrs be 03 00 00 00 31 d2 e8 72 fc ff ff -> be 03 00 00 00 31 d2 90 90 90 90 90 # _xcpm_pkg_scope_msrs be 07 00 00 00 31 d2 e8 8f fc ff ff -> be 07 00 00 00 31 d2 90 90 90 90 90 And if you want to disable the calls/jumps entirely, you should ret this offset: ffffff80003d0d20 55 pushq %rbp // Change this '55' to 'c3' The patch is: BE 0B 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 55 48 89 E5 41 57 -> BE 0B 00 00 00 5D E9 08 00 00 00 0F 1F 84 00 00 00 00 00 C3 48 89 E5 41 57 PMheart Can you convert this patch for 6850k for New Sierra? 10.12 Broadwell-E CPUID Patch 83C0E9 > 83C0E1 10.12 xcpm_bootstrap 83C3C483 FB22 > 83C3BC83 FB22 (wrsmr fix to get CPU max) © okrasit 89D8C1E0 08B99901 > B8003000 00B99901 And for NVM disk external icon fix external for 12.3 4885C074 07808B08 01000010 > 90909090 90808B08 01000010 Everything is working very good, stable. Cpu is working very good on idle mode and in benchmark mode Biut XCMP not working But X86PlatformPlugin is loading together with AICP AppleIntelInfo.kext v2.0 Copyright © 2012-2016 Pike R. Alpha. All rights reserved enableHWP................................: 0 Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 0 logCStates...............................: 1 logIPGStyle..............................: 1 InitialTSC...............................: 0x9951aa7158d (292 MHz) MWAIT C-States...........................: 8480 Processor Brandstring....................: Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz Processor Signature..................... : 0x406F1 ------------------------------------------ - Family............................... : 6 - Stepping............................. : 1 - Model................................ : 0x4F (79) Model Specific Registers (MSRs) ------------------------------------------ MSR_CORE_THREAD_COUNT............(0x35) : 0x24 ------------------------------------------ - Core Count........................... : 6 - Thread Count......................... : 12 MSR_PLATFORM_INFO................(0xCE) : 0x20080C3BF3812400 ------------------------------------------ - Maximum Non-Turbo Ratio.............. : 0x24 (3600 MHz) - Ratio Limit for Turbo Mode........... : 1 (programmable) - TDP Limit for Turbo Mode............. : 1 (programmable) - Low Power Mode Support............... : 1 (LPM supported) - Number of ConfigTDP Levels........... : 1 (additional TDP level(s) available) - Maximum Efficiency Ratio............. : 12 - Minimum Operating Ratio.............. : 8 MSR_PMG_CST_CONFIG_CONTROL.......(0xE2) : 0x403 ------------------------------------------ - I/O MWAIT Redirection Enable......... : 1 (enabled, IO read of MSR(0xE4) mapped to MWAIT) - CFG Lock............................. : 0 (MSR not locked) - C3 State Auto Demotion............... : 0 (disabled/unsupported) - C1 State Auto Demotion............... : 0 (disabled/unsupported) - C3 State Undemotion.................. : 0 (disabled/unsupported) - C1 State Undemotion.................. : 0 (disabled/unsupported) - Package C-State Auto Demotion........ : 0 (disabled/unsupported) - Package C-State Undemotion........... : 0 (disabled/unsupported) MSR_PMG_IO_CAPTURE_BASE..........(0xE4) : 0x10414 ------------------------------------------ - LVL_2 Base Address................... : 0x414 - C-state Range........................ : 1 (C6 is the max C-State to include) IA32_MPERF.......................(0xE7) : 0xAFFBD282F5 IA32_APERF.......................(0xE8) : 0xA8EF404238 MSR_0x150........................(0x150) : 0x0 MSR_FLEX_RATIO...................(0x194) : 0xE0000 ------------------------------------------ MSR_IA32_PERF_STATUS.............(0x198) : 0x2DA500002C00 ------------------------------------------ - Current Performance State Value...... : 0x2C00 (4400 MHz) MSR_IA32_PERF_CONTROL............(0x199) : 0x2C00 ------------------------------------------ - Target performance State Value....... : 0x2C00 (4400 MHz) - Intel Dynamic Acceleration........... : 0 (IDA engaged) IA32_CLOCK_MODULATION............(0x19A) : 0x0 IA32_THERM_INTERRUPT.............(0x19B) : 0x0 IA32_THERM_STATUS................(0x19C) : 0x88380000 ------------------------------------------ - Thermal Status....................... : 0 - Thermal Log.......................... : 0 - PROCHOT # or FORCEPR# event.......... : 0 - PROCHOT # or FORCEPR# log............ : 0 - Critical Temperature Status.......... : 0 - Critical Temperature log............. : 0 - Thermal Threshold #1 Status.......... : 0 - Thermal Threshold #1 log............. : 0 - Thermal Threshold #2 Status.......... : 0 - Thermal Threshold #2 log............. : 0 - Power Limitation Status.............. : 0 - Power Limitation log................. : 0 - Current Limit Status................. : 0 - Current Limit log.................... : 0 - Cross Domain Limit Status............ : 0 - Cross Domain Limit log............... : 0 - Digital Readout...................... : 56 - Resolution in Degrees Celsius........ : 1 - Reading Valid........................ : 1 (valid) MSR_THERM2_CTL...................(0x19D) : 0x0 IA32_MISC_ENABLES................(0x1A0) : 0x850089 ------------------------------------------ - Fast-Strings......................... : 1 (enabled) - FOPCODE compatibility mode Enable.... : 0 - Automatic Thermal Control Circuit.... : 1 (enabled) - Split-lock Disable................... : 0 - Performance Monitoring............... : 1 (available) - Bus Lock On Cache Line Splits Disable : 0 - Hardware prefetch Disable............ : 0 - Processor Event Based Sampling....... : 0 (PEBS supported) - GV1/2 legacy Enable.................. : 0 - Enhanced Intel SpeedStep Technology.. : 1 (enabled) - MONITOR FSM.......................... : 1 (MONITOR/MWAIT supported) - Adjacent sector prefetch Disable..... : 0 - CFG Lock............................. : 0 (MSR not locked) - xTPR Message Disable................. : 1 (disabled) MSR_TEMPERATURE_TARGET...........(0x1A2) : 0x640A00 ------------------------------------------ - Turbo Attenuation Units.............. : 0 - Temperature Target................... : 100 - TCC Activation Offset................ : 0 MSR_MISC_PWR_MGMT................(0x1AA) : 0x402000 ------------------------------------------ - EIST Hardware Coordination........... : 0 (hardware coordination enabled) - Energy/Performance Bias support...... : 1 - Energy/Performance Bias.............. : 0 (disabled/MSR not visible to software) - Thermal Interrupt Coordination Enable : 1 (thermal interrupt routed to all cores) MSR_TURBO_RATIO_LIMIT............(0x1AD) : 0x25252C2C2C2C2C2C ------------------------------------------ - Maximum Ratio Limit for C01.......... : 2C (4400 MHz) - Maximum Ratio Limit for C02.......... : 2C (4400 MHz) - Maximum Ratio Limit for C03.......... : 2C (4400 MHz) - Maximum Ratio Limit for C04.......... : 2C (4400 MHz) - Maximum Ratio Limit for C05.......... : 2C (4400 MHz) - Maximum Ratio Limit for C06.......... : 2C (4400 MHz) IA32_ENERGY_PERF_BIAS............(0x1B0) : 0x0 MSR_POWER_CTL....................(0x1FC) : 0x2904005B ------------------------------------------ - Bi-Directional Processor Hot..........: 1 (enabled) - C1E Enable............................: 1 (enabled) MSR_RAPL_POWER_UNIT..............(0x606) : 0xA0E03 ------------------------------------------ - Power Units.......................... : 3 (1/8 Watt) - Energy Status Units.................. : 14 (61 micro-Joules) - Time Units .......................... : 10 (976.6 micro-Seconds) MSR_PKG_POWER_LIMIT..............(0x610) : 0x7FFF80015FFF8 ------------------------------------------ - Package Power Limit #1............... : 4095 Watt - Enable Power Limit #1................ : 1 (enabled) - Package Clamping Limitation #1....... : 1 (allow going below OS-requested P/T state during Time Window for Power Limit #1) - Time Window for Power Limit #1....... : 10 (2560 milli-Seconds) - Package Power Limit #2............... : 4095 Watt - Enable Power Limit #2................ : 1 (enabled) - Package Clamping Limitation #2....... : 1 (allow going below OS-requested P/T state setting Time Window for Power Limit #2) - Time Window for Power Limit #2....... : 3 (20 milli-Seconds) - Lock................................. : 0 (MSR not locked) MSR_PKG_ENERGY_STATUS............(0x611) : 0x502C8C ------------------------------------------ - Total Energy Consumed................ : 320 Joules (Watt = Joules / seconds) MSR_PKG_POWER_INFO...............(0x614) : 0x1700460 ------------------------------------------ - Thermal Spec Power................... : 140 Watt - Minimum Power........................ : 0 - Maximum Power........................ : 0 - Maximum Time Window.................. : 0 MSR_PP0_POWER_LIMIT..............(0x638) : 0x0 MSR_PP0_ENERGY_STATUS............(0x639) : 0x0 MSR_TURBO_ACTIVATION_RATIO.......(0x64C) : 0x0 MSR_PKGC3_IRTL...................(0x60a) : 0x0 MSR_PKGC6_IRTL...................(0x60b) : 0x0 MSR_PKG_C2_RESIDENCY.............(0x60d) : 0x0 MSR_PKG_C3_RESIDENCY.............(0x3f8) : 0x0 MSR_PKG_C6_RESIDENCY.............(0x3f9) : 0x0 IA32_TSC_DEADLINE................(0x6E0) : 0x995215DDD4B CPU Ratio Info: ------------------------------------------ Base Clock Frequency (BLCK)............. : 100 MHz Maximum Efficiency Ratio/Frequency.......: 12 (1200 MHz) Maximum non-Turbo Ratio/Frequency........: 36 (3600 MHz) Maximum Turbo Ratio/Frequency............: 44 (4400 MHz) P-State ratio * 100 = Frequency in MHz ------------------------------------------ CPU P-States [ (12) 38 44 ] CPU P-States [ (12) 34 38 44 ] CPU P-States [ (12) 34 37 38 44 ] CPU P-States [ (12) 14 34 37 38 44 ] CPU P-States [ (12) 14 34 37 38 41 44 ] CPU P-States [ (12) 14 27 34 37 38 41 44 ] CPU P-States [ (12) 14 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 21 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 17 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 16 17 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 16 17 18 20 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 15 16 17 18 20 21 25 26 27 34 37 38 41 44 ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 25 26 27 34 37 38 41 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 (24) 25 26 27 34 37 38 41 44 ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 41 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 41 42 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 40 41 42 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 40 41 42 43 (44) ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 41 42 43 44 ] ThankYou for your help edit: I made change in patch: 89d804c4 3c227722 > 89d804c3 3c227722 (C3) and XCMP working Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 7, 2017 Share Posted June 7, 2017 For audio AppleALC is working fine on my laptop for ALC269. Just add -alcbeta and -lilubeta to boot args. Does anyone else with a PS2 trackpad have a blank Trackpad prefpane? It the same as with early Sierra, a fixed VoodooPS2Trackpad is needed. Link to comment Share on other sites More sharing options...
wern apfel Posted June 7, 2017 Share Posted June 7, 2017 Did someone managed to solve AppleACPI error on Haswell with Z87? Still not able to boot. You can try to drop MATS, that solves the panic for me. For those who can't bypass the Firmware check, open the InstallESD.dmg @Sierra and install the Core.pkg from the Packages folder to your desired drive on a free partition, after it is done copy the boot.efi from BaseSystem.dmg /System/Library/CoreServices to the drive you've installed HighSierra to /System/Library/CoreServices and reboot. After successful start you can install your preferred language. 4 Link to comment Share on other sites More sharing options...
codelaie Posted June 7, 2017 Share Posted June 7, 2017 (edited) You can try to drop MATS, that solves the panic for me. tables_dropping.png Wow, thanks a lot! It's working for me on my i7-4790 and I'm currently installing it on a AFPS drive. Will update when it was successful EDIT: Installation successful, boot from AFPS successful, no ACPI panic. Edited June 7, 2017 by adfod Link to comment Share on other sites More sharing options...
ammoune78 Posted June 7, 2017 Share Posted June 7, 2017 Remove installation files and try again where's the path for the installation files that can be removed? Link to comment Share on other sites More sharing options...
Guest ricoc90 Posted June 7, 2017 Share Posted June 7, 2017 where's the path for the installation files that can be removed? You need to remove the installation files that the installer wrote to your install destination. Link to comment Share on other sites More sharing options...
macq Posted June 7, 2017 Share Posted June 7, 2017 hi ,I was able to install on an external usb drive from the macappstore installer using the latest clover 4081, installer took a lot of time specially towards the end with 1-2 min remaining (looked like hung up), but then finished, booted to desktop, with similar problems like Sierra, trackpad preference empty, no wi fi , module not recognised. etc. Strange thing is that I can't make a usb installer from within Sierra, it just ends up putting the installer on the usb but that is not bootable. can some one help me with this, Also is the wi fi module working for anyone on laptop. Thanks. specs in signature PS: can e we have apfs on standard hard disk using the driver in clover/uefi or is it strictly for ssd. Link to comment Share on other sites More sharing options...
PMheart Posted June 7, 2017 Share Posted June 7, 2017 PMheart Can you convert this patch for 6850k for New Sierra? 10.12 Broadwell-E CPUID Patch 83C0E9 > 83C0E1 10.12 xcpm_bootstrap 83C3C483 FB22 > 83C3BC83 FB22 (wrsmr fix to get CPU max) © okrasit 89D8C1E0 08B99901 > B8003000 00B99901 And for NVM disk external icon fix external for 12.3 4885C074 07808B08 01000010 > 90909090 90808B08 01000010 Everything is working very good, stable. Cpu is working very good on idle mode and in benchmark mode Zrzut ekranu 2017-06-07 o 13.57.37.png Zrzut ekranu 2017-06-07 o 13.58.45.png Biut XCMP not working Zrzut ekranu 2017-06-07 o 13.13.24.png But X86PlatformPlugin is loading together with AICP Zrzut ekranu 2017-06-07 o 13.55.22.pngZrzut ekranu 2017-06-07 o 13.55.11.png AppleIntelInfo.kext v2.0 Copyright © 2012-2016 Pike R. Alpha. All rights reserved enableHWP................................: 0 Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 0 logCStates...............................: 1 logIPGStyle..............................: 1 InitialTSC...............................: 0x9951aa7158d (292 MHz) MWAIT C-States...........................: 8480 Processor Brandstring....................: Intel(R) Core(TM) i7-6850K CPU @ 3.60GHz Processor Signature..................... : 0x406F1 ------------------------------------------ - Family............................... : 6 - Stepping............................. : 1 - Model................................ : 0x4F (79) Model Specific Registers (MSRs) ------------------------------------------ MSR_CORE_THREAD_COUNT............(0x35) : 0x24 ------------------------------------------ - Core Count........................... : 6 - Thread Count......................... : 12 MSR_PLATFORM_INFO................(0xCE) : 0x20080C3BF3812400 ------------------------------------------ - Maximum Non-Turbo Ratio.............. : 0x24 (3600 MHz) - Ratio Limit for Turbo Mode........... : 1 (programmable) - TDP Limit for Turbo Mode............. : 1 (programmable) - Low Power Mode Support............... : 1 (LPM supported) - Number of ConfigTDP Levels........... : 1 (additional TDP level(s) available) - Maximum Efficiency Ratio............. : 12 - Minimum Operating Ratio.............. : 8 MSR_PMG_CST_CONFIG_CONTROL.......(0xE2) : 0x403 ------------------------------------------ - I/O MWAIT Redirection Enable......... : 1 (enabled, IO read of MSR(0xE4) mapped to MWAIT) - CFG Lock............................. : 0 (MSR not locked) - C3 State Auto Demotion............... : 0 (disabled/unsupported) - C1 State Auto Demotion............... : 0 (disabled/unsupported) - C3 State Undemotion.................. : 0 (disabled/unsupported) - C1 State Undemotion.................. : 0 (disabled/unsupported) - Package C-State Auto Demotion........ : 0 (disabled/unsupported) - Package C-State Undemotion........... : 0 (disabled/unsupported) MSR_PMG_IO_CAPTURE_BASE..........(0xE4) : 0x10414 ------------------------------------------ - LVL_2 Base Address................... : 0x414 - C-state Range........................ : 1 (C6 is the max C-State to include) IA32_MPERF.......................(0xE7) : 0xAFFBD282F5 IA32_APERF.......................(0xE8) : 0xA8EF404238 MSR_0x150........................(0x150) : 0x0 MSR_FLEX_RATIO...................(0x194) : 0xE0000 ------------------------------------------ MSR_IA32_PERF_STATUS.............(0x198) : 0x2DA500002C00 ------------------------------------------ - Current Performance State Value...... : 0x2C00 (4400 MHz) MSR_IA32_PERF_CONTROL............(0x199) : 0x2C00 ------------------------------------------ - Target performance State Value....... : 0x2C00 (4400 MHz) - Intel Dynamic Acceleration........... : 0 (IDA engaged) IA32_CLOCK_MODULATION............(0x19A) : 0x0 IA32_THERM_INTERRUPT.............(0x19B) : 0x0 IA32_THERM_STATUS................(0x19C) : 0x88380000 ------------------------------------------ - Thermal Status....................... : 0 - Thermal Log.......................... : 0 - PROCHOT # or FORCEPR# event.......... : 0 - PROCHOT # or FORCEPR# log............ : 0 - Critical Temperature Status.......... : 0 - Critical Temperature log............. : 0 - Thermal Threshold #1 Status.......... : 0 - Thermal Threshold #1 log............. : 0 - Thermal Threshold #2 Status.......... : 0 - Thermal Threshold #2 log............. : 0 - Power Limitation Status.............. : 0 - Power Limitation log................. : 0 - Current Limit Status................. : 0 - Current Limit log.................... : 0 - Cross Domain Limit Status............ : 0 - Cross Domain Limit log............... : 0 - Digital Readout...................... : 56 - Resolution in Degrees Celsius........ : 1 - Reading Valid........................ : 1 (valid) MSR_THERM2_CTL...................(0x19D) : 0x0 IA32_MISC_ENABLES................(0x1A0) : 0x850089 ------------------------------------------ - Fast-Strings......................... : 1 (enabled) - FOPCODE compatibility mode Enable.... : 0 - Automatic Thermal Control Circuit.... : 1 (enabled) - Split-lock Disable................... : 0 - Performance Monitoring............... : 1 (available) - Bus Lock On Cache Line Splits Disable : 0 - Hardware prefetch Disable............ : 0 - Processor Event Based Sampling....... : 0 (PEBS supported) - GV1/2 legacy Enable.................. : 0 - Enhanced Intel SpeedStep Technology.. : 1 (enabled) - MONITOR FSM.......................... : 1 (MONITOR/MWAIT supported) - Adjacent sector prefetch Disable..... : 0 - CFG Lock............................. : 0 (MSR not locked) - xTPR Message Disable................. : 1 (disabled) MSR_TEMPERATURE_TARGET...........(0x1A2) : 0x640A00 ------------------------------------------ - Turbo Attenuation Units.............. : 0 - Temperature Target................... : 100 - TCC Activation Offset................ : 0 MSR_MISC_PWR_MGMT................(0x1AA) : 0x402000 ------------------------------------------ - EIST Hardware Coordination........... : 0 (hardware coordination enabled) - Energy/Performance Bias support...... : 1 - Energy/Performance Bias.............. : 0 (disabled/MSR not visible to software) - Thermal Interrupt Coordination Enable : 1 (thermal interrupt routed to all cores) MSR_TURBO_RATIO_LIMIT............(0x1AD) : 0x25252C2C2C2C2C2C ------------------------------------------ - Maximum Ratio Limit for C01.......... : 2C (4400 MHz) - Maximum Ratio Limit for C02.......... : 2C (4400 MHz) - Maximum Ratio Limit for C03.......... : 2C (4400 MHz) - Maximum Ratio Limit for C04.......... : 2C (4400 MHz) - Maximum Ratio Limit for C05.......... : 2C (4400 MHz) - Maximum Ratio Limit for C06.......... : 2C (4400 MHz) IA32_ENERGY_PERF_BIAS............(0x1B0) : 0x0 MSR_POWER_CTL....................(0x1FC) : 0x2904005B ------------------------------------------ - Bi-Directional Processor Hot..........: 1 (enabled) - C1E Enable............................: 1 (enabled) MSR_RAPL_POWER_UNIT..............(0x606) : 0xA0E03 ------------------------------------------ - Power Units.......................... : 3 (1/8 Watt) - Energy Status Units.................. : 14 (61 micro-Joules) - Time Units .......................... : 10 (976.6 micro-Seconds) MSR_PKG_POWER_LIMIT..............(0x610) : 0x7FFF80015FFF8 ------------------------------------------ - Package Power Limit #1............... : 4095 Watt - Enable Power Limit #1................ : 1 (enabled) - Package Clamping Limitation #1....... : 1 (allow going below OS-requested P/T state during Time Window for Power Limit #1) - Time Window for Power Limit #1....... : 10 (2560 milli-Seconds) - Package Power Limit #2............... : 4095 Watt - Enable Power Limit #2................ : 1 (enabled) - Package Clamping Limitation #2....... : 1 (allow going below OS-requested P/T state setting Time Window for Power Limit #2) - Time Window for Power Limit #2....... : 3 (20 milli-Seconds) - Lock................................. : 0 (MSR not locked) MSR_PKG_ENERGY_STATUS............(0x611) : 0x502C8C ------------------------------------------ - Total Energy Consumed................ : 320 Joules (Watt = Joules / seconds) MSR_PKG_POWER_INFO...............(0x614) : 0x1700460 ------------------------------------------ - Thermal Spec Power................... : 140 Watt - Minimum Power........................ : 0 - Maximum Power........................ : 0 - Maximum Time Window.................. : 0 MSR_PP0_POWER_LIMIT..............(0x638) : 0x0 MSR_PP0_ENERGY_STATUS............(0x639) : 0x0 MSR_TURBO_ACTIVATION_RATIO.......(0x64C) : 0x0 MSR_PKGC3_IRTL...................(0x60a) : 0x0 MSR_PKGC6_IRTL...................(0x60b) : 0x0 MSR_PKG_C2_RESIDENCY.............(0x60d) : 0x0 MSR_PKG_C3_RESIDENCY.............(0x3f8) : 0x0 MSR_PKG_C6_RESIDENCY.............(0x3f9) : 0x0 IA32_TSC_DEADLINE................(0x6E0) : 0x995215DDD4B CPU Ratio Info: ------------------------------------------ Base Clock Frequency (BLCK)............. : 100 MHz Maximum Efficiency Ratio/Frequency.......: 12 (1200 MHz) Maximum non-Turbo Ratio/Frequency........: 36 (3600 MHz) Maximum Turbo Ratio/Frequency............: 44 (4400 MHz) P-State ratio * 100 = Frequency in MHz ------------------------------------------ CPU P-States [ (12) 38 44 ] CPU P-States [ (12) 34 38 44 ] CPU P-States [ (12) 34 37 38 44 ] CPU P-States [ (12) 14 34 37 38 44 ] CPU P-States [ (12) 14 34 37 38 41 44 ] CPU P-States [ (12) 14 27 34 37 38 41 44 ] CPU P-States [ (12) 14 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 21 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 17 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 16 17 18 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 16 17 18 20 21 25 26 27 34 37 38 41 44 ] CPU P-States [ (12) 13 14 15 16 17 18 20 21 25 26 27 34 37 38 41 44 ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 25 26 27 34 37 38 41 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 (24) 25 26 27 34 37 38 41 44 ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 41 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 41 42 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 40 41 42 (44) ] CPU P-States [ 12 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 40 41 42 43 (44) ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 37 38 39 40 41 42 43 44 ] CPU P-States [ (12) 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 41 42 43 44 ] ThankYou for your help edit: I made change in patch: 89d804c4 3c227722 > 89d804c3 3c227722 (C3) and XCMP working Zrzut ekranu 2017-06-07 o 14.46.28.png Hi, according to your edit, your XCPM should be fine now, and I won't help this. As for wrmsr fix, I doubt whether it's really necessary, but if you need it indeed, here is the new patch: 89 D8 C1 E0 08 48 63 D0 -> B8 00 30 00 00 48 63 D0 As for NVMe kext... Sorry, it's unfortunate that I don't have such binary. (I myself haven't downloaded the installer yet) So could you please give me one? (Gather it from /System/Library/Extensions/IONVMeFamily.kext/Contents/MacOS/IONVMeFamily) EDIT: See here for the new patch. Link to comment Share on other sites More sharing options...
gengik84 Posted June 7, 2017 Share Posted June 7, 2017 As for NVMe kext... Sorry, it's unfortunate that I don't have such binary. (I myself haven't downloaded the installer yet) So could you please give me one? (Gather it from /System/Library/Extensions/IONVMeFamily.kext/Contents/MacOS/IONVMeFamily) here...IONVMeFamily.zip 1 Link to comment Share on other sites More sharing options...
PMheart Posted June 7, 2017 Share Posted June 7, 2017 here...IONVMeFamily.zip Thanks, I've got it from a friend of mine! 1 Link to comment Share on other sites More sharing options...
gengik84 Posted June 7, 2017 Share Posted June 7, 2017 Someone has news about AirPortBrcm4360 whitelist patch for 10.13? Link to comment Share on other sites More sharing options...
PMheart Posted June 7, 2017 Share Posted June 7, 2017 @Matthew82 Hi, this is the external patch for 10.13 DP1. 48 85 C0 74 07 80 8B 20 -> 48 85 C0 66 90 80 8B 20 Someone has news about AirPortBrcm4360 whitelist patch for 10.13? Hi, I may help, and firstly could you post the patch for 10.12 and the new binary of AirPortBrcm4360 of 10.13? 1 Link to comment Share on other sites More sharing options...
SavageAUS Posted June 7, 2017 Share Posted June 7, 2017 All in order with fresh Clover adjustments. Thanks guys (especially PMHeart, Sherlocks, savvamitrofanov ). Once I updated the Clover boot files and added the new masks, installation went through totally smoothly. E6230_i5-3340M_HD4000.jpg Can you please point me to the Clover boot files and new masks you mentioned? Sent from my SM-G930F using Tapatalk Link to comment Share on other sites More sharing options...
Recommended Posts