fwupd/plugins/superio
Sean Rhodes a4a1be569b
plugins/{superio,flashrom}: Add LabTop Mk III HwId (#4920)
Add the HwId for the Star LabTop Mk III when using coreboot firmware,
as this differs to AMI.

Signed-off-by: Sean Rhodes <sean@starlabs.systems>

Signed-off-by: Sean Rhodes <sean@starlabs.systems>
2022-08-12 14:00:50 +00: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 Always set the progress ID when setting the number of steps 2022-06-29 10:47:27 +01: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 Always set the progress ID when setting the number of steps 2022-06-29 10:47:27 +01: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 Build the quirk files into the daemon as a GResource 2022-06-30 18:52:24 +01:00
README.md trivial: update markdown for pre-commit style 2021-07-18 14:42:47 -05:00
superio.quirk plugins/{superio,flashrom}: Add LabTop Mk III HwId (#4920) 2022-08-12 14:00:50 +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.