|
int | no_os_dma_init (struct no_os_dma_desc **desc, struct no_os_dma_init_param *param) |
| Initialize the DMA controller. More...
|
|
int | no_os_dma_remove (struct no_os_dma_desc *desc) |
| Remove resources allocated for the DMA controller. More...
|
|
int | no_os_dma_acquire_channel (struct no_os_dma_desc *desc, struct no_os_dma_ch **channel) |
| Get a free DMA channel. More...
|
|
int | no_os_dma_release_channel (struct no_os_dma_desc *desc, struct no_os_dma_ch *channel) |
| Free DMA channel. More...
|
|
int | no_os_dma_config_xfer (struct no_os_dma_desc *desc, struct no_os_dma_xfer_desc *xfer, uint32_t len, struct no_os_dma_ch *ch) |
| Acquire a channel and configure the list of transfers. More...
|
|
int | no_os_dma_chan_lock (struct no_os_dma_ch *ch) |
| Lock a DMA channel, so it won't be acquired even if it's free. More...
|
|
int | no_os_dma_chan_unlock (struct no_os_dma_ch *ch) |
| Unlock a DMA channel, marking it available for acquisition. More...
|
|
int | no_os_dma_xfer_start (struct no_os_dma_desc *desc, struct no_os_dma_ch *ch) |
| Acquire a channel and configure the list of transfers. More...
|
|
int | no_os_dma_xfer_abort (struct no_os_dma_desc *desc, struct no_os_dma_ch *ch) |
| Abort the ongoing and any other future transfers scheduled for a channel. More...
|
|
bool | no_os_dma_is_completed (struct no_os_dma_desc *desc, struct no_os_dma_ch *ch) |
| Get the state of a DMA channel (free or not). More...
|
|
bool | no_os_dma_in_progress (struct no_os_dma_desc *desc, struct no_os_dma_ch *ch) |
| Whether or not there is a transfer in progress on a specific channel. More...
|
|
Platform independent implementation for the DMA API.
- Author
- Ciprian Regus (cipri.nosp@m.an.r.nosp@m.egus@.nosp@m.anal.nosp@m.og.co.nosp@m.m)
Copyright 2024(c) Analog Devices, Inc.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of Analog Devices, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.