Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are writing a Windows 7 KMDF PCIe device driver for a storage device that is capable of DMA read & write. We have followed the KMDF framework completely and verified using DriverVerifier and !dma debuggers. We are tracking the data on the protocol analyzer that can show the packets traveling between PC and Device.

Problem: We have an issue in our DMA read. We are able to see DMA write (Host to Device) working. That is, DMA write command to the device and data is seen on the protocol analyzer. On the DMA read, we are seeing DMA read command from the host and data from device on the protocol analyzer but we are not seeing the data in the allocated buffer.

Our steps:

We followed the stapes to create DMA transactions ( followed PLX9x5x example). We are creating a Non paged memory using MmAllocateContiguousMemorySpecifyCache for buffer Build an Mdl for the buffer and generate SGL using MmBuildMdlForNonPagedPool Initialize Dma using WdfDmaTransactionInitialize call WdfDmaTransactionExecute.

When the ProgramReadDma callback gets called, we take the Bus logical address for the SGL that gets passed as input and communicate this address to the device with a bar register write along with data direction.

We don?t have multiple SGL elements since our data buffer is page aligned and total data is 512 bytes. The same procedure is followed for DMA from host to device and is working fine.

Questions: 1. Is there any suggestions regarding this? 2. Is there some kind of memory protection for RAM update? 3. We are not explicitly flushing CPU cache and DMA Adapter cache assuming that it will be taken care by KMDF. Is this assumption correct? 4. Are there any tools that can track the DMA data inside the host?

share|improve this question
Any luck on this? Please share the solution if you fixed the issue. Thanks. – Benedetto Sep 9 '12 at 3:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.