Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results

Home NTDEV

Before Posting...

Please check out the Community Guidelines in the Announcements and Administration Category.

More Info on Driver Writing and Debugging


The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.


Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/


Physical address of contiguous buffer

zviveredzvivered Member Posts: 118

Hello,

I'm using the following code to allocate a 28MB of contiguous buffer. This buffer is used for DMA from FGPA to RAM.

Due to limitation/bug in the firmware, the MSBit (#31) of the physical address must be 0.

Can you please advise if I can some how allocate buffer with bit #31 = 0 ?

Thank you,
Zvika

/**********************************************************************************/
NTSTATUS AllocateContinuousPhysicalMemory(IN PDEVICE_EXTENSION devExt, int Channel, int BufferSize)
{
WDF_DMA_ENABLER_CONFIG dmaConfig;
NTSTATUS status;

//
// Configure the DMA  object
//

WDF_DMA_ENABLER_CONFIG_INIT(&dmaConfig,
    WdfDmaProfilePacket64,
    COMMON_BUFFER_SIZE);

status = WdfDmaEnablerCreate(devExt->Device,
    &dmaConfig,
    WDF_NO_OBJECT_ATTRIBUTES,
    &devExt->DmaEnabler[Channel]);
if (!NT_SUCCESS(status))
{
    KdPrint(("WdfDmaEnblerCreate failed: %08X\n", status));
    return status;
}

status = **WdfCommonBufferCreate**(devExt->DmaEnabler[Channel],
    COMMON_BUFFER_SIZE,
    WDF_NO_OBJECT_ATTRIBUTES,
    &devExt->CommonBuffer[Channel]);

if (!NT_SUCCESS(status))
{
    KdPrint(("WdfCommonBufferCreate failed: %08X\n", status));
    return status;
}

devExt->KernelCommonBuffer[Channel] = WdfCommonBufferGetAlignedVirtualAddress(devExt->CommonBuffer[Channel]);
**devExt->PhysicalKernelCommonBuffer[Channel] = WdfCommonBufferGetAlignedLogicalAddress(devExt->CommonBuffer[Channel]);

**
RtlFillMemory(devExt->KernelCommonBuffer[Channel], BufferSize, 0x0);

devExt->CommonBufferMdl[Channel] = IoAllocateMdl(devExt->KernelCommonBuffer[Channel], BufferSize, FALSE, FALSE, NULL);

if (!devExt->CommonBufferMdl)
{
    KdPrint(("IoAllocateMdl failed.\n"));
    return STATUS_INSUFFICIENT_RESOURCES;
}

MmBuildMdlForNonPagedPool(devExt->CommonBufferMdl[Channel]);

KdPrint(("Channel %d: PhysicalDataAddressLow=%08x\n", Channel, devExt->PhysicalKernelCommonBuffer[Channel].LowPart));
KdPrint(("Channel %d: PhysicalDataAddressHigh=%08x\n", Channel, devExt->PhysicalKernelCommonBuffer[Channel].HighPart));

return STATUS_SUCCESS;

}

Comments

  • MBond2MBond2 Member Posts: 629

    I don't think you can fix this problem from the driver.

  • zviveredzvivered Member Posts: 118
    via Email
    Hi MBond2,

    Thank you very much !

    Best regards,
    Zvika
  • Mark_RoddyMark_Roddy Member - All Emails Posts: 4,708

    Hmmm, there always used to be a way to specify address limitations. In WDM the DEVICE_DESCRIPTION.DmaAddressWidth would do this. You could set that to 63, indicating that the MSB was out of range. There is very likely a way to do this through WDF as well. The common buffer allocation has to respect your DMA adapter properties. The WDF_DMA_ENABLER_CONFIG object has an AddressWidthOverride property that would appear to provide this capability. Then again I've never tried to do this so I don't know if it does what it appears to claim to do.

  • Tim_RobertsTim_Roberts Member - All Emails Posts: 14,716

    You can set AddressWidthOverride in the WDF_DMA_ENABLER_CONFIG structure to 31.

    If you need to work earlier than Windows 8, then the only available options for that fields are 64, 32, and 24, but the newer systems should accept any value.

    Tim Roberts, [email protected]
    Providenza & Boekelheide, Inc.

  • MBond2MBond2 Member Posts: 629

    Do values other than 32 or 64 really work when there are different bus relative addresses?

  • Tim_RobertsTim_Roberts Member - All Emails Posts: 14,716

    It shouldn't matter. We're talking about actual physical memory here, not about the device mapping.

    Tim Roberts, [email protected]
    Providenza & Boekelheide, Inc.

  • Mark_RoddyMark_Roddy Member - All Emails Posts: 4,708

    Just as an aside: NT has always supported device physical memory address restrictions, as ISA could not address anything outside of a 24bit address. And as we know from other discussions here, there are still plenty of NT systems with ISA devices.

  • MBond2MBond2 Member Posts: 629

    I must be missing something, but I thought the problem was that the device can't properly address memory when performing DMA. If that's the case, then the only thing that matters is the address from the point of view of the device?

  • Mark_RoddyMark_Roddy Member - All Emails Posts: 4,708
    edited November 8

    "the only thing that matters is the address from the point of view of the device?"

    Yes but bus address == physical address in general, and when it doesn't that is a HAL problem not a driver problem. As long as the driver goes through the correct procedures, in this case by allocating a common buffer using a correctly configure dma adapter object, the platform guarantees that the 'bus logical address' will meet the dma adapter requirements.

    All of which brings back memories of when common buffers were all fighting for 'low memory'.

  • MBond2MBond2 Member Posts: 629

    That's where I wonder if arbitrary lengths or patterns can really work?

    Maybe I am being overly cautious, but I hesitate to say that this will work reliably

  • Tim_RobertsTim_Roberts Member - All Emails Posts: 14,716

    The situation you're worried about (which can happen on high-end systems with odd I/O mappings) can be a problem when accessing DEVICE memory addresses, where the bus address is different than the physical address used by the CPU. But when a device needs access to the actual physical memory of the computer, there shouldn't be any remapping.

    In 33 years of PC driver work, I've only encountered one system where physical address did not equal bus address, and that was the very, very strange machines that ran Windows NT 3.51 on an Alpha processor. Imagine, if you will, a system where PCI bus addresses had to be shifted left by 3, so consecutive DWORDs were actually separated by 32 bytes. That's why Alpha support didn't last very long.

    Tim Roberts, [email protected]
    Providenza & Boekelheide, Inc.

  • MBond2MBond2 Member Posts: 629

    Ahh yes, NT 3.51 on Alpha. Those were fun.

  • zviveredzvivered Member Posts: 118

    Hi All,

    Thank you very much for your replies.
    Before having the chance to try the solution, the firmware engineer fixed the problem.

    Best regards,
    Zvika

  • Mark_RoddyMark_Roddy Member - All Emails Posts: 4,708

    Yeah but we still haven't finished arguing about this. :-)

  • Peter_Viscarola_(OSR)Peter_Viscarola_(OSR) Administrator Posts: 9,131

    In 33 years of PC driver work, I've only encountered one system where physical address did not equal bus address

    Yes, historically correct. But "the times, they are a-changing" (I just made that up). IOMMUs are becoming increasingly common... so your Device Bus Logical Address won't BE your Physical Address for the purposes of DMA.

    Peter

    Peter Viscarola
    OSR
    @OSRDrivers

  • Mark_RoddyMark_Roddy Member - All Emails Posts: 4,708

    The times might be a changing (and they are but quite obviously not in a good way) , as long as the driver goes through the documented procedures, the bus logical address is going to meet the device requirements, IOMMU or no IOMMU, and how that happens is a problem only for the HAL.

  • MBond2MBond2 Member Posts: 629

    The OP has landed in the right place in any case - fix the hardware

  • Peter_Viscarola_(OSR)Peter_Viscarola_(OSR) Administrator Posts: 9,131

    as long as the driver goes through the documented procedures, the bus logical address is going to meet the device requirements, IOMMU or no

    IOMMU, and how that happens is a problem only for the HAL

    Absolutely agree.

    After 30 years of banging on the table telling people that Device Bus Logical Addresses are not necessarily Physical Addresses, it's nice to finally have something other than an esoteric example (and a driver verifier mode) that "proves" this.

    Peter

    Peter Viscarola
    OSR
    @OSRDrivers

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. Sign in or register to get started.

Upcoming OSR Seminars
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead!
Kernel Debugging 13-17 May 2024 Live, Online
Developing Minifilters 1-5 Apr 2024 Live, Online
Internals & Software Drivers 11-15 Mar 2024 Live, Online
Writing WDF Drivers 26 Feb - 1 Mar 2024 Live, Online