1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun /* 3*4882a593Smuzhiyun * This header provides constants for most Multiplexer bindings. 4*4882a593Smuzhiyun * 5*4882a593Smuzhiyun * Most Multiplexer bindings specify an idle state. In most cases, the 6*4882a593Smuzhiyun * multiplexer can be left as is when idle, and in some cases it can 7*4882a593Smuzhiyun * disconnect the input/output and leave the multiplexer in a high 8*4882a593Smuzhiyun * impedance state. 9*4882a593Smuzhiyun */ 10*4882a593Smuzhiyun 11*4882a593Smuzhiyun #ifndef _DT_BINDINGS_MUX_MUX_H 12*4882a593Smuzhiyun #define _DT_BINDINGS_MUX_MUX_H 13*4882a593Smuzhiyun 14*4882a593Smuzhiyun #define MUX_IDLE_AS_IS (-1) 15*4882a593Smuzhiyun #define MUX_IDLE_DISCONNECT (-2) 16*4882a593Smuzhiyun 17*4882a593Smuzhiyun #endif 18