diff options
| author | Hai Pham <[email protected]> | 2025-10-27 17:40:01 +0100 |
|---|---|---|
| committer | Marek Vasut <[email protected]> | 2025-11-07 17:40:42 +0100 |
| commit | 9535cdf0cb16671131ff2c3001c9f04f93d2fb99 (patch) | |
| tree | cea95fb8e74da5a7f92b7dede718b8890065d8df | |
| parent | 1b102d2fe17884d46cb555474310c8c942014d58 (diff) | |
mmc: renesas-sdhi: Add R-Car Gen5 support
Add support for R-Car Gen5 SoCs into the driver.
The default quirk is identical to previous generation.
Signed-off-by: Hai Pham <[email protected]>
Signed-off-by: Marek Vasut <[email protected]> # Tweak commit message
| -rw-r--r-- | drivers/mmc/renesas-sdhi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/renesas-sdhi.c b/drivers/mmc/renesas-sdhi.c index 556f07eaf8f..14976a8d30d 100644 --- a/drivers/mmc/renesas-sdhi.c +++ b/drivers/mmc/renesas-sdhi.c @@ -864,6 +864,7 @@ static const struct udevice_id renesas_sdhi_match[] = { { .compatible = "renesas,sdhi-r8a77990", .data = RENESAS_GEN3_QUIRKS }, { .compatible = "renesas,sdhi-r8a77995", .data = RENESAS_GEN3_QUIRKS }, { .compatible = "renesas,rcar-gen4-sdhi", .data = RENESAS_GEN3_QUIRKS }, + { .compatible = "renesas,rcar-gen5-sdhi", .data = RENESAS_GEN3_QUIRKS }, { .compatible = "renesas,rzg2l-sdhi", .data = RENESAS_GEN3_QUIRKS }, { /* sentinel */ } }; |
