diff options
author | Boris BREZILLON <b.brezillon@overkiz.com> | 2013-12-17 10:01:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-18 19:39:54 -0500 |
commit | 725fc136432552231f7076fd09e6b57a100de1f8 (patch) | |
tree | 0f9462c89430f3c510917c41b7eb6995cad73f0f /Documentation/devicetree/bindings/misc | |
parent | 864382dcc10f0fdae35cc1b713ba12f059752d78 (diff) |
drivers/misc: atmel-ssc: document clock properties
Document the clock properties required by the atmel-ssc driver.
Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/misc')
-rw-r--r-- | Documentation/devicetree/bindings/misc/atmel-ssc.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/misc/atmel-ssc.txt b/Documentation/devicetree/bindings/misc/atmel-ssc.txt index a45ae08c8ed1..60960b2755f4 100644 --- a/Documentation/devicetree/bindings/misc/atmel-ssc.txt +++ b/Documentation/devicetree/bindings/misc/atmel-ssc.txt | |||
@@ -6,6 +6,9 @@ Required properties: | |||
6 | - atmel,at91sam9g45-ssc: support dma transfer | 6 | - atmel,at91sam9g45-ssc: support dma transfer |
7 | - reg: Should contain SSC registers location and length | 7 | - reg: Should contain SSC registers location and length |
8 | - interrupts: Should contain SSC interrupt | 8 | - interrupts: Should contain SSC interrupt |
9 | - clock-names: tuple listing input clock names. | ||
10 | Required elements: "pclk" | ||
11 | - clocks: phandles to input clocks. | ||
9 | 12 | ||
10 | 13 | ||
11 | Required properties for devices compatible with "atmel,at91sam9g45-ssc": | 14 | Required properties for devices compatible with "atmel,at91sam9g45-ssc": |
@@ -20,6 +23,8 @@ ssc0: ssc@fffbc000 { | |||
20 | compatible = "atmel,at91rm9200-ssc"; | 23 | compatible = "atmel,at91rm9200-ssc"; |
21 | reg = <0xfffbc000 0x4000>; | 24 | reg = <0xfffbc000 0x4000>; |
22 | interrupts = <14 4 5>; | 25 | interrupts = <14 4 5>; |
26 | clocks = <&ssc0_clk>; | ||
27 | clock-names = "pclk"; | ||
23 | }; | 28 | }; |
24 | 29 | ||
25 | - DMA transfer: | 30 | - DMA transfer: |