mirror of https://github.com/torvalds/linux.git
ASoC: dt-bindings: allwinner,sun4i-a10-spdif: Add compatible for A523
The SPDIF hardware block in the A523 SoC has the same layout as the H616 for the transmitter side. However unlike previous generations, the hardware block now takes separate module clocks for the TX and RX sides. This presumably allows the hardware to send and receive audio streams at different sample rates. The new hardware also gained RX insertion detection, and some extra information registers. Add a new compatible for it without any fallbacks. Acked-by: Conor Dooley <conor.dooley@microchip.com> Signed-off-by: Chen-Yu Tsai <wens@kernel.org> Link: https://patch.msgid.link/20251027125655.793277-4-wens@kernel.org Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
67e4b0dfcc
commit
6ddcd78aa7
|
|
@ -23,6 +23,7 @@ properties:
|
||||||
- const: allwinner,sun8i-h3-spdif
|
- const: allwinner,sun8i-h3-spdif
|
||||||
- const: allwinner,sun50i-h6-spdif
|
- const: allwinner,sun50i-h6-spdif
|
||||||
- const: allwinner,sun50i-h616-spdif
|
- const: allwinner,sun50i-h616-spdif
|
||||||
|
- const: allwinner,sun55i-a523-spdif
|
||||||
- items:
|
- items:
|
||||||
- const: allwinner,sun8i-a83t-spdif
|
- const: allwinner,sun8i-a83t-spdif
|
||||||
- const: allwinner,sun8i-h3-spdif
|
- const: allwinner,sun8i-h3-spdif
|
||||||
|
|
@ -37,14 +38,12 @@ properties:
|
||||||
maxItems: 1
|
maxItems: 1
|
||||||
|
|
||||||
clocks:
|
clocks:
|
||||||
items:
|
minItems: 2
|
||||||
- description: Bus Clock
|
maxItems: 3
|
||||||
- description: Module Clock
|
|
||||||
|
|
||||||
clock-names:
|
clock-names:
|
||||||
items:
|
minItems: 2
|
||||||
- const: apb
|
maxItems: 3
|
||||||
- const: spdif
|
|
||||||
|
|
||||||
# Even though it only applies to subschemas under the conditionals,
|
# Even though it only applies to subschemas under the conditionals,
|
||||||
# not listing them here will trigger a warning because of the
|
# not listing them here will trigger a warning because of the
|
||||||
|
|
@ -65,6 +64,7 @@ allOf:
|
||||||
- allwinner,sun8i-h3-spdif
|
- allwinner,sun8i-h3-spdif
|
||||||
- allwinner,sun50i-h6-spdif
|
- allwinner,sun50i-h6-spdif
|
||||||
- allwinner,sun50i-h616-spdif
|
- allwinner,sun50i-h616-spdif
|
||||||
|
- allwinner,sun55i-a523-spdif
|
||||||
|
|
||||||
then:
|
then:
|
||||||
required:
|
required:
|
||||||
|
|
@ -98,6 +98,38 @@ allOf:
|
||||||
- const: rx
|
- const: rx
|
||||||
- const: tx
|
- const: tx
|
||||||
|
|
||||||
|
- if:
|
||||||
|
properties:
|
||||||
|
compatible:
|
||||||
|
contains:
|
||||||
|
enum:
|
||||||
|
- allwinner,sun55i-a523-spdif
|
||||||
|
|
||||||
|
then:
|
||||||
|
properties:
|
||||||
|
clocks:
|
||||||
|
items:
|
||||||
|
- description: Bus Clock
|
||||||
|
- description: TX Clock
|
||||||
|
- description: RX Clock
|
||||||
|
|
||||||
|
clock-names:
|
||||||
|
items:
|
||||||
|
- const: apb
|
||||||
|
- const: tx
|
||||||
|
- const: rx
|
||||||
|
else:
|
||||||
|
properties:
|
||||||
|
clocks:
|
||||||
|
items:
|
||||||
|
- description: Bus Clock
|
||||||
|
- description: Module Clock
|
||||||
|
|
||||||
|
clock-names:
|
||||||
|
items:
|
||||||
|
- const: apb
|
||||||
|
- const: spdif
|
||||||
|
|
||||||
required:
|
required:
|
||||||
- "#sound-dai-cells"
|
- "#sound-dai-cells"
|
||||||
- compatible
|
- compatible
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue