Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40bbb60c authored by Sascha Hauer's avatar Sascha Hauer Committed by Greg Kroah-Hartman
Browse files

dt-bindings: nvmem: Add i.MX IIM binding doc



The IIM is part of the i.MX device trees for long already, add a binding
document for it.

Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: default avatarSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c066c1c0
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
Freescale i.MX IC Identification Module (IIM) device tree bindings

This binding represents the IC Identification Module (IIM) found on
i.MX25, i.MX27, i.MX31, i.MX35, i.MX51 and i.MX53 SoCs.

Required properties:
- compatible: should be one of
	"fsl,imx25-iim", "fsl,imx27-iim",
	"fsl,imx31-iim", "fsl,imx35-iim",
	"fsl,imx51-iim", "fsl,imx53-iim",
- reg: Should contain the register base and length.
- interrupts: Should contain the interrupt for the IIM
- clocks: Should contain a phandle pointing to the gated peripheral clock.

Example:

	iim: iim@63f98000 {
		compatible = "fsl,imx53-iim", "fsl,imx27-iim";
		reg = <0x63f98000 0x4000>;
		interrupts = <69>;
                clocks = <&clks IMX5_CLK_IIM_GATE>;
	};