<?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: Enable I2C3 support in Uboot. in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1982433#M230162</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242192"&gt;@Nilesh&lt;/a&gt;1!&lt;/P&gt;
&lt;P&gt;Try without modify the drivers the memory should be detected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Chavira&lt;/P&gt;</description>
    <pubDate>Sat, 26 Oct 2024 20:11:00 GMT</pubDate>
    <dc:creator>Chavira</dc:creator>
    <dc:date>2024-10-26T20:11:00Z</dc:date>
    <item>
      <title>Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977017#M229848</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;We are working on custom board based on imx8mp. We need to enable I2C3 from the Uboot, as we are having an EEPROM placed on I2C3 bus and we are not able to detect the EEPROM while booting of uboot. We see that for EEPROM to get detected we need to enable the I2C3 bus from the&amp;nbsp; u-boot.&amp;nbsp;&lt;BR /&gt;We have made the changes to enable the I2C3 bus but not able to get the EEPROM detected.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But we are facing some issue while detecting the EEPROM, i am able to detect the EEPROM in bootloader using uboot&amp;nbsp;&lt;STRONG&gt;i2c&lt;/STRONG&gt;&amp;nbsp;tool.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Can you guys please help me to solve this issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;BR /&gt;Nilesh&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 10:26:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977017#M229848</guid>
      <dc:creator>Nilesh</dc:creator>
      <dc:date>2024-10-18T10:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977272#M229866</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242192"&gt;@Nilesh&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;Thank you for contacting NXP Support!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately the iMX8MP does not support I3C.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Chavira&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 15:43:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977272#M229866</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2024-10-18T15:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977787#M229900</link>
      <description>&lt;P&gt;Hi Chavira,&lt;BR /&gt;&lt;BR /&gt;We need to enable I2C in the uboot. The device is on I2C-3. Below is the node for i2c-3 from uboot dtsi file 'arch/arm/dts/imx8mp.dtsi'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;aliases {&lt;BR /&gt;i2c3 = &amp;amp;i2c4;&amp;nbsp;&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;&amp;amp;i2c4 {&lt;BR /&gt;clock-frequency = &amp;lt;400000&amp;gt;;&lt;BR /&gt;pinctrl-names = "default", "gpio";&lt;BR /&gt;pinctrl-0 = &amp;lt;&amp;amp;pinctrl_i2c4&amp;gt;;&lt;BR /&gt;pinctrl-1 = &amp;lt;&amp;amp;pinctrl_i2c4_gpio&amp;gt;;&lt;BR /&gt;scl-gpios = &amp;lt;&amp;amp;gpio5 20 GPIO_ACTIVE_HIGH&amp;gt;;&lt;BR /&gt;sda-gpios = &amp;lt;&amp;amp;gpio5 21 GPIO_ACTIVE_HIGH&amp;gt;;&lt;BR /&gt;status = "okay";&lt;/P&gt;&lt;P&gt;id_eeprom: eeprom@50 {&lt;BR /&gt;compatible = "atmel,24c04";&lt;BR /&gt;reg = &amp;lt;0x50&amp;gt;;&lt;BR /&gt;pagesize = &amp;lt;16&amp;gt;;&lt;BR /&gt;status = "okay";&lt;BR /&gt;};&lt;BR /&gt;};&lt;/P&gt;&lt;P&gt;We get the eeprom detected using i2c tool from uboot.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 06:30:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1977787#M229900</guid>
      <dc:creator>Nilesh</dc:creator>
      <dc:date>2024-10-21T06:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1978319#M229928</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242192"&gt;@Nilesh&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the misunderstanding!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The problem was solved?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If not let me try to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Alejandro&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 14:17:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1978319#M229928</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2024-10-21T14:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1978752#M229957</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Alejandro,&lt;BR /&gt;&lt;BR /&gt;No the issue is still not solved, above i have attached the diff with changes i made changes for enabling i2c-3 and also the device tree node for the eeprom.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please let me know if i'm missing any necessary changes.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Nilesh&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 03:54:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1978752#M229957</guid>
      <dc:creator>Nilesh</dc:creator>
      <dc:date>2024-10-22T03:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1979525#M230003</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242192"&gt;@Nilesh&lt;/a&gt;!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am able to detect the atmel24c04 memory without driver modifications.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What eeprom are you using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Oct 2024 20:48:47 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1979525#M230003</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2024-10-22T20:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1982012#M230144</link>
      <description>&lt;P&gt;Hi Chavira,&lt;/P&gt;&lt;P&gt;What eeprom are you using?&lt;/P&gt;&lt;P&gt;&amp;gt; We are using&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;AT24C04D-MAHM eeprom on our board.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Nilesh&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2024 11:44:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1982012#M230144</guid>
      <dc:creator>Nilesh</dc:creator>
      <dc:date>2024-10-25T11:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Enable I2C3 support in Uboot.</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1982433#M230162</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242192"&gt;@Nilesh&lt;/a&gt;1!&lt;/P&gt;
&lt;P&gt;Try without modify the drivers the memory should be detected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Chavira&lt;/P&gt;</description>
      <pubDate>Sat, 26 Oct 2024 20:11:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Enable-I2C3-support-in-Uboot/m-p/1982433#M230162</guid>
      <dc:creator>Chavira</dc:creator>
      <dc:date>2024-10-26T20:11:00Z</dc:date>
    </item>
  </channel>
</rss>

