NdisImmediateWritePortUlong function
Note NDIS 5. x has been deprecated and is superseded by NDIS 6. x. For new NDIS driver development, see Network Drivers Starting with Windows Vista. For information about porting NDIS 5. x drivers to NDIS 6. x, see Porting NDIS 5.x Drivers to NDIS 6.0.
NdisImmediateWritePortUlong writes a ULONG to a given bus-relative I/O port.
Syntax
VOID NdisImmediateWritePortUlong(
_In_ NDIS_HANDLE WrapperConfigurationContext,
_In_ ULONG Port,
_In_ ULONG Data
);
Parameters
WrapperConfigurationContext [in]
Specifies the handle input to MiniportInitialize.Port [in]
Specifies the bus-relative I/O port address.Data [in]
Specifies the caller-supplied ULONG value to write to the I/O port.
Return value
None
Remarks
NdisImmediateWritePortUlong determines how the host accesses the given I/O port, maps the bus-relative port address, and then writes the given ULONG to the device.
A miniport driver can call NdisImmediateWritePortUlong during initialization to write data to a device I/O port when that driver has not yet called NdisMRegisterIoPortRange to obtain mapped device memory ranges. After its call to NdisMRegisterIoPortRange, the driver uses the faster NdisRawXxx functions to communicate with its NIC.
A miniport driver should not call NdisImmediateWritePortUlong in a Plug and Play environment.
Requirements
Target platform |
Universal |
Version |
Not supported for NDIS 6.0 drivers in Windows Vista. Supported for NDIS 5.1 drivers in Windows Vista and Windows XP. Windows XP supports this function for legacy drivers. However, the Windows XP DDK will not build an NDIS driver that calls this function. Drivers should call NdisWritePortUlonginstead. |
Header |
Ndis.h (include Ndis.h) |
Library |
Ndis.lib |
IRQL |
PASSIVE_LEVEL |
See also