<?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: P2020 PCIE Device DMA data corruption in P-Series</title>
    <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408824#M2302</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;p2020 has coherent DMA and thus the DMA sync functions will not do any flushing (you should still call them, though).&amp;nbsp; Check that the PCIe controller has been configured with snooping enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any chance that it's an ordering problem rather than coherency?&amp;nbsp; Is the driver using proper I/O accessors to ensure that barriers are used?&amp;nbsp; What happens if you insert manual flushing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Jul 2015 23:16:25 GMT</pubDate>
    <dc:creator>scottwood</dc:creator>
    <dc:date>2015-07-14T23:16:25Z</dc:date>
    <item>
      <title>P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408823#M2301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using DMA streaming API in my PCIE device driver for DMA&amp;nbsp; transfers.&lt;/P&gt;&lt;P&gt;We use pci_dma_sync_single_for_device and pci_dma_sync_single_for_cpu to handover the buffer to device and cpu respectively.&amp;nbsp; We assume that this will ensure necessary cache invalidation and flushing as per the direction of transfer.&lt;/P&gt;&lt;P&gt;But we still see data corruption.&amp;nbsp; I tried reducing the DMA buffer size and the occurrence of the problem got delayed by 1 day.&amp;nbsp; It is clearly a cache invalidation/flusing issue.&lt;/P&gt;&lt;P&gt;Could you please let us know the correct API usage for the architecture?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 09:31:16 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408823#M2301</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-14T09:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408824#M2302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;p2020 has coherent DMA and thus the DMA sync functions will not do any flushing (you should still call them, though).&amp;nbsp; Check that the PCIe controller has been configured with snooping enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any chance that it's an ordering problem rather than coherency?&amp;nbsp; Is the driver using proper I/O accessors to ensure that barriers are used?&amp;nbsp; What happens if you insert manual flushing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Jul 2015 23:16:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408824#M2302</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-14T23:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408825#M2303</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;Thanks a lot for your response.&lt;/P&gt;&lt;P&gt;Snooping is enabled in PCIe Controller. Regarding manual flushing of cache, clean_dcache_range or flush_dcache_range is not available for e500.&lt;/P&gt;&lt;P&gt;1) Could you please provide the correct API for manual flushing and invalidation of cache&lt;/P&gt;&lt;P&gt;2) I am not ruling our ordering problem.&amp;nbsp; The driver does not use any barriers.&amp;nbsp; Could you please let me know the recommended barriers which will work for p2020? I tried using wmb()/eieio()/mmiowb() before and after DMA transfer.&amp;nbsp; It did not change the behaviour &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 09:17:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408825#M2303</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-15T09:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408826#M2304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why do you say that flush_dcache_range() and clean_dcache_range() are not available?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For a PCI driver you want to use writel()/readl(), or equivalent for other sizes.&amp;nbsp; These will contain the needed barriers (a sync before all accesses, and an isync after loads).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Jul 2015 21:08:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408826#M2304</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-15T21:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408827#M2305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the response.&lt;/P&gt;&lt;P&gt;Sorry, I was able to use flush_dcache_range().&amp;nbsp; I only have problems including clean_dcache_range() and invalidate_dcache_range().&lt;/P&gt;&lt;P&gt;When I compile the driver&amp;nbsp; with clean_dcache_range(), I get a WARNING: "clean_dcache_range" undefined!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have replaced all the iowrite32 and ioread32 with writel() and readl().&amp;nbsp; &lt;/P&gt;&lt;P&gt;I also do&amp;nbsp; flush_dcache_range() before and after DMA operations when the direction is DMA_TO_DEVICE.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;i.e Prior to DMA transfer, a flush_dcache_range() after&amp;nbsp; pci_map_single and Post DMA transfer a flush_dcache_range() before pci_unmap_single&lt;/P&gt;&lt;P&gt;I see minor improvement, the frequency of occurrence seems to be slightly reduced.&amp;nbsp; But I still see the problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know your inputs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 14:28:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408827#M2305</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-16T14:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408828#M2306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see anything in the code that would explain why you can't call clean_dcache_range() or invalidate_dcache_range() -- what kernel are you using?&amp;nbsp; Though, remember that this is just for trying to figure out whether it's a cache issue.&amp;nbsp; It's not a permanent solution.&amp;nbsp; flush_dcache_range() should be sufficient for that purpose (and invalidate_dcache_range() can be dangerous).&amp;nbsp; Since you say you still see the issue with flush_dcache_range(), it does not seem to be a cache issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;writel() versus iowrite32() shouldn't matter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 16:21:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408828#M2306</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-16T16:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408829#M2307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We use 3.14.39 kernel version.&amp;nbsp; Do you have any other ideas to rule out that this is not cache issue?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 19:52:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408829#M2307</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-16T19:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408830#M2308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If flushing didn't make it go away, then it is probably not a cache issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 20:00:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408830#M2308</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-16T20:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408831#M2309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the order of flushing matters? Is that enough to flush before and after DMA transfer?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 20:04:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408831#M2309</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-16T20:04:14Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408832#M2310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You don't need to flush at all.&amp;nbsp; Investigate other potential sources of the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 20:06:53 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408832#M2310</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-16T20:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408833#M2311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.&amp;nbsp; I will try to setup dedicated buffers for TX &amp;amp; RX.&amp;nbsp; Currently, we use same buffer for both.&amp;nbsp; I will come back if I have any questions.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2015 20:12:17 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408833#M2311</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-16T20:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408834#M2312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Forgot to mention that the driver works fine on embedded ARM platform with the same PCIe device and also PC.&amp;nbsp; The corruption is seen when using with P2020.&amp;nbsp; That was the reason for looking into caching issues.!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2015 13:18:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408834#M2312</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-17T13:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408835#M2313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You had mentioned in your earlier reply that:&amp;nbsp; Do you mean that it is required to have snooping enabled in both directions?&amp;nbsp; Right now, the snooping is enabled from PCIe device to CPU and not from CPU -&amp;gt; PCIe device.&amp;nbsp; Will that be an issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p2020 has coherent DMA and thus the DMA sync functions will not do any flushing (you should still call them, though). &lt;SPAN style="text-decoration: underline;"&gt; "&lt;STRONG&gt;Check that the PCIe controller has been configured with snooping enabled."&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any chance that it's an ordering problem rather than coherency?&amp;nbsp; Is the driver using proper I/O accessors to ensure that barriers are used?&amp;nbsp; What happens if you insert manual flushing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2015 11:44:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408835#M2313</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-20T11:44:10Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408836#M2314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In theory only the PCIe end should need to snoop.&amp;nbsp; But, there have been some other chips where this was not the case, so it wouldn't hurt to try enabling snooping on the CPU side -- i.e. the M bit in the TLB entry, which in Linux can be accomplished by using an SMP kernel.&amp;nbsp; Since this is a two-core chip, why aren't you already using an SMP kernel?&amp;nbsp; Or if you are, what are you seeing that makes you say that snooping is not currently enabled from the CPU side?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 01:52:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408836#M2314</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-28T01:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408837#M2315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The PCIE controller on the device is snoop enabled in one direction, i.e device to CPU and no snoop is default for CPU to the device.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 07:08:15 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408837#M2315</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-28T07:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408838#M2316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please explain precisely what register setting or equivalent you're referring to by "no snoop is default for CPU to the device"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jul 2015 18:14:55 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408838#M2316</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-28T18:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408839#M2317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Sorry for the confusion.&amp;nbsp; I meant the PCIE controller core of the device and not the CPU has snooping enabled for the transaction from device to cpu and no snoop enabled for the transaction from cpu to device. &lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 06:17:12 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408839#M2317</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-29T06:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408840#M2318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That doesn't answer my question.&amp;nbsp; I only see one "snoop" setting in the PCIe controller.&amp;nbsp; The PCIe device should not be caching memory (except perhaps under explicit software control), so there's nothing to snoop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 16:12:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408840#M2318</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-29T16:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408841#M2319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are using&amp;nbsp; SMP kernel which means snooping is enabled right_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Rams&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 17:25:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408841#M2319</guid>
      <dc:creator>ramasubramanian</dc:creator>
      <dc:date>2015-07-29T17:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: P2020 PCIE Device DMA data corruption</title>
      <link>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408842#M2320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, on an SMP kernel the M bit will be set in TLB entries that map normal RAM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Jul 2015 21:28:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/P-Series/P2020-PCIE-Device-DMA-data-corruption/m-p/408842#M2320</guid>
      <dc:creator>scottwood</dc:creator>
      <dc:date>2015-07-29T21:28:22Z</dc:date>
    </item>
  </channel>
</rss>

