xref: /rk3399_ARM-atf/include/drivers/st/stm32mp_reset.h (revision 394fa5d499fdfc1a0ddcaa3f2640cf5c49c25b63)
1 /*
2  * Copyright (c) 2018-2019, STMicroelectronics - All Rights Reserved
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef STM32MP_RESET_H
8 #define STM32MP_RESET_H
9 
10 #include <stdint.h>
11 
12 void stm32mp_reset_assert(uint32_t reset_id);
13 void stm32mp_reset_deassert(uint32_t reset_id);
14 
15 #endif /* STM32MP_RESET_H */
16