mirror of
https://github.com/torvalds/linux.git
synced 2024-12-03 17:41:22 +00:00
0e725b483b
Currently there is no support for Tempo Semiconductor's TSCS454 CODEC. Add support for it. Signed-off-by: Steven Eckhoff <steven.eckhoff.opensource@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
24 lines
439 B
Plaintext
24 lines
439 B
Plaintext
TSCS454 Audio CODEC
|
|
|
|
Required Properties:
|
|
|
|
- compatible : "tempo,tscs454"
|
|
|
|
- reg : <0x69>
|
|
|
|
- clock-names: Must one of the following "xtal", "mclk1", "mclk2"
|
|
|
|
- clocks: phandle of the clock that provides the codec sysclk
|
|
|
|
Note: If clock is not provided then bit clock is assumed
|
|
|
|
Example:
|
|
|
|
redwood: codec@69 {
|
|
#sound-dai-cells = <1>;
|
|
compatible = "tempo,tscs454";
|
|
reg = <0x69>;
|
|
clock-names = "mclk1";
|
|
clocks = <&audio_mclk>;
|
|
};
|