<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>i.MX ProcessorsのトピックHow to speed up GPIO</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436549#M66843</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Hi everyone,&amp;nbsp;&amp;nbsp; I'm working on iMX515, My linux driver has 3 statements : &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,1); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Then ,I can get a&amp;nbsp; negative pulse which pulse width is about 320ns. It seems too slowly, How can I speed it up?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2015 11:12:35 GMT</pubDate>
    <dc:creator>tiejunhe</dc:creator>
    <dc:date>2015-05-15T11:12:35Z</dc:date>
    <item>
      <title>How to speed up GPIO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436549#M66843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Hi everyone,&amp;nbsp;&amp;nbsp; I'm working on iMX515, My linux driver has 3 statements : &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,1);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,0);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;&amp;nbsp; gpio_set_value(pin,1); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;Then ,I can get a&amp;nbsp; negative pulse which pulse width is about 320ns. It seems too slowly, How can I speed it up?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 11:12:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436549#M66843</guid>
      <dc:creator>tiejunhe</dc:creator>
      <dc:date>2015-05-15T11:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up GPIO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436550#M66844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi tiejun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one can write small subroutine on assembler for faster access, also it may be&lt;/P&gt;&lt;P&gt;recommended to have L2 cache enabled and the MMU, then try to find the entry &lt;/P&gt;&lt;P&gt;that corresponds to the area where the GPIO registers are mapped and set the &lt;/P&gt;&lt;P&gt;bufferable field for that particular mmu entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;igor&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2015 16:10:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436550#M66844</guid>
      <dc:creator>igorpadykov</dc:creator>
      <dc:date>2015-05-15T16:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to speed up GPIO</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436551#M66845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,I use your method,and get a &lt;SPAN style="color: #51626f; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;negative pulse which width is about 80ns.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2015 14:14:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-speed-up-GPIO/m-p/436551#M66845</guid>
      <dc:creator>tiejunhe</dc:creator>
      <dc:date>2015-05-16T14:14:03Z</dc:date>
    </item>
  </channel>
</rss>

