1 /*
2  * Copyright (c) 2022 Google Inc
3  * Copyright (c) Benjamin Björnsson <benjamin.bjornsson@gmail.com>
4  *
5  * SPDX-License-Identifier: Apache-2.0
6  */
7 
8 #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32C0_RESET_H_
9 #define ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32C0_RESET_H_
10 
11 #include "stm32-common.h"
12 
13 /* RCC bus reset register offset */
14 #define STM32_RESET_BUS_IOP   0x24
15 #define STM32_RESET_BUS_AHB1  0x28
16 #define STM32_RESET_BUS_APB1L 0x2C
17 #define STM32_RESET_BUS_APB1H 0x30
18 
19 #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32C0_RESET_H_ */
20