diff options
author | Claudio Carvalho <cclaudio@linux.vnet.ibm.com> | 2017-10-12 02:04:56 -0300 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-10-15 20:08:14 -0500 |
commit | 965de30e9495dbcf8d02c8146c90d63db94ed5ba (patch) | |
tree | b4eda75f090bd48f753ba3dbad4a82b42f7cc90d | |
parent | b307a54d9672d779c31a82dd045587300a0eeedc (diff) | |
download | skiboot-965de30e9495dbcf8d02c8146c90d63db94ed5ba.zip skiboot-965de30e9495dbcf8d02c8146c90d63db94ed5ba.tar.gz skiboot-965de30e9495dbcf8d02c8146c90d63db94ed5ba.tar.bz2 |
hdata/i2c: update the list of known i2c devs
This updates the list of known i2c devices - as of HDAT spec v10.5e - so
that they can be properly identified during the hdat parsing.
Signed-off-by: Claudio Carvalho <cclaudio@linux.vnet.ibm.com>
Reviewed-by: Oliver O'Halloran <oohal@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | hdata/i2c.c | 37 |
1 files changed, 33 insertions, 4 deletions
diff --git a/hdata/i2c.c b/hdata/i2c.c index 9fb8513..2070115 100644 --- a/hdata/i2c.c +++ b/hdata/i2c.c @@ -91,8 +91,26 @@ struct hdat_i2c_type { }; static struct hdat_i2c_type hdat_i2c_devs[] = { + { 0x1, "gpio", "nxp,pca9551" }, /* XXX: Please verify that all VPD EEPROMs are of this type */ - { 0x2, "eeprom", "atmel,24c128" } + { 0x2, "eeprom", "atmel,24c128" }, + { 0x3, "tpm", "nuvoton,npct650" }, + { 0x4, "i2c", NULL }, /* MEX-FPGA */ + { 0x5, "i2c", NULL }, /* UCX90xx devs for PCI Hotplug */ + { 0x6, "gpio", "nxp,pca9552" }, + { 0x7, "gpio", "nxp,pca9553" }, + { 0x8, "gpio", "nxp,pca9554" }, + { 0x9, "gpio", "nxp,pca9555" }, + { 0xa, "i2c", NULL }, /* SMP/OpenCAPI Cable */ + { 0xb, "eeprom", "atmel,24c256" }, + { 0xc, "i2c", NULL }, /* Thermal Sensor */ + { 0xd, "eeprom", "atmel,24c04" }, + { 0xe, "eeprom", "atmel,24c412" }, + { 0xf, "eeprom", "atmel,24c32" }, + { 0x10, "eeprom", "atmel,24c64" }, + { 0x11, "eeprom", "atmel,24c16" }, + { 0x12, "i2c", NULL }, /* NVDIA GPU */ + { 0x13, "i2c", "nxp,lpc11u35" }, }; struct hdat_i2c_label { @@ -101,13 +119,24 @@ struct hdat_i2c_label { }; static struct hdat_i2c_label hdat_i2c_labels[] = { - { 0x1, "9551-led-controller" }, - { 0x2, "seeprom" }, + { 0x1, "led-controller" }, + { 0x2, "eeprom-pgood" }, + { 0x3, "eeprom-control" }, + { 0x4, "tpm" }, { 0x5, "module-vpd" }, { 0x6, "dimm SPD" }, { 0x7, "proc-vpd" }, { 0x8, "sbe-eeprom" }, - { 0x9, "planar-vpd" } + { 0x9, "planar-vpd" }, + { 0xa, "opencapi-topology" }, + { 0xb, "opencapi-micro-reset" }, + { 0xc, "nvlink-cable" }, + { 0xd, "secure-window-open" }, + { 0xe, "physical-presence" }, + { 0xf, "mex-fpga" }, + { 0x10, "thermal-sensor" }, + { 0x11, "host-i2c-enable" }, + { 0x12, "gpu-config" }, }; /* |