Sherlocks Posted June 21, 2017 Share Posted June 21, 2017 i checked pike's kext code here https://github.com/Piker-Alpha/AppleIntelInfo/blob/c93102afe7406f1190b14723bddcf5b761da5d56/AppleIntelInfo/AppleIntelInfo.cpp#L524 default: // Check sysctl hw.busfrequency to see if the setup is right or wrong. if (sysctlbyname("hw.busfrequency", &frequency, &size, NULL, 0) == 0) { // Is it 100000000? if ((frequency / 1000000) > 100) { // No. Log warning. IOLOG("\nWarning: Clover hw.busfrequency error detected : %x\n", frequency); } } return (100 * 1000000); break;i have. as result my system qpi is 400 Sherlocksui-MBP:~ sherlocks$ sysctl hw.busfrequency hw.busfrequency: 400000000 Sherlocksui-MBP:~ sherlocks$ so his kext shown log. Real iMac15,1 has this SMBIOS table type 4 Version: Intel(R) Core(TM) i5-4690 CPU @ 3.50GHz Voltage: 1.0 V External Clock: 25 MHz Max Speed: 3500 MHz Current Speed: 3500 MHzSo why Pike proposed to use FSB/4 in the table.Done! actually not work now? i don't know exactly. just report here i booted default clover(qpi is blank) clover log 0:100 0:000 FSBFrequency = 100 MHz, DMI FSBFrequency = 100 MHz, Corrected FSBFrequency = 100 MHz0:100 0:000 MaxDiv/MinDiv: 23.0/40:100 0:000 Turbo: 23/23/23/230:100 0:000 Features: 0xBFEBFBFF0:100 0:000 Threads: 40:100 0:000 Cores: 20:100 0:000 FSB: 25 MHz0:100 0:000 CPU: 2300 MHz0:100 0:000 TSC: 2300 MHz0:100 0:000 PIS: 100 MHztable 4 dumpVersion: Intel(R) Core(TM) i3-6100U CPU @ 2.30GHz Voltage: 0.8 V External Clock: 100 MHz Max Speed: 2300 MHz Current Speed: 2300 MHzI will check this work in detail. Thanks in advance Link to comment Share on other sites More sharing options...
Slice Posted June 21, 2017 Share Posted June 21, 2017 My Skylake aka iMac17,1 with Clover 4084 Version: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz Voltage: 1.0 V External Clock: 25 MHz Max Speed: 3300 MHz Current Speed: 3100 MHz Status: Populated, Enabled Upgrade: Other Link to comment Share on other sites More sharing options...
Sherlocks Posted June 21, 2017 Share Posted June 21, 2017 My Skylake aka iMac17,1 with Clover 4084 Version: Intel(R) Core(TM) i5-6400 CPU @ 2.70GHz Voltage: 1.0 V External Clock: 25 MHz Max Speed: 3300 MHz Current Speed: 3100 MHz Status: Populated, Enabled Upgrade: Other Slice, i want to know your setting now.Dont have qpi in config.plist? Busfrequency is 10000000 in terminal? I want to debug it clearly. 나의 LG-F800S 의 Tapatalk에서 보냄 Link to comment Share on other sites More sharing options...
cecekpawon Posted June 21, 2017 Share Posted June 21, 2017 GetCPUProperties called before LoadUserSettings (read user QPI prop from config), so gSettings.QPI probably still 0 by default & ExternalClock may also wrong? 1 Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 21, 2017 Share Posted June 21, 2017 Looking through some darwindumper dumps from Macs from the last few years they all show an external clock of 25MHz. Looking at pike's post again and my darwindumper files, the issue isn't that the external clock is showing the wrong speed as 25Mhz is what a real Apple SMBIOS will show, but that the bus-frequency value isn't being reported as 100000000. Looking in IOReg dumps this is the value that is stored for bus-frequency. Setting QPI to 100 fixes this, but also caused the external clock in SMBIOS to show 100 MHz instead of 25MHz. Clover is behaving correctly now so this fix isn't needed. Maybe a fix is needed for setting the correct bus-frequency though? Link to comment Share on other sites More sharing options...
TheRacerMaster Posted June 21, 2017 Share Posted June 21, 2017 With the patch I posted a while back (which was merged), the external clock (in SMBIOS table type 4) & hw.busfrequency values should be automatically set to the right values (without having to set QPI in config.plist). They should be 25 MHz and 100000000, respectively (these are the same as the values on real Macs). 1 Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 21, 2017 Share Posted June 21, 2017 Maybe it got un-merged. I grabbed 4097 from sf and took QPI out of my config.plist. bus-frequency is incorrectly reported as 96000000. Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 I'm getting that "Warning: Clover hw.busfrequency error detected" error in AppleIntelInfo. sysctl hw.busfrequency gives me 396000000. This is why I had QPI set to 100. This is what i get with sherlocks bootx64.efi and CLOVERX64.efi: AppleIntelInfo.kext v2.6 Copyright © 2012-2017 Pike R. Alpha. All rights reserved. Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 1 logCStates...............................: 1 logIPGStyle..............................: 1 Warning: Clover hw.busfrequency error detected : 179a7b00 InitialTSC...............................: 0x7f27b0a196 (13 MHz) MWAIT C-States...........................: 1319200 Processor Brandstring....................: Intel® Core i7-6700K CPU @ 4.00GHz and this is what i get when set QPI = 100: Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 1 logCStates...............................: 1 logIPGStyle..............................: 1 InitialTSC...............................: 0x5939c7b69b (9 MHz) MWAIT C-States...........................: 1319200 Processor Brandstring....................: Intel® Core i7-6700K CPU @ 4.00GHz hello. today i did debug and completly resolved QPI issue. External Clock too. please test and report it to me. no need to set any value on QPI in config.plist i will clear code and add more corrected info in log(like before). here is my result Sherlocksui-MBP:~ sherlocks$ sysctl hw.busfrequency hw.busfrequency: 100000000 Version: Intel® Core i3-6100U CPU @ 2.30GHz Voltage: 0.8 V External Clock: 25 MHz Max Speed: 2300 MHz Current Speed: 2300 MHz AppleIntelInfo.kext v2.6 Copyright © 2012-2017 Pike R. Alpha. All rights reserved. Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 1 logCStates...............................: 1 logIPGStyle..............................: 1 InitialTSC...............................: 0x396b78f920 (10 MHz) MWAIT C-States...........................: 286531872 Processor Brandstring....................: Intel® Core i3-6100U CPU @ 2.30GHz thanks in advance test2.zip 3 Link to comment Share on other sites More sharing options...
schot Posted June 22, 2017 Share Posted June 22, 2017 Found something in Clover that is there for while i think. I know it was not there in version r30XX, but I know it is in r4081, 4084, 4091, and still in latest r4097. When i have different config files for different versins of OS X / macOS i found out that when loading another config file only the boot arguments are taken. It should be taking all the way i think so also kext patches, kernel patches etc. These are not taken from the choosed config file but from the standard config.plist So for instance, now i run Sierra and High Sierra DP. For Sierra i need kext patches to run my RX580, however on High Sierra i don't want them, also my ATI injection is different. So when i choose config_HS.plist in the boot options of clover only my boot args are changed but when i look patches for kext i see all the Kexts patches from the config.plist file. I did checked it a couple of times and it is not in there for sure. 1 Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 22, 2017 Share Posted June 22, 2017 hello. today i did debug and completly resolved QPI issue. External Clock too. please test and report it to me. no need to set any value on QPI in config.plist On my laptop, busfrequency is reported as 24000000. Link to comment Share on other sites More sharing options...
Regi Yassin Posted June 22, 2017 Share Posted June 22, 2017 On my laptop, busfrequency is reported as 24000000. same for me, 5820k hw.tbfrequency: 1000000000 hw.cpufrequency_max: 3298000000 hw.cpufrequency_min: 3298000000 hw.cpufrequency: 3298000000 hw.busfrequency_max: 24000000 hw.busfrequency_min: 24000000 hw.busfrequency: 24000000 machdep.tsc.frequency: 3298088047 with latest clover build, using buildclover command r4098 hw.busfrequency_max: 96000000 hw.busfrequency_min: 96000000 hw.busfrequency: 96000000 with qpi 100 hw.tbfrequency: 1000000000 hw.cpufrequency_max: 3298000000 hw.cpufrequency_min: 3298000000 hw.cpufrequency: 3298000000 hw.busfrequency_max: 100000000 hw.busfrequency_min: 100000000 hw.busfrequency: 100000000 machdep.tsc.frequency: 3298087586 Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 On my laptop, busfrequency is reported as 24000000. didn't you set qpi right? give me clover log also please take a dmi report from darwin dump. Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 22, 2017 Share Posted June 22, 2017 I haven't set QPI. I thought the point of testing these was to not have it set. Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 On my laptop, busfrequency is reported as 24000000. same for me, 5820k hw.tbfrequency: 1000000000 hw.cpufrequency_max: 3298000000 hw.cpufrequency_min: 3298000000 hw.cpufrequency: 3298000000 hw.busfrequency_max: 24000000 hw.busfrequency_min: 24000000 hw.busfrequency: 24000000 machdep.tsc.frequency: 3298088047 with latest clover build, using buildclover command r4098 hw.busfrequency_max: 96000000 hw.busfrequency_min: 96000000 hw.busfrequency: 96000000 with qpi 100 hw.tbfrequency: 1000000000 hw.cpufrequency_max: 3298000000 hw.cpufrequency_min: 3298000000 hw.cpufrequency: 3298000000 hw.busfrequency_max: 100000000 hw.busfrequency_min: 100000000 hw.busfrequency: 100000000 machdep.tsc.frequency: 3298087586 okay. bug is resolved now. please test and report. test3.zip 1 Link to comment Share on other sites More sharing options...
Regi Yassin Posted June 22, 2017 Share Posted June 22, 2017 okay. bug is resolved now. please test and report. here is the result hw.busfrequency_max: 100000000 hw.busfrequency_min: 100000000 hw.busfrequency: 100000000 same as using qpi 100 Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 here is the result hw.busfrequency_max: 100000000 hw.busfrequency_min: 100000000 hw.busfrequency: 100000000 same as using qpi 100No use any value in QPI and Bus frequency in config.plistAnd report again with clover bootlog 나의 LG-F800S 의 Tapatalk에서 보냄 Link to comment Share on other sites More sharing options...
Regi Yassin Posted June 22, 2017 Share Posted June 22, 2017 No use any value in QPI and Bus frequency in config.plist And report again with clover bootlog 나의 LG-F800S 의 Tapatalk에서 보냄 yes, it was result without qpi in config.plist i said the result was the same as using qpi in config.plist sorry if my english is poor 1 Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 yes, it was result without qpi in config.plist i said the result was the same as using qpi in config.plist sorry if my english is poor Sorry my poor english. I will clean up code and improve log. Thank you for quick report. Have a great day. 나의 LG-F800S 의 Tapatalk에서 보냄 Link to comment Share on other sites More sharing options...
Mork vom Ork Posted June 22, 2017 Share Posted June 22, 2017 @Sherlocks: made with content of "test3.zip": HIGH-SIERRA-SSD:~ md$ sysctl hw.busfrequencyhw.busfrequency: 100000000AppleIntelInfo.kext v2.6 Copyright © 2012-2017 Pike R. Alpha. All rights reserved.Settings:------------------------------------------logMSRs..................................: 1logIGPU..................................: 1logCStates...............................: 1logIPGStyle..............................: 1InitialTSC...............................: 0x70e9771e83 (12 MHz)MWAIT C-States...........................: 1319200Processor Brandstring....................: Intel® Core i7-6700K CPU @ 4.00GHz and CLOVER bootlog: 0:100 0:000 === [ GetCPUProperties ] ================================== 0:100 0:000 CPU Vendor = 756E6547 Model=506E3 0:100 0:000 The CPU supported SSE4.1 0:100 0:000 The CPU supported turbo 0:100 0:000 BrandString = Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz 0:100 0:000 TSC/CCC Information Leaf: 0:100 0:000 numerator : 334 0:100 0:000 denominator : 2 0:100 0:000 Calibrated ARTFrequency: 24003301 0:100 0:000 MSR 0xE2 before patch 00000000 0:100 0:000 MSR 0xCE 00080838_F1012800 0:100 0:000 MSR 0x1A0 00850089 0:100 0:000 corrected FLEX_RATIO = E0000 0:100 0:000 MSR 0x1B0 00000000 0:100 0:000 FSBFrequency = 100 MHz, DMI FSBFrequency = 100 MHz, Corrected FSBFrequency = 100 MHz 0:100 0:000 MaxDiv/MinDiv: 40.0/8 0:100 0:000 Turbo: 42/42/42/42 0:100 0:000 Features: 0xBFEBFBFF 0:100 0:000 Threads: 8 0:100 0:000 Cores: 4 0:100 0:000 FSB: 25 MHz 0:100 0:000 CPU: 4000 MHz 0:100 0:000 TSC: 4000 MHz 0:100 0:000 PIS: 100 MHz no busfrequency or QPI values set in config.plist 1 Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 @Sherlocks: made with content of "test3.zip": HIGH-SIERRA-SSD:~ md$ sysctl hw.busfrequency hw.busfrequency: 100000000 AppleIntelInfo.kext v2.6 Copyright © 2012-2017 Pike R. Alpha. All rights reserved. Settings: ------------------------------------------ logMSRs..................................: 1 logIGPU..................................: 1 logCStates...............................: 1 logIPGStyle..............................: 1 InitialTSC...............................: 0x70e9771e83 (12 MHz) MWAIT C-States...........................: 1319200 Processor Brandstring....................: Intel® Core i7-6700K CPU @ 4.00GHz and CLOVER bootlog: 0:100 0:000 === [ GetCPUProperties ] ================================== 0:100 0:000 CPU Vendor = 756E6547 Model=506E3 0:100 0:000 The CPU supported SSE4.1 0:100 0:000 The CPU supported turbo 0:100 0:000 BrandString = Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz 0:100 0:000 TSC/CCC Information Leaf: 0:100 0:000 numerator : 334 0:100 0:000 denominator : 2 0:100 0:000 Calibrated ARTFrequency: 24003301 0:100 0:000 MSR 0xE2 before patch 00000000 0:100 0:000 MSR 0xCE 00080838_F1012800 0:100 0:000 MSR 0x1A0 00850089 0:100 0:000 corrected FLEX_RATIO = E0000 0:100 0:000 MSR 0x1B0 00000000 0:100 0:000 FSBFrequency = 100 MHz, DMI FSBFrequency = 100 MHz, Corrected FSBFrequency = 100 MHz 0:100 0:000 MaxDiv/MinDiv: 40.0/8 0:100 0:000 Turbo: 42/42/42/42 0:100 0:000 Features: 0xBFEBFBFF 0:100 0:000 Threads: 8 0:100 0:000 Cores: 4 0:100 0:000 FSB: 25 MHz 0:100 0:000 CPU: 4000 MHz 0:100 0:000 TSC: 4000 MHz 0:100 0:000 PIS: 100 MHz Great. Please check DMI dump from darwin dump. 나의 LG-F800S 의 Tapatalk에서 보냄 Link to comment Share on other sites More sharing options...
Mork vom Ork Posted June 22, 2017 Share Posted June 22, 2017 DMI dump from Darwin dump 3.0: # dmidecode 2.12b Handle 0x0000, DMI type 0, 24 bytes 0000: 00 18 00 00 01 02 00 00 03 ff 00 9c 8b 3f 01 00 0010: 00 00 03 0d 00 01 ff ff BIOS Information Vendor: Apple Inc. Version: MBP133.88Z.0226.B24.1704292117 Release Date: 11/30/2016 ROM Size: 16384 kB Characteristics: APM is supported BIOS is upgradeable BIOS shadowing is allowed Boot from CD is supported Selectable boot is supported BIOS ROM is socketed EDD is supported 5.25"/1.2 MB floppy services are supported (int 13h) 3.5"/720 kB floppy services are supported (int 13h) 3.5"/2.88 MB floppy services are supported (int 13h) Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) ACPI is supported USB legacy is supported BIOS boot specification is supported Targeted content distribution is supported UEFI is supported BIOS Revision: 0.1 Handle 0x0001, DMI type 1, 27 bytes 0000: 01 1b 01 00 01 02 03 04 60 33 8c 16 32 56 bd 11 0010: b9 b4 70 8b cd 55 b5 e3 06 05 06 System Information Manufacturer: Apple Inc. Product Name: MacBookPro13,3 Version: 1.0 Serial Number: UUID: 60338C16-3256-BD11-B9B4-708BCD55B5E3 Wake-up Type: Power Switch SKU Number: Mac-A5C67F76ED83108C Family: MacBook Pro Handle 0x0002, DMI type 2, 16 bytes 0000: 02 10 02 00 01 02 03 04 05 09 06 03 00 0a 00 00 0010: Base Board Information Manufacturer: Apple Inc. Product Name: Mac-A5C67F76ED83108C Version: Hacked Serial Number: FS2734802QXZU528C Asset Tag: Default string Features: Board is a hosting board Board is replaceable Location In Chassis: Bottom Chassis Handle: 0x0003 Type: Motherboard Contained Object Handles: 0 Handle 0x0003, DMI type 3, 22 bytes 0000: 03 16 03 00 01 08 02 03 04 03 03 01 01 00 00 00 0010: 00 00 01 00 00 05 Chassis Information Manufacturer: Apple Inc. Type: Portable Lock: Not Present Version: Mac-A5C67F76ED83108C Serial Number: Asset Tag: MacBook Pro Boot-up State: Safe Power Supply State: Safe Thermal State: Other Security Status: Other OEM Information: 0x00000000 Height: Unspecified Number Of Power Cords: 1 Contained Elements: 0 SKU Number: Default string Handle 0x0048, DMI type 7, 19 bytes 0000: 07 13 48 00 01 80 01 00 01 00 01 20 00 20 00 00 0010: 04 05 07 Cache Information Socket Designation: L1 Cache Configuration: Enabled, Not Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 256 kB Maximum Size: 256 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Parity System Type: Unified Associativity: 8-way Set-associative Handle 0x0049, DMI type 7, 19 bytes 0000: 07 13 49 00 01 81 01 00 04 00 04 20 00 20 00 00 0010: 05 05 05 Cache Information Socket Designation: L2 Cache Configuration: Enabled, Not Socketed, Level 2 Operational Mode: Write Back Location: Internal Installed Size: 1024 kB Maximum Size: 1024 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Single-bit ECC System Type: Unified Associativity: 4-way Set-associative Handle 0x004A, DMI type 7, 19 bytes 0000: 07 13 4a 00 01 82 01 00 20 00 20 20 00 20 00 00 0010: 06 05 08 Cache Information Socket Designation: L3 Cache Configuration: Enabled, Not Socketed, Level 3 Operational Mode: Write Back Location: Internal Installed Size: 8192 kB Maximum Size: 8192 kB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Multi-bit ECC System Type: Unified Associativity: 16-way Set-associative Handle 0x004B, DMI type 4, 48 bytes 0000: 04 30 4b 00 01 03 c6 02 e3 06 05 00 ff fb eb bf 0010: 03 8d 19 00 a0 0f a0 0f 41 01 48 00 49 00 4a 00 0020: 04 05 06 04 04 08 fc 00 c6 00 04 00 04 00 08 00 0030: Processor Information Socket Designation: U2E1 Type: Central Processor Family: Core i7 Manufacturer: Intel(R) Corporation ID: E3 06 05 00 FF FB EB BF Signature: Type 0, Family 6, Model 94, Stepping 3 Flags: FPU (Floating-point unit on-chip) VME (Virtual mode extension) DE (Debugging extension) PSE (Page size extension) TSC (Time stamp counter) MSR (Model specific registers) PAE (Physical address extension) MCE (Machine check exception) CX8 (CMPXCHG8 instruction supported) APIC (On-chip APIC hardware supported) SEP (Fast system call) MTRR (Memory type range registers) PGE (Page global enable) MCA (Machine check architecture) CMOV (Conditional move instruction supported) PAT (Page attribute table) PSE-36 (36-bit page size extension) CLFSH (CLFLUSH instruction supported) DS (Debug store) ACPI (ACPI supported) MMX (MMX technology supported) FXSR (FXSAVE and FXSTOR instructions supported) SSE (Streaming SIMD extensions) SSE2 (Streaming SIMD extensions 2) SS (Self-snoop) HTT (Multi-threading) TM (Thermal monitor supported) PBE (Pending break enabled) Version: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz Voltage: 1.3 V External Clock: 25 MHz Max Speed: 4000 MHz Current Speed: 4000 MHz Status: Populated, Enabled Upgrade: Other L1 Cache Handle: 0x0048 L2 Cache Handle: 0x0049 L3 Cache Handle: 0x004A Serial Number: BA Asset Tag: Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz Part Number: To Be Filled By O.E.M. Core Count: 4 Core Enabled: 4 Thread Count: 8 Characteristics: 64-bit capable Multi-Core Hardware Thread Execute Protection Enhanced Virtualization Power/Performance Control Handle 0x0900, DMI type 9, 17 bytes 0000: 09 11 00 09 01 aa 08 03 03 01 00 04 02 00 00 01 0010: 00 System Slot Information Designation: PCI Slot 0 Type: x1 PCI Express x16 Current Usage: Available Length: Short ID: 1 Characteristics: 3.3 V is provided Hot-plug devices are supported Bus Address: 0000:01:00.0 Handle 0x0904, DMI type 9, 17 bytes 0000: 09 11 04 09 01 a8 08 03 03 05 00 04 02 00 00 01 0010: 01 System Slot Information Designation: HDMI port Type: x1 PCI Express x4 Current Usage: Available Length: Short ID: 5 Characteristics: 3.3 V is provided Hot-plug devices are supported Bus Address: 0000:01:00.1 Handle 0x0905, DMI type 9, 17 bytes 0000: 09 11 05 09 01 a6 08 03 03 02 00 04 02 00 00 00 0010: fe System Slot Information Designation: Ethernet Type: x1 PCI Express x1 Current Usage: Available Length: Short ID: 2 Characteristics: 3.3 V is provided Hot-plug devices are supported Bus Address: 0000:00:1f.6 Handle 0x0004, DMI type 8, 9 bytes 0000: 08 09 04 00 01 00 02 ff 1c Port Connector Information Internal Reference Designator: HDMI_DP Internal Connector Type: None External Reference Designator: HDMI_DP External Connector Type: Other Port Type: Video Port Handle 0x0005, DMI type 8, 9 bytes 0000: 08 09 05 00 01 00 02 12 10 Port Connector Information Internal Reference Designator: USB3.1_AR_A1C2 Internal Connector Type: None External Reference Designator: USB3.1_AR_A1C2 External Connector Type: Access Bus (USB) Port Type: USB Handle 0x0006, DMI type 8, 9 bytes 0000: 08 09 06 00 01 00 02 12 10 Port Connector Information Internal Reference Designator: USB3.1_E34 Internal Connector Type: None External Reference Designator: USB3.1_E34 External Connector Type: Access Bus (USB) Port Type: USB Handle 0x0007, DMI type 8, 9 bytes 0000: 08 09 07 00 01 00 02 12 10 Port Connector Information Internal Reference Designator: USB3_E12 Internal Connector Type: None External Reference Designator: USB3_E12 External Connector Type: Access Bus (USB) Port Type: USB Handle 0x0008, DMI type 8, 9 bytes 0000: 08 09 08 00 01 00 02 0b 1f Port Connector Information Internal Reference Designator: LAN Internal Connector Type: None External Reference Designator: LAN External Connector Type: RJ-45 Port Type: Network Port Handle 0x0009, DMI type 8, 9 bytes 0000: 08 09 09 00 01 00 02 12 10 Port Connector Information Internal Reference Designator: USB3_56 Internal Connector Type: None External Reference Designator: USB3_56 External Connector Type: Access Bus (USB) Port Type: USB Handle 0x000A, DMI type 8, 9 bytes 0000: 08 09 0a 00 01 00 02 ff 1d Port Connector Information Internal Reference Designator: AUDIO Internal Connector Type: None External Reference Designator: AUDIO External Connector Type: Other Port Type: Audio Port Handle 0x000B, DMI type 8, 9 bytes 0000: 08 09 0b 00 01 00 02 0f 02 Port Connector Information Internal Reference Designator: KBMS Internal Connector Type: None External Reference Designator: KBMS External Connector Type: PS/2 Port Type: Parallel Port PS/2 Handle 0x000C, DMI type 8, 9 bytes 0000: 08 09 0c 00 01 1f 00 00 1d Port Connector Information Internal Reference Designator: AAFP Internal Connector Type: Mini Jack (headphones) External Reference Designator: Not Specified External Connector Type: None Port Type: Audio Port Handle 0x000D, DMI type 8, 9 bytes 0000: 08 09 0d 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: TB_HEADER Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x000E, DMI type 8, 9 bytes 0000: 08 09 0e 00 01 12 00 00 10 Port Connector Information Internal Reference Designator: USB3_12 Internal Connector Type: Access Bus (USB) External Reference Designator: Not Specified External Connector Type: None Port Type: USB Handle 0x000F, DMI type 8, 9 bytes 0000: 08 09 0f 00 01 12 00 00 10 Port Connector Information Internal Reference Designator: USB3_34 Internal Connector Type: Access Bus (USB) External Reference Designator: Not Specified External Connector Type: None Port Type: USB Handle 0x0010, DMI type 8, 9 bytes 0000: 08 09 10 00 01 12 00 00 10 Port Connector Information Internal Reference Designator: USB910 Internal Connector Type: Access Bus (USB) External Reference Designator: Not Specified External Connector Type: None Port Type: USB Handle 0x0011, DMI type 8, 9 bytes 0000: 08 09 11 00 01 12 00 00 10 Port Connector Information Internal Reference Designator: USB1112 Internal Connector Type: Access Bus (USB) External Reference Designator: Not Specified External Connector Type: None Port Type: USB Handle 0x0012, DMI type 8, 9 bytes 0000: 08 09 12 00 01 12 00 00 10 Port Connector Information Internal Reference Designator: USB1314 Internal Connector Type: Access Bus (USB) External Reference Designator: Not Specified External Connector Type: None Port Type: USB Handle 0x0013, DMI type 8, 9 bytes 0000: 08 09 13 00 01 22 00 00 20 Port Connector Information Internal Reference Designator: SATAEXPRESS_1 Internal Connector Type: SAS/SATA Plug Receptacle External Reference Designator: Not Specified External Connector Type: None Port Type: SATA Handle 0x0014, DMI type 8, 9 bytes 0000: 08 09 14 00 01 22 00 00 20 Port Connector Information Internal Reference Designator: SATAEXPRESS_2 Internal Connector Type: SAS/SATA Plug Receptacle External Reference Designator: Not Specified External Connector Type: None Port Type: SATA Handle 0x0015, DMI type 8, 9 bytes 0000: 08 09 15 00 01 22 00 00 20 Port Connector Information Internal Reference Designator: SATA6G_E12 Internal Connector Type: SAS/SATA Plug Receptacle External Reference Designator: Not Specified External Connector Type: None Port Type: SATA Handle 0x0016, DMI type 8, 9 bytes 0000: 08 09 16 00 01 22 00 00 20 Port Connector Information Internal Reference Designator: SATA6G_56 Internal Connector Type: SAS/SATA Plug Receptacle External Reference Designator: Not Specified External Connector Type: None Port Type: SATA Handle 0x0017, DMI type 8, 9 bytes 0000: 08 09 17 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: CPU_FAN Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x0018, DMI type 8, 9 bytes 0000: 08 09 18 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: OPT_FAN Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x0019, DMI type 8, 9 bytes 0000: 08 09 19 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: W_PUMP_FAN Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x001A, DMI type 8, 9 bytes 0000: 08 09 1a 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: CHA_FAN1 Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x001B, DMI type 8, 9 bytes 0000: 08 09 1b 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: CHA_FAN2 Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x001C, DMI type 8, 9 bytes 0000: 08 09 1c 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: CHA_FAN3 Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x001D, DMI type 8, 9 bytes 0000: 08 09 1d 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: CHA_FAN4 Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x001E, DMI type 8, 9 bytes 0000: 08 09 1e 00 01 ff 00 00 ff Port Connector Information Internal Reference Designator: M.2 Internal Connector Type: Other External Reference Designator: Not Specified External Connector Type: None Port Type: Other Handle 0x0025, DMI type 10, 6 bytes 0000: 0a 06 25 00 83 01 On Board Device Information Type: Video Status: Enabled Description: To Be Filled By O.E.M. Handle 0x0059, DMI type 13, 22 bytes 0000: 0d 16 59 00 08 00 00 00 00 00 00 00 00 00 00 00 0010: 00 00 00 00 00 00 BIOS Language Information Installable Languages: 8 en|US|iso8859-1 fr|FR|iso8859-1 zh|CN|unicode <BAD INDEX> <BAD INDEX> <BAD INDEX> <BAD INDEX> <BAD INDEX> Currently Installed Language: Not Specified Handle 0x0030, DMI type 27, 15 bytes 0000: 1b 0f 30 00 2d 00 67 01 00 00 00 00 00 80 01 Cooling Device Temperature Probe Handle: 0x002D Type: Power Supply Fan Status: OK Cooling Unit Group: 1 OEM-specific Information: 0x00000000 Nominal Speed: Unknown Or Non-rotating Description: Cooling Dev 1 Handle 0x0033, DMI type 27, 15 bytes 0000: 1b 0f 33 00 2d 00 67 01 00 00 00 00 00 80 00 Cooling Device Temperature Probe Handle: 0x002D Type: Power Supply Fan Status: OK Cooling Unit Group: 1 OEM-specific Information: 0x00000000 Nominal Speed: Unknown Or Non-rotating Description: Not Specified Handle 0x003B, DMI type 27, 15 bytes 0000: 1b 0f 3b 00 3a 00 67 01 00 00 00 00 00 80 01 Cooling Device Temperature Probe Handle: 0x003A Type: Power Supply Fan Status: OK Cooling Unit Group: 1 OEM-specific Information: 0x00000000 Nominal Speed: Unknown Or Non-rotating Description: Cooling Dev 1 Handle 0x002D, DMI type 28, 22 bytes 0000: 1c 16 2d 00 01 67 00 80 00 80 00 80 00 80 00 80 0010: 00 00 00 00 00 80 Temperature Probe Description: LM78A Location: Motherboard Status: OK Maximum Value: Unknown Minimum Value: Unknown Resolution: Unknown Tolerance: Unknown Accuracy: Unknown OEM-specific Information: 0x00000000 Nominal Value: Unknown Handle 0x003A, DMI type 28, 22 bytes 0000: 1c 16 3a 00 01 6a 00 80 00 80 00 80 00 80 00 80 0010: 00 00 00 00 00 80 Temperature Probe Description: LM78A Location: Power Unit Status: OK Maximum Value: Unknown Minimum Value: Unknown Resolution: Unknown Tolerance: Unknown Accuracy: Unknown OEM-specific Information: 0x00000000 Nominal Value: Unknown Handle 0x0028, DMI type 32, 20 bytes 0000: 20 14 28 00 00 00 00 00 00 00 00 00 00 00 00 00 0010: 00 00 00 00 System Boot Information Status: No errors detected Handle 0x005B, DMI type 219, 81 bytes 0000: db 51 5b 00 01 03 01 45 02 00 90 06 03 10 86 20 0010: 04 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02 0020: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff 0030: ff ff ff ff ff ff ff ff 03 00 00 00 80 00 00 00 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0050: 00 OEM-specific Type Header and Data: DB 51 5B 00 01 03 01 45 02 00 90 06 03 10 86 20 04 00 00 00 40 08 00 00 00 00 00 00 00 00 40 02 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Strings: MEI1 MEI2 MEI3 Handle 0x1100, DMI type 17, 40 bytes 0000: 11 28 00 11 00 10 ff ff 40 00 40 00 00 20 09 01 0010: 01 02 1a 80 00 80 0c 03 04 00 06 01 00 00 00 00 0020: 80 0c 00 00 00 00 b0 04 Memory Device Array Handle: 0x1000 Error Information Handle: No Error Total Width: 64 bits Data Width: 64 bits Size: 8192 MB Form Factor: DIMM Set: 1 Locator: DIMM0 Bank Locator: BANK 0 Type: <OUT OF SPEC> Type Detail: Synchronous Speed: 3200 MHz (0.3 ns) Manufacturer: Corsair Serial Number: 0000000000000000 Asset Tag: Not Specified Part Number: CMK32GX4M4B3200C16 Rank: 1 Configured Clock Speed: 3200 MHz (0.3 ns) Minimum voltage: Unknown Maximum voltage: Unknown Configured voltage: 1.200 V Handle 0x1101, DMI type 17, 40 bytes 0000: 11 28 01 11 00 10 ff ff 40 00 40 00 00 20 09 01 0010: 01 02 1a 80 00 80 0c 03 04 00 06 01 00 00 00 00 0020: 80 0c 00 00 00 00 b0 04 Memory Device Array Handle: 0x1000 Error Information Handle: No Error Total Width: 64 bits Data Width: 64 bits Size: 8192 MB Form Factor: DIMM Set: 1 Locator: DIMM0 Bank Locator: BANK 1 Type: <OUT OF SPEC> Type Detail: Synchronous Speed: 3200 MHz (0.3 ns) Manufacturer: Corsair Serial Number: 0000000000000000 Asset Tag: Not Specified Part Number: CMK32GX4M4B3200C16 Rank: 1 Configured Clock Speed: 3200 MHz (0.3 ns) Minimum voltage: Unknown Maximum voltage: Unknown Configured voltage: 1.200 V Handle 0x1102, DMI type 17, 40 bytes 0000: 11 28 02 11 00 10 ff ff 40 00 40 00 00 20 09 02 0010: 01 02 1a 80 00 80 0c 03 04 00 06 01 00 00 00 00 0020: 80 0c 00 00 00 00 b0 04 Memory Device Array Handle: 0x1000 Error Information Handle: No Error Total Width: 64 bits Data Width: 64 bits Size: 8192 MB Form Factor: DIMM Set: 2 Locator: DIMM1 Bank Locator: BANK 0 Type: <OUT OF SPEC> Type Detail: Synchronous Speed: 3200 MHz (0.3 ns) Manufacturer: Corsair Serial Number: 0000000000000000 Asset Tag: Not Specified Part Number: CMK32GX4M4B3200C16 Rank: 1 Configured Clock Speed: 3200 MHz (0.3 ns) Minimum voltage: Unknown Maximum voltage: Unknown Configured voltage: 1.200 V Handle 0x1103, DMI type 17, 40 bytes 0000: 11 28 03 11 00 10 ff ff 40 00 40 00 00 20 09 02 0010: 01 02 1a 80 00 80 0c 03 04 00 06 01 00 00 00 00 0020: 80 0c 00 00 00 00 b0 04 Memory Device Array Handle: 0x1000 Error Information Handle: No Error Total Width: 64 bits Data Width: 64 bits Size: 8192 MB Form Factor: DIMM Set: 2 Locator: DIMM1 Bank Locator: BANK 1 Type: <OUT OF SPEC> Type Detail: Synchronous Speed: 3200 MHz (0.3 ns) Manufacturer: Corsair Serial Number: 0000000000000000 Asset Tag: Not Specified Part Number: CMK32GX4M4B3200C16 Rank: 1 Configured Clock Speed: 3200 MHz (0.3 ns) Minimum voltage: Unknown Maximum voltage: Unknown Configured voltage: 1.200 V Handle 0x1000, DMI type 16, 23 bytes 0000: 10 17 00 10 03 03 03 00 00 00 04 ff ff 04 00 00 0010: 00 00 00 00 00 00 00 Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 64 GB Error Information Handle: No Error Number Of Devices: 4 Handle 0x1300, DMI type 19, 31 bytes 0000: 13 1f 00 13 00 00 00 00 ff ff ff 01 00 10 04 00 0010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x007FFFFFFFF Range Size: 32 GB Physical Array Handle: 0x1000 Partition Width: 4 Handle 0x004C, DMI type 20, 35 bytes 0000: 14 23 4c 00 00 00 00 00 ff ff 7f 00 00 11 00 13 0010: ff 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 0020: 00 00 00 Memory Device Mapped Address Starting Address: 0x00000000000 Ending Address: 0x001FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x1100 Memory Array Mapped Address Handle: 0x1300 Partition Row Position: Unknown Interleave Position: 1 Interleaved Data Depth: 2 Handle 0x004D, DMI type 20, 35 bytes 0000: 14 23 4d 00 00 00 00 01 ff ff 7f 01 02 11 00 13 0010: ff 01 02 00 00 00 00 00 00 00 00 00 00 00 00 00 0020: 00 00 00 Memory Device Mapped Address Starting Address: 0x00400000000 Ending Address: 0x005FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x1102 Memory Array Mapped Address Handle: 0x1300 Partition Row Position: Unknown Interleave Position: 1 Interleaved Data Depth: 2 Handle 0x004E, DMI type 20, 35 bytes 0000: 14 23 4e 00 00 00 80 00 ff ff ff 00 01 11 00 13 0010: ff 02 02 00 00 00 00 00 00 00 00 00 00 00 00 00 0020: 00 00 00 Memory Device Mapped Address Starting Address: 0x00200000000 Ending Address: 0x003FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x1101 Memory Array Mapped Address Handle: 0x1300 Partition Row Position: Unknown Interleave Position: 2 Interleaved Data Depth: 2 Handle 0x004F, DMI type 20, 35 bytes 0000: 14 23 4f 00 00 00 80 01 ff ff ff 01 03 11 00 13 0010: ff 02 02 00 00 00 00 00 00 00 00 00 00 00 00 00 0020: 00 00 00 Memory Device Mapped Address Starting Address: 0x00600000000 Ending Address: 0x007FFFFFFFF Range Size: 8 GB Physical Device Handle: 0x1103 Memory Array Mapped Address Handle: 0x1300 Partition Row Position: Unknown Interleave Position: 2 Interleaved Data Depth: 2 Handle 0x8000, DMI type 128, 88 bytes 0000: 80 58 00 80 01 00 00 00 37 f5 07 e9 ff ff ff ff 0010: 02 00 00 00 00 00 00 00 00 00 e0 ff ff ff ef ff 0020: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0030: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0040: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0050: 00 00 00 00 00 00 00 00 Apple specific FirmwareVolume FirmwareFeatures: e907f537 FirmwareFeaturesMask: ffffffff Region Type:02 Start:ffe00000 End:ffefffff Handle 0x0050, DMI type 130, 20 bytes 0000: 82 14 50 00 24 41 4d 54 00 00 00 00 00 a5 af 02 0010: c0 00 00 00 Apple specific SPD 00008214500024414d540000000000a5af02 0010c0000000000083060083050700007f04 00207e000000000000000000000000000000 003000000000000000000000000000000000 004000000000000000000000000000000000 005000000000000000000000000000000000 006000000000000000000000000000000000 007000000000000000000000000000000000 008000000000000000000000000000000000 009000000000000000000000000000000000 00a000000000000000000000000000000000 00b000000000000000000000000000000000 00c000000000000000000000000000000000 00d000000000000000000000000000000000 00e000000000000000000000000000000000 00f000000000000000000000000000000000 Handle 0x8300, DMI type 131, 6 bytes 0000: 83 06 00 83 05 07 Apple specific Processor Type cpu=0705 Handle 0x007E, DMI type 127, 4 bytes 0000: 7f 04 7e 00 End Of Table 1 Link to comment Share on other sites More sharing options...
Sherlocks Posted June 22, 2017 Share Posted June 22, 2017 DMI dump from Darwin dump 3.0: great. all issue were resolved. thank you add. shown your serial number. need to remove your DMI dump if its important. Link to comment Share on other sites More sharing options...
Mork vom Ork Posted June 22, 2017 Share Posted June 22, 2017 u r welcome serials removed. thx. for the tip 1 Link to comment Share on other sites More sharing options...
Gigamaxx Posted June 22, 2017 Share Posted June 22, 2017 Found something in Clover that is there for while i think. I know it was not there in version r30XX, but I know it is in r4081, 4084, 4091, and still in latest r4097. When i have different config files for different versins of OS X / macOS i found out that when loading another config file only the boot arguments are taken. It should be taking all the way i think so also kext patches, kernel patches etc. These are not taken from the choosed config file but from the standard config.plist So for instance, now i run Sierra and High Sierra DP. For Sierra i need kext patches to run my RX580, however on High Sierra i don't want them, also my ATI injection is different. So when i choose config_HS.plist in the boot options of clover only my boot args are changed but when i look patches for kext i see all the Kexts patches from the config.plist file. I did checked it a couple of times and it is not in there for sure. Do you have EFI backup folder on main partition?. These older settings in config.plist may stop new settings in the EFI partition to take hold. Both EFI and EFI backup config.plist should match. If you have 2 disks and both have clover bootloaders installed, only one bootloader will be detected usually the last one used for booting or from the last booted volume. Try disconnecting the drive you don't want the clover bootloader to load from. Start computer wait for clover screen then attach other drive, reboot and your selected clover bootloader should boot either drive with the config.plist you want to use. Link to comment Share on other sites More sharing options...
Riley Freeman Posted June 22, 2017 Share Posted June 22, 2017 All good here with test3. hw.busrequency reported correctly. Link to comment Share on other sites More sharing options...
Recommended Posts