<?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: RT1020 flash operation SDK example Question in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1786618#M218543</link>
    <description>thanks for your explanation.</description>
    <pubDate>Thu, 11 Jan 2024 00:10:04 GMT</pubDate>
    <dc:creator>Seongyon_Jeong</dc:creator>
    <dc:date>2024-01-11T00:10:04Z</dc:date>
    <item>
      <title>RT1020 flash operation SDK example Question</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1784926#M218424</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;from flash SDK example,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;My question is About flexspi_clock_init.&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;static inline void flexspi_clock_init()&lt;BR /&gt;{&lt;BR /&gt;#if defined(XIP_EXTERNAL_FLASH) &amp;amp;&amp;amp; (XIP_EXTERNAL_FLASH == 1)&lt;BR /&gt;    /* Switch to PLL2 for XIP to avoid hardfault during re-initialize clock. */&lt;BR /&gt;    CLOCK_InitSysPfd(kCLOCK_Pfd2, 24); /* Set PLL2 PFD2 clock 396MHZ. */&lt;BR /&gt;    CLOCK_SetMux(kCLOCK_FlexspiMux, 0x2); /* Choose PLL2 PFD2 clock as flexspi source clock. */&lt;BR /&gt;    CLOCK_SetDiv(kCLOCK_FlexspiDiv, 2); /* flexspi clock 133M. */&lt;BR /&gt;#else&lt;BR /&gt;   ~~~~&lt;BR /&gt;#endif&lt;BR /&gt;}&lt;/PRE&gt;&lt;P&gt;In this function&amp;nbsp; ,&amp;nbsp; &amp;nbsp;flexspi clock is 132Mz , isn`t it ?&amp;nbsp; &amp;nbsp;why&amp;nbsp; 133,000,000 ?,&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;P&gt;Does not it make wrong action ?&lt;/P&gt;&lt;PRE&gt;/*******************************************************************************&lt;BR /&gt;* Code&lt;BR /&gt;******************************************************************************/&lt;BR /&gt;flexspi_device_config_t deviceconfig = {&lt;BR /&gt;.flexspiRootClk = 133000000,&lt;BR /&gt;.flashSize = FLASH_SIZE,&lt;BR /&gt;.CSIntervalUnit = kFLEXSPI_CsIntervalUnit1SckCycle,&lt;BR /&gt;.CSInterval = 2,&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 06:21:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1784926#M218424</guid>
      <dc:creator>Seongyon_Jeong</dc:creator>
      <dc:date>2024-01-09T06:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: RT1020 flash operation SDK example Question</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1785564#M218487</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/220925"&gt;@Seongyon_Jeong&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;The output from the flexspi_clock_init() should be 133MHz. Are you seeing a 131MHz output from your board? Or how are you determining that your output is different from the intended frequency?&lt;/P&gt;
&lt;P&gt;BR,&lt;BR /&gt;Edwin.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 23:09:27 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1785564#M218487</guid>
      <dc:creator>EdwinHz</dc:creator>
      <dc:date>2024-01-09T23:09:27Z</dc:date>
    </item>
    <item>
      <title>Re: RT1020 flash operation SDK example Question</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1785580#M218488</link>
      <description>&lt;P&gt;I didn`t&amp;nbsp; check the frequency [directly - physically] using scope.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just only,&amp;nbsp; with Software description.,&lt;/P&gt;&lt;P&gt;CLOCK_InitSysPfd(kCLOCK_Pfd2, 24); =&amp;gt; PLL2 PFD2 clock 396 Mhz&lt;BR /&gt;CLOCK_SetMux(kCLOCK_FlexspiMux, 0x2); /* Choose PLL2 PFD2 clock as flexspi source clock. */&lt;BR /&gt;CLOCK_SetDiv(kCLOCK_FlexspiDiv, 2);&lt;BR /&gt;=&amp;gt; Exactly [ PLL2 PFD2 clock 396 Mhz ] / 3 = 132Mhz , why Say 396 / 3 = 133Mhz ???&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 00:13:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1785580#M218488</guid>
      <dc:creator>Seongyon_Jeong</dc:creator>
      <dc:date>2024-01-10T00:13:15Z</dc:date>
    </item>
    <item>
      <title>Re: RT1020 flash operation SDK example Question</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1786427#M218537</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/220925"&gt;@Seongyon_Jeong&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;You are correct. From the software description it does seem to be 132MHz, but after replicating the setup on ConfigTools' Clocks tool, I also got the same 132MHz. I believe 133MHz is one of the standard values supported from flash devices. However, most likely for simplicity the&amp;nbsp;flexspi_clock_init() routine initially sets it to a near acceptable value of 132MHz. That said, I will comment about this internally to chance the comment to the appropriate frequency.&lt;/P&gt;
&lt;P&gt;Thanks for reporting this.&lt;/P&gt;
&lt;P&gt;BR,&lt;BR /&gt;Edwin.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 20:28:38 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1786427#M218537</guid>
      <dc:creator>EdwinHz</dc:creator>
      <dc:date>2024-01-10T20:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: RT1020 flash operation SDK example Question</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1786618#M218543</link>
      <description>thanks for your explanation.</description>
      <pubDate>Thu, 11 Jan 2024 00:10:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/RT1020-flash-operation-SDK-example-Question/m-p/1786618#M218543</guid>
      <dc:creator>Seongyon_Jeong</dc:creator>
      <dc:date>2024-01-11T00:10:04Z</dc:date>
    </item>
  </channel>
</rss>

