Lines Matching +full:7 +full:- +full:pin
2 * Copyright (c) 2021-2023 IoT.bzh
4 * SPDX-License-Identifier: Apache-2.0
27 /* Arbitrary number to encode non capable gpio pin */
31 * @brief Utility macro to encode a GPIO capable pin
34 * @param pin the pin within the GPIO bank (0..31)
36 #define RCAR_GP_PIN(bank, pin) (((bank) * 32U) + (pin)) argument
39 * @brief Utility macro to encode a non capable GPIO pin
41 * @param pin the encoded pin number
43 #define RCAR_NOGP_PIN(pin) (PIN_NOGPSR_START + pin) argument
80 #define IP0SR7(shift, func) IPnSR(0, 7, shift, func)
81 #define IP1SR7(shift, func) IPnSR(1, 7, shift, func)
82 #define IP2SR7(shift, func) IPnSR(2, 7, shift, func)
83 #define IP3SR7(shift, func) IPnSR(3, 7, shift, func)
86 * @brief Macro to define a dummy IPSR flag for a pin
88 * This macro is used to define a dummy IPSR flag for a pin in the R-Car PFC
95 #define IPSR_DUMMY IPnSR(0x1f, 7, 0x1f, 0xf)