<?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のトピックRe: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356984#M49994</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I replaced the imx6dlsabresd EP with an imx6q SabreLite and it worked, RC imx6dlsabresd &amp;lt;-&amp;gt; EP imx6qsabrelite, result below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result imx6q SabreLite EP:&lt;/P&gt;&lt;P&gt;iMX6 PCIe PCIe EP mode imx_pcie_pltfm_probe entering..&lt;/P&gt;&lt;P&gt;PCIE: imx_pcie_pltfm_probe start link up.&lt;/P&gt;&lt;P&gt;PCIe EP: waiting for link up...&lt;/P&gt;&lt;P&gt;PCIe EP: waiting for link up, iteration # 0&lt;/P&gt;&lt;P&gt;PCIe EP: DB_R1 0x8000410&lt;/P&gt;&lt;P&gt;PCIe EP: link up.&lt;/P&gt;&lt;P&gt;PCIe EP: Starting data transfer...&lt;/P&gt;&lt;P&gt;PCIe EP: Data transfer is successful.tv_count1 111071us, tv_count2 238153us.&lt;/P&gt;&lt;P&gt;PCIe EP: Data write speed is 147MB/s.&lt;/P&gt;&lt;P&gt;PCIe EP: Data read speed is 68MB/s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why don't imx6dlsabresd work as an endpoint? Linux BSP or chip iMX6DL PCIe EP issues?&lt;/P&gt;&lt;P&gt;I'm sure it isn't the cable since the imx6dlsabresd crash/hang regardless if the cable is connected or not while the iMX6Q will loop and print it is waiting for link up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Sep 2014 13:50:43 GMT</pubDate>
    <dc:creator>andreaskarlsson</dc:creator>
    <dc:date>2014-09-15T13:50:43Z</dc:date>
    <item>
      <title>Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356980#M49990</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;I'm trying to repeat the EP/RC Validation System on an i.MX6DL setup, basically imx6dlsabresd EP &amp;lt;-&amp;gt; RC imx6dlsabresd.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/docs/DOC-95014"&gt;i.MX6Q PCIe EP/RC Validation System&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I got 2 boards imx6dlsabresd&lt;/P&gt;&lt;P&gt;2. I'm using L3.0.35_4.1.0_130816 built for imx6q with board imx6dlsabresd ( I must choose iMX6Q (iMXQ6S don't) to enable to be able to select imx6dlsabresd)&lt;/P&gt;&lt;P&gt; - One image configured as EP, CONFIG_IMX_PCIE_EP_MODE_IN_EP_RC_SYS=y&lt;/P&gt;&lt;P&gt; - One image configured as RC, CONFIG_IMX_PCIE_RC_MODE_IN_EP_RC_SYS=y&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I start the EP it hangs/crashes when waiting for "link up..."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I modified the link up do/while to print what happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp; pr_info("PCIe EP: waiting for link up...\n");&lt;BR /&gt;&amp;nbsp; /* link is debug bit 36 debug 1 start in bit 32 */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pcie.c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;snippet...&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; pr_info("PCIe EP: waiting for link up...\n");&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; /* link is debug bit 36 debug 1 start in bit 32 */&lt;BR /&gt;&amp;nbsp; do {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; usleep_range(10, 20);&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; pr_info("PCIe EP: waiting for link up, iteration # %d\n",dbr1_cnt++);&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; dbr1 = readl(dbi_base + DB_R1);&lt;BR /&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp; pr_info("PCIe EP: DB_R1 0x%x\n",dbr1);&amp;nbsp; &amp;lt;--------------- Never printed&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; } while ((dbr1 &amp;amp; 0x10) == 0);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This code produce the following prints showing that we hang/crash when trying to read DB_R1. Does any have a clue why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PM driver module loaded&lt;/P&gt;&lt;P&gt;iMX6 PCIe PCIe EP mode imx_pcie_pltfm_probe entering.&lt;/P&gt;&lt;P&gt;PCIE: imx_pcie_pltfm_probe start link up.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PCIe EP: waiting for link up...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PCIe EP: waiting for link up, iteration # 0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;No more prints&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2014 07:35:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356980#M49990</guid>
      <dc:creator>andreaskarlsson</dc:creator>
      <dc:date>2014-09-11T07:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356981#M49991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why are you choosing i.MX6Q/D&amp;nbsp;&amp;nbsp; if you are using the i.MX6DL/S?.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2014 16:10:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356981#M49991</guid>
      <dc:creator>jamesbone</dc:creator>
      <dc:date>2014-09-12T16:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356982#M49992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was referring to the choice when installing LTIB, only imx6s and imx6q is available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I go for imx6s it seems it implicitly mean imx6 SoloLite for U-boot, I can only select 2 i.MX6SL boards.&lt;BR /&gt;In Kernel configuration only&amp;nbsp; i.MX6Quad SABRESD is supported is regardless if I choose imx6s or imx6q.&lt;BR /&gt; &lt;BR /&gt;Platform type -&amp;gt; imx6s&lt;BR /&gt;Choose board for u-boot&lt;BR /&gt; - boards mx6sl_arm2&lt;BR /&gt; - boards mx6sl_evk&lt;BR /&gt;Kernel Configuration&lt;BR /&gt;&amp;nbsp; System Type -&amp;gt; Freescale MXC Implementations&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Support i.MX6Quad SABRESD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;On the other hand If I go for imx6q I can select mx6dlsabresd for U-boot but for Kernel Configuration only imx6q is avaliable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Platform type -&amp;gt; imx6q&lt;BR /&gt;Choose board for u-boot&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - boards mx6dlsabresd&lt;/P&gt;&lt;P&gt;Kernel Configuration&lt;BR /&gt;&amp;nbsp; System Type -&amp;gt; Freescale MXC Implementations&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Support i.MX6Quad SABRESD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So therefor I've went for imx6q to be able to build for imx6dlsabresd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any other way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 08:26:41 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356982#M49992</guid>
      <dc:creator>andreaskarlsson</dc:creator>
      <dc:date>2014-09-15T08:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356983#M49993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The manual actually state:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 14pt; font-family: TimesLTStd-Roman;"&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;For the kernel image, the current default kernel configuration builds a single image that works for all i.MX 6 boards except i.MX 6SoloLite boards.&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;So I don't think the issue is concering building imx6q for imx6dl?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 09:13:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356983#M49993</guid>
      <dc:creator>andreaskarlsson</dc:creator>
      <dc:date>2014-09-15T09:13:07Z</dc:date>
    </item>
    <item>
      <title>Re: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356984#M49994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I replaced the imx6dlsabresd EP with an imx6q SabreLite and it worked, RC imx6dlsabresd &amp;lt;-&amp;gt; EP imx6qsabrelite, result below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Result imx6q SabreLite EP:&lt;/P&gt;&lt;P&gt;iMX6 PCIe PCIe EP mode imx_pcie_pltfm_probe entering..&lt;/P&gt;&lt;P&gt;PCIE: imx_pcie_pltfm_probe start link up.&lt;/P&gt;&lt;P&gt;PCIe EP: waiting for link up...&lt;/P&gt;&lt;P&gt;PCIe EP: waiting for link up, iteration # 0&lt;/P&gt;&lt;P&gt;PCIe EP: DB_R1 0x8000410&lt;/P&gt;&lt;P&gt;PCIe EP: link up.&lt;/P&gt;&lt;P&gt;PCIe EP: Starting data transfer...&lt;/P&gt;&lt;P&gt;PCIe EP: Data transfer is successful.tv_count1 111071us, tv_count2 238153us.&lt;/P&gt;&lt;P&gt;PCIe EP: Data write speed is 147MB/s.&lt;/P&gt;&lt;P&gt;PCIe EP: Data read speed is 68MB/s.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So why don't imx6dlsabresd work as an endpoint? Linux BSP or chip iMX6DL PCIe EP issues?&lt;/P&gt;&lt;P&gt;I'm sure it isn't the cable since the imx6dlsabresd crash/hang regardless if the cable is connected or not while the iMX6Q will loop and print it is waiting for link up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 13:50:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356984#M49994</guid>
      <dc:creator>andreaskarlsson</dc:creator>
      <dc:date>2014-09-15T13:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Have anyone successfully reproduced i.MX6Q PCIe EP/RC Validation System on an i.MX6DL setup</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356985#M49995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #8ca9cd; font-size: 1.286rem; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;andreas&lt;/SPAN&gt;&lt;SPAN style="color: #8ca9cd; font-size: 1.286rem; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #303030; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 12pt;"&gt;You tried to reproduce EP/RC Validation System on an iMX6DL. Have you achieved success?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 07:43:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Have-anyone-successfully-reproduced-i-MX6Q-PCIe-EP-RC-Validation/m-p/356985#M49995</guid>
      <dc:creator>andreyko</dc:creator>
      <dc:date>2016-05-20T07:43:16Z</dc:date>
    </item>
  </channel>
</rss>

