linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Konrad Dybcio <konrad.dybcio@somainline.org>
To: Mao Jinlong <quic_jinlmao@quicinc.com>,
	Mathieu Poirier <mathieu.poirier@linaro.org>,
	Suzuki K Poulose <suzuki.poulose@arm.com>,
	Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Mike Leach <mike.leach@linaro.org>, Leo Yan <leo.yan@linaro.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Tingwei Zhang <quic_tingweiz@quicinc.com>,
	Yuanfang Zhang <quic_yuanfang@quicinc.com>,
	Tao Zhang <quic_taozha@quicinc.com>,
	Trilok Soni <quic_tsoni@quicinc.com>,
	Hao Zhang <quic_hazha@quicinc.com>,
	linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v5 10/10] ARM: dts: msm: Add tpdm mm/prng for sm8250
Date: Wed, 13 Apr 2022 12:01:48 +0200	[thread overview]
Message-ID: <61b6a862-ad69-ba3f-92fe-40999b9bde0f@somainline.org> (raw)
In-Reply-To: <20220412125035.40312-11-quic_jinlmao@quicinc.com>


On 12/04/2022 14:50, Mao Jinlong wrote:
> Add tpdm mm and tpdm prng for sm8250.
>
> +---------------+                +-------------+
> |  tpdm@6c08000 |                |tpdm@684C000 |
> +-------|-------+                +------|------+
>          |                               |
> +-------|-------+                       |
> | funnel@6c0b000|                       |
> +-------|-------+                       |
>          |                               |
> +-------|-------+                       |
> |funnel@6c2d000 |                       |
> +-------|-------+                       |
>          |                               |
>          |    +---------------+          |
>          +----- tpda@6004000  -----------+
>               +-------|-------+
>                       |
>               +-------|-------+
>               |funnel@6005000 |
>               +---------------+
>
> Signed-off-by: Mao Jinlong <quic_jinlmao@quicinc.com>
> ---
>   .../arm64/boot/dts/qcom/sm8250-coresight.dtsi | 182 ++++++++++++++++++
>   1 file changed, 182 insertions(+)

Same comments as in 9/10: title, sorting, status=disabled, line breaks..


Also, please make sure to use lowercase hex throughout the file (i.e. 
0x684c000 not 0x684C000).


Konrad


>
> diff --git a/arch/arm64/boot/dts/qcom/sm8250-coresight.dtsi b/arch/arm64/boot/dts/qcom/sm8250-coresight.dtsi
> index 1de42fd39248..9c710b69a804 100644
> --- a/arch/arm64/boot/dts/qcom/sm8250-coresight.dtsi
> +++ b/arch/arm64/boot/dts/qcom/sm8250-coresight.dtsi
> @@ -44,6 +44,14 @@
>   			#address-cells = <1>;
>   			#size-cells = <0>;
>   
> +			port@6 {
> +				reg = <6>;
> +				funnel_in0_in_funnel_qatb: endpoint {
> +					remote-endpoint =
> +						<&funnel_qatb_out_funnel_in0>;
> +				};
> +			};
> +
>   			port@7 {
>   				reg = <7>;
>   				funnel0_in7: endpoint {
> @@ -523,4 +531,178 @@
>   			};
>   		};
>   	};
> +
> +	tpdm@6c08000 {
> +		compatible = "arm,primecell";
> +		reg = <0 0x6c08000 0 0x1000>;
> +		reg-names = "tpdm-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			port {
> +				tpdm_mm_out_funnel_dl_mm: endpoint {
> +					remote-endpoint =
> +						<&funnel_dl_mm_in_tpdm_mm>;
> +				};
> +			};
> +		};
> +	};
> +
> +	funnel@6c0b000 {
> +		compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
> +
> +		reg = <0 0x6c0b000 0 0x1000>;
> +		reg-names = "funnel-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			port {
> +				funnel_dl_mm_out_funnel_dl_center: endpoint {
> +					remote-endpoint =
> +					  <&funnel_dl_center_in_funnel_dl_mm>;
> +				};
> +			};
> +		};
> +
> +		in-ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@3 {
> +				reg = <3>;
> +				funnel_dl_mm_in_tpdm_mm: endpoint {
> +					remote-endpoint =
> +					    <&tpdm_mm_out_funnel_dl_mm>;
> +				};
> +			};
> +		};
> +	};
> +
> +	funnel@6c2d000 {
> +		compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
> +
> +		reg = <0 0x6c2d000 0 0x1000>;
> +		reg-names = "funnel-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +			port {
> +				tpdm_mm_out_tpda9: endpoint {
> +					remote-endpoint =
> +					    <&tpda_9_in_tpdm_mm>;
> +				};
> +			};
> +		};
> +
> +		in-ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@2 {
> +				reg = <2>;
> +				funnel_dl_center_in_funnel_dl_mm: endpoint {
> +					remote-endpoint =
> +					<&funnel_dl_mm_out_funnel_dl_center>;
> +				};
> +			};
> +		};
> +	};
> +
> +	tpdm@684C000 {
> +		compatible = "arm,primecell";
> +		reg = <0 0x684C000 0 0x1000>;
> +		reg-names = "tpdm-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			port {
> +				tpdm_prng_out_tpda_23: endpoint {
> +					remote-endpoint =
> +						<&tpda_23_in_tpdm_prng>;
> +				};
> +			};
> +		};
> +	};
> +
> +	tpda@6004000 {
> +		compatible = "arm,primecell";
> +		reg = <0 0x6004000 0 0x1000>;
> +		reg-names = "tpda-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			port {
> +				reg = <0>;
> +				tpda_out_funnel_qatb: endpoint {
> +					remote-endpoint =
> +						<&funnel_qatb_in_tpda>;
> +				};
> +			};
> +		};
> +
> +		in-ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@9 {
> +				reg = <9>;
> +				tpda_9_in_tpdm_mm: endpoint {
> +					remote-endpoint =
> +						<&tpdm_mm_out_tpda9>;
> +				};
> +			};
> +
> +			port@23 {
> +				reg = <23>;
> +				tpda_23_in_tpdm_prng: endpoint {
> +					remote-endpoint =
> +						<&tpdm_prng_out_tpda_23>;
> +				};
> +			};
> +		};
> +	};
> +
> +	funnel@6005000 {
> +		compatible = "arm,primecell";
> +
> +		reg = <0 0x6005000 0 0x1000>;
> +		reg-names = "funnel-base";
> +
> +		clocks = <&aoss_qmp>;
> +		clock-names = "apb_pclk";
> +
> +		out-ports {
> +			port {
> +				funnel_qatb_out_funnel_in0: endpoint {
> +					remote-endpoint =
> +						<&funnel_in0_in_funnel_qatb>;
> +				};
> +			};
> +		};
> +
> +		in-ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +				funnel_qatb_in_tpda: endpoint {
> +					remote-endpoint =
> +						<&tpda_out_funnel_qatb>;
> +				};
> +			};
> +		};
> +	};
>   };
>

      reply	other threads:[~2022-04-13 10:02 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-12 12:50 [PATCH v5 00/10] Coresight: Add support for TPDM and TPDA Mao Jinlong
2022-04-12 12:50 ` [PATCH v5 01/10] coresight: core: Use IDR for non-cpu bound sources' paths Mao Jinlong
2022-04-14 14:20   ` Mike Leach
2022-04-12 12:50 ` [PATCH v5 02/10] Coresight: Add coresight TPDM source driver Mao Jinlong
2022-04-14 14:53   ` Mike Leach
2022-04-12 12:50 ` [PATCH v5 03/10] dt-bindings: arm: Adds CoreSight TPDM hardware definitions Mao Jinlong
2022-04-14 15:22   ` Mike Leach
2022-04-15  9:56     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 04/10] coresight-tpdm: Add DSB dataset support Mao Jinlong
2022-04-19  9:23   ` Mike Leach
2022-04-20 14:41     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 05/10] coresight-tpdm: Add integration test support Mao Jinlong
2022-04-13 13:57   ` Mike Leach
2022-04-13 16:53     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 06/10] docs: sysfs: coresight: Add sysfs ABI documentation for TPDM Mao Jinlong
2022-04-19  9:25   ` Mike Leach
2022-04-20 14:42     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 07/10] Coresight: Add TPDA link driver Mao Jinlong
2022-04-19  9:51   ` Mike Leach
2022-04-20 14:43     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 08/10] dt-bindings: arm: Adds CoreSight TPDA hardware definitions Mao Jinlong
2022-04-19  8:32   ` Mike Leach
2022-04-20 14:37     ` Jinlong Mao
2022-04-12 12:50 ` [PATCH v5 09/10] ARM: dts: msm: Add coresight components for SM8250 Mao Jinlong
2022-04-13  9:58   ` Konrad Dybcio
2022-04-13 16:45     ` Jinlong Mao
2022-04-14 13:40       ` Mike Leach
2022-04-15  9:53         ` Jinlong Mao
2022-04-20 17:07           ` Konrad Dybcio
2022-04-12 12:50 ` [PATCH v5 10/10] ARM: dts: msm: Add tpdm mm/prng for sm8250 Mao Jinlong
2022-04-13 10:01   ` Konrad Dybcio [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=61b6a862-ad69-ba3f-92fe-40999b9bde0f@somainline.org \
    --to=konrad.dybcio@somainline.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=coresight@lists.linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=leo.yan@linaro.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathieu.poirier@linaro.org \
    --cc=mike.leach@linaro.org \
    --cc=quic_hazha@quicinc.com \
    --cc=quic_jinlmao@quicinc.com \
    --cc=quic_taozha@quicinc.com \
    --cc=quic_tingweiz@quicinc.com \
    --cc=quic_tsoni@quicinc.com \
    --cc=quic_yuanfang@quicinc.com \
    --cc=suzuki.poulose@arm.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;
as well as URLs for NNTP newsgroup(s).