mirror of
https://github.com/espressif/esp-idf.git
synced 2025-09-08 08:19:28 +00:00
38 lines
727 B
C
38 lines
727 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#pragma once
|
|
|
|
#include "soc/pcr_struct.h"
|
|
#include "hal/ahb_dma_ll.h"
|
|
#define GDMA_LL_AHB_BURST_SIZE_ADJUSTABLE 1 // AHB GDMA supports adjustable burst size
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Enable the bus clock for the DMA module
|
|
*/
|
|
static inline void gdma_ll_enable_bus_clock(int group_id, bool enable)
|
|
{
|
|
(void)group_id;
|
|
PCR.gdma_conf.gdma_clk_en = enable;
|
|
}
|
|
|
|
/**
|
|
* @brief Reset the DMA module
|
|
*/
|
|
static inline void gdma_ll_reset_register(int group_id)
|
|
{
|
|
(void)group_id;
|
|
PCR.gdma_conf.gdma_rst_en = 1;
|
|
PCR.gdma_conf.gdma_rst_en = 0;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|