Hi Damon, Am Freitag, 29. November 2024, 03:43:57 CET schrieb Damon Ding: > On 2024/11/27 19:04, Heiko Stübner wrote: > > Am Mittwoch, 27. November 2024, 12:00:10 CET schrieb Damon Ding: > >> On 2024/11/27 17:29, Heiko Stübner wrote: > >>> Am Mittwoch, 27. November 2024, 08:51:51 CET schrieb Damon Ding: > >>>> +static int rk_hdptx_phy_set_mode(struct phy *phy, enum phy_mode mode, > >>>> + int submode) > >>>> +{ > >>>> + return 0; > >>>> +} > >>> > >>> I think it might make sense to go the same way as the DCPHY and also > >>> naneng combophy, to use #phy-cells = 1 to select the phy-mode via DT . > >>> > >>> See [0] for Sebastians initial suggestion regarding the DC-PHY. > >>> The naneng combophy already uses that scheme of mode-selection too. > >>> > >>> There is of course the issue of backwards-compatibility, but that can be > >>> worked around in the binding with something like: > >>> > >>> '#phy-cells': > >>> enum: [0, 1] > >>> description: | > >>> If #phy-cells is 0, PHY mode is set to PHY_TYPE_HDMI > >>> If #phy-cells is 1 mode is set in the PHY cells. Supported modes are: > >>> - PHY_TYPE_HDMI > >>> - PHY_TYPE_DP > >>> See include/dt-bindings/phy/phy.h for constants. > >>> > >>> PHY_TYPE_HDMI needs to be added to include/dt-bindings/phy/phy.h > >>> but PHY_TYPE_DP is already there. > >>> > >>> That way we would standardize on one form of accessing phy-types > >>> on rk3588 :-) . > >>> > >>> Also see the Mediatek CSI rx phy doing this too already [1] > >>> > >>> > >>> Heiko > >>> > >>> [0] https://lore.kernel.org/linux-rockchip/udad4qf3o7kt45nuz6gxsvsmprh4rnyfxfogopmih6ucznizih@7oj2jrnlfonz/ > >>> [1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/phy/mediatek,mt8365-csi-rx.yaml > >>> > >> > >> It is really a nice way to separate HDMI and DP modes. > > I apologize for reopening the discussion about the phy-types setting. there is definitly no need to apologize. We're trying to find the best solution afterall :-) . > With the .set_mode() of struct phy_ops, the HDMI and eDP dynamic > switching can be achieved, which just depends on the right setting of > enum phy_mode in include/linux/phy/phy.h. So the previous way of > configuring phy mode may be also good. I think the deciding factor is, is there a use-case for needing to switch modes at runtime. I do think the mode for the dc-phy and also the hdptx-phy is pretty much decided by the board design. I.e. when you end up in a DP-connector (or eDP-panel) on your board you need DP mode, and when you end up in a hdmi-connector you need the HDMI phy mode. So I think the phy-mode for the hdptx-phy is largely dictated by the static board definition (like devicetree), hence going with the dt-argument for the mode. Like similar to the Naneng combophy, selecting its mode via argument because deciding if it ends up in a sata port is a board-design thing. Is there a use-case where you need to switch at runtime between hdmi and eDP? Like starting the phy in eDP mode but then needing to switch to HDMI mode, while the device is running? > And other phys may want to support dynamic switching too, like the > Rockchip USBDP combo phy. I guess USBDP is special in that in also does both modes dynamical depending on its use (like type-c with option DP altmode) Have a great weekend Heiko