blob: 3f6367ebefd7304d9db7c66e5e65c0eb2b0fe9c4 [file] [log] [blame]
Etienne Carriere316d6342019-12-02 10:08:48 +01001/*
2 * Copyright (c) 2017-2020, STMicroelectronics - All Rights Reserved
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef STM32MP1_SHARED_RESOURCES_H
8#define STM32MP1_SHARED_RESOURCES_H
9
10#include <stm32mp_shared_resources.h>
11
12#define STM32MP1_SHRES_GPIOZ(i) (STM32MP1_SHRES_GPIOZ_0 + (i))
13
14enum stm32mp_shres {
15 STM32MP1_SHRES_CRYP1,
16 STM32MP1_SHRES_GPIOZ_0,
17 STM32MP1_SHRES_GPIOZ_1,
18 STM32MP1_SHRES_GPIOZ_2,
19 STM32MP1_SHRES_GPIOZ_3,
20 STM32MP1_SHRES_GPIOZ_4,
21 STM32MP1_SHRES_GPIOZ_5,
22 STM32MP1_SHRES_GPIOZ_6,
23 STM32MP1_SHRES_GPIOZ_7,
24 STM32MP1_SHRES_HASH1,
25 STM32MP1_SHRES_I2C4,
26 STM32MP1_SHRES_I2C6,
27 STM32MP1_SHRES_IWDG1,
28 STM32MP1_SHRES_MCU,
29 STM32MP1_SHRES_MDMA,
30 STM32MP1_SHRES_PLL3,
31 STM32MP1_SHRES_RNG1,
32 STM32MP1_SHRES_RTC,
33 STM32MP1_SHRES_SPI6,
34 STM32MP1_SHRES_USART1,
35
36 STM32MP1_SHRES_COUNT
37};
38#endif /* STM32MP1_SHARED_RESOURCES_H */