aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDinh Nguyen <dinguyen@altera.com>2014-03-26 23:45:12 -0400
committerArnd Bergmann <arnd@arndb.de>2014-03-28 20:12:08 -0400
commit50b4af414d414af9e4df6f64e613bb0ffe581055 (patch)
tree574fef181f2cb3abecdcffa0949f2a142ee70310
parent2755e18748bd2f63ee17b7aef173699531f6353d (diff)
dts: stmmac: Document the clocks property in the stmmac base document
Add the clocks and clock-names property to the base stmmac dts bindings document. Signed-off-by: Dinh Nguyen <dinguyen@altera.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r--Documentation/devicetree/bindings/net/stmmac.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/net/stmmac.txt b/Documentation/devicetree/bindings/net/stmmac.txt
index 9d92d42140f2..9a0c1b7bee29 100644
--- a/Documentation/devicetree/bindings/net/stmmac.txt
+++ b/Documentation/devicetree/bindings/net/stmmac.txt
@@ -34,6 +34,10 @@ Optional properties:
34 reset phandle is given 34 reset phandle is given
35- max-frame-size: Maximum Transfer Unit (IEEE defined MTU), rather 35- max-frame-size: Maximum Transfer Unit (IEEE defined MTU), rather
36 than the maximum frame size. 36 than the maximum frame size.
37- clocks: If present, the first clock should be the GMAC main clock,
38 further clocks may be specified in derived bindings.
39- clocks-names: One name for each entry in the clocks property, the
40 first one should be "stmmaceth".
37 41
38Examples: 42Examples:
39 43
@@ -46,4 +50,6 @@ Examples:
46 mac-address = [000000000000]; /* Filled in by U-Boot */ 50 mac-address = [000000000000]; /* Filled in by U-Boot */
47 max-frame-size = <3800>; 51 max-frame-size = <3800>;
48 phy-mode = "gmii"; 52 phy-mode = "gmii";
53 clocks = <&clock>;
54 clock-names = "stmmaceth">;
49 }; 55 };