mirror of
https://github.com/torvalds/linux.git
synced 2024-12-27 21:33:00 +00:00
4c9847b737
Improve the binding example by removing all the leading 0x to fix the
following dtc warnings:
Warning (unit_address_format): Node /XXX unit name should not have leading "0x"
Converted using the following command:
find Documentation/devicetree/bindings -name "*.txt" -exec sed -i -e 's/([^ ])\@0x([0-9a-f])/$1\@$2/g' {} +
This is a follow up to commit 48c926cd34
Signed-off-by: Mathieu Malaterre <malat@debian.org>
Signed-off-by: Rob Herring <robh@kernel.org>
32 lines
899 B
Plaintext
32 lines
899 B
Plaintext
Renesas FSI
|
|
|
|
Required properties:
|
|
- compatible : "renesas,fsi2-<soctype>",
|
|
"renesas,sh_fsi2" or "renesas,sh_fsi" as
|
|
fallback.
|
|
Examples with soctypes are:
|
|
- "renesas,fsi2-r8a7740" (R-Mobile A1)
|
|
- "renesas,fsi2-sh73a0" (SH-Mobile AG5)
|
|
- reg : Should contain the register physical address and length
|
|
- interrupts : Should contain FSI interrupt
|
|
|
|
- fsia,spdif-connection : FSI is connected by S/PDIF
|
|
- fsia,stream-mode-support : FSI supports 16bit stream mode.
|
|
- fsia,use-internal-clock : FSI uses internal clock when master mode.
|
|
|
|
- fsib,spdif-connection : same as fsia
|
|
- fsib,stream-mode-support : same as fsia
|
|
- fsib,use-internal-clock : same as fsia
|
|
|
|
Example:
|
|
|
|
sh_fsi2: sh_fsi2@ec230000 {
|
|
compatible = "renesas,sh_fsi2";
|
|
reg = <0xec230000 0x400>;
|
|
interrupts = <0 146 0x4>;
|
|
|
|
fsia,spdif-connection;
|
|
fsia,stream-mode-support;
|
|
fsia,use-internal-clock;
|
|
};
|