Lines Matching full:period
19 * period
22 * period
31 * @period: reference period
43 u64 period; member
54 * @period_length_ns: PWM period
56 * @duty_offset_ns: offset of the rising edge from the period's start
61 * PWM_POLARITY_NORMAL) and period - duty_cycle (.polarity =
79 * @period: PWM period (in nanoseconds)
89 u64 period; member
148 return state.period; in pwm_get_period()
182 * that first retrieves the current PWM state and the replaces the period
188 * ->duty_cycle value exceed the pwm_args->period one, which would trigger
203 state->period = args.period; in pwm_init_state()
215 * in nanosecond) into a value relative to the period.
225 if (!state->period) in pwm_get_relative_duty_cycle()
229 state->period); in pwm_get_relative_duty_cycle()
258 state->period, in pwm_set_relative_duty_cycle()
266 * @period: period of the PWM signal (in nanoseconds)
270 unsigned int period; member
413 if (state.duty_cycle == duty_ns && state.period == period_ns) in pwm_config()
417 state.period = period_ns; in pwm_config()
610 * where the polarity and period are set according to pwm_args info. in pwm_apply_args()
621 * the PWM device and set the reference period and polarity config. in pwm_apply_args()
631 state.period = pwm->args.period; in pwm_apply_args()
643 unsigned int period; member
655 .period = _period, \