mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
pwm: cros-ec: Simplify device tree xlation
The cros-ec device tree binding only uses #pwm-cells = <1>, and so there is no period provided in the device tree. Up to now this was handled by hardcoding the period to the only supported value in the custom xlate callback. Apart from that, the default xlate callback (i.e. of_pwm_xlate_with_flags()) handles this just fine (and better, e.g. by checking args->args_count >= 1 before accessing args->args[0]). To simplify make use of of_pwm_xlate_with_flags(), drop the custom callback and provide the default period in .probe() already. Apart from simplifying the driver this also drops the last non-core user of pwm_request_from_chip() and so makes further simplifications possible. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com> Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org> Link: https://lore.kernel.org/r/20240607084416.897777-7-u.kleine-koenig@baylibre.com Signed-off-by: Uwe Kleine-König <ukleinek@kernel.org>
This commit is contained in:
parent
f7d5463e2a
commit
40571a5b3b
@ -168,24 +168,6 @@ static int cros_ec_pwm_get_state(struct pwm_chip *chip, struct pwm_device *pwm,
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct pwm_device *
|
||||
cros_ec_pwm_xlate(struct pwm_chip *chip, const struct of_phandle_args *args)
|
||||
{
|
||||
struct pwm_device *pwm;
|
||||
|
||||
if (args->args[0] >= chip->npwm)
|
||||
return ERR_PTR(-EINVAL);
|
||||
|
||||
pwm = pwm_request_from_chip(chip, args->args[0], NULL);
|
||||
if (IS_ERR(pwm))
|
||||
return pwm;
|
||||
|
||||
/* The EC won't let us change the period */
|
||||
pwm->args.period = EC_PWM_MAX_DUTY;
|
||||
|
||||
return pwm;
|
||||
}
|
||||
|
||||
static const struct pwm_ops cros_ec_pwm_ops = {
|
||||
.get_state = cros_ec_pwm_get_state,
|
||||
.apply = cros_ec_pwm_apply,
|
||||
@ -236,7 +218,7 @@ static int cros_ec_pwm_probe(struct platform_device *pdev)
|
||||
struct cros_ec_pwm_device *ec_pwm;
|
||||
struct pwm_chip *chip;
|
||||
bool use_pwm_type = false;
|
||||
unsigned int npwm;
|
||||
unsigned int i, npwm;
|
||||
int ret;
|
||||
|
||||
if (!ec)
|
||||
@ -262,7 +244,17 @@ static int cros_ec_pwm_probe(struct platform_device *pdev)
|
||||
|
||||
/* PWM chip */
|
||||
chip->ops = &cros_ec_pwm_ops;
|
||||
chip->of_xlate = cros_ec_pwm_xlate;
|
||||
|
||||
/*
|
||||
* The device tree binding for this device is special as it only uses a
|
||||
* single cell (for the hwid) and so doesn't provide a default period.
|
||||
* This isn't a big problem though as the hardware only supports a
|
||||
* single period length, it's just a bit ugly to make this fit into the
|
||||
* pwm core abstractions. So initialize the period here, as
|
||||
* of_pwm_xlate_with_flags() won't do that for us.
|
||||
*/
|
||||
for (i = 0; i < npwm; ++i)
|
||||
chip->pwms[i].args.period = EC_PWM_MAX_DUTY;
|
||||
|
||||
dev_dbg(dev, "Probed %u PWMs\n", chip->npwm);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user