* CoreSight Components: CoreSight components are compliant with the ARM CoreSight architecture specification and can be connected in various topologies to suit a particular SoCs tracing needs. These trace components can generally be classified as sinks, links and sources. Trace data produced by one or more sources flows through the intermediate links connecting the source to the currently selected sink. Each CoreSight component device should use these properties to describe its hardware characteristcs. * Required properties for all components *except* non-configurable replicators: * compatible: These have to be supplemented with "arm,primecell" as drivers are using the AMBA bus interface. Possible values include: - "arm,coresight-etb10", "arm,primecell"; - "arm,coresight-tpiu", "arm,primecell"; - "arm,coresight-tmc", "arm,primecell"; - "arm,coresight-funnel", "arm,primecell"; - "arm,coresight-etm3x", "arm,primecell"; - "arm,coresight-etm4x", "arm,primecell"; - "qcom,coresight-replicator1x", "arm,primecell"; - "arm,coresight-stm", "arm,primecell"; * reg: physical base address and length of the register set(s) of the component. * clocks: the clocks associated to this component. * clock-names: the name of the clocks referenced by the code. Since we are using the AMBA framework, the name of the clock providing the interconnect should be "apb_pclk", and some coresight blocks also have an additional clock "atclk", which clocks the core of that coresight component. The latter clock is optional. * port or ports: The representation of the component's port layout using the generic DT graph presentation found in "bindings/graph.txt". * coresight-name: unique descriptive name of the component. * Required properties for devices that don't show up on the AMBA bus, such as non-configurable replicators: * compatible: Currently supported values are (note the absence of the AMBA markee): - "arm,coresight-replicator" - "qcom,coresight-csr" - "arm,coresight-cti" - "qcom,coresight-tpda" - "qcom,coresight-tpdm" - "qcom,coresight-remote-etm" - "qcom,coresight-qpdi" - "qcom,coresight-hwevent" - "qcom,coresight-dummy" * port or ports: same as above. * coresight-name: unique descriptive name of the component. * Optional properties for all components: * reg-names: names corresponding to each reg property value. * Optional properties for ETM/PTMs: * arm,cp14: must be present if the system accesses ETM/PTM management registers via co-processor 14. * cpu: the cpu phandle this ETM/PTM is affined to. When omitted the source is considered to belong to CPU0. * Optional property for TMC: * arm,buffer-size: size of contiguous buffer space for TMC ETR (embedded trace router) * arm,default-sink: represents the default compile time CoreSight sink * coresight-ctis: represents flush and reset CTIs for TMC buffer * qcom,force-reg-dump: enables TMC reg dump support * arm,sg-enable : indicates whether scatter gather feature is enabled by default for TMC ETR configuration. * Required property for TPDAs: * qcom,tpda-atid: must be present. Specifies the ATID for TPDA. * Optional properties for TPDAs: * qcom,bc-elem-size: specifies the BC element size supported by each monitor connected to the aggregator on each port. Should be specified in pairs (port, bc element size). * qcom,tc-elem-size: specifies the TC element size supported by each monitor connected to the aggregator on each port. Should be specified in pairs (port, tc element size). * qcom,dsb-elem-size: specifies the DSB element size supported by each monitor connected to the aggregator on each port. Should be specified in pairs (port, dsb element size). * qcom,cmb-elem-size: specifies the CMB element size supported by each monitor connected to the aggregator on each port. Should be specified in pairs (port, cmb element size). * Optional properties for TPDM: * qcom,clk-enable: specifies whether additional clock bit needs to be set for M4M TPDM. * qcom,msr-fix-req: boolean, indicating if MSRs need to be programmed after enabling the subunit. * Required property for Remote ETMs: * qcom,inst-id: must be present. QMI instance id for remote ETMs. * Optional properties for QPDI: * qcom,pmic-carddetect-gpio: indicates the hotplug capabilities of the qpdi driver * qcom,skip-ldo: set to skip LDO management. Example: 1. Sinks etb@20010000 { compatible = "arm,coresight-etb10", "arm,primecell"; reg = <0 0x20010000 0 0x1000>; clocks = <&oscclk6a>; clock-names = "apb_pclk"; port { etb_in_port: endpoint@0 { slave-mode; remote-endpoint = <&replicator_out_port0>; }; }; }; tpiu@20030000 { compatible = "arm,coresight-tpiu", "arm,primecell"; reg = <0 0x20030000 0 0x1000>; clocks = <&oscclk6a>; clock-names = "apb_pclk"; port { tpiu_in_port: endpoint@0 { slave-mode; remote-endpoint = <&replicator_out_port1>; }; }; }; 2. Links replicator { /* non-configurable replicators don't show up on the * AMBA bus. As such no need to add "arm,primecell". */ compatible = "arm,coresight-replicator"; ports { #address-cells = <1>; #size-cells = <0>; /* replicator output ports */ port@0 { reg = <0>; replicator_out_port0: endpoint { remote-endpoint = <&etb_in_port>; }; }; port@1 { reg = <1>; replicator_out_port1: endpoint { remote-endpoint = <&tpiu_in_port>; }; }; /* replicator input port */ port@2 { reg = <0>; replicator_in_port0: endpoint { slave-mode; remote-endpoint = <&funnel_out_port0>; }; }; }; }; funnel@20040000 { compatible = "arm,coresight-funnel", "arm,primecell"; reg = <0 0x20040000 0 0x1000>; clocks = <&oscclk6a>; clock-names = "apb_pclk"; ports { #address-cells = <1>; #size-cells = <0>; /* funnel output port */ port@0 { reg = <0>; funnel_out_port0: endpoint { remote-endpoint = <&replicator_in_port0>; }; }; /* funnel input ports */ port@1 { reg = <0>; funnel_in_port0: endpoint { slave-mode; remote-endpoint = <&ptm0_out_port>; }; }; port@2 { reg = <1>; funnel_in_port1: endpoint { slave-mode; remote-endpoint = <&ptm1_out_port>; }; }; port@3 { reg = <2>; funnel_in_port2: endpoint { slave-mode; remote-endpoint = <&etm0_out_port>; }; }; }; }; tpda_mss: tpda@7043000 { compatible = "qcom,coresight-tpda"; reg = <0x7043000 0x1000>; reg-names = "tpda-base"; coresight-name = "coresight-tpda-mss"; qcom,tpda-atid = <67>; qcom,dsb-elem-size = <0 32>; qcom,cmb-elem-size = <0 32>; clocks = <&clock_gcc clk_qdss_clk>, <&clock_gcc clk_qdss_a_clk>; clock-names = "core_clk", "core_a_clk"; ports { #address-cells = <1>; #size-cells = <0>; port@0 { reg = <0>; tpda_mss_out_funnel_in1: endpoint { remote-endpoint = <&funnel_in1_in_tpda_mss>; }; }; port@1 { reg = <0>; tpda_mss_in_tpdm_mss: endpoint { slave-mode; remote-endpoint = <&tpdm_mss_out_tpda_mss>; }; }; }; }; 3. Sources ptm@2201c000 { compatible = "arm,coresight-etm3x", "arm,primecell"; reg = <0 0x2201c000 0 0x1000>; cpu = <&cpu0>; clocks = <&oscclk6a>; clock-names = "apb_pclk"; port { ptm0_out_port: endpoint { remote-endpoint = <&funnel_in_port0>; }; }; }; ptm@2201d000 { compatible = "arm,coresight-etm3x", "arm,primecell"; reg = <0 0x2201d000 0 0x1000>; cpu = <&cpu1>; clocks = <&oscclk6a>; clock-names = "apb_pclk"; port { ptm1_out_port: endpoint { remote-endpoint = <&funnel_in_port1>; }; }; }; stm: stm@6002000 { compatible = "arm,coresight-stm", "arm,primecell"; arm,primecell-periphid = <0x0003b962>; reg = <0x6002000 0x1000>, <0x16280000 0x180000>; reg-names = "stm-base", "stm-data-base"; coresight-name = "coresight-stm"; clocks = <&clock_gcc clk_qdss_clk>, <&clock_gcc clk_qdss_a_clk>; clock-names = "apb_pclk", "core_a_clk"; port{ stm_out_funnel_in0: endpoint { remote-endpoint = <&funnel_in0_in_stm>; }; }; }; tpdm_mss: tpdm@7042000 { compatible = "qcom,coresight-tpdm"; reg = <0x7042000 0x1000>; reg-names = "tpdm-base"; coresight-name = "coresight-tpdm-mss"; clocks = <&clock_gcc clk_qdss_clk>, <&clock_gcc clk_qdss_a_clk>; clock-names = "core_clk", "core_a_clk"; port{ tpdm_mss_out_tpda_mss: endpoint { remote-endpoint = <&tpda_mss_in_tpdm_mss>; }; }; }; 4. CTIs cti0: cti@6010000 { compatible = "arm,coresight-cti"; reg = <0x6010000 0x1000>; reg-names = "cti-base"; coresight-name = "coresight-cti0"; clocks = <&clock_gcc clk_qdss_clk>, <&clock_gcc clk_qdss_a_clk>; clock-names = "core_clk", "core_a_clk"; };