mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
d8f64797c5
Many of the Tegra DT binding documents say nothing about the clocks or clock-names properties, yet those are present and required in DT files. This patch simply updates the documentation file to match the implicit definition of the binding, based on real-world DT content. All Tegra bindings that mention clocks are updated to have consistent wording and formatting of the clock-related properties. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-By: Terje Bergstrom <tbergstrom@nvidia.com>
21 lines
596 B
Plaintext
21 lines
596 B
Plaintext
NVIDIA Tegra 20 I2S controller
|
|
|
|
Required properties:
|
|
- compatible : "nvidia,tegra20-i2s"
|
|
- reg : Should contain I2S registers location and length
|
|
- interrupts : Should contain I2S interrupt
|
|
- clocks : Must contain one entry, for the module clock.
|
|
See ../clocks/clock-bindings.txt for details.
|
|
- nvidia,dma-request-selector : The Tegra DMA controller's phandle and
|
|
request selector for this I2S controller
|
|
|
|
Example:
|
|
|
|
i2s@70002800 {
|
|
compatible = "nvidia,tegra20-i2s";
|
|
reg = <0x70002800 0x200>;
|
|
interrupts = < 45 >;
|
|
nvidia,dma-request-selector = < &apbdma 2 >;
|
|
clocks = <&tegra_car 11>;
|
|
};
|