]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ENGR00284649 ARM: Documentation: Add MLB dts binding doc
authorLuwei Zhou <b45643@freescale.com>
Wed, 23 Oct 2013 02:22:33 +0000 (10:22 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 20 Aug 2014 08:06:35 +0000 (10:06 +0200)
This patch add MLB devicetree binding doc.

Signed-off-by: Luwei Zhou <b45643@freescale.com>
Documentation/devicetree/bindings/mlb/mlb150.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/mlb/mlb150.txt b/Documentation/devicetree/bindings/mlb/mlb150.txt
new file mode 100644 (file)
index 0000000..a96f0d6
--- /dev/null
@@ -0,0 +1,22 @@
+* Freescale Media Local Bus Host Controller (MLB) for i.MX6Q/DL
+
+The Media Local Bus Host Controller on Freescale i.MX family
+provides an interface for MOST network.
+
+Required properties:
+- compatible : Should be "fsl,<chip>-mlb150"
+- reg : Should contain mlb registers location and length
+- interrupts : Should contain mlb interrupt
+- clocks: Should contain the mlb clock sources
+- clock-names: Should be the names of mlb clock sources
+- iram : phandle pointing to the SRAM device node
+
+Examples:
+mlb@0218c000 {
+       compatible = "fsl,imx6q-mlb150";
+       reg = <0x0218c000 0x4000>;
+       interrupts = <0 53 0x04 0 117 0x04 0 126 0x04>;
+       clocks = <&clks 139>, <&clks 175>;
+       clock-names = "mlb", "pll8_mlb";
+       iram = <&ocram>;
+};