diff options
| author | Minh Le <[email protected]> | 2025-10-27 17:38:04 +0100 |
|---|---|---|
| committer | Heiko Schocher <[email protected]> | 2025-10-28 09:51:02 +0100 |
| commit | fc7d868327439c4ea6c640d2e8fead7679c0b86f (patch) | |
| tree | 7da43bfd6520b8dd6cdb54694efc7dbb11c43245 | |
| parent | 9ffbce80df0a70d4b636b6b1d2b9faf3728d556a (diff) | |
i2c: rcar_i2c: Add R-Car Gen5 support
Add support for R-Car Gen5 SoCs into the driver.
I2C on R-Car Gen5 is treated the same as Gen3 and Gen4.
Signed-off-by: Minh Le <[email protected]>
Signed-off-by: Hai Pham <[email protected]>
Signed-off-by: Marek Vasut <[email protected]> # Tweak commit message
Reviewed-by: Heiko Schocher <[email protected]>
| -rw-r--r-- | drivers/i2c/rcar_i2c.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/i2c/rcar_i2c.c b/drivers/i2c/rcar_i2c.c index 3bd5108fd23..9562119bb5b 100644 --- a/drivers/i2c/rcar_i2c.c +++ b/drivers/i2c/rcar_i2c.c @@ -368,6 +368,7 @@ 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 }, + { .compatible = "renesas,rcar-gen5-i2c", .data = RCAR_I2C_TYPE_GEN3 }, { } }; |
