Lines Matching full:period
18 * period
21 * period
30 * @period: reference period
42 u64 period; member
53 * @period: PWM period (in nanoseconds)
63 u64 period; member
120 static inline void pwm_set_period(struct pwm_device *pwm, u64 period) in pwm_set_period() argument
123 pwm->state.period = period; in pwm_set_period()
132 return state.period; in pwm_get_period()
172 * that first retrieves the current PWM state and the replaces the period
178 * ->duty_cycle value exceed the pwm_args->period one, which would trigger
193 state->period = args.period; in pwm_init_state()
205 * in nanosecond) into a value relative to the period.
215 if (!state->period) in pwm_get_relative_duty_cycle()
219 state->period); in pwm_get_relative_duty_cycle()
248 state->period, in pwm_set_relative_duty_cycle()
264 * @config: configure duty cycles and period length for this PWM
317 * @period: period of the PWM signal (in nanoseconds)
321 unsigned int period; member
352 if (state.duty_cycle == duty_ns && state.period == period_ns) in pwm_config()
356 state.period = period_ns; in pwm_config()
543 * where the polarity and period are set according to pwm_args info. in pwm_apply_args()
554 * the PWM device and set the reference period and polarity config. in pwm_apply_args()
564 state.period = pwm->args.period; in pwm_apply_args()
576 unsigned int period; member
588 .period = _period, \