]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/dm/uclass-id.h
dm: pci: Add a uclass for PCI
[karo-tx-uboot.git] / include / dm / uclass-id.h
index 202f59b505d34848a250afff2ebc4b4c4f25c840..b984407c094ae2df7fa51567dbc2aec723b7f645 100644 (file)
@@ -19,6 +19,7 @@ enum uclass_id {
        UCLASS_TEST_FDT,
        UCLASS_TEST_BUS,
        UCLASS_SPI_EMUL,        /* sandbox SPI device emulator */
+       UCLASS_I2C_EMUL,        /* sandbox I2C device emulator */
        UCLASS_SIMPLE_BUS,
 
        /* U-Boot uclasses start here */
@@ -29,6 +30,12 @@ enum uclass_id {
        UCLASS_SPI_FLASH,       /* SPI flash */
        UCLASS_CROS_EC, /* Chrome OS EC */
        UCLASS_THERMAL,         /* Thermal sensor */
+       UCLASS_I2C,             /* I2C bus */
+       UCLASS_I2C_GENERIC,     /* Generic I2C device */
+       UCLASS_I2C_EEPROM,      /* I2C EEPROM device */
+       UCLASS_MOD_EXP,         /* RSA Mod Exp device */
+       UCLASS_PCI,             /* PCI bus */
+       UCLASS_PCI_GENERIC,     /* Generic PCI bus device */
 
        UCLASS_COUNT,
        UCLASS_INVALID = -1,