Add missing function to dmae/mem.h: DMAEFillMemPhys (#129)

- add function DMAEFillMemPhys
This commit is contained in:
Maschell 2020-05-07 14:34:57 +02:00 committed by GitHub
parent bab17a41c3
commit 80012b48bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,26 @@ DMAETimeStamp
DMAEFillMem(void *dst,
uint32_t val,
uint32_t wordCount);
/**
* Starts a DMAE fill operation for a physical address.
*
* \param dst
* Pointer to the destination buffer (physical address).
*
* \param val
* The value to fill the destination buffer.
*
* \param wordCount
* Number of 32 bit words to fill.
*
* \return
* DMAE operations queue timestamp.
*/
DMAETimeStamp
DMAEFillMemPhys(void *dst,
uint32_t val,
uint32_t wordCount);
#ifdef __cplusplus
}