// SPDX-License-Identifier: GPL-2.0+ /* * Azoteq IQS620A PWM Generator * * Copyright (C) 2019 Jeff LaBundy <jeff@labundy.com> * * Limitations: * - The period is fixed to 1 ms and is generated continuously despite changes * to the duty cycle or enable/disable state. * - Changes to the duty cycle or enable/disable state take effect immediately * and may result in a glitch during the period in which the change is made. * - The device cannot generate a 0% duty cycle. For duty cycles below 1 / 256 * ms, the output is disabled and relies upon an external pull-down resistor * to hold the GPIO3/LTX pin low.
*/
if (state->polarity != PWM_POLARITY_NORMAL) return -EINVAL;
if (state->period < IQS620_PWM_PERIOD_NS) return -EINVAL;
iqs620_pwm = iqs620_pwm_from_chip(chip);
/* * The duty cycle generated by the device is calculated as follows: * * duty_cycle = (IQS620_PWM_DUTY_CYCLE + 1) / 256 * 1 ms * * ...where IQS620_PWM_DUTY_CYCLE is a register value between 0 and 255 * (inclusive). Therefore the lowest duty cycle the device can generate * while the output is enabled is 1 / 256 ms. * * For lower duty cycles (e.g. 0), the PWM output is simply disabled to * allow an external pull-down resistor to hold the GPIO3/LTX pin low.
*/
duty_cycle = min_t(u64, state->duty_cycle, IQS620_PWM_PERIOD_NS);
duty_scale = duty_cycle * 256 / IQS620_PWM_PERIOD_NS;
if (!state->enabled)
duty_scale = 0;
mutex_lock(&iqs620_pwm->lock);
ret = iqs620_pwm_init(iqs620_pwm, duty_scale); if (!ret)
iqs620_pwm->duty_scale = duty_scale;
/* * Since the device cannot generate a 0% duty cycle, requests to do so * cause subsequent calls to iqs620_pwm_get_state to report the output * as disabled. This is not ideal, but is the best compromise based on * the capabilities of the device.
*/
state->enabled = iqs620_pwm->duty_scale > 0;
state->duty_cycle = DIV_ROUND_UP(iqs620_pwm->duty_scale *
IQS620_PWM_PERIOD_NS, 256);
/* * The parent MFD driver already prints an error message in the event * of a device reset, so nothing else is printed here unless there is * an additional failure.
*/
ret = iqs620_pwm_init(iqs620_pwm, iqs620_pwm->duty_scale);
mutex_unlock(&iqs620_pwm->lock);
if (ret) {
dev_err(iqs620_pwm->dev, "Failed to re-initialize device: %d\n", ret); return NOTIFY_BAD;
}
ret = blocking_notifier_chain_unregister(&iqs620_pwm->iqs62x->nh,
&iqs620_pwm->notifier); if (ret)
dev_err(iqs620_pwm->dev, "Failed to unregister notifier: %d\n", ret);
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.