Commit 3a6818c7 authored by Rohit kumar's avatar Rohit kumar Committed by Mark Brown

ASoC: q6afe: dt-bindings: Update input range for qcom,sd-lines

Input to qcom,sd-lines should be between 0 and 3 instead of
1 to 4 as 0 corresponds to BIT(0) which is MI2S_SD0 line.
Bit 1 to 3 corresponds to SD1 to SD3 lines respectively.
Updated documentation for the same.
Signed-off-by: default avatarRohit kumar <rohitkr@codeaurora.org>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 65ba4dd5
...@@ -49,7 +49,7 @@ configuration of each dai. Must contain the following properties. ...@@ -49,7 +49,7 @@ configuration of each dai. Must contain the following properties.
Usage: required for mi2s interface Usage: required for mi2s interface
Value type: <prop-encoded-array> Value type: <prop-encoded-array>
Definition: Must be list of serial data lines used by this dai. Definition: Must be list of serial data lines used by this dai.
should be one or more of the 1-4 sd lines. should be one or more of the 0-3 sd lines.
- qcom,tdm-sync-mode: - qcom,tdm-sync-mode:
Usage: required for tdm interface Usage: required for tdm interface
...@@ -137,42 +137,42 @@ q6afe@4 { ...@@ -137,42 +137,42 @@ q6afe@4 {
prim-mi2s-rx@16 { prim-mi2s-rx@16 {
reg = <16>; reg = <16>;
qcom,sd-lines = <1 3>; qcom,sd-lines = <0 2>;
}; };
prim-mi2s-tx@17 { prim-mi2s-tx@17 {
reg = <17>; reg = <17>;
qcom,sd-lines = <2>; qcom,sd-lines = <1>;
}; };
sec-mi2s-rx@18 { sec-mi2s-rx@18 {
reg = <18>; reg = <18>;
qcom,sd-lines = <1 4>; qcom,sd-lines = <0 3>;
}; };
sec-mi2s-tx@19 { sec-mi2s-tx@19 {
reg = <19>; reg = <19>;
qcom,sd-lines = <2>; qcom,sd-lines = <1>;
}; };
tert-mi2s-rx@20 { tert-mi2s-rx@20 {
reg = <20>; reg = <20>;
qcom,sd-lines = <2 4>; qcom,sd-lines = <1 3>;
}; };
tert-mi2s-tx@21 { tert-mi2s-tx@21 {
reg = <21>; reg = <21>;
qcom,sd-lines = <1>; qcom,sd-lines = <0>;
}; };
quat-mi2s-rx@22 { quat-mi2s-rx@22 {
reg = <22>; reg = <22>;
qcom,sd-lines = <1>; qcom,sd-lines = <0>;
}; };
quat-mi2s-tx@23 { quat-mi2s-tx@23 {
reg = <23>; reg = <23>;
qcom,sd-lines = <2>; qcom,sd-lines = <1>;
}; };
}; };
}; };
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment