1*5def4c47SEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause */ 2*5def4c47SEmmanuel Vadot /* 3*5def4c47SEmmanuel Vadot * GPIO definitions for MStar/SigmaStar MSC313 and later SoCs 4*5def4c47SEmmanuel Vadot * 5*5def4c47SEmmanuel Vadot * Copyright (C) 2020 Daniel Palmer <daniel@thingy.jp> 6*5def4c47SEmmanuel Vadot */ 7*5def4c47SEmmanuel Vadot 8*5def4c47SEmmanuel Vadot #ifndef _DT_BINDINGS_MSC313_GPIO_H 9*5def4c47SEmmanuel Vadot #define _DT_BINDINGS_MSC313_GPIO_H 10*5def4c47SEmmanuel Vadot 11*5def4c47SEmmanuel Vadot #define MSC313_GPIO_FUART 0 12*5def4c47SEmmanuel Vadot #define MSC313_GPIO_FUART_RX (MSC313_GPIO_FUART + 0) 13*5def4c47SEmmanuel Vadot #define MSC313_GPIO_FUART_TX (MSC313_GPIO_FUART + 1) 14*5def4c47SEmmanuel Vadot #define MSC313_GPIO_FUART_CTS (MSC313_GPIO_FUART + 2) 15*5def4c47SEmmanuel Vadot #define MSC313_GPIO_FUART_RTS (MSC313_GPIO_FUART + 3) 16*5def4c47SEmmanuel Vadot 17*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR (MSC313_GPIO_FUART_RTS + 1) 18*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO2 (MSC313_GPIO_SR + 0) 19*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO3 (MSC313_GPIO_SR + 1) 20*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO4 (MSC313_GPIO_SR + 2) 21*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO5 (MSC313_GPIO_SR + 3) 22*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO6 (MSC313_GPIO_SR + 4) 23*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO7 (MSC313_GPIO_SR + 5) 24*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO8 (MSC313_GPIO_SR + 6) 25*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO9 (MSC313_GPIO_SR + 7) 26*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO10 (MSC313_GPIO_SR + 8) 27*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO11 (MSC313_GPIO_SR + 9) 28*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO12 (MSC313_GPIO_SR + 10) 29*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO13 (MSC313_GPIO_SR + 11) 30*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO14 (MSC313_GPIO_SR + 12) 31*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO15 (MSC313_GPIO_SR + 13) 32*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO16 (MSC313_GPIO_SR + 14) 33*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SR_IO17 (MSC313_GPIO_SR + 15) 34*5def4c47SEmmanuel Vadot 35*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD (MSC313_GPIO_SR_IO17 + 1) 36*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_CLK (MSC313_GPIO_SD + 0) 37*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_CMD (MSC313_GPIO_SD + 1) 38*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_D0 (MSC313_GPIO_SD + 2) 39*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_D1 (MSC313_GPIO_SD + 3) 40*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_D2 (MSC313_GPIO_SD + 4) 41*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SD_D3 (MSC313_GPIO_SD + 5) 42*5def4c47SEmmanuel Vadot 43*5def4c47SEmmanuel Vadot #define MSC313_GPIO_I2C1 (MSC313_GPIO_SD_D3 + 1) 44*5def4c47SEmmanuel Vadot #define MSC313_GPIO_I2C1_SCL (MSC313_GPIO_I2C1 + 0) 45*5def4c47SEmmanuel Vadot #define MSC313_GPIO_I2C1_SDA (MSC313_GPIO_I2C1 + 1) 46*5def4c47SEmmanuel Vadot 47*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SPI0 (MSC313_GPIO_I2C1_SDA + 1) 48*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SPI0_CZ (MSC313_GPIO_SPI0 + 0) 49*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SPI0_CK (MSC313_GPIO_SPI0 + 1) 50*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SPI0_DI (MSC313_GPIO_SPI0 + 2) 51*5def4c47SEmmanuel Vadot #define MSC313_GPIO_SPI0_DO (MSC313_GPIO_SPI0 + 3) 52*5def4c47SEmmanuel Vadot 53*5def4c47SEmmanuel Vadot #endif /* _DT_BINDINGS_MSC313_GPIO_H */ 54