<?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: IMX6Q: Multicore/Preempt PCIe access in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903118#M136269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So there is no HW arbitration between two threads accessing the FPGA (PCIe)?&lt;/P&gt;&lt;P&gt;If 2 threads mmap the region of FPGA registers, nothing in HW protects against a single u32 access/read (like the AXI)? It's a purely up to SW to arbitrate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thinking about PCIe like a memory, I don't believe I've seen protection around every time I read from RAM... unless there is a difference with-respect-to how the core/MMU views accesses between RAM and PCIe device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Apr 2019 12:25:29 GMT</pubDate>
    <dc:creator>etim</dc:creator>
    <dc:date>2019-04-23T12:25:29Z</dc:date>
    <item>
      <title>IMX6Q: Multicore/Preempt PCIe access</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903116#M136267</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Howdy-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a FPGA connected to an IMX6Q via PCIe that provides some registers. My questions center around multi-core FPGA register access. Admittedly I have not dug into the docs - I was hoping to leverage someone else's knowledge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Can two cores access 2 different registers of the FPGA simultaneously using mmap'd memory (Program IO)?&lt;OL&gt;&lt;LI&gt;What guarantees exclusive access? I'm guessing it's the NIC-301...&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Can a DMA operation to the registers occur simultaneously with a normal PIO without SW guaranteeing exclusivity?&lt;/LI&gt;&lt;LI&gt;(Probably the same question&amp;nbsp;as (1)) What happens when a thread that is actively doing&amp;nbsp;a register read (PIO) is preempted/interrupted by another thread/ISR that also issues a PIO register read?&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Tim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Apr 2019 13:08:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903116#M136267</guid>
      <dc:creator>etim</dc:creator>
      <dc:date>2019-04-19T13:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: IMX6Q: Multicore/Preempt PCIe access</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903117#M136268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually it is OK if different cores are using some external (outside of the core) unit like PCI.&lt;BR /&gt;Of course the software need to make sure that in one exact moment only one thread uses it.&lt;BR /&gt;However it does not matter on which core it run.&lt;BR /&gt;And in case of Linux it manages it fine on multicore processor like i.MX6Q.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Victor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;BR /&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;BR /&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2019 04:03:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903117#M136268</guid>
      <dc:creator>b36401</dc:creator>
      <dc:date>2019-04-23T04:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: IMX6Q: Multicore/Preempt PCIe access</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903118#M136269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So there is no HW arbitration between two threads accessing the FPGA (PCIe)?&lt;/P&gt;&lt;P&gt;If 2 threads mmap the region of FPGA registers, nothing in HW protects against a single u32 access/read (like the AXI)? It's a purely up to SW to arbitrate?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thinking about PCIe like a memory, I don't believe I've seen protection around every time I read from RAM... unless there is a difference with-respect-to how the core/MMU views accesses between RAM and PCIe device.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Apr 2019 12:25:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903118#M136269</guid>
      <dc:creator>etim</dc:creator>
      <dc:date>2019-04-23T12:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: IMX6Q: Multicore/Preempt PCIe access</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903119#M136270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yuri answered the question in another thread:&lt;BR /&gt;&lt;A href="https://community.nxp.com/thread/502868" target="test_blank"&gt;https://community.nxp.com/thread/502868&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 May 2019 09:24:11 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/IMX6Q-Multicore-Preempt-PCIe-access/m-p/903119#M136270</guid>
      <dc:creator>b36401</dc:creator>
      <dc:date>2019-05-16T09:24:11Z</dc:date>
    </item>
  </channel>
</rss>

