From: Soren Brinkmann Date: Fri, 13 Dec 2013 22:03:25 +0000 (-0800) Subject: devicetree: macb: Document clock properties X-Git-Tag: v3.14-rc1~102^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e2897d7e0b0460dca91b52d55ce41c888363502d;p=platform%2Fkernel%2Flinux-exynos.git devicetree: macb: Document clock properties The macb driver uses the clock bindings. Document the required properties, especially the driver specific clock-names. Acked-by: Nicolas Ferre Signed-off-by: Soren Brinkmann Signed-off-by: Rob Herring --- diff --git a/Documentation/devicetree/bindings/net/macb.txt b/Documentation/devicetree/bindings/net/macb.txt index 4ff6504..70af2ec 100644 --- a/Documentation/devicetree/bindings/net/macb.txt +++ b/Documentation/devicetree/bindings/net/macb.txt @@ -10,6 +10,10 @@ Required properties: - interrupts: Should contain macb interrupt - phy-mode: String, operation mode of the PHY interface. Supported values are: "mii", "rmii", "gmii", "rgmii". +- clock-names: Tuple listing input clock names. + Required elements: 'pclk', 'hclk' + Optional elements: 'tx_clk' +- clocks: Phandles to input clocks. Optional properties: - local-mac-address: 6 bytes, mac address @@ -22,4 +26,6 @@ Examples: interrupts = <21>; phy-mode = "rmii"; local-mac-address = [3a 0e 03 04 05 06]; + clock-names = "pclk", "hclk", "tx_clk"; + clocks = <&clkc 30>, <&clkc 30>, <&clkc 13>; };