blob: cd488cc33168f7388d254feabd77ef71a79b243a [file] [log] [blame]
Yann Gautier9aea69e2018-07-24 17:13:36 +02001/*
2 * Copyright (c) 2018, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef STM32MP1_RESET_H
8#define STM32MP1_RESET_H
Yann Gautier9aea69e2018-07-24 17:13:36 +02009
10#include <stdint.h>
11
12void stm32mp1_reset_assert(uint32_t reset_id);
13void stm32mp1_reset_deassert(uint32_t reset_id);
14
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000015#endif /* STM32MP1_RESET_H */