xref: /optee_os/core/include/dt-bindings/gpio/stm32mp_gpio.h (revision 9f34db38245c9b3a4e6e7e63eb78a75e23ab2da3)
1 /* SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause) */
2 /*
3  * Copyright (C) STMicroelectronics 2023 - All Rights Reserved
4  */
5 
6 #ifndef _DT_BINDINGS_GPIO_STM32MP_GPIO_H
7 #define _DT_BINDINGS_GPIO_STM32MP_GPIO_H
8 
9 #include <dt-bindings/gpio/gpio.h>
10 
11 /* Macro to define the security for GPIO */
12 #ifdef __ASSEMBLER__
13 #define TZPROT(id)	(1 << (id))
14 #else
15 #define TZPROT(id)	(UINT32_C(1) << (id))
16 #endif
17 
18 #endif
19