<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    <div class="moz-cite-prefix">On Thursday 25 September 2014 07:39 PM,
      Maxime Ripard wrote:<br>
    </div>
    <blockquote cite="mid:20140925140913.GM15315@lukather" type="cite">
      <pre wrap="">Hi Victor,

On Thu, Sep 25, 2014 at 06:36:04PM +0530, Victor Ascroft wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Hello,

pinctrl_touchctrl_idle: touchctrl_idle {
            fsl,pins = &lt;
                MF610_PAD_PTA18__GPIO_8            0x0041
                MF610_PAD_PTA19__GPIO_9            0x0041
                &gt;;
        };

        pinctrl_touchctrl_read: touchctrl_read {
            fsl,pins = &lt;
                MF610_PAD_PTA18__ADC0_SE0        0x0041
                MF610_PAD_PTA19__ADC0_SE1        0x0041
                &gt;;

If i have pin multiplexing in device tree as above, how can i select
and change the pin multiplexing at run time?
</pre>
      </blockquote>
      <pre wrap="">
This will have to be done by the "consumer" driver, which judging by
the node names here will be your touchscreen driver.

You will have to reference in pinctrl-names several different states,
instead of just "default" that is commonly used, and then, you can
modify the state to use using the pinctrl functions.

That would make something like this in your DT:
    touchscreen@deadbeef {
        pinctrl-names = "default", "idle";
        pinctrl-0 = &lt;&amp;pinctrl_touchctrl_read&gt;;
        pinctrl-1 = &lt;&amp;pinctrl_touchctrl_idle&gt;;
    };

The good thing about this is that the states default, idle and sleep
are already grabbed by the device model whenever your driver is
probed, and the only thing you have to do from your driver to switch
from one state to another is to call pinctrl_pm_select_default_state
or pinctrl_pm_select_idle_state.

Maxime

</pre>
    </blockquote>
    <big><tt>I was not aware of the device model reading the default and
        idle state on probe. I have the touchscreen binding set up now.
        <br>
        <br>
        Thank you very much. <br>
        <br>
        Regards,<br>
        Victor<br>
        <br>
        <br>
      </tt></big>
  </body>
</html>