xref: /OK3568_Linux_fs/u-boot/include/dt-bindings/pwm/pwm.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /*
2*4882a593Smuzhiyun  * This header provides constants for most PWM bindings.
3*4882a593Smuzhiyun  *
4*4882a593Smuzhiyun  * Most PWM bindings can include a flags cell as part of the PWM specifier.
5*4882a593Smuzhiyun  * In most cases, the format of the flags cell uses the standard values
6*4882a593Smuzhiyun  * defined in this header.
7*4882a593Smuzhiyun  */
8*4882a593Smuzhiyun 
9*4882a593Smuzhiyun #ifndef _DT_BINDINGS_PWM_PWM_H
10*4882a593Smuzhiyun #define _DT_BINDINGS_PWM_PWM_H
11*4882a593Smuzhiyun 
12*4882a593Smuzhiyun #define PWM_POLARITY_INVERTED			(1 << 0)
13*4882a593Smuzhiyun 
14*4882a593Smuzhiyun #endif
15