Prepares a page for direct memory access (DMA) I/O or processes a page after DMA I/O is complete.
#include <sys/types.h> #include <sys/errno.h> #include <sys/xmem.h>
int xmemdma (xp, xaddr, flag) struct xmem *xp; caddr_t xaddr; int flag;
The xmemdma 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 xmemdma 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 xmemdma 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 xmemdma 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:
If the page is not in pager I/O state:
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 xmemdma 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.
Notes:
The xmemdma kernel service can be called from either the process or interrupt environment.
On successful completion, the xmemdma service returns the real address corresponding to the xaddr and xp parameters.
The xmemdma kernel service returns a value of XMEM_FAIL if one of the following are true:
The xmemdma kernel service is part of Base Operating System (BOS) Runtime.
Cross Memory Kernel Services and Memory Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.
Understanding Direct Memory Access (DMA) Transfer.