1*c66ec88fSEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0 */ 2*c66ec88fSEmmanuel Vadot /* 3*c66ec88fSEmmanuel Vadot * This header provides constants for most PWM bindings. 4*c66ec88fSEmmanuel Vadot * 5*c66ec88fSEmmanuel Vadot * Most PWM bindings can include a flags cell as part of the PWM specifier. 6*c66ec88fSEmmanuel Vadot * In most cases, the format of the flags cell uses the standard values 7*c66ec88fSEmmanuel Vadot * defined in this header. 8*c66ec88fSEmmanuel Vadot */ 9*c66ec88fSEmmanuel Vadot 10*c66ec88fSEmmanuel Vadot #ifndef _DT_BINDINGS_PWM_PWM_H 11*c66ec88fSEmmanuel Vadot #define _DT_BINDINGS_PWM_PWM_H 12*c66ec88fSEmmanuel Vadot 13*c66ec88fSEmmanuel Vadot #define PWM_POLARITY_INVERTED (1 << 0) 14*c66ec88fSEmmanuel Vadot 15*c66ec88fSEmmanuel Vadot #endif 16