<?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 ''disabled'' node UART3</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1686518#M209124</link>
    <description>&lt;P&gt;Dear NXP Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are developing in iMX8MP Eval Kit.&amp;nbsp;&lt;/P&gt;&lt;P&gt;and now, if we want to "disabled" node UART3 of iMX8MP. Where will i find to access .dts and modify.&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are using Yocto to build.&lt;/P&gt;&lt;P&gt;After modifying, how to re- compile and re-build the image ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I view the u-boot call to which .dtb ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thinh&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jul 2023 09:59:52 GMT</pubDate>
    <dc:creator>ThinhNguyen_FE</dc:creator>
    <dc:date>2023-07-12T09:59:52Z</dc:date>
    <item>
      <title>How to ''disabled'' node UART3</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1686518#M209124</link>
      <description>&lt;P&gt;Dear NXP Team,&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are developing in iMX8MP Eval Kit.&amp;nbsp;&lt;/P&gt;&lt;P&gt;and now, if we want to "disabled" node UART3 of iMX8MP. Where will i find to access .dts and modify.&amp;nbsp;&lt;/P&gt;&lt;P&gt;we are using Yocto to build.&lt;/P&gt;&lt;P&gt;After modifying, how to re- compile and re-build the image ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I view the u-boot call to which .dtb ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thinh&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2023 09:59:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1686518#M209124</guid>
      <dc:creator>ThinhNguyen_FE</dc:creator>
      <dc:date>2023-07-12T09:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to ''disabled'' node UART3</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1688350#M209305</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215294"&gt;@ThinhNguyen_FE&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I hope you are doing well.&lt;/P&gt;
&lt;P&gt;One can disable uart3 in the device as below(at /arch/arm64/boot/dts/freescale&lt;BR /&gt;/imx8mp-evk.dts in linux-imx).&lt;/P&gt;
&lt;P&gt;&amp;amp;uart3 {&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pinctrl-names = "default";&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pinctrl-0 = &amp;lt;&amp;amp;pinctrl_uart3&amp;gt;;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; assigned-clocks = &amp;lt;&amp;amp;clk IMX8MP_CLK_UART3&amp;gt;;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; assigned-clock-parents = &amp;lt;&amp;amp;clk IMX8MP_SYS_PLL1_80M&amp;gt;;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fsl,uart-has-rtscts;&lt;BR /&gt;-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;status = "okay";&lt;BR /&gt;&lt;STRONG&gt;+&amp;nbsp; &amp;nbsp; &amp;nbsp; status = "disabled";&amp;nbsp;&lt;/STRONG&gt;&lt;BR /&gt;&lt;SPAN&gt;};&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please create a patch after the above change &amp;amp; move that patch to&lt;STRONG&gt;&amp;nbsp;/sources/meta-imx/meta-bsp/recipes-bsp/u-boot/u-boot-imx&lt;/STRONG&gt; folder in yocto source.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;and make below change in&amp;nbsp;u-boot-imx_2022.04.bb&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;SPAN&gt;FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"&lt;BR /&gt;SRC_URI += " file://&amp;lt;patch name&amp;gt;.patch "&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;after that, one can run bitbake command again to build the image.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;How can I view the u-boot call to which .dtb?&amp;nbsp;&lt;BR /&gt;[Ans]: one can use the below command.&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; =&amp;gt; printenv fdtfile&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Dhruvit Vasavada&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 09:12:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1688350#M209305</guid>
      <dc:creator>Dhruvit</dc:creator>
      <dc:date>2023-07-14T09:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to ''disabled'' node UART3</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1689278#M209408</link>
      <description>&lt;P&gt;Dear Dhruvit,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank so much.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brgs,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thinh&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 09:39:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1689278#M209408</guid>
      <dc:creator>ThinhNguyen_FE</dc:creator>
      <dc:date>2023-07-20T09:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to ''disabled'' node UART3</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1689336#M209414</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/215294"&gt;@ThinhNguyen_FE&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;I hope you are doing well.&lt;/P&gt;
&lt;P&gt;If there are no further issues, can I mark this case as close ?&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;BR /&gt;Dhruvit Vasavada&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 10:23:58 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/How-to-disabled-node-UART3/m-p/1689336#M209414</guid>
      <dc:creator>Dhruvit</dc:creator>
      <dc:date>2023-07-20T10:23:58Z</dc:date>
    </item>
  </channel>
</rss>

