Lines Matching full:period
19 * period
22 * period
31 * @period: reference period
43 u64 period; member
65 * @period: PWM period (in nanoseconds)
71 u64 period; member
128 static inline void pwm_set_period(struct pwm_device *pwm, u64 period) in pwm_set_period() argument
131 pwm->state.period = period; in pwm_set_period()
140 return state.period; in pwm_get_period()
190 * that first retrieves the current PWM state and the replaces the period
196 * ->duty_cycle value exceed the pwm_args->period one, which would trigger
211 state->period = args.period; in pwm_init_state()
222 * in nanosecond) into a value relative to the period.
232 if (!state->period) in pwm_get_relative_duty_cycle()
236 state->period); in pwm_get_relative_duty_cycle()
265 state->period, in pwm_set_relative_duty_cycle()
282 * @config: configure duty cycles and period length for this PWM
341 * @period: period of the PWM signal (in nanoseconds)
345 unsigned int period; member
394 if (state.duty_cycle == duty_ns && state.period == period_ns) in pwm_config()
398 state.period = period_ns; in pwm_config()
599 * where the polarity and period are set according to pwm_args info. in pwm_apply_args()
610 * the PWM device and set the reference period and polarity config. in pwm_apply_args()
620 state.period = pwm->args.period; in pwm_apply_args()
631 unsigned int period; member
643 .period = _period, \