/**************************************************************************//** * @file bsp_ccu.h * @brief CCU register definition header file * * SPDX-License-Identifier: Apache-2.0 * @copyright (C) 2024-2034 HaiYang Technology Corp. All rights reserved. *****************************************************************************/ #ifndef __BSP_CCU_H__ #define __BSP_CCU_H__ #define CCU_BASE (0x02002000UL) extern void *g_ccu_map_base, *g_ccu_virt_addr; int ccu_init(void); int ccu_exit(void); #endif