Should the eDMA API mode Non-transactional (API functions) support channel linking?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Should the eDMA API mode Non-transactional (API functions) support channel linking?

Jump to solution
1,269 Views
mitterha
Senior Contributor I

Hello martinstano

I have another question to the DMA.

When using the Channel API mode Non-transactional (API functions) with checkbox Channel link initialization, Enable transfer configuration and Initialize transfer enabled the following lines of code will be included in peripherals.c:

/* DMA channel linking initialization */
  EDMA_SetChannelLink(DMA0_DMA_BASEADDR, DMA0_CH0_DMA_CHANNEL, kEDMA_MinorLink, DMA0_CH1_DMA_CHANNEL);
  /* DMA0 transfer initialization */
  EDMA_SetTransferConfig(DMA0_DMA_BASEADDR, DMA0_CH0_DMA_CHANNEL, &DMA0_CH0_transfer_config, NULL);

First function will set the ELINK and channel bits in CITER and BITER registers.

The second function will set up the transfer but overwrite the complete CITER and BITER settings for the channel link

// FROM FILE fsl_edma.c function EDMA_TcdSetTransferConfig

/* Current major iteration count */
    tcd->CITER = (uint16_t)config->majorLoopCounts;

/* Starting major iteration count */
    tcd->BITER = (uint16_t)config->majorLoopCounts;

Is the Channel API mode Non-transactional (API functions) not meant to be used with channel linking?

If yes it should be greyed out.

I think a possible workaround would be to to first set up the Transfer configuration and then call SetChannelLink (swap the above function calls in peripherals.c).

I have attached the MEX file to this post.

Kind regards,

Stefan

0 Kudos
1 Solution
1,121 Views
martin_stano
NXP Employee
NXP Employee

Hi,

the stated issue is resolved in hotfix posted in this thread: https://community.nxp.com/thread/524259

Best Regards

Martin

View solution in original post

2 Replies
1,122 Views
martin_stano
NXP Employee
NXP Employee

Hi,

the stated issue is resolved in hotfix posted in this thread: https://community.nxp.com/thread/524259

Best Regards

Martin

1,121 Views
martin_stano
NXP Employee
NXP Employee

Hi!

Thank you for your feedback, as you mentioned, there might be problem with function order call. I will check all the API functions and prepare the update of the component.

Best Regards

Martin

0 Kudos