mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 20:32:22 +00:00
48c926cd34
Improve the binding example by removing all the leading zeros to fix the following dtc warnings: Warning (unit_address_format): Node /XXX unit name should not have leading 0s Converted using the following command: perl -p -i -e 's/\@0+([0-9a-f])/\@$1/g' `find ./Documentation/devicetree/bindings "*.txt"` Some unnecessary changes were manually fixed. Signed-off-by: Marco Franchi <marco.franchi@nxp.com> Signed-off-by: Rob Herring <robh@kernel.org>
19 lines
499 B
Plaintext
19 lines
499 B
Plaintext
Bindings for I2S controller built into xtfpga Xtensa bitstreams.
|
|
|
|
Required properties:
|
|
- compatible: shall be "cdns,xtfpga-i2s".
|
|
- reg: memory region (address and length) with device registers.
|
|
- interrupts: interrupt for the device.
|
|
- clocks: phandle to the clk used as master clock. I2S bus clock
|
|
is derived from it.
|
|
|
|
Examples:
|
|
|
|
i2s0: xtfpga-i2s@d080000 {
|
|
#sound-dai-cells = <0>;
|
|
compatible = "cdns,xtfpga-i2s";
|
|
reg = <0x0d080000 0x40>;
|
|
interrupts = <2 1>;
|
|
clocks = <&cdce706 4>;
|
|
};
|