/* * Copyright (c) 2016-2020, NVIDIA CORPORATION. All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU General Public License, * version 2, as published by the Free Software Foundation. * * This program is distributed in the hope it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ /* * This header provides constants for binding nvidia,tegra*-gpio. * * The first cell in Tegra's GPIO specifier is the GPIO ID. The macros below * provide names for this. * * The second cell contains standard flag values specified in gpio.h. */ #ifndef _DT_BINDINGS_GPIO_TMPM32X_GPIO_H #define _DT_BINDINGS_GPIO_TMPM32X_GPIO_H #include #define TMPM32X_GPIO_BANK_ID_A 0 #define TMPM32X_GPIO_BANK_ID_B 1 #define TMPM32X_GPIO_BANK_ID_C 2 #define TMPM32X_GPIO_BANK_ID_D 3 #define TMPM32X_GPIO_BANK_ID_E 4 #define TMPM32X_GPIO_BANK_ID_F 5 #define TMPM32X_GPIO_BANK_ID_G 6 #define TMPM32X_GPIO_BANK_ID_H 7 #define TMPM32X_GPIO_BANK_ID_I 8 #define TMPM32X_GPIO_BANK_ID_J 9 #define TMPM32X_GPIO_BANK_ID_K 10 #define TMPM32X_GPIO_BANK_ID_L 11 #define TMPM32X_GPIO_BANK_ID_M 12 #define TMPM32X_GPIO_BANK_ID_N 13 #define TMPM32X_GPIO(bank, offset) \ ((TMPM32X_GPIO_BANK_ID_##bank * 8) + offset) #endif