Some checks failed
Basic Checks / license-check (push) Has been cancelled
Basic Checks / include-check (push) Has been cancelled
Basic Checks / style-check (push) Has been cancelled
Basic Checks / docs-check (push) Has been cancelled
Basic Checks / python-tests (push) Has been cancelled
Basic Checks / pin-validation (push) Has been cancelled
Basic Checks / cmake-checks (push) Has been cancelled
Basic Checks / frozen-tools-check (push) Has been cancelled
Publish or Update docker image for head of branch / prepare-tags (push) Has been cancelled
Release or update docker image for a released mbed-os version / prepare-tags (push) Has been cancelled
Publish or Update docker image for head of branch / build-container (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/amd64) (push) Has been cancelled
Publish or Update docker image for head of branch / test-container (linux/arm64) (push) Has been cancelled
Publish or Update docker image for head of branch / deploy-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / build-container (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/amd64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / test-container (linux/arm64) (push) Has been cancelled
Release or update docker image for a released mbed-os version / deploy-container (push) Has been cancelled
Prune temporary docker images / prune-images (push) Has been cancelled
338 lines
10 KiB
C
338 lines
10 KiB
C
/***************************************************************************//**
|
|
* \file cyhal_dma.c
|
|
*
|
|
* \brief
|
|
* Implements a high level interface for interacting with the Cypress DMA.
|
|
* This implementation abstracts out the chip specific details. If any chip specific
|
|
* functionality is necessary, or performance is critical the low level functions
|
|
* can be used directly.
|
|
*
|
|
********************************************************************************
|
|
* \copyright
|
|
* Copyright 2018-2021 Cypress Semiconductor Corporation
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*******************************************************************************/
|
|
|
|
#include "cyhal_dma.h"
|
|
#include "cyhal_system.h"
|
|
#include "cyhal_hwmgr.h"
|
|
#include "cyhal_interconnect.h"
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
#include "cyhal_dma_dmac.h"
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
#include "cyhal_dma_dw.h"
|
|
#endif
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M4CPUSS_DMA) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
cy_rslt_t cyhal_dma_init_adv(
|
|
cyhal_dma_t *obj, cyhal_dma_src_t *src, cyhal_dma_dest_t *dest, cyhal_source_t *dest_source, uint8_t priority, cyhal_dma_direction_t direction)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
obj->direction = direction;
|
|
obj->callback_data.callback = NULL;
|
|
obj->callback_data.callback_arg = NULL;
|
|
obj->irq_cause = 0;
|
|
obj->source = CYHAL_TRIGGER_CPUSS_ZERO;
|
|
|
|
cy_rslt_t rslt;
|
|
cyhal_source_t *src_trigger = (NULL == src) ? NULL : &src->source;
|
|
cyhal_dest_t *dest_trigger = (NULL == dest) ? NULL : &dest->dest;
|
|
|
|
#if !defined(CY_IP_M4CPUSS_DMAC) && defined(CY_IP_M4CPUSS_DMA)
|
|
/* Only DW available. */
|
|
rslt = _cyhal_dma_dw_init(obj, src_trigger, dest_trigger, priority);
|
|
#elif (defined(CY_IP_M4CPUSS_DMAC) && !defined(CY_IP_M4CPUSS_DMA)) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
/* Only DMAC available. */
|
|
rslt = _cyhal_dma_dmac_init(obj, src_trigger, dest_trigger, priority);
|
|
#else
|
|
/* DMAC is designed with high memory bandwidth for memory to memory
|
|
* transfers so prefer it when direction is MEM2MEM. Otherwise prefer
|
|
* Datawire as it is designed for low latency memory to peripheral or
|
|
* peripheral to memory transfers. Note: Both DMA types can handle any
|
|
* direction value so using a non-ideal DMA type is ok.*/
|
|
if(direction == CYHAL_DMA_DIRECTION_MEM2MEM)
|
|
{
|
|
rslt = _cyhal_dma_dmac_init(obj, src_trigger, dest_trigger, priority);
|
|
/* If no DMAC channels are available fall back on DW. */
|
|
if(CYHAL_HWMGR_RSLT_ERR_NONE_FREE == rslt)
|
|
rslt = _cyhal_dma_dw_init(obj, src_trigger, dest_trigger, priority);
|
|
}
|
|
else
|
|
{
|
|
rslt = _cyhal_dma_dw_init(obj, src_trigger, dest_trigger, priority);
|
|
/* If no DW channels are available fall back on DMAC. */
|
|
if(CYHAL_HWMGR_RSLT_ERR_NONE_FREE == rslt)
|
|
rslt = _cyhal_dma_dmac_init(obj, src_trigger, dest_trigger, priority);
|
|
}
|
|
#endif
|
|
|
|
if (CY_RSLT_SUCCESS == rslt)
|
|
{
|
|
if (NULL != src)
|
|
{
|
|
rslt = cyhal_dma_connect_digital(obj, src->source, src->input);
|
|
obj->source = src->source;
|
|
}
|
|
|
|
if (CY_RSLT_SUCCESS == rslt && NULL != dest)
|
|
{
|
|
rslt = cyhal_dma_enable_output(obj, dest->output, dest_source);
|
|
}
|
|
|
|
// If connection setup failed, free the resources.
|
|
if (CY_RSLT_SUCCESS != rslt)
|
|
{
|
|
cyhal_dma_free(obj);
|
|
}
|
|
}
|
|
|
|
return rslt;
|
|
}
|
|
|
|
void cyhal_dma_free(cyhal_dma_t *obj)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
CY_ASSERT(!cyhal_dma_is_busy(obj));
|
|
|
|
cy_rslt_t rslt;
|
|
// DMA signal enum values don't matter since they are actually the same connection
|
|
rslt = cyhal_dma_disable_output(obj, CYHAL_DMA_OUTPUT_TRIGGER_ALL_ELEMENTS);
|
|
CY_ASSERT(CY_RSLT_SUCCESS == rslt);
|
|
if (CYHAL_TRIGGER_CPUSS_ZERO != obj->source)
|
|
{
|
|
rslt = cyhal_dma_disconnect_digital(obj, obj->source, CYHAL_DMA_INPUT_TRIGGER_ALL_ELEMENTS);
|
|
CY_ASSERT(CY_RSLT_SUCCESS == rslt);
|
|
}
|
|
(void)rslt; // Disable compiler warning in release build
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
_cyhal_dma_dmac_free(obj);
|
|
}
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
_cyhal_dma_dw_free(obj);
|
|
}
|
|
#endif
|
|
|
|
cyhal_hwmgr_free(&obj->resource);
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_configure(cyhal_dma_t *obj, const cyhal_dma_cfg_t *cfg)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_configure(obj, cfg);
|
|
}
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_configure(obj, cfg);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_start_transfer(cyhal_dma_t *obj)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_start_transfer(obj);
|
|
}
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_start_transfer(obj);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
bool cyhal_dma_is_busy(cyhal_dma_t *obj)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_is_busy(obj);
|
|
}
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_is_busy(obj);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
void cyhal_dma_register_callback(cyhal_dma_t *obj, cyhal_dma_event_callback_t callback, void *callback_arg)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
uint32_t saved_intr_status = cyhal_system_critical_section_enter();
|
|
obj->callback_data.callback = (cy_israddress)callback;
|
|
obj->callback_data.callback_arg = callback_arg;
|
|
cyhal_system_critical_section_exit(saved_intr_status);
|
|
}
|
|
|
|
void cyhal_dma_enable_event(cyhal_dma_t *obj, cyhal_dma_event_t event, uint8_t intr_priority, bool enable)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
_cyhal_dma_dmac_enable_event(obj, event, intr_priority, enable);
|
|
}
|
|
#endif
|
|
#if defined(CY_IP_M4CPUSS_DMA)
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
_cyhal_dma_dw_enable_event(obj, event, intr_priority, enable);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_connect_digital(cyhal_dma_t *obj, cyhal_source_t source, cyhal_dma_input_t input)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_connect_digital(obj, source, input);
|
|
}
|
|
#endif
|
|
#ifdef CY_IP_M4CPUSS_DMA
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_connect_digital(obj, source, input);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_enable_output(cyhal_dma_t *obj, cyhal_dma_output_t output, cyhal_source_t *source)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_enable_output(obj, output, source);
|
|
}
|
|
#endif
|
|
#ifdef CY_IP_M4CPUSS_DMA
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_enable_output(obj, output, source);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_disconnect_digital(cyhal_dma_t *obj, cyhal_source_t source, cyhal_dma_input_t input)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_disconnect_digital(obj, source, input);
|
|
}
|
|
#endif
|
|
#ifdef CY_IP_M4CPUSS_DMA
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_disconnect_digital(obj, source, input);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
cy_rslt_t cyhal_dma_disable_output(cyhal_dma_t *obj, cyhal_dma_output_t output)
|
|
{
|
|
CY_ASSERT(NULL != obj);
|
|
|
|
#if defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M0S8CPUSSV3_DMAC)
|
|
if(obj->resource.type == CYHAL_RSC_DMA)
|
|
{
|
|
return _cyhal_dma_dmac_disable_output(obj, output);
|
|
}
|
|
#endif
|
|
#ifdef CY_IP_M4CPUSS_DMA
|
|
if(obj->resource.type == CYHAL_RSC_DW)
|
|
{
|
|
return _cyhal_dma_dw_disable_output(obj, output);
|
|
}
|
|
#endif
|
|
|
|
/* Control should never reach here but return value anyway to appease
|
|
* compilers */
|
|
CY_ASSERT(false);
|
|
return CYHAL_DMA_RSLT_FATAL_UNSUPPORTED_HARDWARE;
|
|
}
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* defined(CY_IP_M4CPUSS_DMAC) || defined(CY_IP_M4CPUSS_DMA) || defined(CY_IP_M0S8CPUSSV3_DMAC) */
|