From: Shengjiu Wang <[email protected]> The i.MX EASRC hardware supports up to four conversion contexts (A, B, C, D). Add a ports container property to the binding to allow each context to be represented as an individual audio-graph port:
port@0 -- context A port@1 -- context B port@2 -- context C port@3 -- context D Each sub-port references audio-graph-port.yaml and follows the standard audio-graph binding conventions. Signed-off-by: Shengjiu Wang <[email protected]> --- .../devicetree/bindings/sound/fsl,easrc.yaml | 79 +++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/Documentation/devicetree/bindings/sound/fsl,easrc.yaml b/Documentation/devicetree/bindings/sound/fsl,easrc.yaml index d5727f8bfb0b..0f579870110d 100644 --- a/Documentation/devicetree/bindings/sound/fsl,easrc.yaml +++ b/Documentation/devicetree/bindings/sound/fsl,easrc.yaml @@ -55,6 +55,29 @@ properties: - const: imx/easrc/easrc-imx8mn.bin description: The coefficient table for the filters + ports: + $ref: /schemas/graph.yaml#/properties/ports + properties: + port@0: + $ref: audio-graph-port.yaml# + unevaluatedProperties: false + description: port for context A + + port@1: + $ref: audio-graph-port.yaml# + unevaluatedProperties: false + description: port for context B + + port@2: + $ref: audio-graph-port.yaml# + unevaluatedProperties: false + description: port for context C + + port@3: + $ref: audio-graph-port.yaml# + unevaluatedProperties: false + description: port for context D + fsl,asrc-rate: $ref: /schemas/types.yaml#/definitions/uint32 minimum: 8000 @@ -107,3 +130,59 @@ examples: fsl,asrc-rate = <8000>; fsl,asrc-format = <2>; }; + + - | + #include <dt-bindings/clock/imx8mn-clock.h> + + easrc1: easrc@300c0000 { + compatible = "fsl,imx8mn-easrc"; + reg = <0x300c0000 0x10000>; + interrupts = <0x0 122 0x4>; + clocks = <&clk IMX8MN_CLK_ASRC_ROOT>; + clock-names = "mem"; + dmas = <&sdma2 16 23 0> , <&sdma2 17 23 0>, + <&sdma2 18 23 0> , <&sdma2 19 23 0>, + <&sdma2 20 23 0> , <&sdma2 21 23 0>, + <&sdma2 22 23 0> , <&sdma2 23 23 0>; + dma-names = "ctx0_rx", "ctx0_tx", + "ctx1_rx", "ctx1_tx", + "ctx2_rx", "ctx2_tx", + "ctx3_rx", "ctx3_tx"; + firmware-name = "imx/easrc/easrc-imx8mn.bin"; + fsl,asrc-rate = <8000>; + fsl,asrc-format = <2>; + + ports { + #address-cells = <1>; + #size-cells = <0>; + + port@0 { + reg = <0>; + playback-only; + easrc1_endpoint0: endpoint { + remote-endpoint = <&fe00_ep>; + }; + }; + + port@1 { + reg = <1>; + capture-only; + easrc1_endpoint1: endpoint { + }; + }; + + port@2 { + reg = <2>; + capture-only; + easrc1_endpoint2: endpoint { + }; + }; + + port@3 { + reg = <3>; + capture-only; + easrc1_endpoint3: endpoint { + }; + }; + }; + }; -- 2.34.1
