1 /* $NetBSD: mux.h,v 1.1 2017/10/28 10:30:32 jmcneill Exp $ */ 2 3 /* 4 * This header provides constants for most Multiplexer bindings. 5 * 6 * Most Multiplexer bindings specify an idle state. In most cases, the 7 * the multiplexer can be left as is when idle, and in some cases it can 8 * disconnect the input/output and leave the multiplexer in a high 9 * impedance state. 10 */ 11 12 #ifndef _DT_BINDINGS_MUX_MUX_H 13 #define _DT_BINDINGS_MUX_MUX_H 14 15 #define MUX_IDLE_AS_IS (-1) 16 #define MUX_IDLE_DISCONNECT (-2) 17 18 #endif 19