mirror of
https://git.proxmox.com/git/fwupd
synced 2025-06-01 15:49:22 +00:00
![]() Asking the user for the UID mapping isn't working very well, as it requires lots of manual handholding. It also doesn't work very well when the device vendor does not actually have a PCI ID or if the vendor has split into two entities. Just use the OUI address as an additional VendorID and match any of the device IDs against any of the metadata-supplied values. |
||
---|---|---|
.. | ||
fu-plugin-superio.c | ||
fu-superio-common.c | ||
fu-superio-common.h | ||
fu-superio-device.c | ||
fu-superio-device.h | ||
fu-superio-it85-device.c | ||
fu-superio-it85-device.h | ||
fu-superio-it89-device.c | ||
fu-superio-it89-device.h | ||
meson.build | ||
README.md | ||
superio.quirk |
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 https://en.wikipedia.org/wiki/Super_I/O for more details about SuperIO and what the EC actually does.
Other useful links:
- https://raw.githubusercontent.com/system76/ecflash/master/ec.py
- https://github.com/system76/firmware-update/tree/master/src
- https://github.com/coreboot/coreboot/blob/master/util/superiotool/superiotool.h
- https://github.com/flashrom/flashrom/blob/master/it85spi.c
- http://wiki.laptop.org/go/Ec_specification
GUID Generation
These devices use a custom GUID generated using the SuperIO chipset name:
SuperIO-$(chipset)
, for exampleSuperIO-IT8512
Vendor ID Security
The vendor ID is set from the baseboard vendor, for example DMI:Star Labs
External interface access
This plugin requires access to raw system memory via inb
/outb
.