···11+* Clock bindings for Freescale i.MX7 Dual22+33+Required properties:44+- compatible: Should be "fsl,imx7d-ccm"55+- reg: Address and length of the register set66+- #clock-cells: Should be <1>77+- clocks: list of clock specifiers, must contain an entry for each required88+ entry in clock-names99+- clock-names: should include entries "ckil", "osc"1010+1111+The clock consumer should specify the desired clock by having the clock1212+ID in its "clocks" phandle cell. See include/dt-bindings/clock/imx7d-clock.h1313+for the full list of i.MX7 Dual clock IDs.
···11+* Freescale i.MX7 Dual IOMUX Controller22+33+Please refer to fsl,imx-pinctrl.txt in this directory for common binding part44+and usage.55+66+Required properties:77+- compatible: "fsl,imx7d-iomuxc"88+- fsl,pins: each entry consists of 6 integers and represents the mux and config99+ setting for one pin. The first 5 integers <mux_reg conf_reg input_reg mux_val1010+ input_val> are specified using a PIN_FUNC_ID macro, which can be found in1111+ imx7d-pinfunc.h under device tree source folder. The last integer CONFIG is1212+ the pad setting value like pull-up on this pin. Please refer to i.MX7 Dual1313+ Reference Manual for detailed CONFIG settings.1414+1515+CONFIG bits definition:1616+PAD_CTL_PUS_100K_DOWN (0 << 5)1717+PAD_CTL_PUS_5K_UP (1 << 5)1818+PAD_CTL_PUS_47K_UP (2 << 5)1919+PAD_CTL_PUS_100K_UP (3 << 5)2020+PAD_CTL_PUE (1 << 4)2121+PAD_CTL_HYS (1 << 3)2222+PAD_CTL_SRE_SLOW (1 << 2)2323+PAD_CTL_SRE_FAST (0 << 2)2424+PAD_CTL_DSE_X1 (0 << 0)2525+PAD_CTL_DSE_X2 (1 << 0)2626+PAD_CTL_DSE_X3 (2 << 0)2727+PAD_CTL_DSE_X4 (3 << 0)