fwupd/plugins/superio
2022-06-14 14:36:52 -05:00
..
fu-plugin-superio.c Split out the kernel helpers to a new source file 2022-06-14 14:36:52 -05:00
fu-superio-common.c trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-superio-common.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-superio-device.c Remove fu_strtoull_full() 2022-06-14 14:36:52 -05:00
fu-superio-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-superio-it55-device.c Split out the GByte helpers to a new source file 2022-06-14 14:36:52 -05:00
fu-superio-it55-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-superio-it85-device.c superio: Fix a small memory leak in an error path 2022-04-13 15:08:12 +01:00
fu-superio-it85-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
fu-superio-it89-device.c Split out the GByte helpers to a new source file 2022-06-14 14:36:52 -05:00
fu-superio-it89-device.h trivial: reformat the whole tree to match new format 2021-08-24 11:18:40 -05:00
meson.build Convert build system to use meson tristate features 2022-02-28 08:34:48 -06:00
README.md trivial: update markdown for pre-commit style 2021-07-18 14:42:47 -05:00
superio.quirk Add a flag to indicate the device is signed or unsigned 2022-02-22 19:12:06 +00:00

SuperIO

This plugin enumerates the various ITE85* SuperIO embedded controller ICs found in many laptops. Vendors wanting to expose the SuperIO functionality will need to add a HwId quirk entry to superio.quirk.

See the Wikipedia page for more details about SuperIO and what the EC actually does.

Other useful links:

GUID Generation

These devices use a custom GUID generated using the SuperIO chipset name:

  • SuperIO-$(chipset), for example SuperIO-IT8512

Update Behavior

The firmware is deployed when the device is in normal runtime mode, but it is only activated on machine reboot. The firmware write is normally scheduled to be done very early in the boot process to minimize the chance the EC chip locking up if the user is actually using the keyboard controller.

Vendor ID Security

The vendor ID is set from the baseboard vendor, for example DMI:Star Labs

Quirk Use

This plugin uses the following plugin-specific quirks:

SuperioControlPort

Control (status/command) port number, e.g. 0x66

Since: 1.6.2

SuperioDataPort

Data port number, e.g. 0x62

Since: 1.6.2

SuperioAutoloadAction

Autoload action, specified by ITE: none, disable, on, off

Since: 1.6.2

SuperioTimeout

Maximum wait time in ms (default value is 250)

Since: 1.6.2

External Interface Access

This plugin requires access to raw system memory via inb/outb.