soc: rockchip: set dwc3 clock for rk3566
authorPeter Geis <pgwipeout@gmail.com>
Fri, 8 Apr 2022 15:12:34 +0000 (11:12 -0400)
committerHeiko Stuebner <heiko@sntech.de>
Sun, 10 Apr 2022 16:39:05 +0000 (18:39 +0200)
The rk3566 dwc3 otg port clock is unavailable at boot, as it defaults to
the combophy as the clock source. As combophy0 doesn't exist on rk3566,
we need to set the clock source to the usb2 phy instead.

Add handling to the grf driver to handle this on boot.

Signed-off-by: Peter Geis <pgwipeout@gmail.com>
Link: https://lore.kernel.org/r/20220408151237.3165046-3-pgwipeout@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/soc/rockchip/grf.c

index 494cf2b5bf7b6c813f7e4cbf5ba79112ade65aff..384461b70684411101f2a756cc172bce3ddaa674 100644 (file)
@@ -108,6 +108,20 @@ static const struct rockchip_grf_info rk3399_grf __initconst = {
        .num_values = ARRAY_SIZE(rk3399_defaults),
 };
 
+#define RK3566_GRF_USB3OTG0_CON1       0x0104
+
+static const struct rockchip_grf_value rk3566_defaults[] __initconst = {
+       { "usb3otg port switch", RK3566_GRF_USB3OTG0_CON1, HIWORD_UPDATE(0, 1, 12) },
+       { "usb3otg clock switch", RK3566_GRF_USB3OTG0_CON1, HIWORD_UPDATE(1, 1, 7) },
+       { "usb3otg disable usb3", RK3566_GRF_USB3OTG0_CON1, HIWORD_UPDATE(1, 1, 0) },
+};
+
+static const struct rockchip_grf_info rk3566_pipegrf __initconst = {
+       .values = rk3566_defaults,
+       .num_values = ARRAY_SIZE(rk3566_defaults),
+};
+
+
 static const struct of_device_id rockchip_grf_dt_match[] __initconst = {
        {
                .compatible = "rockchip,rk3036-grf",
@@ -130,6 +144,9 @@ static const struct of_device_id rockchip_grf_dt_match[] __initconst = {
        }, {
                .compatible = "rockchip,rk3399-grf",
                .data = (void *)&rk3399_grf,
+       }, {
+               .compatible = "rockchip,rk3566-pipe-grf",
+               .data = (void *)&rk3566_pipegrf,
        },
        { /* sentinel */ },
 };