1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (C) STMicroelectronics 2024 - All Rights Reserved 4 */ 5 6 #ifndef __DRIVERS_STM32MP2_RCC_UTIL_H__ 7 #define __DRIVERS_STM32MP2_RCC_UTIL_H__ 8 9 #include <types_ext.h> 10 11 /* Return RCC base address */ 12 vaddr_t stm32_rcc_base(void); 13 14 #endif /*__DRIVERS_STM32MP2_RCC_UTIL_H__*/ 15