···11+* Clock bindings for Freescale i.MX2122+33+Required properties:44+- compatible : Should be "fsl,imx21-ccm".55+- reg : Address and length of the register set.66+- interrupts : Should contain CCM interrupt.77+- #clock-cells: Should be <1>.88+99+The clock consumer should specify the desired clock by having the clock1010+ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx21-clock.h1111+for the full list of i.MX21 clock IDs.1212+1313+Examples:1414+ clks: ccm@10027000{1515+ compatible = "fsl,imx21-ccm";1616+ reg = <0x10027000 0x800>;1717+ #clock-cells = <1>;1818+ };1919+2020+ uart1: serial@1000a000 {2121+ compatible = "fsl,imx21-uart";2222+ reg = <0x1000a000 0x1000>;2323+ interrupts = <20>;2424+ clocks = <&clks IMX21_CLK_UART1_IPG_GATE>,2525+ <&clks IMX21_CLK_PER1>;2626+ clock-names = "ipg", "per";2727+ status = "disabled";2828+ };