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