Jump to content

Mavericks kernel testing on AMD (formerly Mountain Lion kernel testing on AMD)


theconnactic
 Share

6,414 posts in this topic

Recommended Posts

I'm currently building a new kernel...

It has mods to set cpu data to Intel Xeon or Intel Core 2 Duo depending on the cores...

 

Code is like this:

        /* AnV - Inject fake cpu data as Intel Xeon or Intel Core 2 Duo */
        if (!PE_parse_boot_argn("-nointelbrand", &dummyVar, sizeof(dummyVar)))
        {
            if (info_p->cpuid_cores_per_package >= 3)
            {
                /* Xeon for 3 cores or more... */
                info_p->cpuid_signature = 0x00010676; /* Xeon Signature */
                info_p->cpuid_stepping  = bitfield32(info_p->cpuid_signature,  3,  0);
                info_p->cpuid_model     = bitfield32(info_p->cpuid_signature,  7,  4);
                info_p->cpuid_family    = bitfield32(info_p->cpuid_signature, 11,  8);
                info_p->cpuid_type      = bitfield32(info_p->cpuid_signature, 13, 12);
                info_p->cpuid_extmodel  = bitfield32(info_p->cpuid_signature, 19, 16);
                info_p->cpuid_extfamily = bitfield32(info_p->cpuid_signature, 27, 20);
                info_p->cpuid_brand     = 0;
                strlcpy(info_p->cpuid_brand_string, CPUID_BRAND_XEON, sizeof(CPUID_BRAND_XEON));
            } else {
                /* Core 2 Duo for 2 cores or less... */
                info_p->cpuid_signature = 0x0001067A; /* Core 2 Duo Signature */
                info_p->cpuid_stepping  = bitfield32(info_p->cpuid_signature,  3,  0);
                info_p->cpuid_model     = bitfield32(info_p->cpuid_signature,  7,  4);
                info_p->cpuid_family    = bitfield32(info_p->cpuid_signature, 11,  8);
                info_p->cpuid_type      = bitfield32(info_p->cpuid_signature, 13, 12);
                info_p->cpuid_extmodel  = bitfield32(info_p->cpuid_signature, 19, 16);
                info_p->cpuid_extfamily = bitfield32(info_p->cpuid_signature, 27, 20);
                info_p->cpuid_brand     = 0;
                strlcpy(info_p->cpuid_brand_string, CPUID_BRAND_CORE2, sizeof(CPUID_BRAND_CORE2));
            }
        }

If this works it will fully emulate the Intel model (spoof it completely)...

Keep you posted for kernel to upload and test ;)


Ok, I have a kernel to test.

Please test it and report back.

Also do a sysctl -a | machdep.cpu

and show it to me...

Succes! ;)

EDIT: Did a test, needs a little more work...

Keep you posted...

Temporarely removed download... hang tight ;)

 

EDIT: Made an app to test the cpu data...

Intel Xeon:
stepping: 6
Model: 23
Family: 6
Type: 0
Extmodel: 1
Extfamily: 0
Brand: 0

Intel Core 2 Duo:
stepping: 10
Model: 23
Family: 6
Type: 0
Extmodel: 1
Extfamily: 0
Brand: 0

Extracted from signature...

  • Like 3
Link to comment
Share on other sites

sorry for off topic Q 

does anyone here able to log in app store and other  programs when using clover ?


still slow 

The-Kings-iMac:~ Mido$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E
machdep.cpu.family: 6
machdep.cpu.model: 7
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 6
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 538623
machdep.cpu.signature: 67190
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4
Link to comment
Share on other sites

great news

 

does corecrypto go back to the vanilla one with the upcoming release aswell ? or is it already since this morning and i missed it ?

 

kernel should also work with unpatched core crypto as the patch set seems to use my latest opemu with ktrap support

 

nevermind ;) 

tx

Link to comment
Share on other sites

Got it going on my Phenom X4 b50 + 5770  :):thumbsup_anim::)  Very cool !!! All smiles here...

Mac-Pro.local 13.0.0 Darwin Kernel Version 13.0.0: wo 30 okt 2013 22:52:53 CET; SinetekBronzovkAnVoodoo v2.0.0:xnu-2422.1.72-AMD/BUILD/obj/RELEASE_X86_64 x86_6

Yes... some graphical glitching at startup screen, icons but it still looks yummy!

 

A hearty congrats to all from my part to get it to here =^)    

Very very awesome!!

 

Many thanks to you Skunk.34 also for the help, It was that pesky kernelcache. der ... merci beaucoup ami.

^(Thank you very much my friend)^

 

 

same here on my 5770...

with pleasure! we are here to help each other ...

I'm glad it finally works for you!

  • Like 1
Link to comment
Share on other sites

Test the new one please... this one has the model corrected...

I forgot to add some extra code to set the proper model...

Also little app to extract model data from cpu signatures (first 4 bytes labeled ID in SMBIOS byte swapped)

#include <stdio.h>

#define bit32(n)		(1U << (n))
#define bitmask32(h,l)		((bit32(h)|(bit32(h)-1)) & ~(bit32(l)-1))
#define bitfield32(x,h,l)	((((x) & bitmask32(h,l)) >> l))

#define SIG_XEON 0x00010676
#define SIG_CORE2 0x0001067A

void print_data(unsigned int signature)
{
	unsigned int model = bitfield32(signature, 7, 4);
	unsigned int family = bitfield32(signature, 11, 8);
	unsigned int extmodel = bitfield32(signature, 19, 16);
	unsigned int extfamily = bitfield32(signature, 27, 20);
    
	if (family == 0x0f)
		family += extfamily;
	if (family == 0x0f || family == 0x06)
		model += (extmodel << 4);
    
	printf("stepping: %u\n", bitfield32(signature, 3, 0));
	printf("Model: %u\n", model);
	printf("Family: %u\n", family);
	printf("Type: %u\n", bitfield32(signature, 13, 12));
	printf("Extmodel: %u\n", extmodel);
	printf("Extfamily: %u\n", extfamily);
	printf("Brand: 0\n");
}

int main(void)
{
    printf("Intel Xeon:\n");
    print_data(SIG_XEON);
    printf("\n");

    printf("Intel Core 2 Duo:\n");
    print_data(SIG_CORE2);
    printf("\n");

	return(0);
}

Please test the new one and report back.

Slow boot is normal... due to new kext loading code...

Also don't forget to do a sysctl -a | grep machdep.cpu please :D

EDIT: Removed download ... new one below...

  • Like 1
Link to comment
Share on other sites

I'm going to test that kernel on amd fx series. Whick flags have i to use?

 

I am using Pandora with Enoch or bootloader chameleon 2266
npci=0x2000 -v AtiConfig=Hoolock AtiPorts=3
Pandora set in the post installation of the rest
 
SMBIOS macPro 4.1

Pandora's box 10-31-13_1546.html

Link to comment
Share on other sites

Test the new one please... this one has the model corrected...

I forgot to add some extra code to set the proper model...

Also little app to extract model data from cpu signatures (first 4 bytes labeled ID in SMBIOS byte swapped)

#include <stdio.h>

#define bit32(n)		(1U << (n))
#define bitmask32(h,l)		((bit32(h)|(bit32(h)-1)) & ~(bit32(l)-1))
#define bitfield32(x,h,l)	((((x) & bitmask32(h,l)) >> l))

#define SIG_XEON 0x00010676
#define SIG_CORE2 0x0001067A

void print_data(unsigned int signature)
{
	unsigned int model = bitfield32(signature, 7, 4);
	unsigned int family = bitfield32(signature, 11, 8);
	unsigned int extmodel = bitfield32(signature, 19, 16);
	unsigned int extfamily = bitfield32(signature, 27, 20);
    
	if (family == 0x0f)
		family += extfamily;
	if (family == 0x0f || family == 0x06)
		model += (extmodel << 4);
    
	printf("stepping: %u\n", bitfield32(signature, 3, 0));
	printf("Model: %u\n", model);
	printf("Family: %u\n", family);
	printf("Type: %u\n", bitfield32(signature, 13, 12));
	printf("Extmodel: %u\n", extmodel);
	printf("Extfamily: %u\n", extfamily);
	printf("Brand: 0\n");
}

int main(void)
{
    printf("Intel Xeon:\n");
    print_data(SIG_XEON);
    printf("\n");

    printf("Intel Core 2 Duo:\n");
    print_data(SIG_CORE2);
    printf("\n");

	return(0);
}

Please test the new one and report back.

Slow boot is normal... due to new kext loading code...

Also don't forget to do a sysctl -a | grep machdep.cpu please :D

auto restart :(

Link to comment
Share on other sites

More work thus... sigh...

Link to comment
Share on other sites

Test the new one please... this one has the model corrected...

I forgot to add some extra code to set the proper model...

Also little app to extract model data from cpu signatures (first 4 bytes labeled ID in SMBIOS byte swapped)

#include <stdio.h>

#define bit32(n)		(1U << (n))
#define bitmask32(h,l)		((bit32(h)|(bit32(h)-1)) & ~(bit32(l)-1))
#define bitfield32(x,h,l)	((((x) & bitmask32(h,l)) >> l))

#define SIG_XEON 0x00010676
#define SIG_CORE2 0x0001067A

void print_data(unsigned int signature)
{
	unsigned int model = bitfield32(signature, 7, 4);
	unsigned int family = bitfield32(signature, 11, 8);
	unsigned int extmodel = bitfield32(signature, 19, 16);
	unsigned int extfamily = bitfield32(signature, 27, 20);
    
	if (family == 0x0f)
		family += extfamily;
	if (family == 0x0f || family == 0x06)
		model += (extmodel << 4);
    
	printf("stepping: %u\n", bitfield32(signature, 3, 0));
	printf("Model: %u\n", model);
	printf("Family: %u\n", family);
	printf("Type: %u\n", bitfield32(signature, 13, 12));
	printf("Extmodel: %u\n", extmodel);
	printf("Extfamily: %u\n", extfamily);
	printf("Brand: 0\n");
}

int main(void)
{
    printf("Intel Xeon:\n");
    print_data(SIG_XEON);
    printf("\n");

    printf("Intel Core 2 Duo:\n");
    print_data(SIG_CORE2);
    printf("\n");

	return(0);
}

Please test the new one and report back.

Slow boot is normal... due to new kext loading code...

Also don't forget to do a sysctl -a | grep machdep.cpu please :D

Auto Restart when i set busratio boot to black screen

Link to comment
Share on other sites

Apparently it doesn't like changing CPU family and model to Intel values... gonna leave that out

Link to comment
Share on other sites

Ok, signature of the CPU gets replaced but not the model and family.

Test it please..

SinetekBronzovkAnVoodoo_RC1.diff.zip

mach_kernel.zip

Link to comment
Share on other sites

about adobe CC

 all works nearly  except illustrator 

there is method of deleting some plugins on program but what about getting it to work with out that ? :D


Ok, signature of the CPU gets replaced but not the model and family.

Test it please..

The-Kings-iMac:~ Mido$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E
machdep.cpu.family: 16
machdep.cpu.model: 4
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 6
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 538623
machdep.cpu.signature: 67190
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4

about kernel cache with chameleon still same panic

Link to comment
Share on other sites

about adobe CC

all works nearly except illustrator

there is method of deleting some plugins on program but what about getting it to work with out that ? :D

 

The-Kings-iMac:~ Mido$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E
machdep.cpu.family: 16
machdep.cpu.model: 4
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 6
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 538623
machdep.cpu.signature: 67190
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4
about kernel cache with chameleon still same panic
Strange... it should work though...

If it works with Clover it should be a chameleon issue...

Link to comment
Share on other sites

machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E
machdep.cpu.family: 16
machdep.cpu.model: 4
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 6
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 14335
machdep.cpu.signature: 67190
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4

glitches only seem to appear in flash based content  

Link to comment
Share on other sites

Ok, signature of the CPU gets replaced but not the model and family.

Test it please..

 

Previous kernel,

shaneees-imac:~ Shaneee$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: AMD Athlon(tm) II X2 215 Processor
machdep.cpu.family: 16
machdep.cpu.model: 6
machdep.cpu.extmodel: 0
machdep.cpu.extfamily: 1
machdep.cpu.stepping: 2
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 14335
machdep.cpu.signature: 1052514
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 2
machdep.cpu.cores_per_package: 2
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 2
machdep.cpu.thread_count: 2

Latest Kernel,

shaneees-imac:~ Shaneee$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Core(TM)2 Duo CPU     E7600  @ 3.06GHz
machdep.cpu.family: 16
machdep.cpu.model: 6
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 10
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 14335
machdep.cpu.signature: 67194
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 2
machdep.cpu.cores_per_package: 2
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 2
machdep.cpu.thread_count: 2

Speed shows wrong, hmmm

Link to comment
Share on other sites

Strange... it should work though...

If it works with Clover it should be a chameleon issue...

yes it works with clover but having a problem with clover nearly about nvram doesn't allow log in to app store :/

 

does any one here confirm about kernel cache with chameleon 2266 problem

and clover log in to app store ?

machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E

Intel® Xeon® CPU E

is there a miswrite here ?

Link to comment
Share on other sites

previous kernel:

$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: AMD Phenom(tm) II X4 B50 Processor
machdep.cpu.family: 16
machdep.cpu.model: 5
machdep.cpu.extmodel: 0
machdep.cpu.extfamily: 1
machdep.cpu.stepping: 3
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 538623
machdep.cpu.signature: 1052499
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4

this last kernel

$ sysctl -a | grep machdep.cpu
machdep.cpu.max_basic: 5
machdep.cpu.max_ext: 2147483675
machdep.cpu.vendor: GenuineIntel
machdep.cpu.brand_string: Intel(R) Xeon(R) CPU           E
machdep.cpu.family: 16
machdep.cpu.model: 5
machdep.cpu.extmodel: 1
machdep.cpu.extfamily: 0
machdep.cpu.stepping: 6
machdep.cpu.feature_bits: 395049983 8397321
machdep.cpu.extfeature_bits: 4022598655 538623
machdep.cpu.signature: 67190
machdep.cpu.brand: 0
machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 MON SSSE3 CX16 POPCNT
machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI
machdep.cpu.logical_per_package: 4
machdep.cpu.cores_per_package: 4
machdep.cpu.microcode_version: 21
machdep.cpu.processor_flag: 1
machdep.cpu.mwait.linesize_min: 64
machdep.cpu.mwait.linesize_max: 64
machdep.cpu.mwait.extensions: 3
machdep.cpu.mwait.sub_Cstates: 0
machdep.cpu.cache.linesize: 64
machdep.cpu.cache.L2_associativity: 16
machdep.cpu.cache.size: 524288
machdep.cpu.address_bits.physical: 48
machdep.cpu.address_bits.virtual: 48
machdep.cpu.core_count: 4
machdep.cpu.thread_count: 4

post-513502-0-11853500-1383241956_thumb.jpg

 

and this is the garbled screen just before zoom/entering the desktop

Link to comment
Share on other sites

On my system FX-8320 boots and working OK  glitches are still in safari and appstore

 

localhost:~ zibi$ sysctl -a |grep machdep.cpu

machdep.cpu.max_basic: 13

machdep.cpu.max_ext: 2147483678

machdep.cpu.vendor: GenuineIntel

machdep.cpu.brand_string: Intel® Xeon® CPU           E

machdep.cpu.family: 21

machdep.cpu.model: 2

machdep.cpu.extmodel: 1

machdep.cpu.extfamily: 0

machdep.cpu.stepping: 6

machdep.cpu.feature_bits: 395049983 1050161675

machdep.cpu.extfeature_bits: 801373183 32227327

machdep.cpu.signature: 67190

machdep.cpu.brand: 0

machdep.cpu.features: FPU VME DE PSE TSC MSR PAE MCE CX8 APIC SEP MTRR PGE MCA CMOV PAT PSE36 CLFSH MMX FXSR SSE SSE2 HTT SSE3 PCLMULQDQ MON SSSE3 FMA CX16 SSE4.1 SSE4.2 POPCNT AES XSAVE OSXSAVE AVX1.0 F16C

machdep.cpu.extfeatures: SYSCALL 1GBPAGE EM64T LAHF RDTSCP TSCI

machdep.cpu.logical_per_package: 8

machdep.cpu.cores_per_package: 8

machdep.cpu.microcode_version: 21

machdep.cpu.processor_flag: 1

machdep.cpu.mwait.linesize_min: 64

machdep.cpu.mwait.linesize_max: 64

machdep.cpu.mwait.extensions: 3

machdep.cpu.mwait.sub_Cstates: 0

machdep.cpu.thermal.sensor: 0

machdep.cpu.thermal.dynamic_acceleration: 0

machdep.cpu.thermal.invariant_APIC_timer: 0

machdep.cpu.thermal.thresholds: 0

machdep.cpu.thermal.ACNT_MCNT: 1

machdep.cpu.thermal.core_power_limits: 0

machdep.cpu.thermal.fine_grain_clock_mod: 0

machdep.cpu.thermal.package_thermal_intr: 0

machdep.cpu.thermal.hardware_feedback: 0

machdep.cpu.thermal.energy_policy: 0

machdep.cpu.xsave.extended_state: 7 832 960 1073741824

machdep.cpu.arch_perf.version: 0

machdep.cpu.arch_perf.number: 0

machdep.cpu.arch_perf.width: 0

machdep.cpu.arch_perf.events_number: 0

machdep.cpu.arch_perf.events: 0

machdep.cpu.arch_perf.fixed_number: 0

machdep.cpu.arch_perf.fixed_width: 0

machdep.cpu.cache.linesize: 64

machdep.cpu.cache.L2_associativity: 16

machdep.cpu.cache.size: 2097152

machdep.cpu.address_bits.physical: 48

machdep.cpu.address_bits.virtual: 48

Link to comment
Share on other sites

 Share

×
×
  • Create New...