<?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: Exploring Vybrid A5 QSPI XIP performance in Vybrid Processors</title>
    <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280127#M1980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm interested in this, too. Will there be an announcement when the new documents are released?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2014 19:46:04 GMT</pubDate>
    <dc:creator>jackblather</dc:creator>
    <dc:date>2014-03-04T19:46:04Z</dc:date>
    <item>
      <title>Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280121#M1974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am exploring the Execution In Place (XIP) performance for an MQX application running on the Vybrid A5 core on a TWR-VF65GS10 board using the on-board QSPI memory. My test application utilizes the MQX shell, MFS, and SD card resources. I also have some custom code that allows me to access the MQX QSPI interface when the application runs out of SRAM. I discovered that MQX won't &lt;SPAN style="font-size: 10pt;"&gt;initialize the QSPI driver when executing out of QSPI; a restriction that makes sense but I wanted try it anyway.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;SPAN style="line-height: 1.5em;"&gt;Development in IAR 6.70 and using t&lt;/SPAN&gt;&lt;SPAN style="font-family: Calibri, sans-serif;"&gt;he &lt;STRONG&gt;quadspi_loader&lt;/STRONG&gt; project in the Vybrid Sample Code to take the binary and flash it into the QuadSPI on the TWR-VF65GS10.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;For my initial successful XIP build and boot I used quadspi_boot.c and a modified linker command file from the Vybrid Sample Code. The QSPI ran in SDR Single mode with the clock default in&lt;/SPAN&gt; quadspi_boot.c set to 1. According to the Vybrid Reference Manual, page 902, this corresponds to an 18 MHz clock. I used a directory command to a subfolder on the SD card for a crude benchmark. Running from QSPI the "dir" command executed in about 2 seconds. In comparison, when running from SRAM the same command completed in about 85 ms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In another thread,&amp;nbsp; &lt;A href="https://community.nxp.com/message/362538"&gt;Re: MQX application is not booting from QuadSPI_NAND flash&lt;/A&gt;, I found a boot configuration that ran in SDR Quad mode. I updated and reran my benchmark and the "dir" command executed in about 750 ms; a noticeable improvement. A setting in quadspi_conf indicated that a clock setting of 1 is 60 MHz.&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #3d3d3d; font-family: 'courier new', courier;"&gt;&amp;nbsp; 1,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; /* SCLK Freq - 60Mhz*/&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next I tried to improve the XIP performance. I increased SCLK frequency to 74 MHz and 99 MHz but neither configuration would boot. I also tried to set up quadspi to run in DDR mode without success by modifying the LUT to use DDR quad mode:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 0x04ED,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // CMD DDRQIOR&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp; 0x2A18,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // ADDR_DDR (4) 24&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 0x0C08,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // DUMMY 8&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 0x3280,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // READ_DDR (4) 0x80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; 0x2400,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // JMP_CS 0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still coming up to speed with QSPI so I wasn't surprised that my LUT sequence did not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I stepped through MQX startup and observed the I-cache being enabled. I plan to do some experiments to determine how using I-cache affects performance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions:&lt;/P&gt;&lt;P&gt;1. Can the SCLK frequency be increased? Is more needed than changing the quadspi_conf value? I stepped through MQX changing QSPI clock speed and the experience was character building.&lt;/P&gt;&lt;P&gt;2. Has anyone configured QSPI XIP with higher clock speed or DDR?&lt;/P&gt;&lt;P&gt;3. Are there any cache adjustments that would boost XIP performance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Feb 2014 18:43:03 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280121#M1974</guid>
      <dc:creator>nancyb</dc:creator>
      <dc:date>2014-02-05T18:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280122#M1975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nancy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any chance you've succeeded in this effort to execute in place over QSPI running in DDR mode? I am going through this process now on my tower board and have run into the same issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LUT sequence I am using is the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; // SEQID 0 - Quad DDR Read (For DDR, Quad I/O Mode)&lt;/P&gt;&lt;P&gt;&amp;nbsp; // -----------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x04ED, = CMD | 1 Pad | DDRQIOR&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x2A18, = ADDR_DDR | 4 Pads | 24 bits will be used.&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x2EA5, = MODE_DDR | 4 Pads | Notifies of re-issuing read at the end of access.&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x0E06, = DUMMY | 4 Pads | 6 Cycles&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x3A80, = READ_DDR | 4 Pads | Read 128 bits&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0x2401, = JMP_ON_CS | NA | Go to ADDR_DDR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This differs from your sequence in 3 ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I am trying to enable continuous read mode by sending the MODE_DDR command and setting the JMP_ON_CS command accordingly.&lt;/P&gt;&lt;P&gt;2. The READ_DDR command is set differently from your sequence (perhaps a typo?).&lt;/P&gt;&lt;P&gt;3. I specify 6 Dummy cycles (per the Latency Codes table 8.11 of the Spansion data sheet). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I took this block from the vybrid_sc sample code which shows a bunch of LUT sample entries so I assume it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the moment, my suspicion is that I do not have the sampling point (at offset 61 of the configuration table) set correctly; I'm going to sweep through the 7 possible values of this entry and cross my fingers that one of them works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other settings from the configuration table:&lt;/P&gt;&lt;P&gt;//TYPO: Serial Clock Frequency: 00 -&amp;gt; 60 Mhz&lt;/P&gt;&lt;P&gt;//Correction: Serial Clock Frequency: 01 -&amp;gt; 60MHz@&lt;/P&gt;&lt;P&gt;Mode of operation: 04 -&amp;gt; Quad Mode&lt;/P&gt;&lt;P&gt;DDR Enable: 1 -&amp;gt; DDR Enabled&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you've figured this one out!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Erick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2014 18:28:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280122#M1975</guid>
      <dc:creator>erickcastillo</dc:creator>
      <dc:date>2014-03-01T18:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280123#M1976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/nancyb"&gt;nancyb&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;To make it really visible, I would recommend you to move the thread from your personal space to the "Vybrid Processors" one.&lt;/P&gt;&lt;P&gt;Sincerely, Naoum Gitnik.&lt;/P&gt;&lt;P&gt;(&lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/erickcastillo"&gt;erickcastillo&lt;/A&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 21:40:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280123#M1976</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2014-03-03T21:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280124#M1977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naoum,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a process to move the thread to Vybrid or should I just create a new topic and cut/paste my original entry? It would be useful to have Erick's reply too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 12:38:18 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280124#M1977</guid>
      <dc:creator>nancyb</dc:creator>
      <dc:date>2014-03-04T12:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280125#M1978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erick,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have not worked this issue recently. After receiving excellent help setting up the I cache my XIP (execute in place) performance is better than SRAM. I will be coming back to this topic because our application will need the best XIP performance I can achieve. You indicate that&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Serial Clock Frequency: 00 -&amp;gt; 60 Mhz&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;and the Vybrid Reference Manual, Rev 5, 07/2013 on page 842 shows&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Value Clock&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;00 18 MHz&lt;/P&gt;&lt;P&gt;01 60 MHz&lt;/P&gt;&lt;P&gt;02 74 MHz&lt;/P&gt;&lt;P&gt;03 99Mhz (only SDR mode)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any case no value except 1 worked for me, perhaps because I did not tweak the sampling point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nancy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 12:51:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280125#M1978</guid>
      <dc:creator>nancyb</dc:creator>
      <dc:date>2014-03-04T12:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280126#M1979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Nancy,&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;It is quite simple to move - you open this thread, and as its author, you see a "Move" option among the "&lt;SPAN style="color: #999999; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 11.199999809265137px; font-weight: bold;"&gt;ACTIONS&lt;/SPAN&gt;" on the right (select the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;"Vybrid Processors" space).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;I already replied to the Freescale FAE for Eric, and, unfortunately, in &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px;"&gt;the internal Freescale &lt;/SPAN&gt;space -&amp;nbsp; it contains some information from the new Vybrid Datasheet, which will be published only in a few weeks. If you need this information urgently, you will also have to turn to our FAE - they all have access to it. The point here is that we are making our documentation, specifically in the QSPI part, clearer and more precise, and first the Datasheet. The Reference Manual is going through the same process as well but is longer hence needs&amp;nbsp; more time.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Sincerely, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 18:33:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280126#M1979</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2014-03-04T18:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280127#M1980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm interested in this, too. Will there be an announcement when the new documents are released?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 19:46:04 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280127#M1980</guid>
      <dc:creator>jackblather</dc:creator>
      <dc:date>2014-03-04T19:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280128#M1981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jackblather"&gt;jackblather&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;The whole discussion is about the F-Series&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;(Industrial) &lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;version of Vybrid published last summer.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;As I just learned, the R-Series (Automotive) Datasheet has been just published on the Freescale web site (where exactly, &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/RossMcLuckie"&gt;RossMcLuckie&lt;/A&gt;? - thanks!) and I was told that its timing diagrams were supposed to be the same as in the corrected F-Series one.&lt;/P&gt;&lt;P&gt;Regarding the official announcement about a new document revision publication - not sure, I doubt it...&lt;/P&gt;&lt;P&gt;Sincerely, Naoum Gitnik.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="41348" data-objecttype="3" href="https://community.nxp.com/people/nancyb" style="color: #6a737b; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Nancy Jean Burkholder&lt;/A&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-link-profile-small" data-containerid="-1" data-containertype="-1" data-objectid="221254" data-objecttype="3" href="https://community.nxp.com/people/erickcastillo" style="color: #6a737b; font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Erick Castillo&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 20:32:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280128#M1981</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2014-03-04T20:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280129#M1982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. I didn't realize that thread was about the automotive variant. I'm developing with the VF6xx part. I will periodically check the FSL Vybrid pages for documentation updates.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 20:48:31 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280129#M1982</guid>
      <dc:creator>jackblather</dc:creator>
      <dc:date>2014-03-04T20:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280130#M1983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jack,&lt;/P&gt;&lt;P&gt;I doubt the timing requirements are version-dependent.&lt;/P&gt;&lt;P&gt;BTW, the &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TWR-VF65GS10 board&lt;/SPAN&gt; mentioned in the very beginning of the thread is based on the Industrial Vybrid variant.&lt;/P&gt;&lt;P&gt;Regards, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 20:53:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280130#M1983</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2014-03-04T20:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280131#M1984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nancy, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the comments. I edited my original reply to address the clock value typo; you are right. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will shelf this until docs are out too I suppose. In the meantime, can you point me to any discussions that may have been posted here for the I-Cache set up? My interim solution is to transfer the image from QSPI to internal RAM but if you get even better performance via QSPI + I-Cache, I think I would prefer that route. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;--Erick &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 21:07:26 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280131#M1984</guid>
      <dc:creator>erickcastillo</dc:creator>
      <dc:date>2014-03-04T21:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280132#M1985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Eric,&lt;/P&gt;&lt;P&gt;Have you tried using the 'Search' window in the upper right corner of the web page to find information you are looking for?&lt;/P&gt;&lt;P&gt;It is more convenient to be inside the Community space dedicated to your product of interest while doing that.&lt;/P&gt;&lt;P&gt;Regards, Naoum Gitnik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2014 21:14:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280132#M1985</guid>
      <dc:creator>naoumgitnik</dc:creator>
      <dc:date>2014-03-04T21:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280133#M1986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you go to freescale.com and search for Vybrid Automotive you will return hits for the VF5xxR and VF3xxR web pages, these are the Vybrid auto parts and contain the new rev 6 R sereis datasheet. We are hopeful of releasing the F series very soon, but if you can't wait for that then the R version will give you an insight into what is coming, the majority of the content is the same, just be aware the 176QFP pinouts are different between the F and R families and only the R has GPU enabled parts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this specific issue, we have changed the spec to 80MHz SDR and 45MHz DDR maximum QuadSPI speeds. &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/amh"&gt;amh&lt;/A&gt; could you take a quick look at this thread and maybe advise, I think in the past you successfully ran the Tower QuadSPI at 80MHz SDR?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ross&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 10:38:56 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280133#M1986</guid>
      <dc:creator>RossMcLuckie</dc:creator>
      <dc:date>2014-03-05T10:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Exploring Vybrid A5 QSPI XIP performance</title>
      <link>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280134#M1987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All the config info is in the sample code under \src\boot\quadspi\quadspi_boot.c and sometimes you might have to adjust the DDR sample point. I think I got it to 80MHhz,but &lt;A class="jx-jive-macro-user" href="https://community.nxp.com/people/jiri-b36968"&gt;jiri-b36968&lt;/A&gt; did more on it in this regard. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 11:48:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Vybrid-Processors/Exploring-Vybrid-A5-QSPI-XIP-performance/m-p/280134#M1987</guid>
      <dc:creator>anthony_huereca</dc:creator>
      <dc:date>2014-03-05T11:48:06Z</dc:date>
    </item>
  </channel>
</rss>

