2.8  WD_CardRegister

PURPOSE
• Maps the physical memory ranges to be accessed by kernel-mode processes and user-mode applications.
• Checks whether an I/O or Memory resource was previously exclusively registered.
• Saves data regarding the interrupt request (IRQ) number and the interrupt type in internal data structures; this data will later be used by InterruptEnable [2.18] and/or WD_IntEnable [3.2].
PROTOTYPE
DWORD WD_CardRegister(
    HANDLE hWD,
    WD_CARD_REGISTER *pCardReg);
PARAMETERS
NameTypeInput/Output
hWDHANDLEInput
pCardRegWD_CARD_REGISTER* 
• CardWD_CARD 
 * dwItemsDWORDInput
 * ItemWD_ITEMS[WD_CARD_ITEMS] 
   • itemDWORDInput
   • fNotSharableDWORDInput
   • dwReservedDWORDN/A
   • dwOptionsDWORDInput
   • Iunion 
    * Memstruct 
     • dwPhysicalAddrDWORDInput
     • dwBytesDWORDInput
     • dwTransAddrDWORDOutput
     • dwUserDirectAddrDWORDOutput
     • dwCpuPhysicalAddrDWORDOutput
     • dwBarDWORDInput
    * IOstruct 
     • dwAddrKPTRInput
     • dwBytesDWORDInput
     • dwBarDWORDInput
    * Intstruct 
     • dwInterruptDWORDInput
     • dwOptionsDWORDInput
     • hInterruptDWORDOutput
    * BusWD_BUS 
     • dwBusTypeWD_BUS_TYPEInput
     • dwBusNumDWORDInput
     • dwSlotFuncDWORDInput
    * ValstructN/A
• fCheckLockOnlyDWORDInput
• hCardDWORDOutput
• dwOptionsDWORDInput
• cNameCHAR[32]Input
• cDescriptionCHAR[100]Input
DESCRIPTION
NameDescription
hWDHandle to WinDriver's kernel-mode driver as received from WD_Open [5.2]
pCardRegPointer to a card registration information structure:
• CardCard information structure. For PCI and PCMCIA devices it is recommended to pass the card structure received from a previous call to WD_PciGetCardInfo [2.3] / WD_PcmciaGetCardInfo [2.6], respectively (see first remark below.
 * dwItemsNumber of items detected on the card
 * ItemCard items information structure:
   • itemType of item. Can be ITEM_MEMORY, ITEM_IO, ITEM_INTERRUPT or ITEM_BUS.
   • fNotSharableIf TRUE, only one application at a time can access the mapped memory range, or monitor this card's interrupts
   • dwOptionsCan be set to a combination of any of the following WD_ITEM_OPTIONS flags:
WD_ITEM_DO_NOT_MAP_KERNEL: Avoid mapping a memory address range to the kernel virtual address space and map the memory only to the user-mode virtual address space For more information, see the Remarks to this function.
NOTE: This flag is applicable only to memory items.
WD_ITEM_ALLOW_CACHE (Windows and Windows CE): Map the item's physical memory (I.Mem.dwPhysicalAddr) as cached.
NOTE: This flag is applicable only to memory items that pertain to the host's RAM, as opposed to local memory on the card.
   • ISpecific data according to the item type:
    * MemDescribes a memory item (item = ITEM_MEMORY):
     • dwPhysicalAddrFirst address of the physical memory range
     • dwBytesLength (in bytes) of the memory range
     • dwTransAddrKernel-mode mapping of the memory range's physical base address (dwPhysicalAddr).
This address should be used when setting the memory address in calls to WD_Transfer [2.11] or WD_MultiTransfer [2.12] or when accessing memory directly from a Kernel PlugIn driver.
     • dwUserDirectAddrUser-mode mapping of the memory range's physical base address (dwPhysicalAddr).
This address should be used for accessing a memory address directly from a user-mode process.
     • dwCpuPhysicalAddrTranslation of the card's physical memory base address (dwPhysicalAddr) from bus-specific values to CPU values
     • dwBarBase Address Register number of PCI card
    * IODescribes an I/O item (item = ITEM_IO):
     • dwAddrFirst address of the I/O range
     • dwBytesLength of the I/O range, in bytes
     • dwBarBase Address Register (BAR) number for the I/O range
    * Int Describes an interrupt item (item = ITEM_INTERRUPT):
     • dwInterruptPhysical interrupt request (IRQ) number
     • dwOptions Interrupt options bit-mask, which can consist of a combination of any of the following flags:
Interrupt type flags:
NOTE: In the call to WD_CardRegister the interrupt type flags are appliable only to ISA devices. For Plug-and-Play hardware (PCI/PCMCIA) the function retrieves the supported interrupt types independently.
INTERRUPT_LEVEL_SENSITIVE – indicates that the device supports level-sensitive interrupts.
INTERRUPT_LATCHED – indicates that the device supports legacy edge-triggered interrupts.
The value of this flag is zero, therefore it is applicable only when no other interrupt flag is set.
Miscellaneous interrupt flags:
INTERRUPT_CE_INT_ID – On Windows CE
(unlike other operating systems), there is an abstraction of the physical interrupt number to a logical one. Setting this bit will instruct WinDriver to refer to the dwInterrupt value as a logical interrupt number and convert it to a physical interrupt number.
     • hInterrupt An interrupt handle to be used in calls to InterruptEnable [2.18] or WD_IntEnable [3.2].
    * Bus Describes a bus item (item = ITEM_BUS):
     • dwBusType The card's bus type. Can be any of the following WD_BUS_TYPE enumeration values:
WD_BUS_PCI – PCI bus
WD_BUS_PCMCIA – PCMCIA bus
WD_BUS_ISA – ISA bus
WD_BUS_EISA – EISA bus
     • dwBusNumBus number
     • dwSlotFunc A combination of the card's bus slot/socket and function numbers: the lower three bits represent the function number and the remaining bits represent the slot/socket number. For example: a value of 0x80 (<=> 10000000 binary) corresponds to a function number of 0 (lower 3 bits: 000) and a slot/socket number of 0x10 (remaining bits: 10000).
• fCheckLockOnly Set to TRUE to check if the defined card resources can be locked (in which case hCard will be set to 1), or whether they are already locked for exclusive use. When this flag is set to TRUE the function doesn't actually locking the specified resources.
• hCard Handle to the card resources defined in the Card field. This handle should later be passed to WD_CardUnregister [2.10] in order to free the resources. If the card registration fails, this field is set to 0.
When fCheckLockOnly is set to TRUE, hCard is set to 1 if the card's resources can be be locked successfully (i.e. the resources aren't currently locked for exclusive use), or 0 otherwise.
• dwOptions Should always be set to zero
• cName Card name (optional)
• cDescriptionCard description (optional)
RETURN VALUE
Returns WD_STATUS_SUCCESS(0) on success, or an appropriate error code otherwise [A].
REMARKS
EXAMPLE
WD_CARD_REGISTER cardReg;
BZERO(cardReg);
cardReg.Card.dwItems = 1;
cardReg.Card.Item[0].item = ITEM_IO;
cardReg.Card.Item[0].fNotSharable = TRUE;
cardReg.Card.Item[0].I.IO.dwAddr = 0x378;
cardReg.Card.Item[0].I.IO.dwBytes = 8;
WD_CardRegister(hWD, &cardReg);
if (cardReg.hCard == 0)
{
    printf("Failed locking device\n");
    return FALSE;
}