asustor-platform-driver icon indicating copy to clipboard operation
asustor-platform-driver copied to clipboard

Searching for a proper way of differentiating Asustor AS66xx and AS53xx

Open Tki2000 opened this issue 7 months ago • 6 comments

Currently now, the Asustor code for matching AS66xx conflicts with an AS5304T. They return the same DMI info strings, but the gpios do not seem to be defined the same.

I don't own any AS66xx device so I cannot tell if the AS66xx is properly handled in this code repository, but it is not correct for driving the leds on an AS5304T.

I have not found a proper way of telling the two models apart. Tried with an UUID string but I think it is not working properly and found that UUID is common on other generic devices, so for my needs I have just overridden the AS66xx detection and redirected to my AS5304T leds definition.

Current AS66xx macthing rule

		// AS66
		.matches = {
			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "GeminiLake"),
		},
		.driver_data = &asustor_6700_driver_data,

My try of matching an AS5304T

		// AS5304 -- Not working properly
		.matches = {
			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "GeminiLake"),
			DMI_EXACT_MATCH(DMI_PRODUCT_UUID, "12345678-1234-5678-90ab-cddeefaabbcc"),
		},
		.driver_data = &asustor_5304_driver_data,

The overridden matching rule for making it work with an AS5304T

		// AS66
		.matches = {
			DMI_EXACT_MATCH(DMI_SYS_VENDOR, "Insyde"),
			DMI_EXACT_MATCH(DMI_PRODUCT_NAME, "GeminiLake"),
		},
		.driver_data = &asustor_5304_driver_data,

Can anyone having access to an AS66xx device tell any non common string that could be usable for differentiating both models? Or can anyone tell if my definition for leds is usable for the AS66xx models? If it is, then we can merge both detections, if not then we need more info to differentiate them both.

I have the leds code for the AS6302T and AS5304T published here: https://github.com/mafredri/asustor-platform-driver/discussions/37

Tki2000 avatar Jun 07 '25 09:06 Tki2000

DMI strings from BIOS for the AS5304T are as follows:

dmidecode -s system-manufacturer
dmidecode -s system-product-name
dmidecode -s bios-vendor
dmidecode -s bios-version
dmidecode -s bios-release-date
dmidecode -s bios-revision
Insyde
GeminiLake
INSYDE Corp.
V1.18
09/27/2018
1.24

I would not recommend to put a matching rule on any BIOS date or number as they can be easily broken by any update.

This is a more complete return of dmidecode for the most relevant blocks that could be used for the detection. I have not found a way for using effectively some of them:

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: INSYDE Corp.
	Version: V1.18
	Release Date: 09/27/2018
	Address: 0xF0000
	Runtime Size: 64 kB
	ROM Size: 3 MB
	Characteristics:
		PCI is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		Boot from CD is supported
		Selectable boot is supported
		EDD is supported
		8042 keyboard services are supported (int 9h)
		Serial services are supported (int 14h)
		Printer services are supported (int 17h)
		CGA/mono video services are supported (int 10h)
		ACPI is supported
		USB legacy is supported
		ATAPI Zip drive boot is supported
		BIOS boot specification is supported
		Function key-initiated network boot is supported
		Targeted content distribution is supported
	BIOS Revision: 1.24
	Firmware Revision: 0.0

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: Insyde
	Product Name: GeminiLake
	Version: Type1 - TBD by OEM
	Serial Number: Type1 - 123456789
	UUID: 12345678-1234-5678-90ab-cddeefaabbcc
	Wake-up Type: Power Switch
	SKU Number: Type1 - SKU0
	Family: Type1 - Family

Handle 0x0002, DMI type 2, 17 bytes
Base Board Information
	Manufacturer: Type2 - Board Manufacturer
	Product Name: Type2 - Board Product Name
	Version: Type2 - Board Version
	Serial Number: Type2 - Board Serial Number
	Asset Tag: Type2 - Board Asset Tag
	Features:
		Board is a hosting board
		Board is replaceable
	Location In Chassis: Type2 - Board Chassis Location
	Chassis Handle: 0x0003
	Type: Motherboard
	Contained Object Handles: 0

Handle 0x0003, DMI type 3, 25 bytes
Chassis Information
	Manufacturer: Type3 - Chassis Manufacturer
	Type: Notebook
	Lock: Not Present
	Version: Type3 - Chassis Version
	Serial Number: Type3 - Chassis Serial Number
	Asset Tag: Type3 - Chassis Asset Tag
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00000000
	Height: Unspecified
	Number Of Power Cords: 1
	Contained Elements: 0
	SKU Number: Type3 - SKU Number

Handle 0x0004, DMI type 4, 48 bytes
Processor Information
	Socket Designation: U3E1
	Type: Central Processor
	Family: Celeron
	Manufacturer: Intel(R) Corporation
	ID: A1 06 07 00 FF FB EB BF
	Signature: Type 0, Family 6, Model 122, Stepping 1
	Flags:
		FPU (Floating-point unit on-chip)
		VME (Virtual mode extension)
		DE (Debugging extension)
		PSE (Page size extension)
		TSC (Time stamp counter)
		MSR (Model specific registers)
		PAE (Physical address extension)
		MCE (Machine check exception)
		CX8 (CMPXCHG8 instruction supported)
		APIC (On-chip APIC hardware supported)
		SEP (Fast system call)
		MTRR (Memory type range registers)
		PGE (Page global enable)
		MCA (Machine check architecture)
		CMOV (Conditional move instruction supported)
		PAT (Page attribute table)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		DS (Debug store)
		ACPI (ACPI supported)
		MMX (MMX technology supported)
		FXSR (FXSAVE and FXSTOR instructions supported)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		SS (Self-snoop)
		HTT (Multi-threading)
		TM (Thermal monitor supported)
		PBE (Pending break enabled)
	Version: Intel(R) Celeron(R) J4105 CPU @ 1.50GHz
	Voltage: 0.8 V
	External Clock: 100 MHz
	Max Speed: 1500 MHz
	Current Speed: 800 MHz
	Status: Populated, Enabled
	Upgrade: Other
	L1 Cache Handle: 0x0006
	L2 Cache Handle: 0x0007
	L3 Cache Handle: Not Provided
	Serial Number: SerialNumber - To Be Filled By O.E.M.
	Asset Tag: AssetTag - To Be Filled By O.E.M.
	Part Number: PartNumber - To Be Filled By O.E.M.
	Core Count: 4
	Core Enabled: 4
	Thread Count: 4
	Characteristics:
		64-bit capable
		Multi-Core
		Execute Protection
		Enhanced Virtualization
		Power/Performance Control

Tki2000 avatar Jun 07 '25 09:06 Tki2000

Check out #27 - it introduces a new way to tell devices apart by looking at the available PCI devices (in addition to DMI vendor/product name) - maybe that could also be used to match the AS53xx?

DanielGibson avatar Jun 07 '25 10:06 DanielGibson

Sorry, I did not see that you had forked this repo and did further changes. Here you have the lspci -nn -PP output from the AS5304T. I do not have proper info about which PCI device should I pick because I do not have enough info from other devices that I do not own right now.

00:00.0 Host bridge [0600]: Intel Corporation Gemini Lake Host Bridge [8086:31f0] (rev 03)
00:00.3 System peripheral [0880]: Intel Corporation Celeron/Pentium Silver Processor Gaussian Mixture Model [8086:3190] (rev 03)
00:02.0 VGA compatible controller [0300]: Intel Corporation GeminiLake [UHD Graphics 600] [8086:3185] (rev 03)
00:0e.0 Audio device [0403]: Intel Corporation Celeron/Pentium Silver Processor High Definition Audio [8086:3198] (rev 03)
00:0f.0 Communication controller [0780]: Intel Corporation Celeron/Pentium Silver Processor Trusted Execution Engine Interface [8086:319a] (rev 03)
00:11.0 Unclassified device [0050]: Intel Corporation Celeron/Pentium Silver Processor Integrated Sensor Solution [8086:31a2] (rev 03)
00:12.0 SATA controller [0106]: Intel Corporation Celeron/Pentium Silver Processor SATA Controller [8086:31e3] (rev 03)
00:13.0 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31d8] (rev f3)
00:13.1 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31d9] (rev f3)
00:13.2 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31da] (rev f3)
00:13.3 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31db] (rev f3)
00:14.0 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31d6] (rev f3)
00:14.1 PCI bridge [0604]: Intel Corporation Gemini Lake PCI Express Root Port [8086:31d7] (rev f3)
00:15.0 USB controller [0c03]: Intel Corporation Celeron/Pentium Silver Processor USB 3.0 xHCI Controller [8086:31a8] (rev 03)
00:16.0 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 0 [8086:31ac] (rev 03)
00:16.1 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 1 [8086:31ae] (rev 03)
00:16.2 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 2 [8086:31b0] (rev 03)
00:16.3 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 3 [8086:31b2] (rev 03)
00:17.0 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 4 [8086:31b4] (rev 03)
00:17.1 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 5 [8086:31b6] (rev 03)
00:17.2 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 6 [8086:31b8] (rev 03)
00:17.3 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor I2C 7 [8086:31ba] (rev 03)
00:18.0 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller [8086:31bc] (rev 03)
00:18.1 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller [8086:31be] (rev 03)
00:18.2 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller [8086:31c0] (rev 03)
00:18.3 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO UART Host Controller [8086:31ee] (rev 03)
00:19.0 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO SPI Host Controller [8086:31c2] (rev 03)
00:19.1 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO SPI Host Controller [8086:31c4] (rev 03)
00:19.2 Signal processing controller [1180]: Intel Corporation Celeron/Pentium Silver Processor Serial IO SPI Host Controller [8086:31c6] (rev 03)
00:1e.0 SD Host controller [0805]: Intel Corporation Device [8086:31d0] (rev 03)
00:1f.0 ISA bridge [0601]: Intel Corporation Celeron/Pentium Silver Processor LPC Controller [8086:31e8] (rev 03)
00:1f.1 SMBus [0c05]: Intel Corporation Celeron/Pentium Silver Processor Gaussian Mixture Model [8086:31d4] (rev 03)
00:13.0/01:00.0 SATA controller [0106]: ASMedia Technology Inc. ASM1062 Serial ATA Controller [1b21:0612] (rev 01)
00:13.1/02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller [10ec:8125]
00:13.2/03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8125 2.5GbE Controller [10ec:8125]

Can you see any PCI device that it is not included on any AS66xx device?

I would have tried to differentiate them if I could have found a function to pick the processor version (J4105 vs J4125), but I have not found a way to do that from DMI_EXACT_MATCH.

Tki2000 avatar Jun 07 '25 10:06 Tki2000

I don't have the lspci -nn output from a AS66xx device either, but maybe @yana9i from #34 could provide it so we can figure out if they're different and suitable for matching the device.

Though of course it could be that your code also works on AS66xx devices and the current LED settings for those devices are just wrong.

DanielGibson avatar Jun 07 '25 11:06 DanielGibson

Maybe they behave similar as the chipset name is the same. Then we need someone that could give us any feedback about it.

Tki2000 avatar Jun 07 '25 11:06 Tki2000

Running an Asustor Lockerstor 4 gen 1 (AS6604T)

The output from below is while running ADM still.

$ dmidecode

# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.0.1 present.
Table at 0x75517000.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: INSYDE Corp.
	Version: V1.1C
	Release Date: 03/20/2020
	Address: 0xF0000
	Runtime Size: 64 kB
	ROM Size: 3072 kB
	Characteristics:
		PCI is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		Boot from CD is supported
		Selectable boot is supported
		EDD is supported
		8042 keyboard services are supported (int 9h)
		Serial services are supported (int 14h)
		Printer services are supported (int 17h)
		CGA/mono video services are supported (int 10h)
		ACPI is supported
		USB legacy is supported
		ATAPI Zip drive boot is supported
		BIOS boot specification is supported
		Function key-initiated network boot is supported
		Targeted content distribution is supported
	BIOS Revision: 1.25
	Firmware Revision: 0.0

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: Insyde
	Product Name: GeminiLake
	Version: Type1 - TBD by OEM
	Serial Number: Type1 - 123456789
	UUID: 12345678-1234-5678-90ab-cddeefaabbcc
	Wake-up Type: Power Switch
	SKU Number: Type1 - SKU0
	Family: Type1 - Family

Handle 0x0002, DMI type 2, 17 bytes
Base Board Information
	Manufacturer: Type2 - Board Manufacturer
	Product Name: Type2 - Board Product Name
	Version: Type2 - Board Version
	Serial Number: Type2 - Board Serial Number
	Asset Tag: Type2 - Board Asset Tag
	Features:
		Board is a hosting board
		Board is replaceable
	Location In Chassis: Type2 - Board Chassis Location
	Chassis Handle: 0x0003
	Type: Motherboard
	Contained Object Handles: 0

Handle 0x0003, DMI type 3, 25 bytes
Chassis Information
	Manufacturer: Type3 - Chassis Manufacturer
	Type: Notebook
	Lock: Not Present
	Version: Type3 - Chassis Version
	Serial Number: Type3 - Chassis Serial Number
	Asset Tag: Type3 - Chassis Asset Tag
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00000000
	Height: Unspecified
	Number Of Power Cords: 1
	Contained Elements: 0
	SKU Number: Type3 - SKU Number

Handle 0x0004, DMI type 4, 48 bytes
Processor Information
	Socket Designation: U3E1
	Type: Central Processor
	Family: Celeron
	Manufacturer: Intel(R) Corporation
	ID: A8 06 07 00 FF FB EB BF
	Signature: Type 0, Family 6, Model 122, Stepping 8
	Flags:
		FPU (Floating-point unit on-chip)
		VME (Virtual mode extension)
		DE (Debugging extension)
		PSE (Page size extension)
		TSC (Time stamp counter)
		MSR (Model specific registers)
		PAE (Physical address extension)
		MCE (Machine check exception)
		CX8 (CMPXCHG8 instruction supported)
		APIC (On-chip APIC hardware supported)
		SEP (Fast system call)
		MTRR (Memory type range registers)
		PGE (Page global enable)
		MCA (Machine check architecture)
		CMOV (Conditional move instruction supported)
		PAT (Page attribute table)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		DS (Debug store)
		ACPI (ACPI supported)
		MMX (MMX technology supported)
		FXSR (FXSAVE and FXSTOR instructions supported)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		SS (Self-snoop)
		HTT (Multi-threading)
		TM (Thermal monitor supported)
		PBE (Pending break enabled)
	Version: Intel(R) Celeron(R) J4125 CPU @ 2.00GHz
	Voltage: 1.0 V
	External Clock: 100 MHz
	Max Speed: 2000 MHz
	Current Speed: 2000 MHz
	Status: Populated, Enabled
	Upgrade: Other
	L1 Cache Handle: 0x0006
	L2 Cache Handle: 0x0007
	L3 Cache Handle: Not Provided
	Serial Number: SerialNumber - To Be Filled By O.E.M.
	Asset Tag: AssetTag - To Be Filled By O.E.M.
	Part Number: PartNumber - To Be Filled By O.E.M.
	Core Count: 4
	Core Enabled: 4
	Thread Count: 4
	Characteristics:
		64-bit capable
		Multi-Core
		Execute Protection
		Enhanced Virtualization
		Power/Performance Control

Handle 0x0005, DMI type 7, 27 bytes
Cache Information
	Socket Designation: L1 Cache
	Configuration: Enabled, Not Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 0 kB
	Maximum Size: 0 kB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Parity
	System Type: Data
	Associativity: Other

Handle 0x0006, DMI type 7, 27 bytes
Cache Information
	Socket Designation: L1 Cache
	Configuration: Enabled, Not Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 0 kB
	Maximum Size: 0 kB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Parity
	System Type: Instruction
	Associativity: 8-way Set-associative

Handle 0x0007, DMI type 7, 27 bytes
Cache Information
	Socket Designation: L2 Cache
	Configuration: Enabled, Not Socketed, Level 2
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 0 kB
	Maximum Size: 0 kB
	Supported SRAM Types:
		Synchronous
	Installed SRAM Type: Synchronous
	Speed: Unknown
	Error Correction Type: Single-bit ECC
	System Type: Unified
	Associativity: 16-way Set-associative

Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J1A2
	Internal Connector Type: None
	External Reference Designator: USB2.0
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J1A2
	Internal Connector Type: None
	External Reference Designator: USB2.0
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J2A2
	Internal Connector Type: None
	External Reference Designator: USB3.0 Port0
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000B, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J9D1
	Internal Connector Type: None
	External Reference Designator: UART to Micro USB
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: CON6A1
	Internal Connector Type: None
	External Reference Designator: SD Card
	External Connector Type: Other
	Port Type: Other

Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J9B1
	Internal Connector Type: None
	External Reference Designator: Keyboard
	External Connector Type: PS/2
	Port Type: Keyboard Port

Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J9B1
	Internal Connector Type: None
	External Reference Designator: Mouse
	External Connector Type: PS/2
	Port Type: Mouse Port

Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J5A1
	Internal Connector Type: None
	External Reference Designator: Microphone
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J5A1
	Internal Connector Type: None
	External Reference Designator: Line In
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J5A1
	Internal Connector Type: None
	External Reference Designator: Line Out
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J7A1
	Internal Connector Type: None
	External Reference Designator: Audio Jack
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J2A2
	Internal Connector Type: None
	External Reference Designator: Network Rj45 Jack
	External Connector Type: RJ-45
	Port Type: Network Port

Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J4J1
	Internal Connector Type: None
	External Reference Designator: SATA
	External Connector Type: SAS/SATA Plug Receptacle
	Port Type: Other

Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J4E2
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: SATA Cable
	External Connector Type: None
	Port Type: Other

Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J4A1
	Internal Connector Type: None
	External Reference Designator: VGA
	External Connector Type: DB-15 female
	Port Type: Video Port

Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J1A1
	Internal Connector Type: None
	External Reference Designator: Display Port
	External Connector Type: Other
	Port Type: Video Port

Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J3A1
	Internal Connector Type: None
	External Reference Designator: Display Port
	External Connector Type: Other
	Port Type: Video Port

Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J9B4
	Internal Connector Type: None
	External Reference Designator: Serial Port
	External Connector Type: DB-9 male
	Port Type: Serial Port 16550A Compatible

Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J2A1
	Internal Connector Type: None
	External Reference Designator: HDMI
	External Connector Type: Other
	Port Type: Other

Handle 0x001B, DMI type 9, 17 bytes
System Slot Information
	Designation: J7H1
	Type: x2 PCI Express x4
	Current Usage: Available
	Length: Other
	ID: 0
	Characteristics:
		PME signal is supported
		SMBus signal is supported
	Bus Address: 0000:00:00.0

Handle 0x001C, DMI type 11, 5 bytes
OEM Strings
	String 1: Insyde Chipset

Handle 0x001D, DMI type 12, 5 bytes
System Configuration Options
	Option 1: String1 for Type12 Equipment Manufacturer
	Option 2: String2 for Type12 Equipment Manufacturer
	Option 3: String3 for Type12 Equipment Manufacturer
	Option 4: String4 for Type12 Equipment Manufacturer

Handle 0x001E, DMI type 13, 22 bytes
BIOS Language Information
	Language Description Format: Long
	Installable Languages: 8
		en|US|iso8859-1,0
		fr|FR|iso8859-1,0
		zh|TW|unicode,0
		ja|JP|unicode,0
		it|IT|iso8859-1,0
		es|ES|iso8859-1,0
		de|DE|iso8859-1,0
		pt|PT|iso8859-1,0
	Currently Installed Language: en|US|iso8859-1,0

Handle 0x001F, DMI type 15, 29 bytes
System Event Log
	Area Length: 0 bytes
	Header Start Offset: 0x0000
	Header Length: 8192 bytes
	Data Start Offset: 0x2000
	Access Method: General-purpose non-volatile data functions
	Access Address: 0x0000
	Status: Valid, Not Full
	Change Token: 0x12345678
	Header Format: OEM-specific
	Supported Log Type Descriptors: 0

Handle 0x0020, DMI type 16, 23 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 16 GB
	Error Information Handle: No Error
	Number Of Devices: 2

Handle 0x0021, DMI type 17, 40 bytes
Memory Device
	Array Handle: 0x0020
	Error Information Handle: No Error
	Total Width: 8 bits
	Data Width: 8 bits
	Size: 8192 MB
	Form Factor: SODIMM
	Set: None
	Locator: ChannelA-DIMM0
	Bank Locator: BANK 0
	Type: DDR4
	Type Detail: Synchronous
	Speed: 2400 MT/s
	Manufacturer: Kingston
	Serial Number: 10141017
	Asset Tag: AssetTag - To Be Filled By O.E.M.
	Part Number: KHX2666C15S4/8G     
	Rank: Unknown
	Configured Memory Speed: 2400 MT/s
	Minimum Voltage: Unknown
	Maximum Voltage: Unknown
	Configured Voltage: Unknown

Handle 0x0022, DMI type 17, 40 bytes
Memory Device
	Array Handle: 0x0020
	Error Information Handle: No Error
	Total Width: 8 bits
	Data Width: 8 bits
	Size: 8192 MB
	Form Factor: SODIMM
	Set: None
	Locator: ChannelB-DIMM0
	Bank Locator: BANK 1
	Type: DDR4
	Type Detail: Synchronous
	Speed: 2400 MT/s
	Manufacturer: Kingston
	Serial Number: 19132075
	Asset Tag: AssetTag - To Be Filled By O.E.M.
	Part Number: KHX2666C15S4/8G     
	Rank: Unknown
	Configured Memory Speed: 2400 MT/s
	Minimum Voltage: Unknown
	Maximum Voltage: Unknown
	Configured Voltage: Unknown

Handle 0x0023, DMI type 19, 31 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x003FFFFFFFF
	Range Size: 16 GB
	Physical Array Handle: 0x0020
	Partition Width: 4

Handle 0x0024, DMI type 20, 35 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x001FFFFFFFF
	Range Size: 8 GB
	Physical Device Handle: 0x0021
	Memory Array Mapped Address Handle: 0x0023
	Partition Row Position: Unknown
	Interleave Position: 1
	Interleaved Data Depth: 1

Handle 0x0025, DMI type 20, 35 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x001FFFFFFFF
	Range Size: 8 GB
	Physical Device Handle: 0x0022
	Memory Array Mapped Address Handle: 0x0023
	Partition Row Position: Unknown
	Interleave Position: 2
	Interleaved Data Depth: 1

Handle 0x0026, DMI type 21, 7 bytes
Built-in Pointing Device
	Type: Touch Pad
	Interface: PS/2
	Buttons: 2

Handle 0x0027, DMI type 22, 26 bytes
Portable Battery
	Location: I2C2
	Manufacturer: Intel SR 1
	Manufacture Date: Date
	Serial Number: 123456789
	Name: SR Real Battery
	Chemistry: Lithium Ion
	Design Capacity: 0 mWh
	Design Voltage: 3750 mV
	SBDS Version: CRB Battery 0
	Maximum Error: Unknown
	OEM-specific Information: 0x00000000

Handle 0x0028, DMI type 27, 15 bytes
Cooling Device
	Temperature Probe Handle: 0x0029
	Type: Chip Fan
	Status: OK
	OEM-specific Information: 0x00000000
	Nominal Speed: Unknown Or Non-rotating
	Description: Cooling Device Description

Handle 0x0029, DMI type 28, 24 bytes
Temperature Probe
	Description: Temperature Probe Description
	Location: Unknown
	Status: Unknown
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00008000
	Nominal Value: 0.0 deg C

Handle 0x002A, DMI type 32, 11 bytes
System Boot Information
	Status: No errors detected

Handle 0x002B, DMI type 39, 22 bytes
System Power Supply
	Location: OEM Define 0
	Name: OEM Define 1
	Manufacturer: OEM Define 2
	Serial Number: OEM Define 3
	Asset Tag: OEM Define 4
	Model Part Number: OEM Define 5
	Revision: OEM Define 6
	Max Power Capacity: 75 W
	Status: Present, OK
	Type: Regulator
	Input Voltage Range Switching: Auto-switch
	Plugged: No
	Hot Replaceable: No

Handle 0x002C, DMI type 41, 11 bytes
Onboard Device
	Reference Designation: IGD
	Type: Video
	Status: Disabled
	Type Instance: 1
	Bus Address: 0000:00:02.0

Handle 0x002D, DMI type 131, 64 bytes
OEM-specific Type
	Header and Data:
		83 40 2D 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 00 00 00 76 50 72 6F 00 00 00 00

Handle 0xFEFF, DMI type 127, 4 bytes
End Of Table
$ sudo lspci

03:00.0 Class Ethernet controller: Realtek Semiconductor Co., Ltd.:RTL8125 2.5GbE Controller
00:17.0 Class Signal processing controller: Intel Corporation:unknown device 31b4
00:1c.0 Class SD Host controller: Intel Corporation:Celeron/Pentium Silver Processor SDA Standard Compliant SD Host Controller
00:18.3 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO UART Host Controller
09:00.0 Class SATA controller: ASMedia Technology Inc.:ASM1062 Serial ATA Controller
00:1f.0 Class ISA bridge: Intel Corporation:unknown device 31e8
00:13.2 Class PCI bridge: Intel Corporation:Gemini Lake PCI Express Root Port
00:18.1 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO UART Host Controller
02:00.0 Class PCI bridge: ASMedia Technology Inc.:unknown device 2806
00:16.2 Class Signal processing controller: Intel Corporation:unknown device 31b0
08:00.0 Class Non-Volatile memory controller: Samsung Electronics Co Ltd:NVMe SSD Controller SM981/PM981/PM983
00:13.0 Class PCI bridge: Intel Corporation:Gemini Lake PCI Express Root Port
00:19.2 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO SPI Host Controller
00:16.0 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO I2C Host Controller
01:00.0 Class PCI bridge: ASMedia Technology Inc.:unknown device 2806
02:06.0 Class PCI bridge: ASMedia Technology Inc.:unknown device 2806
00:17.3 Class Signal processing controller: Intel Corporation:unknown device 31ba
00:14.1 Class PCI bridge: Intel Corporation:Gemini Lake PCI Express Root Port
07:00.0 Class Non-Volatile memory controller: Samsung Electronics Co Ltd:NVMe SSD Controller SM981/PM981/PM983
00:19.0 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO SPI Host Controller
00:1e.0 Class SD Host controller: Intel Corporation:unknown device 31d0
02:0e.0 Class PCI bridge: ASMedia Technology Inc.:unknown device 2806
00:0f.0 Class Communication controller: Intel Corporation:Celeron/Pentium Silver Processor Trusted Execution Engine Interface
00:17.1 Class Signal processing controller: Intel Corporation:unknown device 31b6
00:00.0 Class Host bridge: Intel Corporation:Gemini Lake Host Bridge
00:12.0 Class SATA controller: Intel Corporation:unknown device 31e3
02:02.0 Class PCI bridge: ASMedia Technology Inc.:unknown device 2806
00:1f.1 Class SMBus: Intel Corporation:Celeron/Pentium Silver Processor Gaussian Mixture Model
00:13.3 Class PCI bridge: Intel Corporation:Gemini Lake PCI Express Root Port
00:18.2 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO UART Host Controller
00:15.0 Class USB controller: Intel Corporation:unknown device 31a8
00:16.3 Class Signal processing controller: Intel Corporation:unknown device 31b2
00:18.0 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO UART Host Controller
00:0e.0 Class Audio device: Intel Corporation:unknown device 3198
00:16.1 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO I2C Host Controller
00:00.3 Class System peripheral: Intel Corporation:unknown device 3190
00:11.0 Class Class unknown class 0050: : Intel Corporation:Celeron/Pentium Silver Processor Integrated Sensor Solution
04:00.0 Class Ethernet controller: Realtek Semiconductor Co., Ltd.:RTL8125 2.5GbE Controller
00:19.1 Class Signal processing controller: Intel Corporation:Celeron/Pentium Silver Processor Serial IO SPI Host Controller
00:02.0 Class VGA compatible controller: Intel Corporation:UHD Graphics 605
00:17.2 Class Signal processing controller: Intel Corporation:unknown device 31b8
00:14.0 Class PCI bridge: Intel Corporation:Gemini Lake PCI Express Root Port

ndlarsen avatar Oct 25 '25 12:10 ndlarsen