bsp_ccu.h 542 B

123456789101112131415161718
  1. /**************************************************************************//**
  2. * @file bsp_ccu.h
  3. * @brief CCU register definition header file
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. * @copyright (C) 2024-2034 HaiYang Technology Corp. All rights reserved.
  7. *****************************************************************************/
  8. #ifndef __BSP_CCU_H__
  9. #define __BSP_CCU_H__
  10. #define CCU_BASE (0x02002000UL)
  11. extern void *g_ccu_map_base, *g_ccu_virt_addr;
  12. int ccu_init(void);
  13. int ccu_exit(void);
  14. #endif