Lines Matching full:period
15 * period
18 * period
27 * @period: reference period
39 u64 period; member
50 * @period: PWM period (in nanoseconds)
60 u64 period; member
117 static inline void pwm_set_period(struct pwm_device *pwm, u64 period) in pwm_set_period() argument
120 pwm->state.period = period; in pwm_set_period()
129 return state.period; in pwm_get_period()
169 * that first retrieves the current PWM state and the replaces the period
175 * ->duty_cycle value exceed the pwm_args->period one, which would trigger
190 state->period = args.period; in pwm_init_state()
202 * in nanosecond) into a value relative to the period.
212 if (!state->period) in pwm_get_relative_duty_cycle()
216 state->period); in pwm_get_relative_duty_cycle()
245 state->period, in pwm_set_relative_duty_cycle()
253 * @period: period of the PWM signal (in nanoseconds)
257 unsigned int period; member
337 if (state.duty_cycle == duty_ns && state.period == period_ns) in pwm_config()
341 state.period = period_ns; in pwm_config()
523 * where the polarity and period are set according to pwm_args info. in pwm_apply_args()
534 * the PWM device and set the reference period and polarity config. in pwm_apply_args()
544 state.period = pwm->args.period; in pwm_apply_args()
556 unsigned int period; member
568 .period = _period, \