Line data Source code
1 0 : /*
2 : * Copyright (c) 2022 Google Inc
3 : * Copyright (c) 2024 STMicroelectronics
4 : *
5 : * SPDX-License-Identifier: Apache-2.0
6 : */
7 :
8 : #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32H7RS_RESET_H_
9 : #define ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32H7RS_RESET_H_
10 :
11 : #include "stm32-common.h"
12 :
13 : /* RCC bus reset register offset */
14 0 : #define STM32_RESET_BUS_AHB1 0x80
15 0 : #define STM32_RESET_BUS_AHB2 0x84
16 0 : #define STM32_RESET_BUS_AHB3 0xA4
17 0 : #define STM32_RESET_BUS_AHB5 0x7C
18 0 : #define STM32_RESET_BUS_APB5 0x8C
19 0 : #define STM32_RESET_BUS_AHB4 0x88
20 0 : #define STM32_RESET_BUS_APB1L 0x90
21 0 : #define STM32_RESET_BUS_APB1H 0x94
22 0 : #define STM32_RESET_BUS_APB2 0x98
23 0 : #define STM32_RESET_BUS_APB4 0x9C
24 :
25 : #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_RESET_STM32H7RS_RESET_H_ */
|