Jump to content

[RELEASE] Open-source Clover fork with Ryzen support


shawnanastasio
 Share

216 posts in this topic

Recommended Posts

found this for C1E check in http://fxr.watson.org/fxr/source/x86/x86/cpu_machdep.c?v=FREEBSD11;im=3#L370

void
  361 cpu_probe_amdc1e(void)
  362 {
  363 
  364         /*
  365          * Detect the presence of C1E capability mostly on latest
  366          * dual-cores (or future) k8 family.
  367          */
  368         if (cpu_vendor_id == CPU_VENDOR_AMD &&
  369             (cpu_id & 0x00000f00) == 0x00000f00 &&
  370             (cpu_id & 0x0fff0000) >=  0x00040000) {
  371                 cpu_ident_amdc1e = 1;
  372         }
  373 }

a few lines after:

 407         /* Apply AMD APIC timer C1E workaround. */
  408         if (cpu_ident_amdc1e && cpu_disable_c3_sleep) {
  409                 msr = rdmsr(MSR_AMDK8_IPM);
  410                 if (msr & AMDK8_CMPHALT)
  411                         wrmsr(MSR_AMDK8_IPM, msr & ~AMDK8_CMPHALT);

might worth tobe ported.

 

 

a bit offtopic but i would like to ear u guys tough about this (i know its depends on boards) its the dam agp get aperture

sources:

- http://fxr.watson.org/fxr/source/dev/agp/agp_intel.c?v=FREEBSD11;im=3#L320

- http://fxr.watson.org/fxr/source/dev/agp/agp_amd64.c?v=FREEBSD11;im=10#L280

  320 agp_intel_get_aperture(device_t dev)
  321 {
  322         struct agp_intel_softc *sc;
  323         u_int32_t apsize;
  324 
  325         sc = device_get_softc(dev);
  326 
  327         apsize = pci_read_config(dev, AGP_INTEL_APSIZE, 1) & sc->aperture_mask;
  328 
  329         /*
  330          * The size is determined by the number of low bits of
  331          * register APBASE which are forced to zero. The low 22 bits
  332          * are always forced to zero and each zero bit in the apsize
  333          * field just read forces the corresponding bit in the 27:22
  334          * to be zero. We calculate the aperture size accordingly.
  335          */
  336         return ((((apsize ^ sc->aperture_mask) << 22) | ((1 << 22) - 1)) + 1);
  337 }

for amd i got this:

static uint32_t agp_amd64_table[] = {
  268         0x02000000,     /*   32 MB */
  269         0x04000000,     /*   64 MB */
  270         0x08000000,     /*  128 MB */
  271         0x10000000,     /*  256 MB */
  272         0x20000000,     /*  512 MB */
  273         0x40000000,     /* 1024 MB */
  274         0x80000000,     /* 2048 MB */
  275 };
  276 
  277 #define AGP_AMD64_TABLE_SIZE nitems(agp_amd64_table)
  278 
  279 static uint32_t
  280 agp_amd64_get_aperture(device_t dev)
  281 {
  282         struct agp_amd64_softc *sc = device_get_softc(dev);
  283         uint32_t i;
  284 
  285         i = (pci_cfgregread(0, sc->mctrl[0], 3, AGP_AMD64_APCTRL, 4) &
  286                 AGP_AMD64_APCTRL_SIZE_MASK) >> 1;
  287 
  288         if (i >= AGP_AMD64_TABLE_SIZE)
  289                 return (0);
  290 
  291         return (agp_amd64_table[i]);
  292 }
  293 
  294 static int

nvidia others here: http://fxr.watson.org/fxr/ident?v=FREEBSD11;im=3;i=agp_generic_enable

the graphics kexts do check this among other stuff.

Link to comment
Share on other sites

@jalavoui

 

The c1e check and fix is already implemented. As for the aperture size, why is that important to know at boot? As you said the kexts will get this value....?

 

@slice

 

There are open tickets relating to ryzen, would like to close if ryzen support is good

Link to comment
Share on other sites

@Slice, in "main.c" need change this :

// Check if QPI is used

  if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

 

to 

if (gCPUStructure.Vendor == CPU_VENDOR_INTEL){

// Check if QPI is used

  if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

}

 

Because this gSettings.QPI work only for Intel ! For AMD "QPI" doesn't exist ! 

  • Like 1
Link to comment
Share on other sites

@Slice, in "main.c" need change this :

// Check if QPI is used

  if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

 

to 

if (gCPUStructure.Vendor == CPU_VENDOR_INTEL){

// Check if QPI is used

  if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

}

 

Because this gSettings.QPI work only for Intel ! For AMD "QPI" doesn't exist ! 

OK, I will change something here.

As a workaround I'll propose to not set QPI=0. There is better to set BusSpeed here.

There are 5 pages discussion with Sherlocks what is ExternalClock and how to set it.

But I think AMD CPU should work own way.

  • Like 1
Link to comment
Share on other sites

OK, I will change something here.

As a workaround I'll propose to not set QPI=0. There is better to set BusSpeed here.

There are 5 pages discussion with Sherlocks what is ExternalClock and how to set it.

But I think AMD CPU should work own way.

I tested and i getting BusSpeed  102 Mhz <-- this wrong ... Need 200 Mhz ... If official BusSpeed without "QPI", it works . 

Example : 

1) If without "QPI" , only BusSpeed , i getting this :

post-31928-0-64524500-1499873418_thumb.png

 

2) if use this formula : 

if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

i getting this :

post-31928-0-82208100-1499873720_thumb.png

 

 

​I used parallel desktop ... 

OMG , In bios installed min ratio = 4 , but in Clover menu show = 2 . This also wrong ... 

Ok i need fix this ... 

  • Like 2
Link to comment
Share on other sites

Great! A official release you guys are great!

Btw from my quick test i still need bootratio=32 to avoid almost instant restart and I still need to use nvdisable to use the system without crashes!

Thx again!

Link to comment
Share on other sites

Great! A official release you guys are great!

Btw from my quick test i still need bootratio=32 to avoid almost instant restart and I still need to use nvdisable to use the system without crashes!

Thx again!

 

2 Questions?

 

 

1).   Are you using 16.5 auto kernel ( date 5/9 /17)

 

2).   busratio=xx in clover boot arg.?   or is it set in clover CPU settings as frequency MHz?

Link to comment
Share on other sites

Thanks, I'm using the auto kernel and Boot arg.   busratio=30 or no busratio=30 and its working either way.    

 

Do you have a DSDT file in your clover ACPI folder?    See pic, if so try removing it, actually check all the ACPI folders.

post-1753549-0-66424100-1499893043_thumb.png

  • Like 1
Link to comment
Share on other sites

 

 

2).   busratio=xx in clover boot arg.?   or is it set in clover CPU settings as frequency MHz?

busratio=xx is custom kernel flag. Should be set in clover boot args if needed.

And if the kernel do own calculation then no need to do them in Clover.

Kernel want to know from a bootloader:

1. FSB frequency

2. CPU frequency

Clover provides autocalculation and permits user to change something.

 

Main result is Clover no more panics on AMD CPU.

  • Like 2
Link to comment
Share on other sites

can u guys upload CLOVERX64.efi after u apply your patches? 

 

would be great for fast testing.

 

ps: some1 plz apply the errata fix I've posted earlier (f16)

 

Bronya idk if your right - anyway upload a version so we can test.

 

 

yep slice is right - at boot time we don't need tons of code - anyway the kernel and kexts have intel specific code and it will be a waste of time.

 

sharing this from https://github.com/reid/xnu-speedstep-airit is for " keep my MacBook Air from overheating" the source is interesting.

  • Like 1
Link to comment
Share on other sites

I tested and i getting BusSpeed  102 Mhz <-- this wrong ... Need 200 Mhz ... If official BusSpeed without "QPI", it works . 

Example : 

1) If without "QPI" , only BusSpeed , i getting this :

attachicon.gifthis_ok.png

 

2) if use this formula : 

if (gSettings.QPI == 0) {

    // Not used, quad-pumped FSB; divide ExternalClock by 4

    gCPUStructure.ExternalClock = gCPUStructure.ExternalClock / 4;

  }

i getting this :

attachicon.gifthis wrong.png

 

 

​I used parallel desktop ... 

OMG , In bios installed min ratio = 4 , but in Clover menu show = 2 . This also wrong ... 

Ok i need fix this ... 

This Clover 4114 can boot 10.10.5 of Ryzen 1700X hackintosh to desktop, but its timer runs too fast and got very poor performance as previous bug at 10.9.5.

It can not boot 10.11.6 yet !

Is there any fix for this bug ?

Link to comment
Share on other sites

This Clover 4114 can boot 10.10.5 of Ryzen 1700X hackintosh to desktop, but its timer runs too fast and got very poor performance as previous bug at 10.9.5.

It can not boot 10.11.6 yet !

Is there any fix for this bug ?

Show, please, boot.log from clover

 

$ bdmesg >boot-log.txt

  • Like 1
Link to comment
Share on other sites

This Clover 4114 can boot 10.10.5 of Ryzen 1700X hackintosh to desktop, but its timer runs too fast and got very poor performance as previous bug at 10.9.5.

It can not boot 10.11.6 yet !

Is there any fix for this bug ?

This efi_4114 problem with timer if with new kernel 10.9.5 ??? 

  • Like 1
Link to comment
Share on other sites

Show, please, boot.log from clover

 

$ bdmesg >boot-log.txt

The boot-log.txt was attached here.

This efi_4114 problem with timer if with new kernel 10.9.5 ??? 

The new kernel dated on 2017-07-01 worked perfectly with EFI_4114 at 10.9.5.

Only it seemed not fully compatible with VoodooHDA.kext which resulted in interrupted sound output if booted by Clover.

No such a bug if booted by Bronya's 2667 boot file.

Previous kernel dated on 2017-05-31 had the timer problem at 10.9.5.

Please check at Post #607

http://www.insanelymac.com/forum/topic/321626-ryzen-macos-1012x-sierra-kernel-researchdevelopment-thread/page-31

Thanks again !

boot-log.txt

Link to comment
Share on other sites

:)

 

thanks Slice,

 

Problem audio lag :)

 

clock speed in bios : 3500 Mhz ( 35 x 100)

0:100  0:100  MemLog inited, TSC freq: 3494010450
0:100  0:000  CPU was calibrated without ACPI PM Timer: Intel ICH device was not found., use RTC
0:100  0:000  
0:100  0:000  Now is 14.7.2017,  23:45:4 (GMT)
0:100  0:000  Starting Clover revision: 4114 on American Megatrends EFI
0:100  0:000  Build with: [Args: -D NO_GRUB_DRIVERS_EMBEDDED | -D NO_GRUB_DRIVERS_EMBEDDED -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.12.5 | XCODE: 8.3.3]
0:100  0:000  SelfDevicePath=PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,5BD73122-E8B1-4B53-B8B6-1F4EA14260FD,0x28,0x64000) @D8C0C498
0:100  0:000  SelfDirPath = \EFI\BOOT
0:100  0:000  === [ Get Smbios ] ========================================
0:100  0:000  Type 16 Index = 0
0:100  0:000  Total Memory Slots Count = 4
0:100  0:000  Type 17 Index = 0
0:100  0:000  Table has error information, checking
0:100  0:000  Found memory information in table 18/1, type=0x3, operation=0x2 syndrome=0x0
0:100  0:000  ...memory OK
0:100  0:000  SmbiosTable.Type17->Speed = 2400MHz
0:100  0:000  SmbiosTable.Type17->Size = 8192MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 0 DIMM_A1
0:100  0:000  SmbiosTable.Type17->Vendor = Unknown
0:100  0:000  SmbiosTable.Type17->SerialNumber = 00000000
0:100  0:000  SmbiosTable.Type17->PartNumber = CMK8GX4M1A2400C14   
0:100  0:000  Type 17 Index = 1
0:100  0:000  Table has error information, checking
0:100  0:000  Found memory information in table 18/2, type=0x3, operation=0x2 syndrome=0x0
0:100  0:000  ...memory OK
0:100  0:000  Ignoring insane frequency value 0MHz
0:100  0:000  SmbiosTable.Type17->Speed = 0MHz
0:100  0:000  SmbiosTable.Type17->Size = 0MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 1 DIMM_A2
0:100  0:000  SmbiosTable.Type17->Vendor = <null string>
0:100  0:000  SmbiosTable.Type17->SerialNumber = <null string>
0:100  0:000  SmbiosTable.Type17->PartNumber = <null string>
0:100  0:000  Type 17 Index = 2
0:100  0:000  Table has error information, checking
0:100  0:000  Found memory information in table 18/3, type=0x3, operation=0x2 syndrome=0x0
0:100  0:000  ...memory OK
0:100  0:000  Ignoring insane frequency value 0MHz
0:100  0:000  SmbiosTable.Type17->Speed = 0MHz
0:100  0:000  SmbiosTable.Type17->Size = 0MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 2 DIMM_B1
0:100  0:000  SmbiosTable.Type17->Vendor = <null string>
0:100  0:000  SmbiosTable.Type17->SerialNumber = <null string>
0:100  0:000  SmbiosTable.Type17->PartNumber = <null string>
0:100  0:000  Type 17 Index = 3
0:100  0:000  Table has error information, checking
0:100  0:000  Found memory information in table 18/4, type=0x3, operation=0x2 syndrome=0x0
0:100  0:000  ...memory OK
0:100  0:000  Ignoring insane frequency value 0MHz
0:100  0:000  SmbiosTable.Type17->Speed = 0MHz
0:100  0:000  SmbiosTable.Type17->Size = 0MB
0:100  0:000  SmbiosTable.Type17->Bank/Device = BANK 3 DIMM_B2
0:100  0:000  SmbiosTable.Type17->Vendor = <null string>
0:100  0:000  SmbiosTable.Type17->SerialNumber = <null string>
0:100  0:000  SmbiosTable.Type17->PartNumber = <null string>
0:100  0:000  Boot status=0
0:100  0:000  Running on: 'System Product Name' with board 'PRIME B350M-A'
0:100  0:000  === [ GetCPUProperties ] ==================================
0:100  0:000  CPU Vendor = 68747541 Model=800F11
0:100  0:000   The CPU supported SSE4.1
0:100  0:000  	Looking to disable C1E if is already enabled by the BIOS:
0:100  0:000  BrandString = AMD Ryzen 7 1700 Eight-Core Processor          
0:100  0:000  CurrentSpeed: 3500
0:100  0:000  maxratio 68
0:100  0:000  cpudid_zen 136
0:100  0:000  FSBFrequency = 51 MHz, DMI FSBFrequency = 100 MHz, Corrected FSBFrequency = 100 MHz
0:100  0:000  MaxDiv/MinDiv: 34.0/14
0:100  0:000  Turbo: 0/0/0/0
0:100  0:000  Features: 0x178BFBFF
0:100  0:000  Threads: 16
0:100  0:000  Cores: 8
0:100  0:000  FSB: 100 MHz
0:100  0:000  CPU: 3499 MHz
0:100  0:000  TSC: 3500 MHz
0:100  0:000  PIS: 100 MHz
0:100  0:000  ExternalClock: 25 MHz
0:100  0:000  === [ GetDevices ] ========================================
0:100  0:000  PCI (00|00:00.00) : 1022 1450 class=060000
0:100  0:000  PCI (00|00:00.02) : 1022 1451 class=080600
0:100  0:000  PCI (00|00:01.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:01.03) : 1022 1453 class=060400
0:100  0:000  PCI (00|03:00.00) : 1022 43BB class=0C0330
0:100  0:000  PCI (00|03:00.01) : 1022 43B7 class=010601
0:100  0:000  PCI (00|03:00.02) : 1022 43B2 class=060400
0:100  0:000  PCI (00|1D:00.00) : 1022 43B4 class=060400
0:100  0:000  PCI (00|22:00.00) : 1B21 1343 class=0C0330
0:100  0:000  PCI (00|1D:04.00) : 1022 43B4 class=060400
0:100  0:000  PCI (00|1D:05.00) : 1022 43B4 class=060400
0:100  0:000  PCI (00|1D:06.00) : 1022 43B4 class=060400
0:100  0:000  PCI (00|25:00.00) : 10EC 8168 class=020000
0:100  0:000   - LAN: 0 Vendor=Realtek
0:100  0:000  PCI (00|1D:07.00) : 1022 43B4 class=060400
0:100  0:000  PCI (00|26:00.00) : 10EC 8168 class=020000
0:100  0:000   - LAN: 1 Vendor=Realtek
0:100  0:000  PCI (00|00:02.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:03.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:03.01) : 1022 1453 class=060400
0:100  0:000  PCI (00|27:00.00) : 1002 679A class=030000
0:100  0:000   - GFX: Model=AMD Radeon HD 7950/8950/R9 280 (ATI/AMD)
0:100  0:000   - RADEON_BIOS_0_SCRATCH = 0x00000050
0:100  0:000  PCI (00|27:00.01) : 1002 AAA0 class=040300
0:100  0:000   - HDMI Audio: 
0:100  0:000  PCI (00|00:04.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:07.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:07.01) : 1022 1454 class=060400
0:100  0:000  PCI (00|28:00.00) : 1022 145A class=130000
0:100  0:000  PCI (00|28:00.02) : 1022 1456 class=108000
0:100  0:000  PCI (00|28:00.03) : 1022 145C class=0C0330
0:100  0:000  PCI (00|00:08.00) : 1022 1452 class=060000
0:100  0:000  PCI (00|00:08.01) : 1022 1454 class=060400
0:100  0:000  PCI (00|29:00.00) : 1022 1455 class=130000
0:100  0:000  PCI (00|29:00.02) : 1022 7901 class=010601
0:100  0:000  PCI (00|29:00.03) : 1022 1457 class=040300
0:100  0:000  PCI (00|00:14.00) : 1022 790B class=0C0500
0:100  0:000  PCI (00|00:14.03) : 1022 790E class=060100
0:100  0:000  PCI (00|00:18.00) : 1022 1460 class=060000
0:100  0:000  PCI (00|00:18.01) : 1022 1461 class=060000
0:100  0:000  PCI (00|00:18.02) : 1022 1462 class=060000
0:100  0:000  PCI (00|00:18.03) : 1022 1463 class=060000
0:100  0:000  PCI (00|00:18.04) : 1022 1464 class=060000
0:100  0:000  PCI (00|00:18.05) : 1022 1465 class=060000
0:100  0:000  PCI (00|00:18.06) : 1022 1466 class=060000
0:100  0:000  PCI (00|00:18.07) : 1022 1467 class=060000
0:100  0:000  === [ GetDefaultSettings ] ================================
0:100  0:000  Clover load options size = 0 bytes
0:108  0:007  EFI\CLOVER\config.plist loaded: Success
0:108  0:000  === [ GetListOfThemes ] ===================================
0:117  0:009  - [00]: BGM
0:135  0:017  - [01]: embedded
0:137  0:001  - [01]: random
0:137  0:000  === [ Found config plists ] ===============================
0:137  0:000  - config.plist
0:147  0:010  === [ GetEarlyUserSettings ] ==============================
0:148  0:000  timeout set to 5
0:148  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:148  0:000  === [ LoadDrivers ] =======================================
0:158  0:010  Loading AppleImageCodec-64.efi  status=Success
0:161  0:003  Loading AppleKeyAggregator-64.efi  status=Success
0:163  0:001  Loading AppleUITheme-64.efi  status=Success
0:165  0:002  Loading DataHubDxe-64.efi  status=Success
0:168  0:002  Loading FirmwareVolume-64.efi  status=Success
0:169  0:001  Loading FSInject-64.efi  status=Success
0:170  0:001  Loading OsxFatBinaryDrv-64.efi  status=Success
0:172  0:001  Loading SMCHelper-64.efi  status=Success
0:173  0:001  Loading VBoxHfs-64.efi  status=Success
0:175  0:001   - driver needs connecting
0:175  0:000  Loading CsmVideoDxe-64.efi  status=Success
0:177  0:001   - driver needs connecting
0:177  0:000  Loading EmuVariableUefi-64.efi  status=Success
0:178  0:001  EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success
0:178  0:000  Loading Fat-64.efi  status=Success
0:180  0:001   - driver needs connecting
0:180  0:000  Loading OsxAptioFixDrv-64.efi  status=Success
0:182  0:001  Loading PartitionDxe-64.efi  status=Success
0:184  0:002   - driver needs connecting
0:184  0:000  4 drivers needs connecting ...
0:184  0:000  PlatformDriverOverrideProtocol->GetDriver overriden
0:184  0:000  Partition driver loaded: 
0:184  0:000  Video driver loaded: disconnect Success
0:228  0:043  Searching for invalid DiskIo BY_DRIVER connects: not found, all ok
0:431  0:202  CsmVideoDriverBindingStart
0:431  0:000  mixed support=40010
0:431  0:000  Controller is [030000]
0:431  0:000  Check for VBE
0:435  0:004   found Detail Timing 1920x1080
0:441  0:005    0 1280x960 attr=BB - ok, edid-
0:441  0:000    1 640x480 attr=BB - ok, edid+, 640x480, working, highest, pref=1
0:441  0:000    2 800x600 attr=BB - ok, edid+, 800x600, working, highest, pref=2
0:442  0:000    3 1024x768 attr=BB - ok, edid+, 1024x768, working, highest, pref=3
0:442  0:000    4 1280x1024 attr=BB - ok, edid+, working, highest, pref=4
0:444  0:001    5 1400x1050 attr=BB - ok, edid-
0:447  0:003    6 1920x1080 attr=BB - ok, edid+, working, highest, pref=6
0:447  0:000  CsmVideo: New mode: 6 1920x1080 - set
0:525  0:078   - SetMode pref 6 (6) = Success
0:525  0:000  CsmVideoCheckForVbe - Success
0:526  0:000  CsmVideoDriverBindingStart end Success
0:526  0:000  CsmVideo: New mode: 3 1024x768 - set
0:579  0:053  CsmVideo: New mode: 4 1280x1024 - set
0:822  0:243  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
0:956  0:133  === [ InitScreen ] ========================================
0:956  0:000  SetScreenResolution: 1920x1080 - setting Mode 6
0:956  0:000  CsmVideo: New mode: 6 1920x1080 - set
1:044  0:087  Video mode change to mode #6: Success
1:044  0:000  Console modes reported: 4, available modes:
1:044  0:000   - [01]: 80x25 (current mode)
1:044  0:000   - [02]: 80x50
1:044  0:000   - [03]: 100x31
1:044  0:000   - [04]: 240x56
1:044  0:000  reinit: self device path=PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,5BD73122-E8B1-4B53-B8B6-1F4EA14260FD,0x28,0x64000)
1:044  0:000  Using embedded font: Success
1:045  0:000  === [ GetMacAddress ] =====================================
1:045  0:000  === [ ScanSPD ] ===========================================
1:045  0:000  === [ GetAcpiTablesList ] =================================
1:045  0:000  Get Acpi Tables List from RSDT:
1:045  0:000   - [00]: FACP  A M I  len=132
1:045  0:000   - [01]: APIC  A M I  len=222
1:045  0:000   - [02]: FPDT  A M I  len=68
1:045  0:000   - [03]: SSDT  CPMCMN len=5732
1:045  0:000   - [04]: SSDT  AMD ALIB len=35916
1:045  0:000   - [05]: FIDT  A M I len=156
1:045  0:000   - [06]: SSDT  AMD CPU len=8420
1:045  0:000   - [07]: CRAT  AMD CRAT len=3920
1:045  0:000   - [08]: CDIT  AMD CDIT len=41
1:045  0:000   - [09]: SSDT  AMD AOD len=6143
1:045  0:000   - [10]: MCFG  A M I len=60
1:045  0:000   - [11]: HPET  A M I len=56
1:045  0:000   - [12]: SSDT  FCHZP len=36
1:045  0:000   - [13]: UEFI   len=66
1:045  0:000   - [14]: BGRT  A M I  len=56
1:045  0:000   - [15]: IVRS  AMD IVRS len=208
1:045  0:000   - [16]: SSDT  AMD PT len=248
1:045  0:000  Calibrated TSC Frequency = 3494010450 = 3494MHz
1:045  0:000  === [ GetUserSettings ] ===================================
1:045  0:000  USB FixOwnership: yes
1:045  0:000   - final DSDT Fix mask=00000000
1:045  0:000  ChassisType: 0x6
1:059  0:013  === [ ScanVolumes ] =======================================
1:059  0:000  Found 11 volumes with blockIO
1:059  0:000  - [00]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)
1:060  0:000          Result of bootcode detection: bootable unknown (legacy)
1:060  0:000  - [01]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)
1:060  0:000          Result of bootcode detection: bootable unknown (legacy)
1:060  0:000  - [02]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(1,GPT,5BD73122-E8B1-4B53-B8B6-1F4EA14260FD,0x28,0x64000)
1:061  0:000          Result of bootcode detection: bootable Clover (clover)
1:061  0:000          This is SelfVolume !!
1:062  0:000  - [03]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(2,GPT,8046A2D7-7733-48D7-8A66-71E28C503EB0,0x64028,0x200000)
1:062  0:000          Result of bootcode detection: bootable unknown (legacy)
1:062  0:000  - [04]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(3,GPT,C885BB11-1DC8-427E-A2C0-FBE08BEC4B1F,0x2A4028,0x1AB729A0)
1:063  0:000          Result of bootcode detection: bootable unknown (legacy)
1:063  0:000  - [05]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,41F85915-B061-4711-B0B5-30140DE48F1D,0x1AF4C8E8,0x1AB729A0)
1:063  0:000  - [06]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(5,GPT,5250A8D7-1783-4CD6-A148-F06EAB9A3638,0x35ABF288,0x135F20)
1:064  0:000  - [07]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(6,GPT,D712D9E7-EA6C-4186-824D-48B695448763,0x35BF51A8,0x1B7245C0)
1:064  0:000          Result of bootcode detection: bootable unknown (legacy)
1:064  0:000  - [08]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(7,GPT,88AF86BB-6C54-4A59-B4E5-8D32D417A23D,0x51359768,0x2336D620)
1:065  0:000          Result of bootcode detection: bootable unknown (legacy)
1:065  0:000  - [09]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(1,MBR,0x17CF17CE,0x800,0xFA000)
1:067  0:002          Result of bootcode detection: bootable Windows (vista,win)
1:067  0:000  - [10]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(2,MBR,0x17CF17CE,0xFA800,0x25333800)
1:068  0:000          Result of bootcode detection: bootable Windows (vista,win)
1:150  0:082  Loading nvram.plist from Vol 'EFI' - loaded, size=2593
1:163  0:012  === [ PutNvramPlistToRtVars ] =============================
1:163  0:000   Adding Key: EFILoginHiDPI: Size = 4, Data: 00 00 00 00 
1:163  0:000   Skipping EmuVariableUefiPresent
1:163  0:000   Adding Key: LocationServicesEnabled: Size = 1, Data: 01 
1:163  0:000   Skipping OsxAptioFixDrv-RelocBase
1:163  0:000   Adding Key: backlight-level: Size = 2, Data: FF FF 
1:163  0:000   Adding Key: bootercfg: Size = 2, Data: 28 00 
1:163  0:000   Adding Key: csr-active-config: Size = 4, Data: 77 00 00 00 
1:163  0:000   Adding Key: efi-boot-device: Size = 216, Data: 3C 61 72 72 61 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 49 4F 50 72 6F 76 69 64 65 72 43 6C 61 73 73 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 49 4F 4D 65 64 69 61 3C 2F 73 74 72 69 6E 67 3E 3C 6B 65 79 3E 49 4F 50 72 6F 70 65 72 74 79 4D 61 74 63 68 3C 2F 6B 65 79 3E 3C 64 69 63 74 3E 3C 6B 65 79 3E 55 55 49 44 3C 2F 6B 65 79 3E 3C 73 74 72 69 6E 67 3E 34 31 46 38 35 39 31 35 2D 42 30 36 31 2D 34 37 31 31 2D 42 30 42 35 2D 33 30 31 34 30 44 45 34 38 46 31 44 3C 2F 73 74 72 69 6E 67 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 2F 64 69 63 74 3E 3C 2F 61 72 72 61 79 3E 
1:163  0:000   Adding Key: efi-boot-device-data: Size = 80, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 03 01 01 01 06 00 01 00 03 12 0A 00 00 00 FF FF 00 00 04 01 2A 00 04 00 00 00 E8 C8 F4 1A 00 00 00 00 A0 29 B7 1A 00 00 00 00 15 59 F8 41 61 B0 11 47 B0 B5 30 14 0D E4 8F 1D 02 02 7F FF 04 00 
1:163  0:000   Adding Key: fakesmc-key-#KEY-ui32: Size = 4, Data: 00 00 00 12 
1:163  0:000   Adding Key: fakesmc-key-$Adr-ui32: Size = 4, Data: 00 00 03 00 
1:163  0:000   Adding Key: fakesmc-key-$Num-ui8: Size = 1, Data: 01 
1:163  0:000   Adding Key: fakesmc-key-BATP-flag: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-BBIN-ui8: Size = 1, Data: 01 
1:163  0:000   Adding Key: fakesmc-key-BEMB-flag: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-BNum-ui8: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-EPCI-ui32: Size = 4, Data: 06 F0 F0 00 
1:163  0:000   Adding Key: fakesmc-key-MSAc-ui16: Size = 2, Data: 00 00 
1:163  0:000   Adding Key: fakesmc-key-MSFW-ui8: Size = 2, Data: 01 00 
1:163  0:000   Adding Key: fakesmc-key-MSLD-ui8: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-MSPS-ui16: Size = 2, Data: 00 03 
1:163  0:000   Adding Key: fakesmc-key-MSTc-ui8: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-MSWr-ui8: Size = 1, Data: 00 
1:163  0:000   Adding Key: fakesmc-key-RBr -ch8*: Size = 8, Data: 6A 39 30 00 00 00 00 00 
1:163  0:000   Adding Key: fakesmc-key-REV -ch8*: Size = 6, Data: 02 20 0F 00 00 18 
1:163  0:000   Adding Key: fakesmc-key-RMde-char: Size = 1, Data: 41 
1:163  0:000   Adding Key: fakesmc-key-RPlt-ch8*: Size = 8, Data: 6A 39 30 00 00 00 00 00 
1:163  0:000   Adding Key: flagstate: Size = 32, Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
1:163  0:000   Adding Key: fmm-computer-name: Size = 15, Data: 4D 61 63 20 50 72 6F 20 64 65 20 67 69 6C 73 
1:163  0:000   Adding Key: nvda_drv: Size = 2, Data: 31 00 
1:163  0:000   Adding Key: prev-lang:kbd: Size = 4, Data: 66 72 3A 30 
1:163  0:000   Adding Key: security-mode: String: Size = 4, Val = 'none'
1:163  0:000   Adding Key: specialbootdevice: Size = 80, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 03 01 01 01 06 00 01 00 03 12 0A 00 00 00 FF FF 00 00 04 01 2A 00 03 00 00 00 28 40 2A 00 00 00 00 00 A0 29 B7 1A 00 00 00 00 11 BB 85 C8 C8 1D 7E 42 A2 C0 FB E0 8B EC 4B 1F 02 02 7F FF 04 00 
1:163  0:000  === [ InitTheme ] =========================================
1:163  0:000  no default theme, get random theme BGM
1:164  0:000  Using theme 'BGM' (EFI\CLOVER\themes\BGM)
1:164  0:000  OS main and drive as badge
1:166  0:001  Loading font from ThemeDir: Success
1:166  0:000  Choosing theme BGM
1:166  0:000  after NVRAM boot-args=dart=0 npci=0x2000 rootless=0 keepsyms=1
1:166  0:000  === [ Dump SMC keys from NVRAM ] ==========================
1:166  0:000  found AppleSMC protocol
1:167  0:000  === [ ScanLoader ] ========================================
1:167  0:000  - [02]: 'EFI'
1:192  0:025  - [03]: 'SANS TITRE'
1:198  0:005  - [04]: 'MacHDD'
1:220  0:021          AddLoaderEntry for Volume Name=MacHDD
1:241  0:021      Check if volume Is Hibernated:
1:241  0:000      Check sleep image 'by signature':
1:286  0:045      read prefs \Library\Preferences\SystemConfiguration\com.apple.PowerManagement.plist status=Success
1:286  0:000      SleepImage name from pref: ImageVolume = 'MacHDD', ImageName = '\private\var\vm\sleepimage'
1:312  0:026      sleepimage not found -> Not Found
1:312  0:000      hibernated: no - sign
1:313  0:000          [!] Icon 17 (icons\vol_internal_hfs.icns) not found (path: EFI\CLOVER\themes\BGM)
1:385  0:071  - [05]: 'mydisk'
1:419  0:034          AddLoaderEntry for Volume Name=mydisk
1:442  0:023      Check if volume Is Hibernated:
1:442  0:000      Check sleep image 'by signature':
1:492  0:050      read prefs \Library\Preferences\com.apple.PowerManagement.plist status=Success
1:492  0:000      using default sleep image name = \private\var\vm\sleepimage
1:545  0:052      no valid sleep image offset was found
1:545  0:000       sleepimage offset could not be acquired
1:545  0:000      hibernated: no - sign
1:630  0:085  - [06]: 'Recovery HD'
1:631  0:000          AddLoaderEntry for Volume Name=Recovery HD
1:649  0:018  - [07]: 'boli'
1:662  0:013          AddLoaderEntry for Volume Name=boli
1:673  0:010      Check if volume Is Hibernated:
1:673  0:000      Check sleep image 'by signature':
1:690  0:016      using default sleep image name = \private\var\vm\sleepimage
1:712  0:022      sleepimage not found -> Not Found
1:712  0:000      hibernated: no - sign
1:783  0:070  - [09]: 'Réservé au système'
1:788  0:005  - [10]: ''
1:793  0:005  Scanning legacy ...
1:793  0:000   2: 'EFI' (clover) add legacy
1:794  0:000   added 'Boot Clover from EFI' OSType=3 Icon=clover
1:794  0:000   9: 'Réservé au système' (vista,win) add legacy
1:795  0:000   added 'Boot Windows from Réservé au système' OSType=2 Icon=vista,win
1:795  0:000  10: '' (vista,win) add legacy
1:795  0:000   added 'Boot Windows from ' OSType=2 Icon=vista,win
1:795  0:000  === [ AddCustomTool ] =====================================
1:810  0:014  found tool \EFI\CLOVER\tools\Shell64U.efi
1:810  0:000  Checking EFI partition Volume 2 for Clover
1:810  0:000   Found Clover
1:810  0:000  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored
1:810  0:000  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
1:944  0:134  === [ GetEfiBootDeviceFromNvram ] =========================
1:944  0:000   - efi-boot-device-data: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,41F85915-B061-4711-B0B5-30140DE48F1D,0x1AF4C8E8,0x1AB729A0)
1:944  0:000    - Volume: 'PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,41F85915-B061-4711-B0B5-30140DE48F1D,0x1AF4C8E8,0x1AB729A0)'
1:944  0:000    - LoaderPath: '<null string>'
1:944  0:000    - Guid = 41F85915-B061-4711-B0B5-30140DE48F1D
1:944  0:000  === [ FindStartupDiskVolume ] =============================
1:944  0:000    - Volume: partition = PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x0,0xFFFF,0x0)\HD(4,GPT,41F85915-B061-4711-B0B5-30140DE48F1D,0x1AF4C8E8,0x1AB729A0)
1:944  0:000     - searching for that partition
1:944  0:000      - found entry 1. 'Boot macOS from mydisk', Volume 'mydisk'
1:944  0:000  Boot redirected to Entry 1. 'Boot macOS from mydisk'
1:944  0:000  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored
1:944  0:000  DefaultIndex=1 and MainMenu.EntryCount=13
2:210  0:265  GUI ready
102:934  100:724  Boot option Boot0000 not found
102:934  0:000  === [ StartLoader ] =======================================
102:934  0:000  Finally: ExternalClock=25MHz BusSpeed=102765kHz CPU=3494MHz PIS: hw.busfrequency=100000000Hz
102:934  0:000  Loading boot.efi  status=Success
103:047  0:113  GetOSVersion: 10.12.6 (16G24b)
103:047  0:000  CSR_CFG: CSR_ALLOW_UNTRUSTED_KEXTS | CSR_ALLOW_UNRESTRICTED_FS | CSR_ALLOW_TASK_FOR_PID | CSR_ALLOW_APPLE_INTERNAL | CSR_ALLOW_UNRESTRICTED_DTRACE | CSR_ALLOW_UNRESTRICTED_NVRAM
103:047  0:000  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
103:183  0:135  === [ PatchSmbios ] =======================================
103:183  0:000  insert table 9 for dev 0:0
103:183  0:000  insert table 9 for dev 0:1
103:183  0:000  insert table 9 for dev 0:0
103:183  0:000  Trusting SMBIOS...
103:183  0:000  Channels: 1
103:183  0:000  Interleave: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
103:183  0:000   partNum=CMK8GX4M1A2400C14   
103:183  0:000  SMBIOS Type 17 Index = 0 => 0 0:
103:183  0:000   DIMM1 2400MHz 8192MB
103:183  0:000  SMBIOS Type 17 Index = 1 => 1 1:
103:183  0:000   DIMM2 EMPTY
103:183  0:000  SMBIOS Type 17 Index = 2 => 2 2:
103:183  0:000   DIMM3 EMPTY
103:183  0:000  SMBIOS Type 17 Index = 3 => 3 3:
103:183  0:000   DIMM4 EMPTY
103:183  0:000  mTotalSystemMemory = 8192
103:183  0:000  NumberOfMemoryDevices = 4
103:183  0:000  Type20[0]->End = 0x7FFFFF, Type17[0] = 0x2000
103:183  0:000  === [ PatchACPI ] =========================================
103:183  0:000  RSDT 0xCEA16028
103:183  0:000  FADT from RSDT: 0xCEA16158
103:183  0:000  XSDT 0xCEA16098
103:183  0:000  FADT from XSDT: 0xCEA1E250
103:183  0:000  Xsdt reallocation done
103:183  0:000  old FADT length=114
103:184  0:000  Apply DsdtFixMask=0x00000000
103:184  0:000     drop _DSM mask=0x0000
103:184  0:000  === [ FixBiosDsdt ] =======================================
103:184  0:000  USBADR[0] = 0x10003 and PCIe = 0x0
103:184  0:000  USBADR[1] = 0x10003 and PCIe = 0x2
103:184  0:000  VideoCard devID=0x679A1002
103:184  0:000  DisplayADR1[0] = 0x30001, DisplayADR2[0] = 0x0
103:185  0:000  USBADR[2] = 0x70001 and PCIe = 0x3
103:189  0:004  first CPU found at 4218 offset 421C
103:189  0:000  score candidate at 410B
103:189  0:000  score inserted in acpi_cpu_score _PR_
103:189  0:000  Found ACPI CPU: P000 | P001 | P002 | P003 | P004 | P005 | P006 | P007 | P008 | P009 | P00A | P00B | P00C | P00D | P00E | P00F , within the score: _PR_
103:189  0:000  Found PCIROOTUID = 0
103:190  0:000  === [ ACPIDropTables ] ====================================
103:190  0:000  === [ PatchAllSSDT ] ======================================
103:190  0:000  Patch table: SSDT  CPMCMN len=0x1664
103:190  0:000  Patch table: SSDT  AMD ALIB len=0x8C4C
103:190  0:000  Patch table: SSDT  AMD CPU len=0x20E4
103:190  0:000  Patch table: SSDT  AMD AOD len=0x17FF
103:190  0:000  Patch table: SSDT  FCHZP len=0x24
103:190  0:000  Patch table: SSDT  AMD PT len=0xF8
103:190  0:000  Drop tables from Xsdt, SIGN=XXXX TableID= Length=0
103:190  0:000   Xsdt has tables count=17
103:190  0:000  CPUBase=0 and ApicCPUBase=1 ApicCPUNum=16
103:190  0:000  SSDT with CPU C-States generated successfully
103:190  0:000  === [ RestSetup macOS ] ===================================
103:190  0:000  EdidDiscovered size=128
103:190  0:000  ------- EDID Table
103:190  0:000  000  |  00  FF  FF  FF  FF  FF  FF  00  41  0C
103:190  0:000  010  |  7B  C0  73  08  00  00  1B  16  01  03
103:190  0:000  020  |  80  30  1B  78  2A  0A  45  A7  54  4A
103:190  0:000  030  |  99  25  11  50  54  BD  4B  00  D1  C0
103:190  0:000  040  |  81  80  95  0F  95  00  B3  00  01  01
103:190  0:000  050  |  01  01  01  01  02  3A  80  18  71  38
103:190  0:000  060  |  2D  40  58  2C  45  00  E0  0C  11  00
103:190  0:000  070  |  00  1E  00  00  00  FF  00  41  55  32
103:190  0:000  080  |  31  32  32  37  30  30  32  31  36  33
103:190  0:000  090  |  00  00  00  FC  00  32  32  37  45  4C
103:190  0:000  100  |  48  0A  20  20  20  20  20  20  00  00
103:190  0:000  110  |  00  FD  00  38  4C  1E  53  11  00  0A
103:190  0:000  120  |  20  20  20  20  20  20  00  3A
103:190  0:000  ATI injection not set
103:244  0:054   codec not detected
103:244  0:000   RCBA disabled; cannot use it
103:244  0:000  stringlength = 2230
103:244  0:000  CurrentMode: Width=1920 Height=1080
103:244  0:000  Beginning FSInjection
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: D8C05C18
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: D8C05C18
103:257  0:013  Use origin smbios table type 1 guid.
103:259  0:001  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other
103:259  0:000  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.12
103:259  0:000  Custom boot is disabled

post-2087795-0-85724700-1500075850_thumb.png

post-2087795-0-67145700-1500075953_thumb.png

post-2087795-0-68713100-1500075987_thumb.png

Link to comment
Share on other sites

Ryzen 1800X 3.60GHz 

kernel_10.2.4_auto, CLOVERX64.efi from post #190

hw.tbfrequency: 1000000000
hw.cpufrequency_max: 3601000000
hw.cpufrequency_min: 3601000000
hw.cpufrequency: 3601000000
hw.busfrequency_max: 100000000
hw.busfrequency_min: 100000000
hw.busfrequency: 100000000
machdep.tsc.frequency: 3600513362

0:100  0:100  MemLog inited, TSC freq: 3600513360
0:100  0:000  CPU was calibrated without ACPI PM Timer: Intel ICH device was not found., use RTC
0:100  0:000
0:100  0:000  Now is 15.7.2017,  10:18:2 (GMT)
0:100  0:000  Starting Clover revision: 4114 on American Megatrends EFI
0:100  0:000  Build with: [Args: -D NO_GRUB_DRIVERS_EMBEDDED | -D NO_GRUB_DRIVERS_EMBEDDED -D USE_LOW_EBDA -a X64 -b RELEASE -t XCODE5 -n 5 | OS: 10.12.5 | XCODE: 8.3.3]
0:100  0:000  SelfDevicePath=PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(1,GPT,FF3EF174-38AA-44B7-A131-898CFDE5166D,0x28,0x64000) @DAF1D118
0:100  0:000  SelfDirPath = \EFI\BOOT
0:102  0:002  === [ Get Smbios ] ========================================
0:102  0:000  Type 16 Index = 0
0:102  0:000  Total Memory Slots Count = 4
0:102  0:000  Type 17 Index = 0
0:102  0:000  Table has error information, checking
0:102  0:000  Found memory information in table 18/1, type=0x3, operation=0x2 syndrome=0x0
0:102  0:000  ...memory OK
0:102  0:000  SmbiosTable.Type17->Speed = 3066MHz
0:102  0:000  SmbiosTable.Type17->Size = 0MB
0:102  0:000  SmbiosTable.Type17->Bank/Device = CHANNEL A DIMM 0
0:102  0:000  SmbiosTable.Type17->Vendor = Unknown
0:102  0:000  SmbiosTable.Type17->SerialNumber = Unknown
0:102  0:000  SmbiosTable.Type17->PartNumber = Unknown
0:102  0:000  Type 17 Index = 1
0:102  0:000  Table has error information, checking
0:102  0:000  Found memory information in table 18/2, type=0x3, operation=0x2 syndrome=0x0
0:102  0:000  ...memory OK
0:102  0:000  SmbiosTable.Type17->Speed = 3066MHz
0:102  0:000  SmbiosTable.Type17->Size = 8192MB
0:102  0:000  SmbiosTable.Type17->Bank/Device = CHANNEL A DIMM 1
0:102  0:000  SmbiosTable.Type17->Vendor = Unknown
0:102  0:000  SmbiosTable.Type17->SerialNumber = 00000000
0:102  0:000  SmbiosTable.Type17->PartNumber = CMK16GX4M2B3200C16
0:102  0:000  Type 17 Index = 2
0:102  0:000  Table has error information, checking
0:102  0:000  Found memory information in table 18/3, type=0x3, operation=0x2 syndrome=0x0
0:102  0:000  ...memory OK
0:102  0:000  SmbiosTable.Type17->Speed = 3066MHz
0:102  0:000  SmbiosTable.Type17->Size = 0MB
0:102  0:000  SmbiosTable.Type17->Bank/Device = CHANNEL B DIMM 0
0:102  0:000  SmbiosTable.Type17->Vendor = Unknown
0:102  0:000  SmbiosTable.Type17->SerialNumber = Unknown
0:102  0:000  SmbiosTable.Type17->PartNumber = Unknown
0:102  0:000  Type 17 Index = 3
0:102  0:000  Table has error information, checking
0:102  0:000  Found memory information in table 18/4, type=0x3, operation=0x2 syndrome=0x0
0:102  0:000  ...memory OK
0:102  0:000  SmbiosTable.Type17->Speed = 3066MHz
0:102  0:000  SmbiosTable.Type17->Size = 8192MB
0:102  0:000  SmbiosTable.Type17->Bank/Device = CHANNEL B DIMM 1
0:102  0:000  SmbiosTable.Type17->Vendor = Unknown
0:102  0:000  SmbiosTable.Type17->SerialNumber = 00000000
0:102  0:000  SmbiosTable.Type17->PartNumber = CMK16GX4M2B3200C16
0:102  0:000  Boot status=0
0:102  0:000  Running on: 'MS-7A37' with board 'B350M MORTAR (MS-7A37)'
0:102  0:000  === [ GetCPUProperties ] ==================================
0:102  0:000  CPU Vendor = 68747541 Model=800F11
0:102  0:000   The CPU supported SSE4.1
0:102  0:000  	Looking to disable C1E if is already enabled by the BIOS:
0:102  0:000  BrandString = AMD Ryzen 7 1800X Eight-Core Processor
0:102  0:000  CurrentSpeed: 3600
0:102  0:000  maxratio 72
0:102  0:000  cpudid_zen 8
0:102  0:000  FSBFrequency = 50 MHz, DMI FSBFrequency = 100 MHz, Corrected FSBFrequency = 100 MHz
0:102  0:000  MaxDiv/MinDiv: 36.0/22
0:102  0:000  Turbo: 0/0/0/0
0:102  0:000  Features: 0x178BFBFF
0:102  0:000  Threads: 16
0:102  0:000  Cores: 8
0:102  0:000  FSB: 100 MHz
0:102  0:000  CPU: 3600 MHz
0:102  0:000  TSC: 3600 MHz
0:102  0:000  PIS: 100 MHz
0:102  0:000  ExternalClock: 25 MHz
0:102  0:000  === [ GetDevices ] ========================================
0:102  0:000  PCI (00|00:00.00) : 1022 1450 class=060000
0:102  0:000  PCI (00|00:01.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:01.03) : 1022 1453 class=060400
0:102  0:000  PCI (00|03:00.00) : 1022 43BB class=0C0330
0:102  0:000  PCI (00|03:00.01) : 1022 43B7 class=010601
0:102  0:000  PCI (00|03:00.02) : 1022 43B2 class=060400
0:102  0:000  PCI (00|04:00.00) : 1022 43B4 class=060400
0:102  0:000  PCI (00|04:01.00) : 1022 43B4 class=060400
0:102  0:000  PCI (00|1E:00.00) : 10EC 8168 class=020000
0:102  0:000   - LAN: 0 Vendor=Realtek
0:102  0:000  PCI (00|04:04.00) : 1022 43B4 class=060400
0:102  0:000  PCI (00|1F:00.00) : 1B73 1100 class=0C0330
0:102  0:000  PCI (00|00:02.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:03.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:03.01) : 1022 1453 class=060400
0:102  0:000  PCI (00|20:00.00) : 10DE 1187 class=030000
0:102  0:000   - GFX: Model=MSI GeForce GTX 760 family E4 (Nvidia)
0:102  0:000  PCI (00|20:00.01) : 10DE 0E0A class=040300
0:102  0:000   - HDMI Audio:
0:102  0:000  PCI (00|00:04.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:07.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:07.01) : 1022 1454 class=060400
0:102  0:000  PCI (00|21:00.00) : 1022 145A class=130000
0:102  0:000  PCI (00|21:00.02) : 1022 1456 class=108000
0:102  0:000  PCI (00|21:00.03) : 1022 145C class=0C0330
0:102  0:000  PCI (00|00:08.00) : 1022 1452 class=060000
0:102  0:000  PCI (00|00:08.01) : 1022 1454 class=060400
0:102  0:000  PCI (00|22:00.00) : 1022 1455 class=130000
0:102  0:000  PCI (00|22:00.02) : 1022 7901 class=010601
0:102  0:000  PCI (00|22:00.03) : 1022 1457 class=040300
0:103  0:000  PCI (00|00:14.00) : 1022 790B class=0C0500
0:103  0:000  PCI (00|00:14.03) : 1022 790E class=060100
0:103  0:000  PCI (00|00:18.00) : 1022 1460 class=060000
0:103  0:000  PCI (00|00:18.01) : 1022 1461 class=060000
0:103  0:000  PCI (00|00:18.02) : 1022 1462 class=060000
0:103  0:000  PCI (00|00:18.03) : 1022 1463 class=060000
0:103  0:000  PCI (00|00:18.04) : 1022 1464 class=060000
0:103  0:000  PCI (00|00:18.05) : 1022 1465 class=060000
0:103  0:000  PCI (00|00:18.06) : 1022 1466 class=060000
0:103  0:000  PCI (00|00:18.07) : 1022 1467 class=060000
0:103  0:000  === [ GetDefaultSettings ] ================================
0:103  0:000  Clover load options size = 0 bytes
0:120  0:017  EFI\CLOVER\config.plist loaded: Success
0:120  0:000  === [ GetListOfThemes ] ===================================
0:121  0:001  - [00]: BGM
0:142  0:020  - [01]: embedded
0:150  0:008  - [01]: random
0:166  0:015  - [01]: Shield
0:181  0:015  === [ Found config plists ] ===============================
0:182  0:001  - config.plist
0:183  0:001  - config Kopie.plist
0:185  0:001  - config_pro61.plist
0:186  0:001  === [ GetEarlyUserSettings ] ==============================
0:186  0:000  timeout set to 3
0:186  0:000  Custom boot CUSTOM_BOOT_DISABLED (0x0)
0:186  0:000  KextsToPatch: 1 requested
0:186  0:000   - [00]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: MatchOS: 10.12.x :: BinPatch :: data len: 7
0:186  0:000  Default theme: Shield
0:186  0:000  === [ LoadDrivers ] =======================================
0:187  0:001  Loading AppleImageCodec-64.efi  status=Success
0:205  0:017  Loading AppleKeyAggregator-64.efi  status=Success
0:209  0:004  Loading AppleUITheme-64.efi  status=Success
0:214  0:005  Loading CsmVideoDxe-64.efi  status=Success
0:225  0:010   - driver needs connecting
0:225  0:000  Loading DataHubDxe-64.efi  status=Success
0:231  0:006  Loading EmuVariableUefi-64.efi  status=Success
0:236  0:004  EmuVariableUefi Initialize: VariableCommonInitialize = Success, orig services stored, install gEmuVariableControlProtocolGuid = Success
0:236  0:000  Loading Fat-64.efi  status=Success
0:247  0:010   - driver needs connecting
0:247  0:000  Loading FirmwareVolume-64.efi  status=Success
0:252  0:004  Loading FSInject-64.efi  status=Success
0:256  0:004  Loading OsxAptioFixDrv-64.efi  status=Success
0:261  0:004  Loading OsxFatBinaryDrv-64.efi  status=Success
0:272  0:011  Loading PartitionDxe-64.efi  status=Success
0:278  0:005   - driver needs connecting
0:278  0:000  Loading SMCHelper-64.efi  status=Success
0:283  0:005  Loading VBoxHfs-64.efi  status=Success
0:288  0:005   - driver needs connecting
0:289  0:000  4 drivers needs connecting ...
0:289  0:000  PlatformDriverOverrideProtocol->GetDriver overriden
0:289  0:000  Partition driver loaded:
0:289  0:000  Video driver loaded: disconnect Success
0:366  0:077  Searching for invalid DiskIo BY_DRIVER connects: not found, all ok
0:521  0:154  CsmVideoDriverBindingStart
0:521  0:000  mixed support=40010
0:521  0:000  Controller is [030000]
0:521  0:000  Check for VBE
0:623  0:102   found Detail Timing 2560x1440
0:623  0:000   found Detail Timing 2560x1440
0:640  0:017    0 640x480 attr=3BF - ok, edid+, 640x480, working, highest, pref=0
0:643  0:002    1 800x600 attr=3BF - ok, edid+, 800x600, working, highest, pref=1
0:646  0:002    2 1024x768 attr=3BF - ok, edid+, 1024x768, working, highest, pref=2
0:649  0:003    3 1280x1024 attr=3BF - ok, edid+, working, highest, pref=3
0:667  0:017    4 1600x1200 attr=3BF - ok, edid+, working, highest, pref=4
0:671  0:004    5 2560x1440 attr=3BF - ok, edid+, working, highest, pref=5
0:674  0:002    6 1280x800 attr=3BF - ok, edid-
0:674  0:000  CsmVideo: New mode: 5 2560x1440 - set
1:217  0:543   - SetMode pref 5 (5) = Success
1:217  0:000  CsmVideoCheckForVbe - Success
1:217  0:000  CsmVideoDriverBindingStart end Success
1:217  0:000  CsmVideo: New mode: 2 1024x768 - set
1:409  0:191  CsmVideo: New mode: 2 1024x768EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
1:765  0:356  === [ InitScreen ] ========================================
1:765  0:000  SetScreenResolution: 1920x1080 - not found!
1:765  0:000  Console modes reported: 4, available modes:
1:765  0:000   - [01]: 80x25
1:765  0:000   - [02]: 80x50
1:765  0:000   - [03]: 100x31
1:765  0:000   - [04]: 128x40 (current mode)
1:765  0:000  SetScreenResolution: 1024x768 - already set
1:765  0:000  reinit: self device path=PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(1,GPT,FF3EF174-38AA-44B7-A131-898CFDE5166D,0x28,0x64000)
1:768  0:002  Using embedded font: Success
1:768  0:000  === [ GetMacAddress ] =====================================
1:768  0:000  MAC address of LAN #0= 4C:CC:6A:F9:80:C4:
1:768  0:000  === [ ScanSPD ] ===========================================
1:769  0:000  === [ GetAcpiTablesList ] =================================
1:769  0:000  Get Acpi Tables List from RSDT:
1:769  0:000   - [00]: FACP  A M I  len=132
1:769  0:000   - [01]: APIC  A M I  len=222
1:769  0:000   - [02]: FPDT  A M I  len=68
1:769  0:000   - [03]: FIDT  A M I len=156
1:769  0:000   - [04]: SSDT  AMD ALIB len=35916
1:769  0:000   - [05]: SSDT  AMD CPU len=8420
1:769  0:000   - [06]: CRAT  AMD CRAT len=3920
1:769  0:000   - [07]: CDIT  AMD CDIT len=41
1:769  0:000   - [08]: SSDT  AMD AOD len=6098
1:769  0:000   - [09]: MCFG  A M I len=60
1:769  0:000   - [10]: HPET  A M I len=56
1:769  0:000   - [11]: SSDT  FCHZP len=36
1:769  0:000   - [12]: UEFI   len=66
1:769  0:000   - [13]: IVRS  AMD IVRS len=48
1:769  0:000   - [14]: SSDT  AMD PT len=248
1:769  0:000   - [15]: SSDT  CPMCMN len=5732
1:769  0:000  Calibrated TSC Frequency = 3600513360 = 3600MHz
1:769  0:000  === [ GetUserSettings ] ===================================
1:769  0:000  USB FixOwnership: yes
1:769  0:000   - final DSDT Fix mask=00000000
1:769  0:000  PatchesDSDT: 2 requested
1:769  0:000   - [00]: (change XHC0 to XHC1) lenToFind: 4, lenToReplace: 4
1:769  0:000    patch disabled at config
1:769  0:000   - [01]: (PTXH to XHC1) lenToFind: 4, lenToReplace: 4
1:769  0:000    patch disabled at config
1:769  0:000  ChassisType: 0x13
1:769  0:000  Converted CustomUUID 80F24F84-F3AB-4DC1-8949-223E4E951B48
1:784  0:015  === [ ScanVolumes ] =======================================
1:784  0:000  Found 4 volumes with blockIO
1:784  0:000  - [00]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)
1:785  0:000  - [01]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(1,GPT,FF3EF174-38AA-44B7-A131-898CFDE5166D,0x28,0x64000)
1:785  0:000          Result of bootcode detection: bootable unknown (legacy)
1:796  0:010          This is SelfVolume !!
1:796  0:000  - [02]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(2,GPT,6EF18343-A588-4547-A9CF-4E680C6BCD76,0x64028,0xDDFAC40)
1:796  0:000  - [03]: Volume: PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(3,GPT,B0DB51FF-00D2-4D9B-BD56-2BDE08496D02,0xDE5EC68,0x135F20)
1:808  0:011  Loading nvram.plist from Vol 'EFI' - loaded, size=2462
1:817  0:009  === [ PutNvramPlistToRtVars ] =============================
1:817  0:000   Adding Key: EFILoginHiDPI: Size = 4, Data: 00 00 00 00
1:817  0:000   Skipping EmuVariableUefiPresent
1:817  0:000   Skipping OsxAptioFixDrv-RelocBase
1:817  0:000   Adding Key: SystemAudioVolume: Size = 1, Data: 30
1:817  0:000   Adding Key: SystemAudioVolumeDB: Size = 1, Data: F0
1:817  0:000   Adding Key: backlight-level: Size = 2, Data: FF FF
1:817  0:000   Adding Key: boot-gamma: Size = 170, Data: C3 15 00 00 82 23 00 00 05 E5 61 02 AA 00 00 00 00 00 00 00 0C 00 C0 00 F9 03 40 02 B5 08 41 07 16 14 43 0E 8C 20 C5 17 E1 2E 48 22 E4 3C CB 2E 0B 4C CF 3D C4 5C 53 4E DD 6D 1C 71 D7 8E 66 9A 65 B2 B2 C9 E9 D7 0C 00 C0 00 F9 03 40 02 B5 08 41 07 16 14 43 0E 8C 20 C5 17 E1 2E 48 22 E4 3C CB 2E 0B 4C CF 3D C4 5C 53 4E DD 6D 1C 71 D7 8E 66 9A 65 B2 B2 C9 E9 D7 0C 00 C0 00 F9 03 40 02 B5 08 41 07 16 14 43 0E 8C 20 C5 17 E1 2E 48 22 E4 3C CB 2E 0B 4C CF 3D C4 5C 53 4E DD 6D 1C 71 D7 8E 66 9A 65 B2 B2 C9 E9 D7
1:817  0:000   Adding Key: bootercfg: Size = 2, Data: 28 00
1:817  0:000   Adding Key: csr-active-config: Size = 4, Data: 67 00 00 00
1:817  0:000   Adding Key: fakesmc-key-#KEY-ui32: Size = 4, Data: 00 00 00 12
1:817  0:000   Adding Key: fakesmc-key-$Adr-ui32: Size = 4, Data: 00 00 03 00
1:817  0:000   Adding Key: fakesmc-key-$Num-ui8: Size = 1, Data: 01
1:817  0:000   Adding Key: fakesmc-key-BATP-flag: Size = 1, Data: 00
1:817  0:000   Adding Key: fakesmc-key-BBIN-ui8: Size = 1, Data: 01
1:817  0:000   Adding Key: fakesmc-key-BEMB-flag: Size = 1, Data: 00
1:817  0:000   Adding Key: fakesmc-key-BNum-ui8: Size = 1, Data: 00
1:817  0:000   Adding Key: fakesmc-key-EPCI-ui32: Size = 4, Data: 08 C0 F0 00
1:817  0:000   Adding Key: fakesmc-key-MSAc-ui16: Size = 2, Data: 00 00
1:818  0:000   Adding Key: fakesmc-key-MSFW-ui8: Size = 2, Data: 01 00
1:818  0:000   Adding Key: fakesmc-key-MSLD-ui8: Size = 1, Data: 00
1:818  0:000   Adding Key: fakesmc-key-MSPS-ui16: Size = 2, Data: 00 03
1:818  0:000   Adding Key: fakesmc-key-MSTc-ui8: Size = 1, Data: 00
1:818  0:000   Adding Key: fakesmc-key-MSWr-ui8: Size = 1, Data: 00
1:818  0:000   Adding Key: fakesmc-key-RBr -ch8*: Size = 8, Data: 6A 39 35 6A 39 35 61 00
1:818  0:000   Adding Key: fakesmc-key-REV -ch8*: Size = 6, Data: 02 33 0F 00 00 10
1:818  0:000   Adding Key: fakesmc-key-RMde-char: Size = 1, Data: 41
1:818  0:000   Adding Key: fakesmc-key-RPlt-ch8*: Size = 8, Data: 6A 39 35 00 00 00 00 00
1:818  0:000   Adding Key: flagstate: Size = 32, Data: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
1:818  0:000   Adding Key: fmm-computer-name: Size = 4, Data: 69 4D 61 63
1:818  0:000   Adding Key: nvda_drv: Size = 2, Data: 31 00
1:818  0:000   Adding Key: platform-uuid: Size = 16, Data: 0A C5 83 2E 08 C0 44 59 95 92 2F 2B B8 56 EF 72
1:818  0:000   Adding Key: prev-lang:kbd: Size = 4, Data: 65 6E 3A 30
1:818  0:000   Adding Key: security-mode: String: Size = 4, Val = 'none'
1:818  0:000   Adding Key: specialbootdevice: Size = 74, Data: 02 01 0C 00 D0 41 03 0A 00 00 00 00 01 01 06 00 00 17 03 12 0A 00 00 00 FF FF 00 00 04 01 2A 00 02 00 00 00 28 40 06 00 00 00 00 00 40 73 84 3B 00 00 00 00 C6 AC E6 D5 CC CD A4 49 AC 93 60 E1 F5 D6 60 36 02 02 7F FF 04 00
1:818  0:000  === [ InitTheme ] =========================================
1:822  0:004  Using theme 'Shield' (EFI\CLOVER\themes\Shield)
1:822  0:000  OS main and drive as badge
1:838  0:016  Loading font from ThemeDir: Success
1:839  0:000  Choosing theme Shield
1:839  0:000  after NVRAM boot-args=npci=0x3000 kext-dev-mode=1 ncl=262144 busratio=36
1:839  0:000  === [ Dump SMC keys from NVRAM ] ==========================
1:839  0:000  found AppleSMC protocol
1:839  0:000  === [ ScanLoader ] ========================================
1:839  0:000  - [01]: 'EFI'
1:966  0:126  - [02]: 'MacOS'
1:973  0:007          AddLoaderEntry for Volume Name=MacOS
1:980  0:007      Check if volume Is Hibernated:
1:980  0:000      Check sleep image 'by signature':
1:990  0:009      read prefs \Library\Preferences\com.apple.PowerManagement.plist status=Success
1:990  0:000      using default sleep image name = \private\var\vm\sleepimage
2:005  0:015      sleepimage not found -> Not Found
2:005  0:000      hibernated: no - sign
2:058  0:052  - [03]: 'Recovery HD'
2:062  0:004          AddLoaderEntry for Volume Name=Recovery HD
2:062  0:000      Check if volume Is Hibernated:
2:062  0:000      Check sleep image 'by signature':
2:062  0:000      using default sleep image name = \private\var\vm\sleepimage
2:062  0:000      sleepimage not found -> Not Found
2:062  0:000      hibernated: no - sign
2:066  0:003          AddLoaderEntry for Volume Name=Recovery HD
2:114  0:048  Scanning legacy ...
2:114  0:000  === [ AddCustomTool ] =====================================
2:118  0:003  found tool \EFI\CLOVER\tools\Shell64U.efi
2:118  0:000  Checking EFI partition Volume 1 for Clover
2:121  0:003   Found Clover
2:129  0:008  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored
2:138  0:008  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
2:330  0:191  === [ GetEfiBootDeviceFromNvram ] =========================
2:330  0:000   - found entry 0. 'Boot macOS from MacOS', Volume 'MacOS', DevicePath 'PciRoot(0x0)\Pci(0x1,0x3)\Pci(0x0,0x1)\Sata(0x1,0xFFFF,0x0)\HD(2,GPT,6EF18343-A588-4547-A9CF-4E680C6BCD76,0x64028,0xDDFAC40)\System\Library\CoreServices\boot.efii'
2:330  0:000  EmuVariable UninstallEmulation: CloseEvent = Success, original var services restored
2:330  0:000  DefaultIndex=0 and MainMenu.EntryCount=9
2:758  0:427  GUI ready
6:794  4:035  === [ StartLoader ] =======================================
6:794  0:000  Finally: ExternalClock=25MHz BusSpeed=100014kHz CPU=3601MHz PIS: hw.busfrequency=100000000Hz
6:794  0:000  Loading boot.efi  status=Success
6:879  0:085  GetOSVersion: 10.12.5 (16F73)
6:879  0:000  CSR_CFG: CSR_ALLOW_UNTRUSTED_KEXTS | CSR_ALLOW_UNRESTRICTED_FS | CSR_ALLOW_TASK_FOR_PID | CSR_ALLOW_UNRESTRICTED_DTRACE | CSR_ALLOW_UNRESTRICTED_NVRAM
6:879  0:000  Filtering KextPatches:
6:879  0:000   - [00]: com.apple.driver.usb.AppleUSBXHCIPCI (change 15 port limit to 26 in XHCI kext (100-series)) :: BinPatch :: [OS: 10.12.5 | MatchOS: 10.12.x | MatchBuild: All] ==> allowed
6:879  0:000  EmuVariable InstallEmulation: orig vars copied, emu.var.services installed, CreateEvent VirtualAddressChange = Success, CreateEvent ExitBootServices = Success, set Status=Success
7:070  0:191  === [ PatchSmbios ] =======================================
7:070  0:000  insert table 9 for dev 0:0
7:070  0:000  insert table 9 for dev 0:1
7:070  0:000  insert table 9 for dev 0:0
7:071  0:000  Trusting SMBIOS...
7:071  0:000  Detected alternating SMBIOS channel banks
7:071  0:000  Channels: 2
7:071  0:000  Interleave: 0 2 1 3 4 6 5 7 8 10 9 11 12 14 13 15 16 18 17 19 20 22 21 23
7:071  0:000   partNum=Unknown
7:071  0:000  SMBIOS Type 17 Index = 0 => 0 0:
7:071  0:000  BANK 0 DIMM0 EMPTY
7:071  0:000   partNum=CMK16GX4M2B3200C16
7:071  0:000  SMBIOS Type 17 Index = 1 => 1 2:
7:071  0:000  BANK 1 DIMM0 3066MHz 8192MB
7:071  0:000   partNum=Unknown
7:071  0:000  SMBIOS Type 17 Index = 2 => 2 1:
7:071  0:000  BANK 0 DIMM1 EMPTY
7:071  0:000   partNum=CMK16GX4M2B3200C16
7:071  0:000  SMBIOS Type 17 Index = 3 => 3 3:
7:071  0:000  BANK 1 DIMM1 3066MHz 8192MB
7:071  0:000  mTotalSystemMemory = 16384
7:071  0:000  NumberOfMemoryDevices = 4
7:071  0:000  Type20[0]->End = 0xFFFFFF, Type17[3] = 0x4000
7:071  0:000  === [ PatchACPI ] =========================================
7:071  0:000  RSDT 0xDD347028
7:071  0:000  FADT from RSDT: 0xDD347148
7:071  0:000  XSDT 0xDD347090
7:071  0:000  FADT from XSDT: 0xDD34D0D8
7:071  0:000  Xsdt reallocation done
7:071  0:000  old FADT length=114
7:073  0:001  Apply DsdtFixMask=0x00000000
7:073  0:000     drop _DSM mask=0x0000
7:073  0:000  === [ FixBiosDsdt ] =======================================
7:073  0:000  USBADR[0] = 0x10003 and PCIe = 0x0
7:073  0:000  USBADR[1] = 0x10003 and PCIe = 0x2
7:073  0:000  VideoCard devID=0x118710DE
7:073  0:000  DisplayADR1[0] = 0x30001, DisplayADR2[0] = 0x0
7:073  0:000  USBADR[2] = 0x70001 and PCIe = 0x3
7:111  0:037  Patching DSDT:
7:111  0:000   - [change XHC0 to XHC1]: disabled
7:111  0:000   - [PTXH to XHC1]: disabled
7:111  0:000  first CPU found at 3F67 offset 3F6B
7:111  0:000  score candidate at 3E5A
7:111  0:000  score inserted in acpi_cpu_score _PR_
7:111  0:000  Found ACPI CPU: P000 | P001 | P002 | P003 | P004 | P005 | P006 | P007 | P008 | P009 | P00A | P00B | P00C | P00D | P00E | P00F , within the score: _PR_
7:111  0:000  Found PCIROOTUID = 0
7:111  0:000  === [ ACPIDropTables ] ====================================
7:111  0:000  === [ PatchAllSSDT ] ======================================
7:111  0:000  Patch table: SSDT  AMD ALIB len=0x8C4C
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Patch table: SSDT  AMD CPU len=0x20E4
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Patch table: SSDT  AMD AOD len=0x17D2
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Patch table: SSDT  FCHZP len=0x24
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Patch table: SSDT  AMD PT len=0xF8
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Patch table: SSDT  CPMCMN len=0x1664
7:111  0:000  0. [change XHC0 to XHC1]: disabled
7:111  0:000  1. [PTXH to XHC1]: disabled
7:111  0:000  Drop tables from Xsdt, SIGN=XXXX TableID= Length=0
7:111  0:000   Xsdt has tables count=16
7:111  0:000  CPUBase=0 and ApicCPUBase=1 ApicCPUNum=16
7:111  0:000  === [ RestSetup macOS ] ===================================
7:111  0:000  EdidDiscovered size=128
7:111  0:000  ------- EDID Table
7:111  0:000  000  |  00  FF  FF  FF  FF  FF  FF  00  15  C3
7:111  0:000  010  |  83  23  05  E5  61  02  14  17  01  03
7:111  0:000  020  |  80  3C  22  78  EA  27  95  A9  54  4F
7:111  0:000  030  |  9E  26  0A  50  54  A1  08  00  D1  00
7:111  0:000  040  |  D1  C0  A9  40  81  80  81  40  81  C0
7:111  0:000  050  |  01  01  01  01  56  5E  00  A0  A0  A0
7:111  0:000  060  |  29  50  30  20  35  00  55  50  21  00
7:111  0:000  070  |  00  1A  21  39  00  00  A3  A0  1C  50
7:111  0:000  080  |  78  08  35  10  55  50  21  00  00  1C
7:111  0:000  090  |  00  00  00  FD  00  3B  3D  1F  59  19
7:111  0:000  100  |  00  0A  20  20  20  20  20  20  00  00
7:111  0:000  110  |  00  FC  00  45  56  32  37  33  36  57
7:111  0:000  120  |  0A  20  20  20  20  20  00  FB
7:111  0:000  mem_detected 1605220958208Mb
7:111  0:000  read_nVidia_ROM
7:111  0:000  Using PRAMIN fixups
7:314  0:202  PROM
7:591  0:276  ERROR: Unable to locate nVidia Video BIOS
7:591  0:000   there are no ROM loaded and no VBIOS read from hardware
7:591  0:000  nVidia MSI GeForce GTX 760  -1096810496MB NVE4 [10DE:1187] :: PciRoot(0x0)\Pci(0x3,0x1)\Pci(0x0,0x0) => device #1
7:591  0:000  Nvidia: VideoPorts: undefined, default to: 2
7:591  0:000  default NVCAP: 04000000-00000300-0C000000-00000007-00000000
7:591  0:000   RCBA disabled; cannot use it
7:591  0:000  stringlength = 3270
7:591  0:000  CurrentMode: Width=1024 Height=768
7:591  0:000  Beginning FSInjection
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: D9381D98
FSInjectionInstall ...
- Our FSI_SIMPLE_FILE_SYSTEM_PROTOCOL installed on handle: D9381D98
7:596  0:005  Use origin smbios table type 1 guid.
7:599  0:002  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\Other
7:599  0:000    Extra kext: EFI\CLOVER\kexts\Other\FakeSMC.kext
7:612  0:012    Extra kext: EFI\CLOVER\kexts\Other\RealtekRTL8111.kext
7:620  0:008    Extra kext: EFI\CLOVER\kexts\Other\patched_10.12_AppleRTC.kext
7:628  0:007    Extra kext: EFI\CLOVER\kexts\Other\System.kext
7:632  0:003    Extra kext: EFI\CLOVER\kexts\Other\VoodooHDA.kext
7:641  0:008  Preparing kexts injection for arch=x86_64 from EFI\CLOVER\kexts\10.12
7:642  0:001  Custom boot is disabled
Link to comment
Share on other sites

 Share

×
×
  • Create New...