forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently there is no support for Tempo Semiconductor's TSCS454 CODEC. Add support for it. Signed-off-by: Steven Eckhoff <[email protected]> Signed-off-by: Mark Brown <[email protected]>
- Loading branch information
1 parent
56c3a95
commit 0e725b4
Showing
5 changed files
with
5,853 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
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>; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.