From: "Chunfeng Yun (云春峰)" <Chunfeng.Yun@mediatek.com>
To: "vkoul@kernel.org" <vkoul@kernel.org>,
"krzysztof.kozlowski@linaro.org" <krzysztof.kozlowski@linaro.org>,
"Macpaul Lin (林智斌)" <Macpaul.Lin@mediatek.com>,
"robh+dt@kernel.org" <robh+dt@kernel.org>
Cc: "Pablo Sun (孫毓翔)" <pablo.sun@mediatek.com>,
"linux-mediatek@lists.infradead.org"
<linux-mediatek@lists.infradead.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Bear Wang (萩原惟德)" <bear.wang@mediatek.com>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"conor+dt@kernel.org" <conor+dt@kernel.org>,
"linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
"krzysztof.kozlowski+dt@linaro.org"
<krzysztof.kozlowski+dt@linaro.org>,
"matthias.bgg@gmail.com" <matthias.bgg@gmail.com>,
"linux-phy@lists.infradead.org" <linux-phy@lists.infradead.org>,
"angelogioacchino.delregno@collabora.com"
<angelogioacchino.delregno@collabora.com>
Subject: Re: [PATCH 1/2] dt-bindings: phy: mediatek: tphy: add a property for force-mode switch
Date: Thu, 30 Nov 2023 02:28:14 +0000 [thread overview]
Message-ID: <b351bdfeb1e782bd559f3c33da916de6a24b3446.camel@mediatek.com> (raw)
In-Reply-To: <239def9b-437b-9211-7844-af4332651df0@mediatek.com>
On Mon, 2023-11-27 at 15:09 +0800, Macpaul Lin wrote:
> On 11/25/23 18:37, Krzysztof Kozlowski and Chunfeng Yun wrote:
> >
> >
> > External email : Please do not click links or open attachments
> > until you
> > have verified the sender or the content.
> >
> > On 25/11/2023 02:23, Chunfeng Yun wrote:
> > > Due to some old SoCs with shared t-phy only support force-mode
> > > switch, and
> > > can't use compatible to distinguish between shared and non-shared
> > > t-phy,
> > > add a property to supported it.
> > > But now prefer to use "mediatek,syscon-type" on new SoC as far as
> > > possible.
> > >
> > > Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com>
> > > ---
> > > Documentation/devicetree/bindings/phy/mediatek,tphy.yaml | 6
> > > ++++++
> > > 1 file changed, 6 insertions(+)
> > >
> > > diff --git
> > > a/Documentation/devicetree/bindings/phy/mediatek,tphy.yaml
> > > b/Documentation/devicetree/bindings/phy/mediatek,tphy.yaml
> > > index 2bb91542e984..eedba5b7025e 100644
> > > --- a/Documentation/devicetree/bindings/phy/mediatek,tphy.yaml
> > > +++ b/Documentation/devicetree/bindings/phy/mediatek,tphy.yaml
> > > @@ -235,6 +235,12 @@ patternProperties:
> > > Specify the flag to enable BC1.2 if support it
> > > type: boolean
> > >
> > > + mediatek,force-mode:
> > > + description:
> > > + Use force mode to switch shared phy mode, perfer to
> > > use the bellow
> >
> > I still do not understand what is the "force mode" you want to use.
> > What
> > modes do you have? What are the characteristics of force mode?
> >
> > Also, please run spellcheck.
> >
> > Best regards,
> > Krzysztof
> >
>
> Thanks!
>
> 1. I've tested this patch and it could solve the clock unstable for
> XHCI1 on mt8195 or mt8395 during system boot up or during
> unload/reload the phy driver.
>
> The error message has been listed as follows.
>
> [ 13.849936][ T72] xhci-mtk 11290000.usb: supply vbus not found,
> using dummy regulator
> [ 13.851300][ T72] xhci-mtk 11290000.usb: uwk - reg:0x400,
> version:104
> [ 13.852624][ T72] xhci-mtk 11290000.usb: xHCI Host Controller
> [ 13.853393][ T72] xhci-mtk 11290000.usb: new USB bus
> registered,
> assigned bus number 3
> [ 13.874490][ T72] xhci-mtk 11290000.usb: clocks are not stable
> (0x3d0f)
> [ 13.875369][ T72] xhci-mtk 11290000.usb: can't setup: -110
> [ 13.876091][ T72] xhci-mtk 11290000.usb: USB bus 3 deregistered
> [ 13.877081][ T72] xhci-mtk: probe of 11290000.usb failed with
> error
> -110
>
> 2. This is a fix patch to XHCI1 since MT8195 has been upstream.
> Please add "Fixes:" tags and "Cc: stable@kernel.org" to back ward
> porting to previous stable trees.
>
> For example, add
> Fixes: 6b5ef194611e5 ("phy: mediatek: tphy: remove macros to prepare
> bitfield")
> is suggested since the force-mode was missing in the previous
> implementation which causes hardware function was abnormal.
> However, add
> Fixes: 33d18746fa514 ("phy: phy-mtk-tphy: use new io helpers to
> access
> register")
> will be better since the USB support for mt8195 is already enabled
> in
> late 2021.
It don't take into account this case, it assume that only use the
default mode (PCIe).
>
> 3. How about we revise the description as follows for more precisely?
>
> mediatek,force-mode:
> description:
> The force mode is used to manually switch the shared PHY mode
> between USB and PCIe. When force-mode is set, the USB 3.0 mode
> will be selected.
seems not right, the mode/type is selected by the phy consumer.
> This is typically required for older SoCs
> that do not automatically manage PHY mode switching.
> For newer SoCs that support it, it is preferable to use the
> "mediatek,syscon-type" property instead.
> type: boolean
>
> Thanks,
> Macpaul Lin
prev parent reply other threads:[~2023-11-30 2:28 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-25 1:23 [PATCH 1/2] dt-bindings: phy: mediatek: tphy: add a property for force-mode switch Chunfeng Yun
2023-11-25 1:23 ` [PATCH 2/2] phy: mediatek: tphy: add support force phy mode switch Chunfeng Yun
2023-11-25 10:37 ` [PATCH 1/2] dt-bindings: phy: mediatek: tphy: add a property for force-mode switch Krzysztof Kozlowski
2023-11-27 7:09 ` Macpaul Lin
2023-11-27 7:21 ` Krzysztof Kozlowski
2023-11-27 13:37 ` AngeloGioacchino Del Regno
2023-11-30 2:00 ` Chunfeng Yun (云春峰)
2023-11-30 1:51 ` Chunfeng Yun (云春峰)
2023-11-30 8:03 ` Krzysztof Kozlowski
2023-12-10 9:09 ` Chunfeng Yun (云春峰)
2023-11-30 2:28 ` Chunfeng Yun (云春峰) [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b351bdfeb1e782bd559f3c33da916de6a24b3446.camel@mediatek.com \
--to=chunfeng.yun@mediatek.com \
--cc=Macpaul.Lin@mediatek.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bear.wang@mediatek.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=linux-phy@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=pablo.sun@mediatek.com \
--cc=robh+dt@kernel.org \
--cc=vkoul@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox