• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1Freescale i.MX IC Identification Module (IIM) device tree bindings
2
3This binding represents the IC Identification Module (IIM) found on
4i.MX25, i.MX27, i.MX31, i.MX35, i.MX51 and i.MX53 SoCs.
5
6Required properties:
7- compatible: should be one of
8	"fsl,imx25-iim", "fsl,imx27-iim",
9	"fsl,imx31-iim", "fsl,imx35-iim",
10	"fsl,imx51-iim", "fsl,imx53-iim",
11- reg: Should contain the register base and length.
12- interrupts: Should contain the interrupt for the IIM
13- clocks: Should contain a phandle pointing to the gated peripheral clock.
14
15Example:
16
17	iim: iim@63f98000 {
18		compatible = "fsl,imx53-iim", "fsl,imx27-iim";
19		reg = <0x63f98000 0x4000>;
20		interrupts = <69>;
21                clocks = <&clks IMX5_CLK_IIM_GATE>;
22	};
23