Skip to content

Commit 3c2ea12

Browse files
claudiubezneavinodkoul
authored andcommitted
phy: renesas: rcar-gen3-usb2: Add support for the RZ/G3S SoC
Add support for the Renesas RZ/G3S SoC. The support is similar with the rest of RZ/G2 devices with the except that the RZ/G3S needs bus initialization due to hardware limitation. Signed-off-by: Claudiu Beznea <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent f3c8498 commit 3c2ea12

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

drivers/phy/renesas/phy-rcar-gen3-usb2.c

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -583,6 +583,12 @@ static const struct rcar_gen3_phy_drv_data rz_g2l_phy_usb2_data = {
583583
.no_adp_ctrl = true,
584584
};
585585

586+
static const struct rcar_gen3_phy_drv_data rz_g3s_phy_usb2_data = {
587+
.phy_usb2_ops = &rcar_gen3_phy_usb2_ops,
588+
.no_adp_ctrl = true,
589+
.init_bus = true,
590+
};
591+
586592
static const struct of_device_id rcar_gen3_phy_usb2_match_table[] = {
587593
{
588594
.compatible = "renesas,usb2-phy-r8a77470",
@@ -604,6 +610,10 @@ static const struct of_device_id rcar_gen3_phy_usb2_match_table[] = {
604610
.compatible = "renesas,rzg2l-usb2-phy",
605611
.data = &rz_g2l_phy_usb2_data,
606612
},
613+
{
614+
.compatible = "renesas,usb2-phy-r9a08g045",
615+
.data = &rz_g3s_phy_usb2_data,
616+
},
607617
{
608618
.compatible = "renesas,rcar-gen3-usb2-phy",
609619
.data = &rcar_gen3_phy_usb2_data,

0 commit comments

Comments
 (0)