mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-21 08:49:25 +00:00
42 lines
881 B
C
42 lines
881 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;
|
|
}
|
|
|
|
#define gdma_ll_enable_bus_clock(...) _gdma_ll_enable_bus_clock(__VA_ARGS__)
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
|
|
#define gdma_ll_reset_register(...) _gdma_ll_reset_register(__VA_ARGS__)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|