m68k: mcf530x: move CPU type to Kconfig and refactor config.mk
[oweals/u-boot.git] / include / dm / uclass-id.h
index 202f59b505d34848a250afff2ebc4b4c4f25c840..91bb90dcfb3044196907da15b3b83efb2c2dd07c 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,10 @@ 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_COUNT,
        UCLASS_INVALID = -1,