Commit 725fc136 authored by Boris BREZILLON's avatar Boris BREZILLON Committed by Greg Kroah-Hartman

drivers/misc: atmel-ssc: document clock properties

Document the clock properties required by the atmel-ssc driver.
Signed-off-by: default avatarBoris BREZILLON <b.brezillon@overkiz.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 864382dc
...@@ -6,6 +6,9 @@ Required properties: ...@@ -6,6 +6,9 @@ Required properties:
- atmel,at91sam9g45-ssc: support dma transfer - atmel,at91sam9g45-ssc: support dma transfer
- reg: Should contain SSC registers location and length - reg: Should contain SSC registers location and length
- interrupts: Should contain SSC interrupt - interrupts: Should contain SSC interrupt
- clock-names: tuple listing input clock names.
Required elements: "pclk"
- clocks: phandles to input clocks.
Required properties for devices compatible with "atmel,at91sam9g45-ssc": Required properties for devices compatible with "atmel,at91sam9g45-ssc":
...@@ -20,6 +23,8 @@ ssc0: ssc@fffbc000 { ...@@ -20,6 +23,8 @@ ssc0: ssc@fffbc000 {
compatible = "atmel,at91rm9200-ssc"; compatible = "atmel,at91rm9200-ssc";
reg = <0xfffbc000 0x4000>; reg = <0xfffbc000 0x4000>;
interrupts = <14 4 5>; interrupts = <14 4 5>;
clocks = <&ssc0_clk>;
clock-names = "pclk";
}; };
- DMA transfer: - DMA transfer:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment