Jump to content
2,188 posts in this topic

Recommended Posts

16 hours ago, vector sigma said:

 

Slice's use a fake and really its card doesn't support metal, as well for the Alpha22's "MSI VN240GT-MD1G" (NVidia GT 240). I can keep this as a success?

To me return this:


DEVICE 0:
	Name: Intel HD Graphics 4000
	Metal version: 2+
	Registry ID: 0x3BF
	Max Threads Per Thread group: MTLSize(width: 512, height: 512, depth: 512)
	Max Thread group Memory Length: 32768
	Recommended Max Working Set Size: 0x60000000
	Depth 24 Stencil 8 Pixel Format Supported: false
	Programmable Sample Positions Supported: true
	Read-Write Texture Support: MTLReadWriteTextureTier
	Headless: false
	Is Low Power: true
	Removable: false

Any supported card to test with?

this is the code:


import Foundation
import Metal

if #available(OSX 10.11, *) {
  let metal = MTLCopyAllDevices()
  if metal.count > 0 {
    for i in 0..<metal.count {
      print("DEVICE \(i):")
      print("\tName: \(metal[i].name)")
      if #available(OSX 10.13, *) {
        print("\tMetal version: 2+")
        print("\tRegistry ID: \(String(format: "0x%X", metal[i].registryID))")
      } else {
        print("\tMetal version: 1")
      }
      print("\tMax Threads Per Thread group: \(metal[i].maxThreadsPerThreadgroup)")
      if #available(OSX 10.13, *) {
        print("\tMax Thread group Memory Length: \(metal[i].maxThreadgroupMemoryLength)")
      }
      if #available(OSX 10.12, *) {
        print("\tRecommended Max Working Set Size: \(String(format: "0x%X", metal[i].recommendedMaxWorkingSetSize))")
      }
      print("\tDepth 24 Stencil 8 Pixel Format Supported: \(metal[i].isDepth24Stencil8PixelFormatSupported)")
      if #available(OSX 10.13, *) {
        print("\tProgrammable Sample Positions Supported: \(metal[i].areProgrammableSamplePositionsSupported)")
      }
      if #available(OSX 10.13, *) {
        print("\tRead-Write Texture Support: \(metal[i].readWriteTextureSupport)")
      }
      print("\tHeadless: \(metal[i].isHeadless)")
      print("\tIs Low Power: \(metal[i].isLowPower)")
      if #available(OSX 10.13, *) {
        print("\tRemovable: \(metal[i].isRemovable)\n")
      } else {
        // Fallback on earlier versions
      }
    }
  } else {
    print("no devices found that support Metal")
  }
} else {
  print("This OS doesn't support Metal, 10.11 + required!")
}

 

Yes, success. With Intel HD4000 I have same result as you.

  • Like 1
Link to comment
Share on other sites

8 hours ago, bronxteck said:

DEVICE 0:

Name: Intel Iris Pro Graphics

Metal version: 2+

Registry ID: 0x3D5

Max Threads Per Thread group: MTLSize(width: 512, height: 512, depth: 512)

Max Thread group Memory Length: 32768

Recommended Max Working Set Size: 0x60000000

Depth 24 Stencil 8 Pixel Format Supported: false

Programmable Sample Positions Supported: true

Read-Write Texture Support: MTLReadWriteTextureTier

Headless: false

Is Low Power: true

Removable: false

 

 

Intel HD Graphics 4400:

 

  Chipset Model: Intel HD Graphics 4400

  Type: GPU

  Bus: Built-In

  VRAM (Dynamic, Max): 1536 MB

  Vendor: Intel

  Device ID: 0x0412

  Revision ID: 0x0009

  Metal: Supported, feature set macOS GPUFamily1 v3

Another problem: the "registryID" property of Metal framenwork is only available in 10.13, and for what I saw from your log above names mismatch:

Intel Iris Pro Graphics vs Intel HD Graphics 4400

This way..... I can't be sure if listed card are the same. Solutions:

 

  1. Print this only in 10.13 +
  2. Print this as a separate log, so not among existing GPU information.

 

please, vote ..(or give a better solution).

Link to comment
Share on other sites

ciao vector e' un po' che non ci si sente :)

 

 

NVARCH =GP100  value(where come from?)

 

 

HWMonitorSMC2 v2.1.4 GM

VIDEO CARD 1:
	Model:				NVIDIA TITAN Xp COLLECTORS EDITION
	Vendor ID:				de 10 00 00 (NVidia)
	Device ID:				02 1b 00 00
	Revision ID:			a1 00 00 00
	Subsystem Vendor ID:		de 10 00 00
	Subsystem ID:			10 00 00 00
	class-code:				00 00 03 00
	IOName:				display
	pcidebug:				1:0:0
	built-in:				00
	compatible:			pci10de,123epci10de,1b02pciclass,030000GFX0
	acpi-path:				IOACPIPlane:/_SB/PCI0@0/BR3A@30000/GFX0@0
	hda-gfx:				onboard-2
	rm_board_number:		00 00 00 00
	NVDA,noEFI:			true
	NVArch:					GP100
	rom-revision:				VBIOS 86.02.4c.00.01
	NVCLASS:				NVDA
	NVCAP			05 00 00 00 00 00 ff ff ff ff 00 00 00 00 00 0e 00 00 00 00
	pci-aspm-default:				0x0
	VRAM,totalMB			ff 2f 00 00
	device_type:			NVDA,Parent
	NVDA,accel-loaded		01 00 00 00
	vbios-revision			01 00 4c 02 86
	vNVDA,Features			00 08 00 00
	IONVRAMProperty			true
	NVDAinitgl_created		yes
	IOPCIMSIMode			true
	NVDAType				Web
	Additional Properties:
		AAPL,slot-name:  	PCI Slot-1
		AAPL,ndrv-dev:   	1

my GFX chipset is GP102

https://videocardz.net/gpu/nvidia-gp102/

 

Edited by Guest
some adjustment
Link to comment
Share on other sites

6 hours ago, vector sigma said:
  • Print this only in 10.13 +
  • Print this as a separate log, so not among existing GPU information.

that was from 10.13.5 beta the machine is a haswell HD4400. i have to use rehabman fakepcid and lilu with intelgraphics fixup. i do not know where iris pro is being generated from i also have only inject intel true in clover config no other graphics info in clover.

Link to comment
Share on other sites

6 hours ago, vector sigma said:

Another problem: the "registryID" property of Metal framenwork is only available in 10.13, and for what I saw from your log above names mismatch:

Intel Iris Pro Graphics vs Intel HD Graphics 4400

This way..... I can't be sure if listed card are the same. Solutions:

 

  1. Print this only in 10.13 +
  2. Print this as a separate log, so not among existing GPU information.

 

please, vote ..(or give a better solution).

 Print only in 10.13+ because older systems don't use metal.

Link to comment
Share on other sites

27 minutes ago, bronxteck said:

i also have only inject intel true in clover config no other graphics info in clover.

8086 0412 is an HD4600, so that you are deceiving the OS since your is an unsupported HD4400

 

27 minutes ago, bronxteck said:

i do not know where iris pro is being generated from

Metal.framenwork is an Apple API, the name comes from Apple! Unfortunately this is the result of your hacking....

7 minutes ago, Slice said:

 Print only in 10.13+ because older systems don't use metal.

ok then.

Edited by vector sigma
spelling
Link to comment
Share on other sites

1 hour ago, vector sigma said:

Hi fabiosun, GP100 comes from your ioreg (is your ioreg):

GP100.thumb.png.4823fe3026a7f0080625f0eaacc75611.png

.. but don't tell me why.

 

 

Ok 

Maybe I know why

I thought you read data directly from GFX instead of using ioreg which is probably wrong due data passed by Nvidia driver..which supports GP102 but maybe named it GP100

Thank you for your answer and efforts

 

Link to comment
Share on other sites

I thought about answering a question I saw in my inbox, but it's not here :shock:....

Ok,

@Slice and all, rev 142 contains a modification made by Slice in (r141) where He added a new Nuvoton chip (NTC 6681) in W836x.kext, in HWMonitorSMC2.app I added the ability to read Metal abilities and the Performances Statistics of the GPU(s).

Metal stuff is printed only in 10.13 due to the fact that only in the last OS (so starting from High Sierra) is present the registry ID that allow me to ensure that the log print properties for the same GPU and its accelerator since the card name is not enough as demostrated here in the above posts.

 

All is committed but attached you can find my compilation. Should be intresting for me to see a log from NVidia and AMD cards.

 

 

HWSensors-3_r142.dmg

 

Edited by vector sigma
typo
Link to comment
Share on other sites

4 minutes ago, chris1111 said:

Yes I remove the message because I'm wrong, I have a patch DSDT for the Fan

You can customize ACPIMonitor.kext->Contents->Info.plist->IOKitPersonalities->ACPI Monitoring Plugin to show what have you done with your ACPI tables.. Anyway I've not even tried this my self :D

Edited by vector sigma
Link to comment
Share on other sites

1 minute ago, vector sigma said:

You can customize ACPIMonitor.kext->Contents->Info.plist->IOKitPersonalities->ACPI Monitoring Plugin to show what have you done with your ACPI tables.. Anyway I've not even tried this my self :D

I will try and report

thank you

Link to comment
Share on other sites

Ok @vector sigma as you told me to post here. today i wanted to test your HWsensor and download DMG file and from extension folder i copy and paste these kext to my EFI/Clover/Kext/other folder : ACPIMonitor.kext - F718x.kext - FakeSMC.kext - GeforceSensor.kext - IntelCPUMonitor.kext - ITEIT87x.kext - NVClockX.kext - PC8739x.kext - W836x.kext - X3100.kext 

And reboot the system but when the loading screen comes up its restart - I go with -v for boot and when i try to see whats cause it it restart again very fast.

 

My hack is :

z97x-u3d-bk 

cpu : i5 4th gen

macOS : 10.13.4

32 gb RAM

clover 4449

GPU ASUS GT 640 2GB

 

I use hwsensor 6.14 right now

Edited by arminmacx
Link to comment
Share on other sites

12 minutes ago, arminmacx said:

Ok @vector sigma as you told me to post here. today i wanted to test your HWsensor and download DMG file and from extension folder i copy and paste these kext to my EFI/Clover/Kext/other folder : ACPIMonitor.kext - F718x.kext - FakeSMC.kext - GeforceSensor.kext - IntelCPUMonitor.kext - ITEIT87x.kext - NVClockX.kext - PC8739x.kext - W836x.kext - X3100.kext 

And reboot the system but when the loading screen comes up its restart - I go with -v for boot and when i try to see whats cause it it restart again very fast.

 

My hack is :

z98x-ud3h-bk 

cpu : i5 4th gen

macOS : 10.13.4

32 gb RAM

clover 4449

 

I use hwsensor 6.14 right now

You should not install every kexts Lol.

Example:

NVClockX.kext conflict with GeforceSensor.kext (they are for different classes of the NVidia cards)

You have an i5, so surely you don't have the Intel X3100 (so why installing the X3100.kext ?)

Or you have an ITEI87x chip, or Windbond836x or else (so why installing PC8739x.kext - W836x.kext - ITEIT87x.kex at same time???)

ACPIMonitor.kext  is only for who have edited its DSDT/SSDT to work with and is not an easy task.

 

Is normal that you have kernel panics, cannot be otherwise. So I suggest to use the FakeSMC.kext provided (but please don't mix stuff that comes with other projects) and install only PlugIns for your motherboard!

 

P.S. In the Download section were available also the .pkg where is clear what all kexts are for.

Edited by vector sigma
Link to comment
Share on other sites

18 minutes ago, vector sigma said:

You should not install every kexts Lol.

Example:

NVClockX.kext conflict with GeforceSensor.kext (they are for different classes of the NVidia cards)

You have an i5, so surely you don't have the Intel X3100 (so why installing the X3100.kext ?)

Or you have an ITEI87x chip, or Windbond836x or else (so why installing PC8739x.kext - W836x.kext - ITEIT87x.kex at same time???)

ACPIMonitor.kext  is only for who have edited its DSDT/SSDT to work with and is not an easy task.

 

Is normal that you have kernel panics, cannot be otherwise. So I suggest to use the FakeSMC.kext provided (but please don't mix stuff that comes with other projects) and install only PlugIns for your motherboard!

 

P.S. In the Download section were available also the .pkg where is clear what all kexts are for.

thanks for clarify it. as i have DSDT i use APCIMonitor and i didnt know X3100 is not needed and nvCLOCKX is conflicting with geforce. 

so i only need geforce.kext - fakesmc - Intelcpu.kext - apci.kext - ITEIT87x.kext (my mobo is gigabyte) right?

do i need PC8739x.kext too

 

BTW as im always use hwsensor 6.14 and always use dmg and never had problem i thought its like that and i just exclude AMD kexts

Link to comment
Share on other sites

6 minutes ago, arminmacx said:

thanks for clarify it. as i have DSDT i use APCIMonitor and i didnt know X3100 is not needed and nvCLOCKX is conflicting with geforce. 

so i only need geforce.kext - fakesmc - Intelcpu.kext - apci.kext - ITEIT87x.kext (my mobo is gigabyte) right?

do i need PC8739x.kext too

 

BTW as im always use hwsensor 6.14 and always use dmg and never had problem i thought its like that and i just exclude AMD kexts

Same initial project, different branches, different views;).

Sorry I don't know the detailed info of your Mobo, but you should have only one LPC chip I guess, install only one of it and see at the kernel log for a match. Geforce.kext enable the reading of the GPU sensors for NVidia 4xx, 5xx, ...10xx Series while NVClock.kext enable the reading of the GPU sensors for NVidia 7xxx-9xxx Series.

Edited by vector sigma
  • Like 2
Link to comment
Share on other sites

Hi all, this one: HWMonitorSMC2.app.v2.1.6_test.zip has some improvements:

 

  1. Changed the API to sign the app as login item: LSSharedFileListCreate() is deprecated and ther was also a little leak in the existing code, so now I'm using the new reccomended way by Apple, i.e. using the ServiceManagement.framenwork's SMLoginItemSetEnabled(). So now HWMonitorSMC2 use an Helper app that take the step to run the main app at login. In internet many people think that it is required that the app must be sandboxed and code signed, but our isn't.. and in the matter of the fact I cannot found any documentations that this is required, more here is working well. Please confirm this. NOTE: to be sure that is working please remove from the login items the old app by simply going in to the "Preferences" panel and mark as inactive the "load HWMonitorSMC2.app at login" checkbox. Close it and replace with the one attached, open it and again mark as active the "load HWMonitorSMC2.app at login" checkbox. Reboot and see if the app run by it self at the next login.
  2. Added a USB watcher so that now all USB devices are listed as "sensors" in the interface. By removing or inserting a device you will see detailed info for it like its name, its vendor/device/sub system ids.. port number etc. 
  3. Added USB 2.0/3.0 controllers info to the full log.
  4. Added LAN/WIFI controllers to the full log.
  5. Added SATA/NVMe controllers info to the full log.
  6. Added LPBC info to the full log.
  7. In r146 I've modified a bit the memory management due to some lakes I saw by Profiling the app. Now is completely memory leaks free, at least here.

There is a lot of new code that I want to ensure is working before commit it. As I said I completely profiled it, but this can't assure that there are problems since as demostrated some posts ago, hakintosh(s) can inject properties through DSDT/SSDT in a non Apple-like way (e.g. something that should be bytes instead of a string etc...).

So please report back.

usb.png.61078472addade5ce22453f29548ceb8.png
EDIT some pictures of my tests:

1371574928_0Leaks.thumb.png.ede85a35fd0ef9aafdb0b8aef49d211a.png

 

...see performances in the spoiler:

Spoiler

 

CPU.png.7dab52825a93dbe6be1806eabf3675e7.png

Energy.png.0dab0198647cda5bf30a0eebca4d9d4e.png

Memory.png.a18f65e5bb543a41d19cf50493839543.png

NET.png.2e357a7ff053774f5491ce81a935cca7.png

 

 

Disk.png.f253d55fc719a302322cfd8c6688623c.png

 

 

 

 

Quote

@vector sigma

if could be useful

In my system I have this bug

right click on OSX version

App closes itself

 

Hi @fabiosun, try the above app. If the problem persist you should follow these instructions I made here and show me a pict of the line where the app crash.

Edited by vector sigma
added pictures
  • Like 2
Link to comment
Share on other sites

3 hours ago, vector sigma said:

Hi all, this one: HWMonitorSMC2.app.v2.1.6_test.zip has some improvements:

So please report back.

 

Here is my complete log:

Spoiler

HWMonitorSMC2 v2.1.6 test

MACHINE STATUS:

CPU:
    Name:        Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz
    Vendor:        GenuineIntel
    Physical cores:    4
    Logical cores:    8
    Family:        6
    Model:        0x5E
    Ext Model:        0x5
    Ext Family:        0
    Stepping:        3
    Signature:        0x506E3
    Brand:        0
    Features:  FPU VME DE PSE TSC MSR PAE MCE
                    CX8 APIC SEP MTRR PGE MCA CMOV PAT
                    PSE36 CLFSH DS ACPI MMX FXSR SSE SSE2
                    SS HTT TM PBE SSE3 PCLMULQDQ DTES64 MON
                    DSCPL VMX EST TM2 SSSE3 FMA CX16 TPR
                    PDCM SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES PCID
                    XSAVE OSXSAVE SEGLIM64 TSCTMR AVX1.0 RDRAND F16C
    Ext Features:  SYSCALL XD 1GBPAGE EM64T LAHF LZCNT PREFETCHW RDTSCP
                          TSCI
    Microcode version:    194
    Thermal sensors:        1
    Thermal APIC timer:    1

    System:    2%
    User:        3%
    Idle:        93%
    Nice:        0%

LPCB:
    IOName:            pci8086,a2c5
    name:            70 63 69 38 30 38 36 2c 61 32 63 35 00
    device-id:            c5 a2 00 00
    vendor-id:            86 80 00 00
    revision-id:        00 00 00 00
    subsystem-id:        c5 a2 00 00
    subsystem-vendor-id:    49 18 00 00

MEMORY:
    Physical size:    32.0GB
    Free:            26.91GB
    Wired:        2.22GB
    Active:        2.04GB
    Inactive:        814MB
    Compressed:    0MB

SYSTEM:
    Model:        iMac17,1
    Sys name:        Darwin
    OS Version:    10.13.5
    Node name:    iMac.fritz.box
    Release:        17.6.0
    Version:        Darwin Kernel Version 17.6.0: Tue May  8 15:33:09 PDT 2018; root:xnu-4570.61.1~2/RELEASE_X86_64
    Machine:        x86_64
    Uptime:        0d 0h 3m 31s
    Processes:        248
    Threads:        1005
    Load Average:    [1.50, 1.60, 0.79]
    Mach Factor:    [6.8630000000000004, 6.7949999999999999, 6.665]

POWER:
    CPU Speed limit:        100.0%
    CPUs available:        8
    Scheduler limit:        100.0%
    Thermal level:        Not Published

VIDEO CARD 1:
    Model:                Radeon RX 480
    Vendor ID:                02 10 00 00 (ATI/AMD)
    Device ID:                df 67 00 00
    Revision ID:            c7 00 00 00
    Subsystem Vendor ID:        4b 17 00 00
    Subsystem ID:            47 e3 00 00
    class-code:                00 00 03 00
    IOName:                display
    pcidebug:                3:0:0
    built-in:                00
    compatible:            pci174b,e347pci1002,67dfpciclass,030000GFX0
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/PEG0@10000/PEGP@0/AMD0@80000/GFX0@0
    hda-gfx:                onboard-1
    pci-aspm-default:                0x0
    IOPCIMSIMode            true
    Additional Properties:
        AAPL,slot-name:      50 43 49 65 20 23 31 00
        ATY,PageFlipEnable:     01 00 00 00
        ATY,remap-size:           0
        ATY,vram_base:            00 00 00 00 00 00 00 00
        ATY,SCLK:                     300000
        ATY,Part#:                    113-2E3470U
        ATY,RevID:                    398884337
        ATY,TileInfo:                 03 00 00 00 00 00 00 00 02 00 00 00 02 00 00 00 03 00 00 00 0c 00 00 00
        ATY,memsize:               8589934592
        ATY,MCLK:                    300000
    Metal support: false

SCREEN 1:
    Framebuffer:    0x1B5DD114
    EDID contents:

    Header:        00 ff ff ff ff ff ff 00
    Serial number:    86 00 00 00
    Version:        01 04
    Basic params    b5 57 25 78 9f
    Chroma info:    ca 95 a6 55 4e a1 26 0f 50 54
    Established:    04 63 80
    Standard:        01 01 01 01 01 01 01 01 01 01 01 01 01 01 d1 cf
    Descriptor 1:    85 cf 00 20 f1 40 74 60 30 20 7a 00 6a 6e 31 00 00 1a
    Descriptor 2:    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Descriptor 3:    00 00 00 fd 00 34 4b 7d 7d 36 01 0a 20 20 20 20 20 20
    Descriptor 4:    00 00 00 fc 00 4c 47 20 55 4c 54 52 41 57 49 44 45 0a
    Extension:        01
    Checksum:        13

    Manufacturer: 1e6d (4K}}6�)
    Model: fc76
    Serial Number: 134
    Resolution: 3840x1600
    Made week 9 of 2017
    EDID version: 1.4
    Digital display
    Established Timings:
        640×480 @ 75 Hz
        800×600 @ 75 Hz
        832×624 @ 75 H
        1024×768 @ 75 Hz
        1280×1024 @ 75 Hz
    Detailed mode (descriptor 1):
        Pixel Clock:        342.55MHz
        Horizontal Active:    3840
        Horizontal Blanking:    288
        Vertical Active:        1600
        Vertical Blanking:    116
        Horizontal Sync Offset:    48
        Horizontal Sync Pulse:    32
        Vertical Sync Offset:    7
        Vertical Sync Pulse:    10
        Interlaced:            false
        Is preferred timing:    true
    Maximum image size: 870mm x 370mm
    Gamma: 2.20
    Model: LG ULTRAWID
    Checksum: 0x13 (valid)

    EDID comes from EEPROM
SCREEN 2:
    Framebuffer:    0x7B800E82
    EDID contents:

    Header:        00 ff ff ff ff ff ff 00
    Serial number:    04 00 00 00
    Version:        01 03
    Basic params    80 66 39 78 0a
    Chroma info:    ee 91 a3 54 4c 99 26 0f 50 54
    Established:    bd ef 80
    Standard:        71 4f 81 c0 81 00 81 80 95 00 a9 c0 b3 00 01 01
    Descriptor 1:    02 3a 80 18 71 38 2d 40 58 2c 45 00 a0 5a 00 00 00 1e
    Descriptor 2:    66 21 56 aa 51 00 1e 30 46 8f 33 00 a0 5a 00 00 00 1e
    Descriptor 3:    00 00 00 fc 00 44 45 4e 4f 4e 2d 41 56 52 48 44 0a 20
    Descriptor 4:    00 00 00 fd 00 18 4b 0f 51 0f 00 0a 20 20 20 20 20 20
    Extension:        01
    Checksum:        90

    Manufacturer: 11ee (DENON-AVRHD)
    Model: 3a00
    Serial Number: 4
    Resolution: 1920x1080
    Made in 2013
    EDID version: 1.3
    Digital display
    Established Timings:
        720×400 @ 70 Hz
        640×480 @ 60 Hz
        640×480 @ 67 Hz
        640×480 @ 72 Hz
        640×480 @ 75 Hz
        800×600 @ 60 Hz
        800×600 @ 72 Hz
        800×600 @ 75 Hz
        832×624 @ 75 H
        1024×768 @ 60 Hz
        1024×768 @ 72 Hz
        1024×768 @ 75 Hz
        1280×1024 @ 75 Hz
    Detailed mode (descriptor 1):
        Pixel Clock:        5.7MHz
        Horizontal Active:    1920
        Horizontal Blanking:    280
        Vertical Active:        1080
        Vertical Blanking:    45
        Horizontal Sync Offset:    88
        Horizontal Sync Pulse:    44
        Vertical Sync Offset:    4
        Vertical Sync Pulse:    5
        Interlaced:            false
        Is preferred timing:    true
    Detailed mode (descriptor 2):
        Pixel Clock:        261.45MHz
        Horizontal Active:    1366
        Horizontal Blanking:    426
        Vertical Active:        768
        Vertical Blanking:    30
        Horizontal Sync Offset:    70
        Horizontal Sync Pulse:    143
        Vertical Sync Offset:    3
        Vertical Sync Pulse:    3
        Interlaced:            false
        Is preferred timing:    false
    Maximum image size: 1020mm x 570mm
    Gamma: 2.20
    Model: �K�Q�
    Checksum: 0x90 (valid)

    EDID comes from EEPROM

Serial ATA controller:
    Name:                pci8086,a282
    Vendor ID:                86 80 00 00
    Device ID:                82 a2 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            82 a2 00 00
    class-code:                01 06 01 00
    IOName:                pci8086,a282
    pcidebug:                0:23:0
    built-in:                00
    compatible:            pci1849,a282pci8086,a282pciclass,010601SATA
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/SATA@170000


NVMe controller:
    Name:                pci144d,a804
    Vendor ID:                4d 14 00 00
    Device ID:                04 a8 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        4d 14 00 00
    Subsystem ID:            01 a8 00 00
    class-code:                02 08 01 00
    IOName:                pci144d,a804
    pcidebug:                5:0:0
    built-in:                00
    compatible:            pci144d,a801pci144d,a804pciclass,010802PXSX
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/RP17@1b0000/PXSX@0


MEDIA:
    BSD Name: disk0
    Product Name: Samsung SSD 960 EVO 250GB
    Product Revision Level: 2B7QCXE7
    Medium Type: SSD
    Capacity: 250,06 GB (250059350016 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 34C°
    Life: 99%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 1031
    S.M.A.R.T. status: Ok
    
    BSD Name: disk1
    Product Name: SAMSUNG MZVPV256HDGL-00000
    Product Revision Level: BXW7300Q
    Medium Type: SSD
    Capacity: 256,06 GB (256060514304 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 35C°
    Life: 100%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 643
    S.M.A.R.T. status: Ok
    
    BSD Name: disk2
    Product Name: Samsung SSD 950 PRO 256GB
    Product Revision Level: 2B0QBXX7
    Medium Type: SSD
    Capacity: 256,06 GB (256060514304 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 38C°
    Life: 99%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 2566
    S.M.A.R.T. status: Ok
    
    
USB 3.0 controller:
    Vendor ID:                86 80 00 00
    Device ID:                af a2 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            af a2 00 00
    class-code:                30 03 0c 00
    IOName:                pci8086,a2af
    pcidebug:                0:20:0
    built-in:                00
    compatible:            pci1849,a2afpci8086,a2afpciclass,0c0330XHC
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/XHC@140000
    Additional Properties:
        AAPL,current-available:     34 08
        AAPL,current-in-sleep:      e8 03
        AAPL,current-extra:           80 0c
        AAPL,clock-id:                   00
USB devices:
    Name: RM-Series C-Link Adapter
    Vendor: Corsair Memory, Inc.
    idProduct: c0627
    idVendor: 1b1c27
    Port Num.: 3
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 3
    Serial Number: 0
    non-removable: no
    
    Name: Integrated USB Bridge
    Vendor: Corsair Memory, Inc.
    idProduct: c0427
    idVendor: 1b1c27
    Port Num.: 2
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 512
    Serial Number: 0
    non-removable: no
    
    Name: H115i
    Vendor: Corsair Components, Inc.
    idProduct: c0a27
    idVendor: 1b1c27
    Port Num.: 1
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 256
    Serial Number: 3
    non-removable: no
    
    Name: ASM107x
    Vendor: Asmedia
    idProduct: 207427
    idVendor: 103c27
    Port Num.: 5
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 1
    Serial Number: 1
    non-removable: no
    
    Name: USB2.0 Hub
    idProduct: 60827
    idVendor: 5e327
    Port Num.: 1
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 34102
    Serial Number: 0
    non-removable: yes
    
    Name: USB Receiver
    Vendor: Logitech
    idProduct: c52b27
    idVendor: 46d27
    Port Num.: 4
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 4611
    Serial Number: 0
    non-removable: yes
    
    Name: ASM107x
    Vendor: Asmedia
    idProduct: 307427
    idVendor: 103c27
    Port Num.: 13
    Bus Power Available: 450
    Speed: 3
    Device Speed: 3
    bcdDevice: 1
    Serial Number: 1
    non-removable: no
    
    Name: USB audio CODEC
    Vendor: Burr-Brown from TI
    idProduct: 291227
    idVendor: 8bb27
    Port Num.: 4
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 256
    Serial Number: 0
    non-removable: no
    
    Name: USB2.0 Hub
    idProduct: 61027
    idVendor: 5e327
    Port Num.: 8
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 12952
    Serial Number: 0
    non-removable: yes
    
    Name: Commander PRO
    Vendor: Corsair
    idProduct: c1027
    idVendor: 1b1c27
    Port Num.: 7
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 7
    Serial Number: 128
    non-removable: no
    
    Name: AppleUSBXHCI Root Hub Simulation
    Vendor: Apple Inc.
    idProduct: 800727
    idVendor: 5ac27
    Speed: 3
    Device Speed: 3
    Serial Number: 0
    non-removable: yes
    
    

LAN controller:
    Name:                ethernet
    Vendor ID:                86 80 00 00
    Device ID:                b8 15 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            b8 15 00 00
    class-code:                00 00 02 00
    IOName:                ethernet
    pcidebug:                0:31:6
    compatible:            pci1849,15b8pci8086,15b8pciclass,020000GLAN
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/GLAN@1f0006

WIFI controller:
    Name:                pci8086,8b3
    Vendor ID:                86 80 00 00
    Device ID:                b3 08 00 00
    Revision ID:            83 00 00 00
    Subsystem Vendor ID:        86 80 00 00
    Subsystem ID:            70 80 00 00
    class-code:                00 80 02 00
    IOName:                pci8086,8b3
    pcidebug:                116:0:0
    compatible:            pci8086,8070pci8086,8b3pciclass,028000

 

 

seems to work ok for me, too.

Edited by Mork vom Ork
  • Like 1
Link to comment
Share on other sites

1 hour ago, Mork vom Ork said:

 

Here is my complete log:

  Reveal hidden contents


HWMonitorSMC2 v2.1.6 test

MACHINE STATUS:

CPU:
    Name:        Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz
    Vendor:        GenuineIntel
    Physical cores:    4
    Logical cores:    8
    Family:        6
    Model:        0x5E
    Ext Model:        0x5
    Ext Family:        0
    Stepping:        3
    Signature:        0x506E3
    Brand:        0
    Features:  FPU VME DE PSE TSC MSR PAE MCE
                    CX8 APIC SEP MTRR PGE MCA CMOV PAT
                    PSE36 CLFSH DS ACPI MMX FXSR SSE SSE2
                    SS HTT TM PBE SSE3 PCLMULQDQ DTES64 MON
                    DSCPL VMX EST TM2 SSSE3 FMA CX16 TPR
                    PDCM SSE4.1 SSE4.2 x2APIC MOVBE POPCNT AES PCID
                    XSAVE OSXSAVE SEGLIM64 TSCTMR AVX1.0 RDRAND F16C
    Ext Features:  SYSCALL XD 1GBPAGE EM64T LAHF LZCNT PREFETCHW RDTSCP
                          TSCI
    Microcode version:    194
    Thermal sensors:        1
    Thermal APIC timer:    1

    System:    2%
    User:        3%
    Idle:        93%
    Nice:        0%

LPCB:
    IOName:            pci8086,a2c5
    name:            70 63 69 38 30 38 36 2c 61 32 63 35 00
    device-id:            c5 a2 00 00
    vendor-id:            86 80 00 00
    revision-id:        00 00 00 00
    subsystem-id:        c5 a2 00 00
    subsystem-vendor-id:    49 18 00 00

MEMORY:
    Physical size:    32.0GB
    Free:            26.91GB
    Wired:        2.22GB
    Active:        2.04GB
    Inactive:        814MB
    Compressed:    0MB

SYSTEM:
    Model:        iMac17,1
    Sys name:        Darwin
    OS Version:    10.13.5
    Node name:    iMac.fritz.box
    Release:        17.6.0
    Version:        Darwin Kernel Version 17.6.0: Tue May  8 15:33:09 PDT 2018; root:xnu-4570.61.1~2/RELEASE_X86_64
    Machine:        x86_64
    Uptime:        0d 0h 3m 31s
    Processes:        248
    Threads:        1005
    Load Average:    [1.50, 1.60, 0.79]
    Mach Factor:    [6.8630000000000004, 6.7949999999999999, 6.665]

POWER:
    CPU Speed limit:        100.0%
    CPUs available:        8
    Scheduler limit:        100.0%
    Thermal level:        Not Published

VIDEO CARD 1:
    Model:                Radeon RX 480
    Vendor ID:                02 10 00 00 (ATI/AMD)
    Device ID:                df 67 00 00
    Revision ID:            c7 00 00 00
    Subsystem Vendor ID:        4b 17 00 00
    Subsystem ID:            47 e3 00 00
    class-code:                00 00 03 00
    IOName:                display
    pcidebug:                3:0:0
    built-in:                00
    compatible:            pci174b,e347pci1002,67dfpciclass,030000GFX0
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/PEG0@10000/PEGP@0/AMD0@80000/GFX0@0
    hda-gfx:                onboard-1
    pci-aspm-default:                0x0
    IOPCIMSIMode            true
    Additional Properties:
        AAPL,slot-name:      50 43 49 65 20 23 31 00
        ATY,PageFlipEnable:     01 00 00 00
        ATY,remap-size:           0
        ATY,vram_base:            00 00 00 00 00 00 00 00
        ATY,SCLK:                     300000
        ATY,Part#:                    113-2E3470U
        ATY,RevID:                    398884337
        ATY,TileInfo:                 03 00 00 00 00 00 00 00 02 00 00 00 02 00 00 00 03 00 00 00 0c 00 00 00
        ATY,memsize:               8589934592
        ATY,MCLK:                    300000
    Metal support: false

SCREEN 1:
    Framebuffer:    0x1B5DD114
    EDID contents:

    Header:        00 ff ff ff ff ff ff 00
    Serial number:    86 00 00 00
    Version:        01 04
    Basic params    b5 57 25 78 9f
    Chroma info:    ca 95 a6 55 4e a1 26 0f 50 54
    Established:    04 63 80
    Standard:        01 01 01 01 01 01 01 01 01 01 01 01 01 01 d1 cf
    Descriptor 1:    85 cf 00 20 f1 40 74 60 30 20 7a 00 6a 6e 31 00 00 1a
    Descriptor 2:    00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    Descriptor 3:    00 00 00 fd 00 34 4b 7d 7d 36 01 0a 20 20 20 20 20 20
    Descriptor 4:    00 00 00 fc 00 4c 47 20 55 4c 54 52 41 57 49 44 45 0a
    Extension:        01
    Checksum:        13

    Manufacturer: 1e6d (4K}}6�)
    Model: fc76
    Serial Number: 134
    Resolution: 3840x1600
    Made week 9 of 2017
    EDID version: 1.4
    Digital display
    Established Timings:
        640×480 @ 75 Hz
        800×600 @ 75 Hz
        832×624 @ 75 H
        1024×768 @ 75 Hz
        1280×1024 @ 75 Hz
    Detailed mode (descriptor 1):
        Pixel Clock:        342.55MHz
        Horizontal Active:    3840
        Horizontal Blanking:    288
        Vertical Active:        1600
        Vertical Blanking:    116
        Horizontal Sync Offset:    48
        Horizontal Sync Pulse:    32
        Vertical Sync Offset:    7
        Vertical Sync Pulse:    10
        Interlaced:            false
        Is preferred timing:    true
    Maximum image size: 870mm x 370mm
    Gamma: 2.20
    Model: LG ULTRAWID
    Checksum: 0x13 (valid)

    EDID comes from EEPROM
SCREEN 2:
    Framebuffer:    0x7B800E82
    EDID contents:

    Header:        00 ff ff ff ff ff ff 00
    Serial number:    04 00 00 00
    Version:        01 03
    Basic params    80 66 39 78 0a
    Chroma info:    ee 91 a3 54 4c 99 26 0f 50 54
    Established:    bd ef 80
    Standard:        71 4f 81 c0 81 00 81 80 95 00 a9 c0 b3 00 01 01
    Descriptor 1:    02 3a 80 18 71 38 2d 40 58 2c 45 00 a0 5a 00 00 00 1e
    Descriptor 2:    66 21 56 aa 51 00 1e 30 46 8f 33 00 a0 5a 00 00 00 1e
    Descriptor 3:    00 00 00 fc 00 44 45 4e 4f 4e 2d 41 56 52 48 44 0a 20
    Descriptor 4:    00 00 00 fd 00 18 4b 0f 51 0f 00 0a 20 20 20 20 20 20
    Extension:        01
    Checksum:        90

    Manufacturer: 11ee (DENON-AVRHD)
    Model: 3a00
    Serial Number: 4
    Resolution: 1920x1080
    Made in 2013
    EDID version: 1.3
    Digital display
    Established Timings:
        720×400 @ 70 Hz
        640×480 @ 60 Hz
        640×480 @ 67 Hz
        640×480 @ 72 Hz
        640×480 @ 75 Hz
        800×600 @ 60 Hz
        800×600 @ 72 Hz
        800×600 @ 75 Hz
        832×624 @ 75 H
        1024×768 @ 60 Hz
        1024×768 @ 72 Hz
        1024×768 @ 75 Hz
        1280×1024 @ 75 Hz
    Detailed mode (descriptor 1):
        Pixel Clock:        5.7MHz
        Horizontal Active:    1920
        Horizontal Blanking:    280
        Vertical Active:        1080
        Vertical Blanking:    45
        Horizontal Sync Offset:    88
        Horizontal Sync Pulse:    44
        Vertical Sync Offset:    4
        Vertical Sync Pulse:    5
        Interlaced:            false
        Is preferred timing:    true
    Detailed mode (descriptor 2):
        Pixel Clock:        261.45MHz
        Horizontal Active:    1366
        Horizontal Blanking:    426
        Vertical Active:        768
        Vertical Blanking:    30
        Horizontal Sync Offset:    70
        Horizontal Sync Pulse:    143
        Vertical Sync Offset:    3
        Vertical Sync Pulse:    3
        Interlaced:            false
        Is preferred timing:    false
    Maximum image size: 1020mm x 570mm
    Gamma: 2.20
    Model: �K�Q�
    Checksum: 0x90 (valid)

    EDID comes from EEPROM

Serial ATA controller:
    Name:                pci8086,a282
    Vendor ID:                86 80 00 00
    Device ID:                82 a2 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            82 a2 00 00
    class-code:                01 06 01 00
    IOName:                pci8086,a282
    pcidebug:                0:23:0
    built-in:                00
    compatible:            pci1849,a282pci8086,a282pciclass,010601SATA
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/SATA@170000


NVMe controller:
    Name:                pci144d,a804
    Vendor ID:                4d 14 00 00
    Device ID:                04 a8 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        4d 14 00 00
    Subsystem ID:            01 a8 00 00
    class-code:                02 08 01 00
    IOName:                pci144d,a804
    pcidebug:                5:0:0
    built-in:                00
    compatible:            pci144d,a801pci144d,a804pciclass,010802PXSX
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/RP17@1b0000/PXSX@0


MEDIA:
    BSD Name: disk0
    Product Name: Samsung SSD 960 EVO 250GB
    Product Revision Level: 2B7QCXE7
    Medium Type: SSD
    Capacity: 250,06 GB (250059350016 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 34C°
    Life: 99%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 1031
    S.M.A.R.T. status: Ok
    
    BSD Name: disk1
    Product Name: SAMSUNG MZVPV256HDGL-00000
    Product Revision Level: BXW7300Q
    Medium Type: SSD
    Capacity: 256,06 GB (256060514304 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 35C°
    Life: 100%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 643
    S.M.A.R.T. status: Ok
    
    BSD Name: disk2
    Product Name: Samsung SSD 950 PRO 256GB
    Product Revision Level: 2B0QBXX7
    Medium Type: SSD
    Capacity: 256,06 GB (256060514304 bytes)
    Physical Interconnect: PCI-Express (NVMe)
    Physical Interconnect Location: Internal
    Temperature: 38C°
    Life: 99%
    Critical Warning: 0%
    Available Spare: 100%
    Available Spare Threshold: 10%
    Unsafe Shutdowns: 2566
    S.M.A.R.T. status: Ok
    
    
USB 3.0 controller:
    Vendor ID:                86 80 00 00
    Device ID:                af a2 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            af a2 00 00
    class-code:                30 03 0c 00
    IOName:                pci8086,a2af
    pcidebug:                0:20:0
    built-in:                00
    compatible:            pci1849,a2afpci8086,a2afpciclass,0c0330XHC
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/XHC@140000
    Additional Properties:
        AAPL,current-available:     34 08
        AAPL,current-in-sleep:      e8 03
        AAPL,current-extra:           80 0c
        AAPL,clock-id:                   00
USB devices:
    Name: RM-Series C-Link Adapter
    Vendor: Corsair Memory, Inc.
    idProduct: c0627
    idVendor: 1b1c27
    Port Num.: 3
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 3
    Serial Number: 0
    non-removable: no
    
    Name: Integrated USB Bridge
    Vendor: Corsair Memory, Inc.
    idProduct: c0427
    idVendor: 1b1c27
    Port Num.: 2
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 512
    Serial Number: 0
    non-removable: no
    
    Name: H115i
    Vendor: Corsair Components, Inc.
    idProduct: c0a27
    idVendor: 1b1c27
    Port Num.: 1
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 256
    Serial Number: 3
    non-removable: no
    
    Name: ASM107x
    Vendor: Asmedia
    idProduct: 207427
    idVendor: 103c27
    Port Num.: 5
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 1
    Serial Number: 1
    non-removable: no
    
    Name: USB2.0 Hub
    idProduct: 60827
    idVendor: 5e327
    Port Num.: 1
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 34102
    Serial Number: 0
    non-removable: yes
    
    Name: USB Receiver
    Vendor: Logitech
    idProduct: c52b27
    idVendor: 46d27
    Port Num.: 4
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 4611
    Serial Number: 0
    non-removable: yes
    
    Name: ASM107x
    Vendor: Asmedia
    idProduct: 307427
    idVendor: 103c27
    Port Num.: 13
    Bus Power Available: 450
    Speed: 3
    Device Speed: 3
    bcdDevice: 1
    Serial Number: 1
    non-removable: no
    
    Name: USB audio CODEC
    Vendor: Burr-Brown from TI
    idProduct: 291227
    idVendor: 8bb27
    Port Num.: 4
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 256
    Serial Number: 0
    non-removable: no
    
    Name: USB2.0 Hub
    idProduct: 61027
    idVendor: 5e327
    Port Num.: 8
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 12952
    Serial Number: 0
    non-removable: yes
    
    Name: Commander PRO
    Vendor: Corsair
    idProduct: c1027
    idVendor: 1b1c27
    Port Num.: 7
    Bus Power Available: 250
    Speed: 1
    Device Speed: 1
    bcdDevice: 7
    Serial Number: 128
    non-removable: no
    
    Name: AppleUSBXHCI Root Hub Simulation
    Vendor: Apple Inc.
    idProduct: 800727
    idVendor: 5ac27
    Speed: 3
    Device Speed: 3
    Serial Number: 0
    non-removable: yes
    
    

LAN controller:
    Name:                ethernet
    Vendor ID:                86 80 00 00
    Device ID:                b8 15 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        49 18 00 00
    Subsystem ID:            b8 15 00 00
    class-code:                00 00 02 00
    IOName:                ethernet
    pcidebug:                0:31:6
    compatible:            pci1849,15b8pci8086,15b8pciclass,020000GLAN
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/GLAN@1f0006

WIFI controller:
    Name:                pci8086,8b3
    Vendor ID:                86 80 00 00
    Device ID:                b3 08 00 00
    Revision ID:            83 00 00 00
    Subsystem Vendor ID:        86 80 00 00
    Subsystem ID:            70 80 00 00
    class-code:                00 80 02 00
    IOName:                pci8086,8b3
    pcidebug:                116:0:0
    compatible:            pci8086,8070pci8086,8b3pciclass,028000

 

 

seems to work ok for me, too.

Thanks, is good and full of details.

Guys I'll commit the changes soon after a good clean of comments I made in to the source, after that I'll keep a break because of my job.

See you all!

Link to comment
Share on other sites

Hello vector sigma

 

Quote

 

Hi all, this one: HWMonitorSMC2.app.v2.1.6_test.zip has some improvements:

So please report back.

 

 

rapzd5.png

 

Here is my log:

 

 

MACHINE STATUS:

CPU:
    Name:        Intel(R) Core(TM)2 Quad CPU    Q9550  @ 2.83GHz
    Vendor:        GenuineIntel
    Physical cores:    4
    Logical cores:    4
    Family:        6
    Model:        0x17
    Ext Model:        0x1
    Ext Family:        0
    Stepping:        10
    Signature:        0x1067A
    Brand:        0
    Features:  FPU VME DE PSE TSC MSR PAE MCE
                    CX8 APIC SEP MTRR PGE MCA CMOV PAT
                    PSE36 CLFSH DS ACPI MMX FXSR SSE SSE2
                    SS HTT TM PBE SSE3 DTES64 MON DSCPL
                    VMX SMX EST TM2 SSSE3 CX16 TPR PDCM
                    SSE4.1 XSAVE
    Ext Features:  SYSCALL XD EM64T LAHF
    Microcode version:    2571
    Thermal sensors:        1
    Thermal APIC timer:    0

    System:    5%
    User:        14%
    Idle:        80%
    Nice:        0%

LPCB:
    IOName:            pci8086,3a16
    name:            70 63 69 38 30 38 36 2c 33 61 31 38 00
    device-id:            18 3a 00 00
    vendor-id:            86 80 00 00
    revision-id:        00 00 00 00
    subsystem-id:        d4 82 00 00
    subsystem-vendor-id:    43 10 00 00

MEMORY:
    Physical size:    8.0GB
    Free:            3.61GB
    Wired:        763MB
    Active:        2.96GB
    Inactive:        672MB
    Compressed:    0MB

SYSTEM:
    Model:        iMac10,1
    Sys name:        Darwin
    OS Version:    10.13.4
    Node name:    iMac-di-Fabio.local
    Release:        17.5.0
    Version:        Darwin Kernel Version 17.5.0: Fri Apr 13 19:32:32 PDT 2018; root:xnu-4570.51.2~1/RELEASE_X86_64
    Machine:        x86_64
    Uptime:        0d 0h 22m 3s
    Processes:        263
    Threads:        983
    Load Average:    [1.93, 1.87, 1.77]
    Mach Factor:    [2.0899999999999999, 2.1230000000000002, 1.9910000000000001]

POWER:
    CPU Speed limit:        100.0%
    CPUs available:        4
    Scheduler limit:        100.0%
    Thermal level:        Not Published

VIDEO CARD 1:
    Model:                nVidia Geforge GT 240
    Vendor ID:                de 10 00 00 (NVidia)
    Device ID:                a3 0c 00 00
    Revision ID:            a2 00 00 00
    Subsystem Vendor ID:        62 14 00 00
    Subsystem ID:            10 00 00 00
    class-code:                00 00 03 00
    IOName:                display
    pcidebug:                1:0:0
    built-in:                00
    compatible:            pci1462,8041pci10de,ca3pciclass,030000GFX0
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/PEGP@10000/GFX0@0
    hda-gfx:                onboard-2
    rm_board_number:        00 00 00 00
    NVArch:                    NV50
    rom-revision:                70.15.20.00.03
    NVCLASS:                NVDATesla
    NVCAP:                04 00 00 00 00 00 03 00 0c 00 00 00 00 00 00 07 00 00 00 00
    pci-aspm-default:                0x0
    device_type:            NVDA,Parent
    vbios-revision:            03 00 20 15 70
    IONVRAMProperty:            true
    NVDAinitgl_created:        yes
    IOPCIMSIMode            true
    NVDAType:                Official
    Additional Properties:
        AAPL,ndrv-dev:        1
        AAPL,slot-name:      53 6c 6f 74 2d 31 00
        AAPL,gart-width:      64
    Metal support: false

SCREEN 1:
    Framebuffer:    0x745E9144
    EDID contents:

    Header:        00 ff ff ff ff ff ff 00
    Serial number:    99 00 00 00
    Version:        01 03
    Basic params    80 35 1e 78 2e
    Chroma info:    93 55 a1 58 59 95 23 0f 50 54
    Established:    a5 6b 80
    Standard:        61 c0 81 c0 81 40 81 80 95 00 a9 40 b3 00 d1 c0
    Descriptor 1:    02 3a 80 18 71 38 2d 40 58 2c 45 00 13 2b 21 00 00 1e
    Descriptor 2:    00 00 00 fd 00 32 4c 1e 53 15 00 0a 20 20 20 20 20 20
    Descriptor 3:    00 00 00 fc 00 42 65 6e 51 20 56 32 34 32 30 48 0a 20
    Descriptor 4:    00 00 00 ff 00 4a 34 41 30 34 34 33 37 30 31 39 0a 20
    Extension:        00
    Checksum:        b8

    Manufacturer: 09d1 (BenQ V2420H)
    Model: 147b
    Serial Number: 153
    Resolution: 1920x1080
    Made week 15 of 2010
    EDID version: 1.3
    Digital display
    Established Timings:
        720×400 @ 70 Hz
        640×480 @ 60 Hz
        640×480 @ 75 Hz
        800×600 @ 60 Hz
        800×600 @ 75 Hz
        832×624 @ 75 H
        1024×768 @ 60 Hz
        1024×768 @ 75 Hz
        1280×1024 @ 75 Hz
    Detailed mode (descriptor 1):
        Pixel Clock:        5.7MHz
        Horizontal Active:    1920
        Horizontal Blanking:    280
        Vertical Active:        1080
        Vertical Blanking:    45
        Horizontal Sync Offset:    88
        Horizontal Sync Pulse:    44
        Vertical Sync Offset:    4
        Vertical Sync Pulse:    5
        Interlaced:            false
        Is preferred timing:    true
    Maximum image size: 530mm x 300mm
    Gamma: 2.20
    Model: J4A04437019
    Checksum: 0xB8 (valid)

    EDID comes from EEPROM

Serial ATA controller:
    Name:                Intel AHCI Controller
    Vendor ID:                86 80 00 00
    Device ID:                22 3a 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        43 10 00 00
    Subsystem ID:            d4 82 00 00
    class-code:                01 06 01 00
    IOName:                pci8086,3a22
    pcidebug:                0:31:2
    built-in:                00
    compatible:            pci1043,82d4pci8086,3a22pciclass,010601SATA
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/SATA@1f0002


MEDIA:
    BSD Name: disk0
    Product Name: Samsung SSD 840 EVO 120GB
    Product Revision Level: EXT0AB0Q
    Medium Type: SSD
    Capacity: 120,03 GB (120034123776 bytes)
    Physical Interconnect: SATA
    Physical Interconnect Location: Internal
    Temperature: 30C°
    Life: 98%
    S.M.A.R.T. status: Ok
    
    BSD Name: disk1
    Product Name: MAXTOR STM3250310AS
    Product Revision Level: 3.AAC
    Medium Type: HDD
    Capacity: 250,06 GB (250059350016 bytes)
    Physical Interconnect: SATA
    Physical Interconnect Location: Internal
    Temperature: 37C°
    S.M.A.R.T. status: Ok
    
    
USB 2.0 controller:
    Vendor ID:                86 80 00 00
    Device ID:                3c 3a 00 00
    Revision ID:            00 00 00 00
    Subsystem Vendor ID:        43 10 00 00
    Subsystem ID:            d4 82 00 00
    class-code:                20 03 0c 00
    IOName:                pci8086,3a3c
    pcidebug:                0:26:7
    built-in:                00
    compatible:            pci1043,82d4pci8086,3a3cpciclass,0c0320EHC2
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/EHC2@1a0007
    Additional Properties:
        AAPL,current-available:     b0 04
        AAPL,slot-name:                Built In
        AAPL,current-in-sleep:      e8 03
        AAPL,current-extra:           bc 02
        AAPL,clock-id:                   02

USB devices:
    Name: Wired Keyboard 600
    Vendor: Microsoft
    idProduct: 75027
    idVendor: 45e27
    Port Num.: 1
    Bus Power Available: 250
    Speed: 0
    Device Speed: 0
    bcdDevice: 272
    Serial Number: 0
    non-removable: no
    
    Name: USB-PS/2 Optical Mouse
    Vendor: Logitech
    idProduct: c04427
    idVendor: 46d27
    Port Num.: 2
    Bus Power Available: 250
    Speed: 0
    Device Speed: 0
    bcdDevice: 10016
    Serial Number: 0
    non-removable: yes
    
    Name: Flash Disk      
    Vendor: 2.0     
    idProduct: 209527
    idVendor: 1e3d27
    Port Num.: 5
    Bus Power Available: 250
    Speed: 2
    Device Speed: 2
    bcdDevice: 256
    Serial Number: 3
    non-removable: yes
    
    Name: AppleUSBUHCI Root Hub Simulation
    Vendor: Apple Inc.
    idProduct: 800527
    idVendor: 5ac27
    Speed: 1
    Device Speed: 1
    Serial Number: 0
    non-removable: yes
    
    Name: AppleUSBEHCI Root Hub Simulation
    Vendor: Apple Inc.
    idProduct: 800627
    idVendor: 5ac27
    Speed: 2
    Device Speed: 2
    Serial Number: 0
    non-removable: yes
    
    

LAN controller:
    Name:                Ethernet Controller
    Vendor ID:                ab 11 00 00
    Device ID:                64 43 00 00
    Revision ID:            12 00 00 00
    Subsystem Vendor ID:        43 10 00 00
    Subsystem ID:            f8 81 00 00
    class-code:                00 00 02 00
    IOName:                ethernet
    pcidebug:                2:0:0
    built-in:                00
    compatible:            pci1043,81f8pci11ab,4364pciclass,020000ETH1
    acpi-path:                IOACPIPlane:/_SB/PCI0@0/NET1@1c0005/ETH1@0

Edited by Alpha22
  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...