lkml.org 
[lkml]   [2019]   [Jun]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH -next] pwm: pca9685: Remove set but not used variable 'pwm'
On Sat, Jun 1, 2019 at 12:05 PM Uwe Kleine-König
<u.kleine-koenig@pengutronix.de> wrote:
>
> I didn't look into the driver to try to understand that, but the
> definitely needs a comment to explain for the next person to think they
> can do a cleanup here.

Certainly.

But if we do restore the old behaviour, there may still be problems.
I'm unsure if the old synchronization was working correctly.
See the example at the end of this email.

An intuitive way forward would be to use a simple bitfield in
struct pca9685 to track if a specific pwm is in use by either
pwm or gpio. Protected by a mutex.

But it could be that the old behaviour is 'good enough' for
the driver's users (I am no longer one of them).

===========================================

Let's take the example of two threads, racing to grab a pwm and gpio,
respectively. Assume the gpio is backed by the pwm, so they conflict.

[Thread 1]
drivers/pwm/core.c:

if (pwm->chip->ops->request) {
err = pwm->chip->ops->request(pwm->chip, pwm);
[this calls pca9685_pwm_request()]
[which calls pca9685_pwm_is_gpio()]
[checks pwm chip_data, is NULL, pwm is free]
[returns 0 - pwm request ok]
if (err) {
module_put(pwm->chip->ops->owner);
return err;
}
}

[CONTEXT SWITCH to Thread 2]
static int pca9685_pwm_gpio_request(struct gpio_chip *gpio,
unsigned int offset)
{
struct pca9685 *pca = gpiochip_get_data(gpio);
struct pwm_device *pwm;

mutex_lock(&pca->lock);

pwm = &pca->chip.pwms[offset];

[pwm->flags do not (yet) have PWMF_REQUESTED]
if (pwm->flags & (PWMF_REQUESTED | PWMF_EXPORTED)) {
mutex_unlock(&pca->lock);
return -EBUSY;
}

pwm_set_chip_data(pwm, (void *)1);

mutex_unlock(&pca->lock);
pm_runtime_get_sync(pca->chip.dev);
return 0;
}

[CONTEXT SWITCH back to Thread 1, still in pwm/core.c]

set_bit(PWMF_REQUESTED, &pwm->flags);
pwm->label = label;

\
 
 \ /
  Last update: 2019-06-02 16:18    [W:2.037 / U:0.008 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site