Jump to content
2,189 posts in this topic

Recommended Posts

1 hour ago, Andrey1970 said:

Delete all parameters from group "Intel® Power Gadget", except "CPU Frequency" and "IGPU Frequency".

Why? If you install IntelCPUMonitor you'll be able to see another group called "CPU Frequencies":

1144626274_Schermata2018-10-14alle03_47_01.png.956e4ea633c7874a6c68e3af58800d20.png

... with all the single cores frequencies. IGP cannot do that.

 

 

1 hour ago, Andrey1970 said:

Rename group "Intel® Power Gadget" in "CPU Frequencies".

Same as above, What then for those who don't want to install the IPG framework or din't want to install the smc plugins?

 

1 hour ago, Andrey1970 said:

In group "CPU Power", rename "CPU Package GFX" in "CPU Package IGPU".

This can be any in your language if you provide me a translation. Anyway this is the macro that define it:

#define KEY_CPU_PACKAGE_GFX                     "PCPG" // SNB

but not a problem  changing it.

1 hour ago, Andrey1970 said:

Delete "Device Unit 0 Utilization" from group GPUs IGPU.

For me it is a good reading and indicate that my igpu is doing something. Really should I remove it? Consider that on a laptop this can be one of the few sensors available and we can see it often working unlike what happens for Desktops.

 

1 hour ago, Andrey1970 said:

4. Move it.

The project is done for HWSensors-3 FakeSMC and plugins and the IPG stuff has just took me a total of 2/3 hours in total... I can do something but "moving" require a lot of work and a rewrite of a lot of code. I'll do some reordering but will require time.

 

News:

I'm working to implement graphs....

Link to comment
Share on other sites

6 minutes ago, Andrey1970 said:

SMCProcessor.kext does not give out frequencies. (Because such keys are not present on real Mac.) Need IPG only for this purpose.

My request to add IPG was caused only with it.

For IntelCPUMonitor.kext not required IPG.

Why in the first beta I made, the IPG presence was the switch to make appear one or another... but all of you told me why that you cannot longer see some stuff..:unsure:

As soon I finished something I'll invent a new way to add sensors...

Edited by vector sigma
Link to comment
Share on other sites

1 hour ago, vector sigma said:

This can be any in your language if you provide me a translation. Anyway this is the macro that define it:

#define KEY_CPU_PACKAGE_GFX                     "PCPG" // SNB

but not a problem  changing it.

Yes it is correct, there such name. I simply wanted that users did not confuse it to the discrete GPU.

  • Like 1
Link to comment
Share on other sites

4 hours ago, vector sigma said:

Strange, this is the code:


- (NSArray *)getOtherFrequencies {
  NSMutableArray *arr = [NSMutableArray array];
  for (int i = 0; i < 0xA; i++) {
    [self validateSensorWithKey:[NSString stringWithFormat:@KEY_FAKESMC_FORMAT_GPU_FREQUENCY, i]
                         ofType:@TYPE_FREQ
                       forGroup:FrequencySensorGroup
                     andCaption:[[NSString alloc] initWithFormat:NSLocalizedString(@"GPU %d Core",nil)]
                        logType:NoLog
                       intoList:arr];
    
    [self validateSensorWithKey:[NSString stringWithFormat:@KEY_FAKESMC_FORMAT_GPU_SHADER_FREQUENCY, i]
                         ofType:@TYPE_FREQ
                       forGroup:FrequencySensorGroup
                     andCaption:[[NSString alloc] initWithFormat:NSLocalizedString(@"GPU %d Shaders",nil), i]
                        logType:GPULog
                       intoList:arr];
    
    [self validateSensorWithKey:[NSString stringWithFormat:@KEY_FAKESMC_FORMAT_GPU_MEMORY_FREQUENCY,i]
                         ofType:@TYPE_FREQ
                       forGroup:FrequencySensorGroup
                     andCaption:[[NSString alloc] initWithFormat:NSLocalizedString(@"GPU %d Memory",nil), i]
                        logType:GPULog
                       intoList:arr];
  }
  return arr;
}

this is the format argument:

#define KEY_FAKESMC_FORMAT_GPU_FREQUENCY        "CG%XC"

 

and as you can see the loop repeat 10 times (0xa). Please check "GPU %d Core" in the Russian Localizable.strings has a good format at the right.

The name of the card is unknown as provided by HWSensor, and for multiple cards I cannot be sure of which one could be.

Ok, next beta8

Yes, good format

"GPU %d Core" = "GPU %d, ядро";
"GPU %d Shaders" = "GPU %d, шейдеры";
"GPU %d Memory" = "GPU %d, память";

For me the problem is Objective-C. If it will be Swift I will provide more help.

Link to comment
Share on other sites

6 hours ago, vector sigma said:

Those keys are provided by FakeSMC/VirtualSMC and I have no idea how to fix them. anyway the code check for a null value and the sensor it is added because has a valid value, even if 0. If doesn't change I have no idea  but looking at an smc dump will make things clear (i.e if it is always 0).

Those keys are redundant with the one provided by Intel Power Gadget, I guess. CPU Package Total is the Core Power + NB Power and it is usefull to see under a test stress if your cpu goes nearly the limit of the thermal design point.

 

If could be useful take a look to attached picture738636917_ScreenShot2018-10-14at10_08_33AM.thumb.png.d01f7070e6e1956cdcab4d79362e254b.png

next comment is  based on my experience 

IPG power PKG is TDP

During some stress test he reaches 280W

This is useful value I don't see this value on HWMonitorSMC2 and CPU Package total seems to be to much low under this CPU multicore load(TDP for this cpu is 165W as IPG and HWMSMC2 detect correctly it)

IPG DRAM value seems to be similar to one of this (Processor Power and Processor Energy)

I do not know also in IPG app what DRAM parameter value is related so I can't say more about it

 

By now try to reverting to old kext (Intelcpumonitor) and see if this parameters will be the same 

 

PS

Personally I am not agree to some users comment to delete infos detected if reading of it has correct and real value

This is an Hack and not a real Mac so if some parameters could be exposed in hack for me is better 

then devs and coders have to decide which is better or not as always

thank you for  all improvement you are doing again on this app

Link to comment
Share on other sites

This could also be useful

I use here Fakesmc and IntelmonitorCPU kext inside HWSSMCr173 dmg

As you can see new app loose some cores which was present in RC v2.1.2 R4 and previously app developed from you

 I have no skill to understand if this is due to new IPG framework (I have always installed IPG app from first time when I have used also HWSMC2 so I do not know)

 

Screen Shot 2018-10-14 at 10.46.55 AM.png

Link to comment
Share on other sites

5 hours ago, Slice said:

Yes, good format


"GPU %d Core" = "GPU %d, ядро";
"GPU %d Shaders" = "GPU %d, шейдеры";
"GPU %d Memory" = "GPU %d, память";

For me the problem is Objective-C. If it will be Swift I will provide more help.

Try to close the app and then put the system in English, restart the app and see if the problem persist.

5 hours ago, Slice said:

Yes, good format


"GPU %d Core" = "GPU %d, ядро";
"GPU %d Shaders" = "GPU %d, шейдеры";
"GPU %d Memory" = "GPU %d, память";

For me the problem is Objective-C. If it will be Swift I will provide more help.

Will be.

Link to comment
Share on other sites

2 hours ago, fabiosun said:

This could also be useful

I use here Fakesmc and IntelmonitorCPU kext inside HWSSMCr173 dmg

As you can see new app loose some cores which was present in RC v2.1.2 R4 and previously app developed from you

 I have no skill to understand if this is due to new IPG framework (I have always installed IPG app from first time when I have used also HWSMC2 so I do not know)

 

Screen Shot 2018-10-14 at 10.46.55 AM.png

Try that: IntelCPUMonitor.kext_test.zip with the last HWMonitorSMC2 beta

Edited by vector sigma
Link to comment
Share on other sites

1 minute ago, vector sigma said:

I need an smc dump with this configuration

fabios-iMac-Pro:~ fabio$ /Users/fabio/Desktop/Acidantera_Files/VirtualSMC_Latest/Tools/smcread -s
macOS 10.13.6 (17G65)
Public keys (69):
[#KEY] type [ui32] 75693332 len [ 4] attr [00] -> 00000045
[$Num] type [ui8 ] 75693820 len [ 1] attr [00] -> 01
[ACID] type [ch8*] 6368382A len [ 8] attr [00] -> BABE3C45C0031043
[ALI0] type [{ali] 7B616C69 len [ 4] attr [00] -> 06010200
[ALRV] type [ui16] 75693136 len [ 2] attr [00] -> 0001
[ALV0] type [{alv] 7B616C76 len [10] attr [00] -> 010103B700A300156AF4
[CLKH] type [{clh] 7B636C68 len [ 8] attr [00] -> 0000708000011940
[CLKT] type [ui32] 75693332 len [ 4] attr [00] -> 0000C25D
[EPCI] type [flag] 666C6167 len [ 4] attr [00] -> 0970F000
[FNum] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[LSOF] type [flag] 666C6167 len [ 1] attr [00] -> 01
[LSSB] type [{lso] 7B6C736F len [ 2] attr [00] -> 0101
[LsNM] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[LsbV] type [{rev] 7B726576 len [ 5] attr [00] -> 01040A0006
[MOST] type [ui16] 75693136 len [ 2] attr [00] -> 8003
[MSDW] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSPS] type [{msp] 7B6D7370 len [ 1] attr [00] -> 00
[MSSD] type [si8?] 73693800 len [ 1] attr [00] -> 03
[NATJ] type [ui8?] 75693800 len [ 1] attr [00] -> 02
[NTOK] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[NVPR] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[OSK0] type [ch8*] 6368382A len [32] attr [00] -> 6F757268617264776F726B62797468657365776F72647367756172646564706C
[OSK1] type [ch8*] 6368382A len [32] attr [00] -> 65617365646F6E74737465616C2863294170706C65436F6D7075746572496E63
[REV ] type [{rev] 7B726576 len [ 6] attr [00] -> 02410F000001
[RMde] type [char] 63686172 len [ 1] attr [00] -> 41
[RPlt] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700000000
[RBr ] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700356100
[BEMB] type [flag] 666C6167 len [ 1] attr [00] -> 00
[NATi] type [ui16] 75693136 len [ 2] attr [00] -> 001E
[TC0D] type [sp78] 73703738 len [ 2] attr [00] -> 1D00
[FRC0] type [freq] 66726571 len [ 2] attr [00] -> 0CE4
[VC0C] type [fp2e] 66703265 len [ 2] attr [00] -> 4883
[TC1D] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRC1] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC2D] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRC2] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC3D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC3] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC4D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC4] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC5D] type [sp78] 73703738 len [ 2] attr [00] -> 1E00
[FRC5] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC6D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC6] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC7D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC7] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC8D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC8] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC9D] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRC9] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCAD] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRCA] type [freq] 66726571 len [ 2] attr [00] -> 0CE4
[TCBD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCB] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCCD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCC] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCDD] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRCD] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCED] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCE] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCFD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCF] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC10] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[TC11] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[MPkC] type [ui16] 75693136 len [ 2] attr [00] -> 9001
[TG0P] type [sp78] 73703738 len [ 2] attr [00] -> 2F00
[QENA] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSTS] type [ui8?] 75693800 len [ 1] attr [00] -> 0E
[MSPC] type [ui8?] 75693800 len [ 1] attr [00] -> 0F
All key attributes are null, your SMC implementation is broken!

 

this?

 

Link to comment
Share on other sites

and better if you use this one: IntelCPUMonitor.kext_test2.zip

3 minutes ago, fabiosun said:

fabios-iMac-Pro:~ fabio$ /Users/fabio/Desktop/Acidantera_Files/VirtualSMC_Latest/Tools/smcread -s
macOS 10.13.6 (17G65)
Public keys (69):
[#KEY] type [ui32] 75693332 len [ 4] attr [00] -> 00000045
[$Num] type [ui8 ] 75693820 len [ 1] attr [00] -> 01
[ACID] type [ch8*] 6368382A len [ 8] attr [00] -> BABE3C45C0031043
[ALI0] type [{ali] 7B616C69 len [ 4] attr [00] -> 06010200
[ALRV] type [ui16] 75693136 len [ 2] attr [00] -> 0001
[ALV0] type [{alv] 7B616C76 len [10] attr [00] -> 010103B700A300156AF4
[CLKH] type [{clh] 7B636C68 len [ 8] attr [00] -> 0000708000011940
[CLKT] type [ui32] 75693332 len [ 4] attr [00] -> 0000C25D
[EPCI] type [flag] 666C6167 len [ 4] attr [00] -> 0970F000
[FNum] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[LSOF] type [flag] 666C6167 len [ 1] attr [00] -> 01
[LSSB] type [{lso] 7B6C736F len [ 2] attr [00] -> 0101
[LsNM] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[LsbV] type [{rev] 7B726576 len [ 5] attr [00] -> 01040A0006
[MOST] type [ui16] 75693136 len [ 2] attr [00] -> 8003
[MSDW] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSPS] type [{msp] 7B6D7370 len [ 1] attr [00] -> 00
[MSSD] type [si8?] 73693800 len [ 1] attr [00] -> 03
[NATJ] type [ui8?] 75693800 len [ 1] attr [00] -> 02
[NTOK] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[NVPR] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[OSK0] type [ch8*] 6368382A len [32] attr [00] -> 6F757268617264776F726B62797468657365776F72647367756172646564706C
[OSK1] type [ch8*] 6368382A len [32] attr [00] -> 65617365646F6E74737465616C2863294170706C65436F6D7075746572496E63
[REV ] type [{rev] 7B726576 len [ 6] attr [00] -> 02410F000001
[RMde] type [char] 63686172 len [ 1] attr [00] -> 41
[RPlt] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700000000
[RBr ] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700356100
[BEMB] type [flag] 666C6167 len [ 1] attr [00] -> 00
[NATi] type [ui16] 75693136 len [ 2] attr [00] -> 001E
[TC0D] type [sp78] 73703738 len [ 2] attr [00] -> 1D00
[FRC0] type [freq] 66726571 len [ 2] attr [00] -> 0CE4
[VC0C] type [fp2e] 66703265 len [ 2] attr [00] -> 4883
[TC1D] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRC1] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC2D] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRC2] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC3D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC3] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC4D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC4] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC5D] type [sp78] 73703738 len [ 2] attr [00] -> 1E00
[FRC5] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC6D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC6] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC7D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC7] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC8D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC8] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC9D] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRC9] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCAD] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRCA] type [freq] 66726571 len [ 2] attr [00] -> 0CE4
[TCBD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCB] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCCD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCC] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCDD] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRCD] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCED] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCE] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCFD] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRCF] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC10] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[TC11] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[MPkC] type [ui16] 75693136 len [ 2] attr [00] -> 9001
[TG0P] type [sp78] 73703738 len [ 2] attr [00] -> 2F00
[QENA] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSTS] type [ui8?] 75693800 len [ 1] attr [00] -> 0E
[MSPC] type [ui8?] 75693800 len [ 1] attr [00] -> 0F
All key attributes are null, your SMC implementation is broken!

 

this?

 

Yes, but the last key is still TCFD, should be there TCGD and TCHD

Link to comment
Share on other sites

742206796_ScreenShot2018-10-14at2_04_07PM.thumb.png.1d8babd02df57106141a7e08062ae877.png

with your latest intelcpumonitor kext 

macOS 10.13.6 (17G65)
Public keys (69):
[#KEY] type [ui32] 75693332 len [ 4] attr [00] -> 00000045
[$Num] type [ui8 ] 75693820 len [ 1] attr [00] -> 01
[ACID] type [ch8*] 6368382A len [ 8] attr [00] -> BABE3C45C0031043
[ALI0] type [{ali] 7B616C69 len [ 4] attr [00] -> 06010200
[ALRV] type [ui16] 75693136 len [ 2] attr [00] -> 0001
[ALV0] type [{alv] 7B616C76 len [10] attr [00] -> 010103B700A300156AF4
[CLKH] type [{clh] 7B636C68 len [ 8] attr [00] -> 0000708000011940
[CLKT] type [ui32] 75693332 len [ 4] attr [00] -> 0000C5A1
[EPCI] type [flag] 666C6167 len [ 4] attr [00] -> 0970F000
[FNum] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[LSOF] type [flag] 666C6167 len [ 1] attr [00] -> 01
[LSSB] type [{lso] 7B6C736F len [ 2] attr [00] -> 0101
[LsNM] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[LsbV] type [{rev] 7B726576 len [ 5] attr [00] -> 01040A0006
[MOST] type [ui16] 75693136 len [ 2] attr [00] -> 8003
[MSDW] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSPS] type [{msp] 7B6D7370 len [ 1] attr [00] -> 00
[MSSD] type [si8?] 73693800 len [ 1] attr [00] -> 03
[NATJ] type [ui8?] 75693800 len [ 1] attr [00] -> 02
[NTOK] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[NVPR] type [ui8?] 75693800 len [ 1] attr [00] -> 00
[OSK0] type [ch8*] 6368382A len [32] attr [00] -> 6F757268617264776F726B62797468657365776F72647367756172646564706C
[OSK1] type [ch8*] 6368382A len [32] attr [00] -> 65617365646F6E74737465616C2863294170706C65436F6D7075746572496E63
[REV ] type [{rev] 7B726576 len [ 6] attr [00] -> 02410F000001
[RMde] type [char] 63686172 len [ 1] attr [00] -> 41
[RPlt] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700000000
[RBr ] type [ch8*] 6368382A len [ 8] attr [00] -> 6A31333700356100
[BEMB] type [flag] 666C6167 len [ 1] attr [00] -> 00
[NATi] type [ui16] 75693136 len [ 2] attr [00] -> 001E
[TC0D] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRC0] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[VC0C] type [fp2e] 66703265 len [ 2] attr [00] -> 2FEF
[TC1D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC1] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC2D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC2] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC3D] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRC3] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC4D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC4] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TC5D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC5] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC6D] type [sp78] 73703738 len [ 2] attr [00] -> 1800
[FRC6] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC7D] type [sp78] 73703738 len [ 2] attr [00] -> 1800
[FRC7] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC8D] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRC8] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC9D] type [sp78] 73703738 len [ 2] attr [00] -> 1B00
[FRC9] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TCAD] type [sp78] 73703738 len [ 2] attr [00] -> 1C00
[FRCA] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TCBD] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCB] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TCCD] type [sp78] 73703738 len [ 2] attr [00] -> 1900
[FRCC] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCDD] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCD] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TCED] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCE] type [freq] 66726571 len [ 2] attr [00] -> 0FA0
[TCFD] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[FRCF] type [freq] 66726571 len [ 2] attr [00] -> 04B0
[TC10] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[TC11] type [sp78] 73703738 len [ 2] attr [00] -> 1A00
[MPkC] type [ui16] 75693136 len [ 2] attr [00] -> 7800
[TG0P] type [sp78] 73703738 len [ 2] attr [00] -> 2E00
[QENA] type [ui8?] 75693800 len [ 1] attr [00] -> 01
[MSTS] type [ui8?] 75693800 len [ 1] attr [00] -> 0E
[MSPC] type [ui8?] 75693800 len [ 1] attr [00] -> 0F
All key attributes are null, your SMC implementation is broken!

Hidden keys (?):
No hidden keys, your SMC implementation is broken!

 

Link to comment
Share on other sites

I don't know what we have to find , but with fakesmc and intelcpumonitor of r173 cores count is fine

If you can say what kind of problem you are trying to fix I am available to help (with my limited knowledge) :)

 

2 minutes ago, vector sigma said:

Ok, I'm going to try by my self emulating a 18 cores.. let you know.

 

Link to comment
Share on other sites

Found the problem: IntelCPUMonitor.kext_main2.zip

7 minutes ago, fabiosun said:

I don't know what we have to find , but with fakesmc and intelcpumonitor of r173 cores count is fine

If you can say what kind of problem you are trying to fix I am available to help (with my limited knowledge) :)

 

 

Strange because he can't. Or bad keys anyway, not compatible with one produced by VirtualSMC

Link to comment
Share on other sites

×
×
  • Create New...