<?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>topic Re: mxs-i2c driver failure. in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189707#M9398</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the driver, i've temporarily fixed that myself, but wasn't satisfied with results, and rewrite was on my todo list before release. The driver works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 13:17:41 GMT</pubDate>
    <dc:creator>Felix1z</dc:creator>
    <dc:date>2012-01-12T13:17:41Z</dc:date>
    <item>
      <title>mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189702#M9393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm trying to communicate with some i2c device, with slave address 0x20. There is principal driver fault, where driver sends out only slave address, and after that reports "adapter timeout" on any subsequent master_xfers to any other addresses. Confirmed by scope.&lt;/P&gt;&lt;P&gt;the kernel version is&amp;nbsp;2.6.31, built with latest ltib.&lt;/P&gt;&lt;P&gt;Did anyone experience any issues with mxs-i2c driver?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 17:21:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189702#M9393</guid>
      <dc:creator>Felix1z</dc:creator>
      <dc:date>2011-11-22T17:21:39Z</dc:date>
    </item>
    <item>
      <title>Re: mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189703#M9394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check if your slave is connected and is sending an ACK once it receives the command from master. Also check if your I2C lines are pulled up with appropriate resistor values (as per I2C Specifications).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2011 05:46:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189703#M9394</guid>
      <dc:creator>Balaji_ng</dc:creator>
      <dc:date>2011-11-23T05:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189704#M9395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The slave may not ACK it's slave address until it's ready, but that should not cause the driver to get to "locked" state.&lt;/P&gt;&lt;P&gt;the protocol to read register from the chip is -- start, send slave addr+ write cmd, send reg addr, start send slave addr+read cmd, read 1 byte, stop.&lt;/P&gt;&lt;P&gt;What i see on the scope is following :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; start condition, proper address, nak. (there's no stop!)&lt;/P&gt;&lt;P&gt;then 10 ms later i see &amp;nbsp;another 9 clocks with register address... it's like driver didn't stopped/reset the dma.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;any other attempts to access the driver, even with different addresses doesn't produce single clock -- the driver is locked until reset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Nov 2011 14:28:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189704#M9395</guid>
      <dc:creator>Felix1z</dc:creator>
      <dc:date>2011-11-25T14:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189705#M9396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The I2c driver is not properly implemented for the imx233. Reads are completely broken and the address is also mangled and there is poor error recovery.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is a replacment for the driver on this CPU (it only works with the imx233 and overwrites it for the time being!). I have been working with Freescale's FAE and I am hoping to improve this further and make it work along side the driver for the other CPUs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 10:52:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189705#M9396</guid>
      <dc:creator>hbucknell</dc:creator>
      <dc:date>2012-01-11T10:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189706#M9397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have deleted the attached file above as it included extraneous debug pin twiddling and sysfs files for debug.&lt;/P&gt;&lt;P&gt;Attached is the driver and two DMA related patches that were supplied to me by Freescale&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jan 2012 12:45:50 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189706#M9397</guid>
      <dc:creator>hbucknell</dc:creator>
      <dc:date>2012-01-11T12:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: mxs-i2c driver failure.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189707#M9398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for the driver, i've temporarily fixed that myself, but wasn't satisfied with results, and rewrite was on my todo list before release. The driver works perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 13:17:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/mxs-i2c-driver-failure/m-p/189707#M9398</guid>
      <dc:creator>Felix1z</dc:creator>
      <dc:date>2012-01-12T13:17:41Z</dc:date>
    </item>
  </channel>
</rss>

