-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The pxa ssp DAI acts as a user of a pxa ssp port, and needs an appropriate 'port' phandle in DT to reference the upstream. Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Mark Brown <broonie@linaro.org>
- Loading branch information
Daniel Mack
authored and
Mark Brown
committed
Aug 15, 2013
1 parent
4210606
commit 2023c90
Showing
2 changed files
with
59 additions
and
6 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,28 @@ | ||
Marvell PXA SSP CPU DAI bindings | ||
|
||
Required properties: | ||
|
||
compatible Must be "mrvl,pxa-ssp-dai" | ||
port A phandle reference to a PXA ssp upstream device | ||
|
||
Example: | ||
|
||
/* upstream device */ | ||
|
||
ssp0: ssp@41000000 { | ||
compatible = "mrvl,pxa3xx-ssp"; | ||
reg = <0x41000000 0x40>; | ||
interrupts = <24>; | ||
clock-names = "pxa27x-ssp.0"; | ||
dmas = <&dma 13 | ||
&dma 14>; | ||
dma-names = "rx", "tx"; | ||
}; | ||
|
||
/* DAI as user */ | ||
|
||
ssp_dai0: ssp_dai@0 { | ||
compatible = "mrvl,pxa-ssp-dai"; | ||
port = <&ssp0>; | ||
}; | ||
|
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