diff options
author | Tom Rini <trini@konsulko.com> | 2023-04-07 15:55:50 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-07 15:55:50 -0400 |
commit | 965f74b5b3602fe681421bda5676c7300ee3975e (patch) | |
tree | b8b001d60dbeea07ad4fdda6950aa73a3114d2e9 /drivers/i2c | |
parent | 19d0c64f89ee5a0d5d3077e5d7ec7dafd74a0d45 (diff) | |
parent | 36b63c92c3ffb5a8673f58e2111f3ee3273e6952 (diff) |
Merge branch 'master_sh/gen4/initial' of https://source.denx.de/u-boot/custodians/u-boot-sh
- Initial R-Car Generation 4 support
Diffstat (limited to 'drivers/i2c')
-rw-r--r-- | drivers/i2c/Kconfig | 2 | ||||
-rw-r--r-- | drivers/i2c/rcar_i2c.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 2eae33cd54..05b14d2451 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig @@ -496,7 +496,7 @@ config SYS_I2C_OMAP24XX config SYS_I2C_RCAR_I2C bool "Renesas RCar I2C driver" - depends on (RCAR_GEN2 || RCAR_GEN3) && DM_I2C + depends on (RCAR_GEN2 || RCAR_64) && DM_I2C help Support for Renesas RCar I2C controller. diff --git a/drivers/i2c/rcar_i2c.c b/drivers/i2c/rcar_i2c.c index d9ece5e3a8..ff9a2d80dd 100644 --- a/drivers/i2c/rcar_i2c.c +++ b/drivers/i2c/rcar_i2c.c @@ -369,6 +369,7 @@ static const struct dm_i2c_ops rcar_i2c_ops = { static const struct udevice_id rcar_i2c_ids[] = { { .compatible = "renesas,rcar-gen2-i2c", .data = RCAR_I2C_TYPE_GEN2 }, { .compatible = "renesas,rcar-gen3-i2c", .data = RCAR_I2C_TYPE_GEN3 }, + { .compatible = "renesas,rcar-gen4-i2c", .data = RCAR_I2C_TYPE_GEN3 }, { } }; |