![]() |
MAX32655 Peripheral Driver API
Peripheral Driver API for the MAX32655
|
Modules | |
DMA_Registers | |
Data Structures | |
struct | mxc_dma_config_t |
struct | mxc_dma_srcdst_t |
struct | mxc_dma_adv_config_t |
Typedefs | |
typedef void(* | mxc_dma_complete_cb_t) (void *dest) |
typedef mxc_dma_srcdst_t(* | mxc_dma_trans_chain_t) (mxc_dma_srcdst_t dest) |
Enumerations | |
enum | mxc_dma_priority_t |
enum | mxc_dma_reqsel_t |
enum | mxc_dma_prescale_t |
enum | mxc_dma_timeout_t |
enum | mxc_dma_width_t |
struct mxc_dma_config_t |
The basic configuration information to set up a DMA channel and prepare it for transfers.
Data Fields | |
int | ch |
mxc_dma_reqsel_t | reqsel |
mxc_dma_width_t | srcwd |
mxc_dma_width_t | dstwd |
int | srcinc_en |
int | dstinc_en |
struct mxc_dma_srcdst_t |
struct mxc_dma_adv_config_t |
The advanced configuration options, these are optional but could be needed in cases where multiple DMA channels are running concurrently or DMA is being used with low bandwidth peripherals.
Data Fields | |
int | ch |
mxc_dma_priority_t | prio |
unsigned int | reqwait_en |
mxc_dma_timeout_t | tosel |
mxc_dma_prescale_t | pssel |
unsigned int | burst_size |
typedef void(* mxc_dma_complete_cb_t) (void *dest) |
The callback called on completion of a DMA_MemCpy() transfer.
dest | Pointer to the destination of the copy |
typedef mxc_dma_srcdst_t(* mxc_dma_trans_chain_t) (mxc_dma_srcdst_t dest) |
The callback called on completion of a transfer,.
trans | Struct of the completed transfer |
enum mxc_dma_prescale_t |
enum mxc_dma_priority_t |
enum mxc_dma_reqsel_t |
DMA request select.
enum mxc_dma_timeout_t |
Enumeration for the DMA timeout value.
enum mxc_dma_width_t |
int MXC_DMA_AcquireChannel | ( | void | ) |
Request DMA channel.
Returns a handle to the first free DMA channel, which can be used via API calls or direct access to channel registers using the MXC_DMA_GetCHRegs(int ch) function.
int MXC_DMA_AdvConfigChannel | ( | mxc_dma_adv_config_t | advConfig | ) |
Configure the DMA channel with more advanced parameters.
advConfig | Struct containing advanced DMA parameters |
int MXC_DMA_ChannelClearFlags | ( | int | ch, |
int | flags | ||
) |
Clear channel interrupt flags.
ch | DMA channel to clear the interrupt flag for. |
flags | The flags to clear |
int MXC_DMA_ChannelDisableInt | ( | int | ch, |
int | flags | ||
) |
Disable channel interrupt.
ch | DMA channel to clear flags for. |
flags | The flags to disable |
int MXC_DMA_ChannelEnableInt | ( | int | ch, |
int | flags | ||
) |
Enable channel interrupt.
ch | DMA channel to enable interrupts for. |
flags | The flags to enable |
int MXC_DMA_ChannelGetFlags | ( | int | ch | ) |
Read channel interrupt flags.
ch | DMA channel to get interrupt status from. |
int MXC_DMA_ConfigChannel | ( | mxc_dma_config_t | config, |
mxc_dma_srcdst_t | srcdst | ||
) |
Configure the DMA channel.
Configures the channel, which was previously requested by MXC_DMA_Getchannel()
config | Struct containing DMA configuration parameters |
srcdst | Struct containing pointers and length of DMA operation |
int MXC_DMA_DisableInt | ( | int | ch | ) |
Disable channel interrupt.
ch | DMA channel to disable interrupts for. |
int MXC_DMA_DoTransfer | ( | mxc_dma_config_t | config, |
mxc_dma_srcdst_t | firstSrcDst, | ||
mxc_dma_trans_chain_t | callback | ||
) |
Performs a memcpy, using DMA, optionally asynchronous.
config | The channel config struct |
firstSrcDst | The source, destination, and count for the first transfer |
callback | function is called when transfer is complete |
int MXC_DMA_EnableInt | ( | int | ch | ) |
Enable channel interrupt.
ch | DMA channel to enable interrupts for. |
mxc_dma_ch_regs_t * MXC_DMA_GetCHRegs | ( | int | ch | ) |
Get a pointer to the DMA channel registers.
ch | DMA channel |
int MXC_DMA_GetSrcDst | ( | mxc_dma_srcdst_t * | srcdst | ) |
Get channel source, destination, and count for transfer.
srcdst | Pointer to struct with the correct channel number |
int MXC_DMA_GetSrcReload | ( | mxc_dma_srcdst_t * | srcdstReload | ) |
Get channel reload source, destination, and count for transfer.
srcdstReload | Pointer to struct with the correct channel number |
void MXC_DMA_Handler | ( | void | ) |
Interrupt handler function.
Call this function as the ISR for each DMA channel under driver control. Interrupt flags for channel ch will be automatically cleared before return.
int MXC_DMA_Init | ( | void | ) |
Initialize DMA resources.
This initialization is required before using the DMA driver functions.
int MXC_DMA_MemCpy | ( | void * | dest, |
void * | src, | ||
int | len, | ||
mxc_dma_complete_cb_t | callback | ||
) |
Performs a memcpy, using DMA, optionally asynchronous.
dest | pointer to destination memory |
src | pointer to source memory |
len | number of bytes to copy |
callback | function to call when transfer is complete |
int MXC_DMA_ReleaseChannel | ( | int | ch | ) |
Release DMA channel.
Stops any DMA operation on the channel and returns it to the pool of free channels.
ch | DMA channel to release |
int MXC_DMA_SetCallback | ( | int | ch, |
void(*)(int, int) | callback | ||
) |
Set channel interrupt callback.
ch | DMA channel |
callback | Pointer to a function to call when the channel interrupt flag is set and interrupts are enabled or when DMA is shutdown by the driver. |
Configures the channel interrupt callback. The callback
function is called for two conditions:
ch
indicates the channel that generated the callback, reason
is either E_NO_ERROR for a DMA interrupt or E_SHUTDOWN if the DMA is being shutdown.int MXC_DMA_SetChannelInterruptEn | ( | int | ch, |
bool | chdis, | ||
bool | ctz | ||
) |
Set channel interrupt.
ch | DMA channel |
chdis | Enable channel complete interrupt |
ctz | Enable channel count to zero interrupt. |
int MXC_DMA_SetSrcDst | ( | mxc_dma_srcdst_t | srcdst | ) |
Set channel source, destination, and count for the transfer.
srcdst | Struct containing the channel, source, destination, and count for the channel |
int MXC_DMA_SetSrcReload | ( | mxc_dma_srcdst_t | srcdstReload | ) |
Set channel reload source, destination, and count for the transfer.
srcdstReload | Struct containing the channel, source, destination, and count for the channel |
int MXC_DMA_Start | ( | int | ch | ) |
Start transfer.
ch | DMA channel |
Start the DMA channel transfer, assumes that MXC_DMA_SetSrcDstCnt() has been called beforehand.
int MXC_DMA_Stop | ( | int | ch | ) |
Stop DMA transfer, irrespective of status (complete or in-progress)
ch | DMA channel |