gpt4 book ai didi

windows - WDF 中的 MSI-X 中断

转载 作者:可可西里 更新时间:2023-11-01 11:56:09 25 4
gpt4 key购买 nike

我在使用 WDF/KMDF 编写的 Windows 总线驱动程序中实现 MSI-X 中断时遇到了很多麻烦。我读过 MSDN documentation ,那里并没有太多有用的信息。我的理解是它应该真的只是“工作”。

我已经更改了我们的驱动程序的 INF 文件以添加适当的注册表项,并确认它们被设置为在安装时正常工作。我正在正确查询 PCI 配置空间并确定是否支持 MSI-X 中断。

问题是,一旦我有了这些信息,我就不知道如何更改我的代码来专门将中断设置为 MSI-X。我执行标准调用来配置 WDF_INTERRUPT_CONFIG_INIT 结构并调用 WdfInterruptCreate,但创建的中断不是消息信号,我不知道需要做什么才能真正实现这一点。

有没有WDF版的步骤here ,或者我应该只执行标准的 WDFINTERRUPT 创建步骤 here

有没有人有这方面的经验?谁能提供源码例子?

最佳答案

上周我一直在为类似的事情苦苦挣扎。我的应用程序略有不同,因为我试图让普通的 MSI 中断而不是 MSI-X 中断工作。但我以几乎相同的方式使用 WDF 框架。

我知道您在 2013 年 4 月左右发布了您的原始问题,但没有更新。你有没有解决你原来的问题?如果是这样,我希望看到您自己的解决方案。

在我的 WDF 驱动程序中,我正在映射传入的硬件资源列表并使用 WdfCmResourceListGetDescriptor() 函数对其进行解析,以检查 WDFCMRESLIST 列表中的每个 PCM_PARTIAL_RESOURCE_DESCRIPTOR 项。我能够获得单个 CmResourceTypeInterrupt 描述符,但它始终用于遗留中断而不是 MSI 中断。我的设备支持 MSI。我不明白为什么 MSI 描述符不在资源列表中,即使按照您的描述在我的 .inf 文件中设置了额外的注册表项也是如此。

原来我的 .inf 文件中有错字。我忘记在我的设备安装部分附加“.HW”后缀。添加此后缀允许总线管理器修改设备中的 pcie 配置地址并创建适当的 MSI 中断资源描述符,该描述符必须由驱动程序挂接。

[Standard.NT$ARCH$]
%tdvr.DeviceDesc%=tdvr_Device, PCI\VEN_104C&DEV_B800

[tdvr_Device.NT]
CopyFiles=Drivers_Dir

[tdvr_Device.NT.HW]
AddReg=MSI_Interrupts

[Drivers_Dir]
tdvr.sys

;http://msdn.microsoft.com/en-us/library/windows/hardware/ff544246(v=vs.85).aspx
;To receive message-signaled interrupts (MSIs), a driver's INF file must enable MSIs in the
;registry during installation. Use the Interrupt Management\MessageSignaledInterruptProperties
;subkey of the device's hardware key to enable MSI support.

[MSI_Interrupts]
HKR,Interrupt Management,,0x00000010
HKR,Interrupt Management\MessageSignaledInterruptProperties,,0x00000010
HKR,Interrupt Management\MessageSignaledInterruptProperties,MSISupported,0x00010001,1

当在资源列表中找到 MSI 中断资源描述符时(例如在 evtMapHWResources 回调中),该描述符将用作 WdfInterruptCreate() 函数的输入。这里的“tdvr”前缀是为了我自己的驱动程序命名约定。

NTSTATUS
tdvrConfigureInterrupts(
_Inout_ PDEVICE_CONTEXT deviceContext,
_In_ PCM_PARTIAL_RESOURCE_DESCRIPTOR interruptDescRaw,
_In_ PCM_PARTIAL_RESOURCE_DESCRIPTOR interruptDescTranslated
)
{
NTSTATUS status;
PAGED_CODE();
FuncEntry();

// What kind of interrupt has been provided?
if (CM_RESOURCE_INTERRUPT_MESSAGE & interruptDescTranslated->Flags)
{
TraceInterrupt(TRACE_LEVEL_INFORMATION,
"Message Interrupt level 0x%0x, Vector 0x%0x, MessageCount %u\n"
,interruptDescTranslated->u.MessageInterrupt.Translated.Level
,interruptDescTranslated->u.MessageInterrupt.Translated.Vector
,interruptDescTranslated->u.MessageInterrupt.Raw.MessageCount
);
}
else
{
TraceInterrupt(TRACE_LEVEL_INFORMATION,
"Legacy Interrupt level: 0x%0x, Vector: 0x%0x\n"
,interruptDescTranslated->u.Interrupt.Level
,interruptDescTranslated->u.Interrupt.Vector
);
}

//
// Create WDFINTERRUPT object.
//
WDF_INTERRUPT_CONFIG interruptConfig;
WDF_INTERRUPT_CONFIG_INIT(
&interruptConfig,
tdvrEvtInterruptIsr,
tdvrEvtInterruptDpc
);

// Each interrupt has some context data
WDF_OBJECT_ATTRIBUTES interruptAttributes;
WDF_OBJECT_ATTRIBUTES_INIT_CONTEXT_TYPE(
&interruptAttributes,
INTERRUPT_CONTEXT
);

//
// These first two callbacks will be called at DIRQL. Their job is to
// enable and disable interrupts.
//
interruptConfig.EvtInterruptEnable = tdvrEvtInterruptEnable;
interruptConfig.EvtInterruptDisable = tdvrEvtInterruptDisable;

// If the driver calls WdfInterruptCreate from EvtDriverDeviceAdd, the InterruptRaw and
// InterruptTranslated members of the WDF_INTERRUPT_CONFIG structure must be NULL.
// the driver calls WdfInterruptCreate from EvtDevicePrepareHardware, these members must both be valid.
interruptConfig.InterruptTranslated = interruptDescTranslated;
interruptConfig.InterruptRaw = interruptDescRaw;

// Our driver must call WdfInterruptCreate once for each interrupt vector that its device requires.
// If the device supports message-signaled interrupts (MSI), the driver must create an interrupt object
// for each message that the device can support.
status = WdfInterruptCreate(
deviceContext->WdfDevice,
&interruptConfig,
&interruptAttributes,
&deviceContext->WdfInterrupt
);

if (!NT_SUCCESS(status))
{
TraceInterrupt(TRACE_LEVEL_ERROR, "WdfInterruptCreate FAILED: %!STATUS!\n", status);
}
else
{
PINTERRUPT_CONTEXT interruptContext = InterruptGetContext(deviceContext->WdfInterrupt);
// do whatever with context info
}

FuncExit();
return status;
}

就像我说的那样,希望你现在已经弄清楚了这一切,但我想我还是会发布一些东西来做出贡献。

关于windows - WDF 中的 MSI-X 中断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16115434/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com