public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzk@kernel.org>
To: Romain Naour <romain.naour@smile.fr>, devicetree@vger.kernel.org
Cc: linux-arm-kernel@lists.infradead.org, linux-omap@vger.kernel.org,
	conor+dt@kernel.org, krzk+dt@kernel.org, robh@kernel.org,
	kristo@kernel.org, vigneshr@ti.com, nm@ti.com,
	Romain Naour <romain.naour@skf.com>
Subject: Re: [PATCH] arm64: dts: ti: k3-j721e-beagleboneai64: Enable ACSPCIE output for PCIe1
Date: Wed, 27 Nov 2024 10:22:44 +0100	[thread overview]
Message-ID: <d72dc967-a5f7-47d4-a27a-71a31f90d8d7@kernel.org> (raw)
In-Reply-To: <32e81174-8a17-4f29-b338-0dbd0d7e498b@smile.fr>

On 27/11/2024 10:17, Romain Naour wrote:
> Hello,
> 
> Le 26/11/2024 à 20:04, Krzysztof Kozlowski a écrit :
>> On 26/11/2024 18:33, Romain Naour wrote:
>>> From: Romain Naour <romain.naour@skf.com>
>>>
>>> Unlike the SK-TDA4VM (k3-j721e-sk) board, there is no clock generator
>>> (CDCI6214RGET) on the BeagleBone AI-64 (k3-j721e-beagleboneai64) to
>>> provide PCIe refclk signal to PCIe Endponts. So the ACSPCIE module must
>>> provide refclk through PCIe_REFCLK pins.
>>>
>>> Use the new "ti,syscon-acspcie-proxy-ctrl" property to enable ACSPCIE
>>> module's PAD IO Buffers.
>>>
>>> Signed-off-by: Romain Naour <romain.naour@skf.com>
>>> ---
>>> With this patch, we can remove "HACK: Sierra: Drive clock out" patch
>>> applied on vendor kernel for BeagleBone AI-64:
>>> https://openbeagle.org/beagleboard/linux/-/commit/ad65d7ef675966cdbc5d75f2bd545fad1914ba9b
>>> ---
>>>  arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dts |  4 ++++
>>>  arch/arm64/boot/dts/ti/k3-j721e-main.dtsi          | 10 ++++++++--
>>>  2 files changed, 12 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dts b/arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dts
>>> index fb899c99753e..681e3af7ce6e 100644
>>> --- a/arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dts
>>> +++ b/arch/arm64/boot/dts/ti/k3-j721e-beagleboneai64.dts
>>> @@ -859,6 +859,10 @@ &pcie1_rc {
>>>  	num-lanes = <2>;
>>>  	max-link-speed = <3>;
>>>  	reset-gpios = <&main_gpio0 22 GPIO_ACTIVE_HIGH>;
>>> +	/* There is no on-board or external reference clock generators,
>>
>> Please use generic style comments, not netdev.
> 
> Fixed.
> 
>>
>>> +	 * use refclk from the ACSPCIE module's PAD IO Buffers.
>>> +	 */
>>> +	ti,syscon-acspcie-proxy-ctrl = <&acspcie0_proxy_ctrl 0x3>;
>>>  };
>>>  
>>>  &ufs_wrapper {
>>> diff --git a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
>>> index 0da785be80ff..9f47e7672922 100644
>>> --- a/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
>>> +++ b/arch/arm64/boot/dts/ti/k3-j721e-main.dtsi
>>> @@ -5,6 +5,7 @@
>>>   * Copyright (C) 2016-2024 Texas Instruments Incorporated - https://www.ti.com/
>>>   */
>>>  #include <dt-bindings/phy/phy.h>
>>> +#include <dt-bindings/phy/phy-cadence.h>
>>>  #include <dt-bindings/phy/phy-ti.h>
>>>  #include <dt-bindings/mux/mux.h>
>>>  
>>> @@ -82,6 +83,11 @@ ehrpwm_tbclk: clock-controller@4140 {
>>>  			reg = <0x4140 0x18>;
>>>  			#clock-cells = <1>;
>>>  		};
>>> +
>>> +		acspcie0_proxy_ctrl: acspcie0-ctrl@18090 {
>>
>> Node names should be generic. See also an explanation and list of
>> examples (not exhaustive) in DT specification:
>> https://devicetree-specification.readthedocs.io/en/latest/chapter2-devicetree-basics.html#generic-names-recommendation
> 
> I updated to: "acspcie0_proxy_ctrl: acspcie-ctrl@18090"

Not much changed. It's a system-controller?

> 
>>
>>
>>> +			compatible = "ti,j784s4-acspcie-proxy-ctrl", "syscon";
>>
>> I am not familiar with naming, so is this j784s4 or j721e or K3 SoC?
>> Compatible should be SoC specific.
> 
> Me neither.

Hm? So it is like a random change?

> 
> "ti,j784s4-acspcie-proxy-ctrl" compatible is the only one available in the
> syscon devicetree binding. Should we add a new "ti,j721e-acspcie-proxy-ctrl"?

When you add new devices, add bindings.

> 
> This patch is adapted from a recent commit on the TI's kernel for the j784s4 Soc:
> https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/commit/?h=ti-rt-linux-6.6.y&id=bb4442cd523d6e34c5db43fd78c9f579d6937f6a

Sorry, v6.6 downstream code is totally irrelevant for this. They can
introduce bugs or wrong code and this is never a reason to repeat the
same in mainline.

> 
> There is another example with "ti,j784s4-pcie-ctrl" compatible used from
> k3-j722s-main.dtsi:
> https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/tree/arch/arm64/boot/dts/ti/k3-j722s-main.dtsi?h=v6.12.1#n240

Well, people repeat the same mistakes over and over.

Best regards,
Krzysztof

      reply	other threads:[~2024-11-27  9:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-26 17:33 [PATCH] arm64: dts: ti: k3-j721e-beagleboneai64: Enable ACSPCIE output for PCIe1 Romain Naour
2024-11-26 19:04 ` Krzysztof Kozlowski
2024-11-27  9:17   ` Romain Naour
2024-11-27  9:22     ` Krzysztof Kozlowski [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=d72dc967-a5f7-47d4-a27a-71a31f90d8d7@kernel.org \
    --to=krzk@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=kristo@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-omap@vger.kernel.org \
    --cc=nm@ti.com \
    --cc=robh@kernel.org \
    --cc=romain.naour@skf.com \
    --cc=romain.naour@smile.fr \
    --cc=vigneshr@ti.com \
    /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