On Mon, Sep 22, 2025 at 09:20:35AM +0800, Chaoyi Chen wrote: > From: Chaoyi Chen <chaoyi.chen@xxxxxxxxxxxxxx> > > This patch add support for Type-C Port Controller Manager. Each PHY > will register typec_mux and typec_switch when external Type-C > controller is present. Type-C events are handled by TCPM without > extcon. > > The extcon device should still be supported. > > Signed-off-by: Chaoyi Chen <chaoyi.chen@xxxxxxxxxxxxxx> > --- > > Changes in v4: > - Remove notify DP HPD state by USB/DP PHY. > > (no changes since v3) > > Changes in v2: > - Fix compile error when CONFIG_TYPEC is not enabled. > - Notify DP HPD state by USB/DP PHY. > > drivers/phy/rockchip/phy-rockchip-typec.c | 365 +++++++++++++++++++++- > 1 file changed, 349 insertions(+), 16 deletions(-) > > @@ -850,6 +998,72 @@ static int tcphy_get_mode(struct rockchip_typec_phy *tcphy) > return mode; > } > > +#if IS_ENABLED(CONFIG_TYPEC) > +static int tcphy_orien_sw_set(struct typec_switch_dev *sw, > + enum typec_orientation orien) > +{ > + struct rockchip_typec_phy *tcphy = typec_switch_get_drvdata(sw); > + > + mutex_lock(&tcphy->lock); > + > + if (orien == TYPEC_ORIENTATION_NONE) { > + tcphy->new_mode = MODE_DISCONNECT; > + goto unlock_ret; > + } > + > + tcphy->flip = (orien == TYPEC_ORIENTATION_REVERSE) ? true : false; > + tcphy->new_mode = MODE_DFP_USB; I don't think it is correct. Orientation defines only the cable (plug) orientation. You should be getting the mux events for the mode selection. > + > +unlock_ret: > + mutex_unlock(&tcphy->lock); > + return 0; > +} > + > +static void udphy_orien_switch_unregister(void *data) > +{ > + struct rockchip_typec_phy *tcphy = data; > + > + typec_switch_unregister(tcphy->sw); > +} > + -- With best wishes Dmitry