[ Previous | Next | Contents | Home | Search ]
AIX Version 4.3 Kernel and Subsystems Technical Reference, Volume 1

xmemdma64 Kernel Service

Purpose

Prepares a page for direct memory access (DMA) I/O or processes a page after DMA I/O is complete.

Syntax

#include <sys/types.h>
#include <sys/errno.h>
#include <sys/xmem.h>
unsigned long long xmemdma64 (
struct xmem *dp,
caddr_t xaddr,>
int flags)

Parameters

dp Specifies a cross-memory descriptor.
xaddr Identifies the address specifying the page for transfer.
flags Specifies whether to prepare a page for DMA I/O or process it after DMA I/O is complete. Possible values are:
XMEM_HIDE Prepares the page for DMA I/O. If cache-inconsistent, then the data cache is flushed, the memory page is hidden, and the real page address is returned. If cache-consistent, then the modified bit is set and the real address of the page is returned.
XMEM_UNHIDE Processes the page after DMA I/O. Also, this flag reveals the page, readies any processes waiting on the page, and sets the modified bit accordingly.
XMEM_ACC_CHK Performs access checking on the page. When this flag is set, the page protection attributes are verified.
XMEM_WRITE_ONLY Marks the intended transfer as outbound only. This flag is used with XMEM_ACC_CHK to indicate that read-only access to the page is sufficient.

Description

The xmemdma64 kernel service operates on the page specified by the xaddr parameter in the region specified by the cross-memory descriptor. If the cross-memory descriptor is for the kernel, the xaddr parameter specifies a kernel address. Otherwise, the xaddr parameter specifies the offset in the region described in the cross-memory descriptor.

The xmemdma64 kernel service is provided for machines that have processor-memory caches, but that do not perform DMA I/O through the cache. Device handlers for Micro Channel DMA devices use the d_master service and d_complete kernel service instead of the xmemdma64 kernel service.

If the flag parameter indicates XMEM_HIDE (that is, XMEM_UNHIDE is not set) and this is the first hide for the page, the xmemdma64 kernel service prepares the page for DMA I/O by flushing the cache and making the page invalid. When the XMEM_UNHIDE bit is set and this is the last unhide for the page, the following events take place:

  1. The page is made valid.

    If the page is not in pager I/O state:

  2. Any processes waiting on the page are readied.

  3. The modified bit for the page is set unless the page has a read-only storage key.

The page is made not valid during DMA operations so that it is not addressable with any virtual address. This prevents any process from reading or loading any part of the page into the cache during the DMA operation.

The page specified must be in memory and must be pinned.

If the XMEM_ACC_CHK bit is set, then the xmemdma64 kernel service also verifies access permissions to the page. If the page access is read-only, then the XMEM_WRITE_ONLY bit must be set in the flag parameter.

Note: On the PowerPC platform, which is cache-consistent, the xmemdma64 kernel service does not hide or reveal the page nor does it perform any cache flushing. Instead, on the PowerPC platform, the service's primary function is for real-address translation.

Execution Environment

The xmemdma64 kernel service can be called from either the process or interrupt environment.

Return Values

On successful completion, the xmemdma64 service returns the real address corresponding to the xaddr and xp parameters.

Error Codes

The xmemdma64 kernel service returns a value of XMEM_FAIL if one of the following are true:

Implementation Specifics

The xmemdma64 kernel service is part of Base Operating System (BOS) Runtime.

Related Information

Cross Memory Kernel Services and Memory Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.

Understanding Direct Memory Access (DMA) Transfer.


[ Previous | Next | Contents | Home | Search ]