mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
	
	
		
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
		
		
			
		
	
	
			103 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| 
								 | 
							
								/*
							 | 
						||
| 
								 | 
							
								 * SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * SPDX-License-Identifier: Apache-2.0
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#pragma once
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#include "esp_err.h"
							 | 
						||
| 
								 | 
							
								#include "esp_intr_alloc.h"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#ifdef __cplusplus
							 | 
						||
| 
								 | 
							
								extern "C" {
							 | 
						||
| 
								 | 
							
								#endif
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#define DAC_DMA_EOF_INTR        0x01
							 | 
						||
| 
								 | 
							
								#define DAC_DMA_TEOF_INTR       0x02
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Initialize DAC DMA peripheral
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @param[in]   freq_hz         DAC data frequency per channel
							 | 
						||
| 
								 | 
							
								 * @param[in]   is_alternate    Transmit data alternate between two channels or simultaneously
							 | 
						||
| 
								 | 
							
								 * @param[in]   is_apll         Whether use APLL as DAC digital controller clock source
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_NOT_FOUND     The DMA peripheral has been occupied
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_NO_MEM        No memory for the DMA peripheral struct
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_INVALID_ARG   The frequency is outof range
							 | 
						||
| 
								 | 
							
								 *      - ESP_OK                Initialize DAC DMA peripheral success
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								esp_err_t dac_dma_periph_init(uint8_t chan_num, uint32_t freq_hz, bool is_alternate, bool is_apll);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Deinitialize DAC DMA peripheral
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_INVALID_STATE The DAC DMA has deinitialized already
							 | 
						||
| 
								 | 
							
								 *      - ESP_OK                Deinitialize DAC DMA peripheral success
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								esp_err_t dac_dma_periph_deinit(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Register the DMA interrupt
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @param[in]   intr_handler_func   DMA interrupt handler function
							 | 
						||
| 
								 | 
							
								 * @param[in]   user_ctx            User contex that pass to the interrupt handler
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_INVALID_STATE DAC DMA peripheral is not initialized
							 | 
						||
| 
								 | 
							
								 *      - ESP_OK                Register DMA interrupt success
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								esp_err_t dac_dma_periph_register_intr(intr_handler_t intr_handler_func, void *user_ctx);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Deregister the DMA interrupt
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - ESP_ERR_INVALID_STATE DAC DMA peripheral is not initialized
							 | 
						||
| 
								 | 
							
								 *      - ESP_OK                Deregister DMA interrupt success
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								esp_err_t dac_dma_periph_deregister_intr(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Enable the DMA and interrupt of the DAC DMA peripheral
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								void dac_dma_periph_enable(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Disable the DMA and interrupt of the DAC DMA peripheral
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								void dac_dma_periph_disable(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Whether the TX_EOF interrupt is triggered
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - true      TX_EOF interrupt is triggered
							 | 
						||
| 
								 | 
							
								 *      - false     TX_EOF interrupt is not triggered
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								uint32_t dac_dma_periph_intr_is_triggered(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Get the descriptor that just finished sending data
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @return
							 | 
						||
| 
								 | 
							
								 *      - uint32_t  The address of the EOF descriptor
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								uint32_t dac_dma_periph_intr_get_eof_desc(void);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @brief Start a DMA transaction
							 | 
						||
| 
								 | 
							
								 * @note  DMA transaction will stop when reaches the tail of the descriptor link
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * @param[in]   desc_addr   Descriptor address
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								void dac_dma_periph_dma_trans_start(uint32_t desc_addr);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#ifdef __cplusplus
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								#endif
							 |