On Mon, Jan 9, 2017 at 3:32 AM, Jacky Bai <ping.bai@xxxxxxx> wrote: > I have look into the above commit on using generic binding. But I think the generic pinconf > is not very easy to add in imx pinctrl Driver. imx pinctrl use a different way to parse the pin configure. OK atleast I need an indication from one of the i.MX maintainers how they want to proceed. > Each fsl,pin entry looks like <PIN_FUNC_ID CONFIG> in dts, the CONFIG is the pad setting value like > pull-up, open-drain, drive strength etc. The above config bit definition is specific to each SOC in the PAD CTL register. > > If we want set the pin config to enable hysteresis, 47KOhm Pull Up, 50Mhz speed, 80Ohm driver strength > and Fast Slew Rate, then the CONFIG value should be 0x17059( ORs corresponding bit definition). Hysteresis is an input property and does not make sense on something that need drive strength and slew rate configuration which are output properties. (I guess you mean 80mA drive strength.) Actually such oxymoronic settings is a good reason to migrate to generic bindings because when you describe stuff with generic strings you see better what is going on, and we can add sanity checks to cases like this in the generic code where it would indeed be valid to ask why this combination of settings is being made. > This value will be set in > PAD CTL register to config the corresponding pin. Yes? That is common. It looks like that in DT: { input-schmitt-enable; bias-pull-up = <47000>; slew-rate = <50000000>; drive-strength = <80000>; }; Yours, Linus Walleij -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html