mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
2a9eb57e20
The 'slave-mode' property is not valid under 'in-ports' as it was the legacy way to find input ports. Warnings are generated from the Coresight schema: arch/arm64/boot/dts/arm/juno-r1.dtb: funnel@20150000: in-ports:port@0:endpoint: Unevaluated properties are not allowed ('slave-mode' was unexpected) From schema: Documentation/devicetree/bindings/arm/arm,coresight-dynamic-funnel.yaml Link: https://lore.kernel.org/r/20220721212952.1984382-1-robh@kernel.org Reviewed-by: Suzuki K Poulose <suzuki.poulose@arm.com> Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
119 lines
2.4 KiB
Plaintext
119 lines
2.4 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
/ {
|
|
funnel@20130000 { /* cssys1 */
|
|
compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
|
|
reg = <0 0x20130000 0 0x1000>;
|
|
|
|
clocks = <&soc_smc50mhz>;
|
|
clock-names = "apb_pclk";
|
|
power-domains = <&scpi_devpd 0>;
|
|
out-ports {
|
|
port {
|
|
csys1_funnel_out_port: endpoint {
|
|
remote-endpoint = <&etf1_in_port>;
|
|
};
|
|
};
|
|
};
|
|
in-ports {
|
|
port {
|
|
csys1_funnel_in_port0: endpoint {
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
etf_sys1: etf@20140000 { /* etf1 */
|
|
compatible = "arm,coresight-tmc", "arm,primecell";
|
|
reg = <0 0x20140000 0 0x1000>;
|
|
|
|
clocks = <&soc_smc50mhz>;
|
|
clock-names = "apb_pclk";
|
|
power-domains = <&scpi_devpd 0>;
|
|
in-ports {
|
|
port {
|
|
etf1_in_port: endpoint {
|
|
remote-endpoint = <&csys1_funnel_out_port>;
|
|
};
|
|
};
|
|
};
|
|
out-ports {
|
|
port {
|
|
etf1_out_port: endpoint {
|
|
remote-endpoint = <&csys2_funnel_in_port1>;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
funnel@20150000 { /* cssys2 */
|
|
compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
|
|
reg = <0 0x20150000 0 0x1000>;
|
|
|
|
clocks = <&soc_smc50mhz>;
|
|
clock-names = "apb_pclk";
|
|
power-domains = <&scpi_devpd 0>;
|
|
out-ports {
|
|
port {
|
|
csys2_funnel_out_port: endpoint {
|
|
remote-endpoint = <&replicator_in_port0>;
|
|
};
|
|
};
|
|
};
|
|
|
|
in-ports {
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
port@0 {
|
|
reg = <0>;
|
|
csys2_funnel_in_port0: endpoint {
|
|
remote-endpoint = <&etf0_out_port>;
|
|
};
|
|
};
|
|
|
|
port@1 {
|
|
reg = <1>;
|
|
csys2_funnel_in_port1: endpoint {
|
|
remote-endpoint = <&etf1_out_port>;
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
|
|
cti_sys2: cti@20160000 { /* sys_cti_2 */
|
|
compatible = "arm,coresight-cti", "arm,primecell";
|
|
reg = <0 0x20160000 0 0x1000>;
|
|
|
|
clocks = <&soc_smc50mhz>;
|
|
clock-names = "apb_pclk";
|
|
power-domains = <&scpi_devpd 0>;
|
|
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
trig-conns@0 {
|
|
reg = <0>;
|
|
arm,trig-in-sigs = <0 1>;
|
|
arm,trig-in-types = <SNK_FULL SNK_ACQCOMP>;
|
|
arm,trig-out-sigs = <0 1>;
|
|
arm,trig-out-types = <SNK_FLUSHIN SNK_TRIGIN>;
|
|
arm,cs-dev-assoc = <&etf_sys1>;
|
|
};
|
|
|
|
trig-conns@1 {
|
|
reg = <1>;
|
|
arm,trig-in-sigs = <2 3 4>;
|
|
arm,trig-in-types = <ELA_DBGREQ ELA_TSTART ELA_TSTOP>;
|
|
arm,trig-conn-name = "ela_clus_0";
|
|
};
|
|
|
|
trig-conns@2 {
|
|
reg = <2>;
|
|
arm,trig-in-sigs = <5 6 7>;
|
|
arm,trig-in-types = <ELA_DBGREQ ELA_TSTART ELA_TSTOP>;
|
|
arm,trig-conn-name = "ela_clus_1";
|
|
};
|
|
};
|
|
};
|