<?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のトピックIMX8M Mini Custom Board Cortex M4 issue</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423253#M187811</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Imx8m mini evk we can able to activate m4 core. But same configuration for our custom board doesn't working (UART4 does not printing Hello world example).&lt;/P&gt;&lt;P&gt;ATF we have added UART4 permission.&lt;/P&gt;&lt;P&gt;Custom board we have used PCA9450 pmic anything we need to changes for M4 core ?&lt;/P&gt;&lt;P&gt;Why same configuration does not working on our custom board ?&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Vasu&lt;/P&gt;</description>
    <pubDate>Fri, 04 Mar 2022 10:41:18 GMT</pubDate>
    <dc:creator>Dhevan</dc:creator>
    <dc:date>2022-03-04T10:41:18Z</dc:date>
    <item>
      <title>IMX8M Mini Custom Board Cortex M4 issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423253#M187811</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Imx8m mini evk we can able to activate m4 core. But same configuration for our custom board doesn't working (UART4 does not printing Hello world example).&lt;/P&gt;&lt;P&gt;ATF we have added UART4 permission.&lt;/P&gt;&lt;P&gt;Custom board we have used PCA9450 pmic anything we need to changes for M4 core ?&lt;/P&gt;&lt;P&gt;Why same configuration does not working on our custom board ?&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Vasu&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 10:41:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423253#M187811</guid>
      <dc:creator>Dhevan</dc:creator>
      <dc:date>2022-03-04T10:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini Custom Board Cortex M4 issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423371#M187820</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;What do you mean by added permition?&lt;BR /&gt;Please note that we do not add anything into ATF since UART4 is the default for M4&lt;BR /&gt;&lt;BR /&gt;Could you share the changes you have with reference to i.MX8MMini EVK?&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Aldo.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Mar 2022 16:02:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423371#M187820</guid>
      <dc:creator>AldoG</dc:creator>
      <dc:date>2022-03-04T16:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini Custom Board Cortex M4 issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423494#M187832</link>
      <description>&lt;P&gt;Hi Aldo,&lt;/P&gt;&lt;P&gt;In ATF - imx8mm_bl31_setup.c changed to&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Before :
static const struct imx_rdc_cfg rdc[] = {
    /* Master domain assignment */
    RDC_MDAn(RDC_MDA_M4, DID1),
 
    /* peripherals domain permission */
    RDC_PDAPn(RDC_PDAP_UART4, D0R | D0W), 
After:
static const struct imx_rdc_cfg rdc[] = {
    /* Master domain assignment */
    RDC_MDAn(RDC_MDA_M4, DID1),
 
    /* peripherals domain permission */
    RDC_PDAPn(RDC_PDAP_UART4, D1R | D1W),   &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have changed imx8mm-evk.dts to imx8mm-evk-rpmsg.dts it's booting fine.&lt;/P&gt;&lt;P&gt;Uboot command i have modified.&lt;/P&gt;&lt;P&gt;setenv fdt_file imx8mm-evk-rpmsg.dtb&lt;/P&gt;&lt;P&gt;fatload mmc 2:1 0x48000000 imx8mm_m4_TCM_hello_world.bin&lt;BR /&gt;cp.b 0x48000000 0x7e0000 35000&lt;BR /&gt;bootaux 0x7e0000&lt;BR /&gt;boot&lt;/P&gt;&lt;P&gt;In custom board i did same thing but UART4 does not printing any thing.&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Vasu&lt;/P&gt;</description>
      <pubDate>Sat, 05 Mar 2022 08:25:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1423494#M187832</guid>
      <dc:creator>Dhevan</dc:creator>
      <dc:date>2022-03-05T08:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: IMX8M Mini Custom Board Cortex M4 issue</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1424102#M187911</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;In the changes to ATF, by default we have the same configuration for the EVK:&lt;/P&gt;
&lt;P&gt;RDC_PDAPn(RDC_PDAP_UART4, D1R | D1W)&lt;BR /&gt;&lt;BR /&gt;It does confuse me a bit when you mention that before it was&lt;/P&gt;
&lt;P&gt;RDC_PDAPn(RDC_PDAP_UART4, D0R | D0W)&lt;BR /&gt;&lt;BR /&gt;Since the last gives the peripheral domain to the Cortex-A, please confirm which of the two you have. As I said before in our default configuration UART4 is the terminal for Cortex-M, no changes should be needed to ATF.&lt;/P&gt;
&lt;P&gt;Please let me know the BSP version you're using as a reference.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Aldo.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Mar 2022 20:14:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX8M-Mini-Custom-Board-Cortex-M4-issue/m-p/1424102#M187911</guid>
      <dc:creator>AldoG</dc:creator>
      <dc:date>2022-03-07T20:14:12Z</dc:date>
    </item>
  </channel>
</rss>

