RTEMS
5.0.0
|
Enhanced Direct Memory Access (eDMA). More...
Go to the source code of this file.
Data Structures | |
struct | edma_channel_context |
Typedefs | |
typedef struct edma_channel_context | edma_channel_context |
Functions | |
void | mpc55xx_edma_init (void) |
rtems_status_code | mpc55xx_edma_obtain_channel_by_tcd (volatile struct tcd_t *edma_tcd) |
Obtains an eDMA channel. More... | |
void | mpc55xx_edma_release_channel_by_tcd (volatile struct tcd_t *edma_tcd) |
rtems_status_code | mpc55xx_edma_obtain_channel (edma_channel_context *ctx, unsigned irq_priority) |
Obtains an eDMA channel and registers the channel context. More... | |
void | mpc55xx_edma_release_channel (edma_channel_context *ctx) |
void | mpc55xx_edma_copy (volatile struct tcd_t *edma_tcd, const struct tcd_t *source_tcd) |
Copies a source TCD to an eDMA TCD. More... | |
void | mpc55xx_edma_copy_and_enable_hardware_requests (volatile struct tcd_t *edma_tcd, const struct tcd_t *source_tcd) |
Copies a source TCD to an eDMA TCD and enables hardware requests. More... | |
void | mpc55xx_edma_sg_link (volatile struct tcd_t *edma_tcd, const struct tcd_t *source_tcd) |
Enhanced Direct Memory Access (eDMA).
void mpc55xx_edma_copy | ( | volatile struct tcd_t * | edma_tcd, |
const struct tcd_t * | source_tcd | ||
) |
Copies a source TCD to an eDMA TCD.
The DONE flag of the eDMA TCD is cleared before the actual copy operation. This enables the setting of channel link or scatter/gather options.
This function can be used to start the channel if the START flags is set in the source TCD.
void mpc55xx_edma_copy_and_enable_hardware_requests | ( | volatile struct tcd_t * | edma_tcd, |
const struct tcd_t * | source_tcd | ||
) |
Copies a source TCD to an eDMA TCD and enables hardware requests.
The DONE flag of the eDMA TCD is cleared before the actual copy operation. This enables the setting of channel link or scatter/gather options.
rtems_status_code mpc55xx_edma_obtain_channel | ( | edma_channel_context * | ctx, |
unsigned | irq_priority | ||
) |
Obtains an eDMA channel and registers the channel context.
The done handler of the channel context will be called
An error status value not equal to zero indicates an error.
RTEMS_SUCCESSFUL | Successful operation. |
RTEMS_RESOURCE_IN_USE | The channel is already in use. |
RTEMS_IO_ERROR | Unable to install interrupt handler for this channel. |
rtems_status_code mpc55xx_edma_obtain_channel_by_tcd | ( | volatile struct tcd_t * | edma_tcd | ) |
Obtains an eDMA channel.
RTEMS_SUCCESSFUL | Successful operation. |
RTEMS_RESOURCE_IN_USE | The channel is already in use. |