]> git.baikalelectronics.ru Git - uboot.git/commitdiff
rockchip: usb: phy: add rk3066/rk3188 support
authorJohan Jonker <jbx6244@gmail.com>
Fri, 29 Apr 2022 21:40:06 +0000 (23:40 +0200)
committerKever Yang <kever.yang@rock-chips.com>
Wed, 29 Jun 2022 03:28:15 +0000 (11:28 +0800)
Add rk3066a/rk3188 support to rockchip_usb2_phy.c
They don't have completely identical usb phy registers,
so separate comapatible strings and data.

Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
drivers/usb/phy/rockchip_usb2_phy.c

index 93caa821a1d2823fc6b1e1d942c7d0a9bc5d4b87..c46ad86d3d658afad4eaef930d3b5a8d741bcd8c 100644 (file)
@@ -42,6 +42,12 @@ struct rockchip_usb2_phy_dt_id {
        const void      *data;
 };
 
+static const struct rockchip_usb2_phy_cfg rk3066a_pdata = {
+       .port_reset     = {0x00, 12, 12, 0, 1},
+       .soft_con       = {0x08, 2, 2, 0, 1},
+       .suspend        = {0x08, 8, 3, (0x01 << 3), (0x2A << 3)},
+};
+
 static const struct rockchip_usb2_phy_cfg rk3288_pdata = {
        .port_reset     = {0x00, 12, 12, 0, 1},
        .soft_con       = {0x08, 2, 2, 0, 1},
@@ -49,6 +55,8 @@ static const struct rockchip_usb2_phy_cfg rk3288_pdata = {
 };
 
 static struct rockchip_usb2_phy_dt_id rockchip_usb2_phy_dt_ids[] = {
+       { .compatible = "rockchip,rk3066a-usb-phy", .data = &rk3066a_pdata },
+       { .compatible = "rockchip,rk3188-usb-phy", .data = &rk3288_pdata },
        { .compatible = "rockchip,rk3288-usb-phy", .data = &rk3288_pdata },
        {}
 };