On 10/28/24 10:40 PM, Jaehoon Chung wrote:
-----Original Message-----
From: Marek Vasut <[email protected]>
Sent: Monday, October 28, 2024 1:31 AM
To: Paul Barker <[email protected]>; Nobuhiro Iwamatsu
<[email protected]>; Marek Vasut
<[email protected]>; Peng Fan <[email protected]>; Jaehoon Chung
<[email protected]>
Cc: [email protected]
Subject: Re: [PATCH v2] mmc: renesas-sdhi: Add compatible string for rzg2l-sdhi
On 10/23/24 12:53 PM, Paul Barker wrote:
After the recent dts/upstream subtree merge, the sdhi compatible string
used in the device tree for RZ/G2L family SoCs is "renesas,rzg2l-sdhi"
not "renesas,rcar-gen3-sdhi". This broke the ability to access the eMMC
and SD card devices on RZ/G2L boards.
Fix this by adding the new compatible string to the sdhi driver.
Fixes: 136b7b6d2e98 ("Subtree merge tag 'v6.11-dts' of dts repo [1] into
dts/upstream")
Reviewed-by: Jaehoon Chung <[email protected]>
Reviewed-by: Marek Vasut <[email protected]>
Signed-off-by: Paul Barker <[email protected]>
---
Changes v1->v2:
- Moved new entry after "renesas,rcar-gen4-sdhi".
- Added Reviewed-by tags.
drivers/mmc/renesas-sdhi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mmc/renesas-sdhi.c b/drivers/mmc/renesas-sdhi.c
index 23db2a75c444..92afa6adcdac 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,rzg2l-sdhi", .data = RENESAS_GEN3_QUIRKS },
{ /* sentinel */ }
};
I can take this via sh tree if that's OK with you ?
If you're asking me, I'm ok.
All right, thank you, I included the patch in current SH PR.