lkml.org 
[lkml]   [2021]   [Apr]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH 2/2] pwm: pwm-qcom: add driver for PWM modules in QCOM PMICs
Hello,

On Tue, Apr 27, 2021 at 06:22:10PM +0800, Fenglin Wu wrote:
> PWM modules present in QCOM PMICs are controlled through SPMI bus.
> Normally, it would have several PWM modules together with adjacent
> register space and each PWM module can be controlled independently.
>
> Signed-off-by: Fenglin Wu <fenglinw@codeaurora.org>
> ---
> drivers/pwm/Kconfig | 9 +
> drivers/pwm/Makefile | 1 +
> drivers/pwm/pwm-qcom.c | 585 +++++++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 595 insertions(+)
> create mode 100644 drivers/pwm/pwm-qcom.c
>
> diff --git a/drivers/pwm/Kconfig b/drivers/pwm/Kconfig
> index 8ae68d6..324ab5d 100644
> --- a/drivers/pwm/Kconfig
> +++ b/drivers/pwm/Kconfig
> @@ -423,6 +423,15 @@ config PWM_PXA
> To compile this driver as a module, choose M here: the module
> will be called pwm-pxa.
>
> +config PWM_QCOM
> + tristate "Qcom PMIC PWM support"
> + depends on MFD_SPMI_PMIC && OF
> + help
> + Generic PWM framework driver for PWM module in QCOM PMIC chips
> +
> + To compile this driver as a module, choose M here: the module
> + will be called pwm-qcom.
> +
> config PWM_RCAR
> tristate "Renesas R-Car PWM support"
> depends on ARCH_RENESAS || COMPILE_TEST
> diff --git a/drivers/pwm/Makefile b/drivers/pwm/Makefile
> index d43b1e1..78316e9 100644
> --- a/drivers/pwm/Makefile
> +++ b/drivers/pwm/Makefile
> @@ -38,6 +38,7 @@ obj-$(CONFIG_PWM_MXS) += pwm-mxs.o
> obj-$(CONFIG_PWM_OMAP_DMTIMER) += pwm-omap-dmtimer.o
> obj-$(CONFIG_PWM_PCA9685) += pwm-pca9685.o
> obj-$(CONFIG_PWM_PXA) += pwm-pxa.o
> +obj-$(CONFIG_PWM_QCOM) += pwm-qcom.o
> obj-$(CONFIG_PWM_RCAR) += pwm-rcar.o
> obj-$(CONFIG_PWM_RENESAS_TPU) += pwm-renesas-tpu.o
> obj-$(CONFIG_PWM_ROCKCHIP) += pwm-rockchip.o
> diff --git a/drivers/pwm/pwm-qcom.c b/drivers/pwm/pwm-qcom.c
> new file mode 100644
> index 0000000..48bd823
> --- /dev/null
> +++ b/drivers/pwm/pwm-qcom.c
> @@ -0,0 +1,585 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright (c) 2021, The Linux Foundation. All rights reserved.

If there is a publicly available reference manual describing this
hardware, please add a link here.

Also please add a section (like in the pwm-sifive driver for example)
describing the relevant properties. Interesting are answers to the
questions:

- Does the hardware complete the currently running period on
reconfiguration? (If that's configurable, please enable this
behaviour)

- Does the hardware complete the currently running period when the PWM
is disabled?

- Does the output pin pull to the inactive level when the PWM is
disabled?

- Does the hardware support both polarities?

Please stick to the format used in pwm-sifive to be easily greppable.

> + */
> +
> +#include <linux/bitops.h>
> +#include <linux/device.h>
> +#include <linux/err.h>
> +#include <linux/init.h>
> +#include <linux/kernel.h>
> +#include <linux/module.h>
> +#include <linux/mutex.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/platform_device.h>
> +#include <linux/pwm.h>
> +#include <linux/regmap.h>
> +#include <linux/seq_file.h>
> +#include <linux/slab.h>
> +#include <linux/types.h>
> +
> +/* PWM module registers */
> +#define REG_PERPH_SUBTYPE 0x05
> +#define REG_PWM_SIZE_CLK 0x41
> +#define REG_PWM_FREQ_PREDIV_CLK 0x42
> +#define REG_PWM_TYPE_CONFIG 0x43
> +#define REG_PWM_VALUE_LSB 0x44
> +#define REG_PWM_VALUE_MSB 0x45
> +#define REG_ENABLE_CONTROL 0x46
> +#define REG_PWM_SYNC 0x47
> +
> +/* REG_PERPH_SUBTYPE */
> +#define SUBTYPE_PWM 0x0b
> +#define SUBTYPE_PWM_LITE 0x11
> +
> +/* REG_PWM_SIZE_CLK */
> +#define PWM_LITE_PWM_SIZE_MASK BIT(4)
> +#define PWM_LITE_PWM_SIZE_SHIFT 4
> +#define PWM_SIZE_MASK BIT(2)
> +#define PWM_SIZE_SHIFT 2
> +#define PWM_CLK_FREQ_SEL_MASK GENMASK(1, 0)
> +
> +/* REG_PWM_FREQ_PREDIV_CLK */
> +#define PWM_FREQ_PREDIV_MASK GENMASK(6, 5)
> +#define PWM_FREQ_PREDIV_SHIFT 5

It should be possible to not need the _SHIFT define as it can be
deferred from the mask value. In turn you can also drop the _MASK suffix
shortening the define names.

> +#define PWM_FREQ_EXPONENT_MASK GENMASK(2, 0)
> +
> +/* REG_PWM_TYPE_CONFIG */
> +#define PWM_EN_GLITCH_REMOVAL_MASK BIT(5)
> +
> +/* REG_PWM_VALUE */
> +#define PWM_VALUE_LSB_MASK GENMASK(7, 0)
> +#define PWM_VALUE_MSB_MASK BIT(0)
> +
> +/* REG_ENABLE_CONTROL */
> +#define EN_MODULE_BIT BIT(7)
> +
> +/* REG_PWM_SYNC */
> +#define PWM_VALUE_SYNC BIT(0)

I would like to see the register definition to use a common prefix (like
QCOM_PWM_) and that the names of bit fields include the register name.
So something like:

#define QCOM_PWM_PWM_SIZE_CLK 0x41
#define QCOM_PWM_PWM_SIZE_CLK_FREQ_SEL GENMASK(1, 0)

even if the names are quite long, its usage is less error prone. Maybe
it makes sense to drop the duplicated PWM (but only if all or no
register contains PWM in its name according to the reference manual).
Also maybe QCOM_PWM_PWMSIZECLK_FREQSEL might be a good choice. I let you
judge about the details.

> +
> +/* constant definitions */
> +#define REG_SIZE_PER_CHANN 0x100
> +#define NUM_PWM_SIZE 2
> +#define NUM_PWM_CLK 3
> +#define NUM_CLK_PREDIV 4
> +#define NUM_PWM_EXP 8
> +
> +static const int pwm_size[NUM_PWM_SIZE] = {6, 9};
> +static const int clk_freq_hz[NUM_PWM_CLK] = {1024, 32768, 19200000};
> +static const int clk_prediv[NUM_CLK_PREDIV] = {1, 3, 5, 6};
> +static const int pwm_exponent[NUM_PWM_EXP] = {0, 1, 2, 3, 4, 5, 6, 7};

Please also use a driver specific prefix for variables and function
names.

> +struct qcom_pwm_config {
> + u32 pwm_size;
> + u32 pwm_clk;
> + u32 prediv;
> + u32 clk_exp;
> + u16 pwm_value;
> + u64 best_period_ns;
> +};
> +
> +struct qcom_pwm_channel {
> + struct qcom_pwm_chip *chip;
> + struct qcom_pwm_config pwm_config;
> + u32 chan_idx;
> + u32 reg_base;
> + u8 subtype;
> + u64 current_period_ns;
> + u64 current_duty_ns;
> +};
> +
> +struct qcom_pwm_chip {
> + struct pwm_chip pwm_chip;
> + struct regmap *regmap;
> + struct device *dev;
> + struct qcom_pwm_channel *pwms;
> + struct mutex rw_lock;
> + u32 num_channels;
> +};
> +
> +static int qcom_pwm_channel_read(struct qcom_pwm_channel *pwm,
> + u16 addr, u8 *val)
> +{
> + int rc;
> + unsigned int tmp;
> +
> + mutex_lock(&pwm->chip->rw_lock);
> + rc = regmap_read(pwm->chip->regmap, pwm->reg_base + addr, &tmp);
> + if (rc < 0)
> + dev_err(pwm->chip->dev, "Read addr %#x failed, rc=%d\n",
> + pwm->reg_base + addr, rc);

Do you know that you can emit the symbolic error code using %pe? This
yields better readable error messages. That would be something like:

dev_err(pwm->chip->dev, "Read addr %#x failed, rc=%pe\n",
pwm->reg_base + addr, ERR_PTR(rc));

> + else
> + *val = (u8)tmp;
> + mutex_unlock(&pwm->chip->rw_lock);
> +
> + return rc;
> +}
> +
> +static int qcom_pwm_channel_write(struct qcom_pwm_channel *pwm, u16 addr, u8 val)
> +{
> + int rc;
> +
> + mutex_lock(&pwm->chip->rw_lock);
> + rc = regmap_write(pwm->chip->regmap, pwm->reg_base + addr, val);
> + if (rc < 0)
> + dev_err(pwm->chip->dev, "Write addr %#x with value %#x failed, rc=%d\n",
> + pwm->reg_base + addr, val, rc);
> + mutex_unlock(&pwm->chip->rw_lock);
> +
> + return rc;
> +}
> +
> +static int qcom_pwm_channel_masked_write(struct qcom_pwm_channel *pwm,
> + u16 addr, u8 mask, u8 val)
> +{
> + int rc;
> +
> + mutex_lock(&pwm->chip->rw_lock);
> + rc = regmap_update_bits(pwm->chip->regmap, pwm->reg_base + addr,
> + mask, val);
> + if (rc < 0)
> + dev_err(pwm->chip->dev, "Update addr %#x to val %#x with mask %#x failed, rc=%d\n",
> + pwm->reg_base + addr, val, mask, rc);
> + mutex_unlock(&pwm->chip->rw_lock);
> +
> + return rc;
> +}
> +
> +static struct qcom_pwm_channel *pwm_dev_to_pwm_channel(struct pwm_chip *pwm_chip,
> + struct pwm_device *pwm_dev)

Please use "chip" as name for the first parameter which is the usual
choice in the PWM core and also the drivers.

> +{
> +
> + struct qcom_pwm_chip *chip = container_of(pwm_chip,
> + struct qcom_pwm_chip, pwm_chip);

You will have to pick a different name here accordingly. I'd suggest
ddata or qc.

> + u32 chan_idx = pwm_dev->hwpwm;

hwpwm is an unsigned int, I suggest making chan_idx an unsigned int,
too.

> + if (chan_idx >= chip->num_channels) {
> + dev_err(chip->dev, "hw index %u out of range [0-%u]\n",
> + chan_idx, chip->num_channels - 1);
> + return NULL;
> + }
> +
> + return &chip->pwms[chan_idx];
> +}
> +
> +static int __find_index_in_array(int data, const int array[], int length)
> +{
> + int i;
> +
> + for (i = 0; i < length; i++) {
> + if (data == array[i])
> + return i;
> + }
> +
> + return -ENOENT;
> +}
> +
> +static int qcom_pwm_channel_set_glitch_removal(
> + struct qcom_pwm_channel *pwm, bool en)
> +{
> + u8 mask, val;
> +
> + val = en ? PWM_EN_GLITCH_REMOVAL_MASK : 0;
> + mask = PWM_EN_GLITCH_REMOVAL_MASK;
> + return qcom_pwm_channel_masked_write(pwm,
> + REG_PWM_TYPE_CONFIG, mask, val);

What is the effect of this setting?

> +}
> +
> +static int qcom_pwm_channel_config(struct qcom_pwm_channel *pwm)
> +{
> + int rc;
> + u8 val, mask, shift;
> + int pwm_size_idx, pwm_clk_idx, prediv_idx, clk_exp_idx;
> +
> + pwm_size_idx = __find_index_in_array(pwm->pwm_config.pwm_size,
> + pwm_size, ARRAY_SIZE(pwm_size));
> + pwm_clk_idx = __find_index_in_array(pwm->pwm_config.pwm_clk,
> + clk_freq_hz, ARRAY_SIZE(clk_freq_hz));
> + prediv_idx = __find_index_in_array(pwm->pwm_config.prediv,
> + clk_prediv, ARRAY_SIZE(clk_prediv));
> + clk_exp_idx = __find_index_in_array(pwm->pwm_config.clk_exp,
> + pwm_exponent, ARRAY_SIZE(pwm_exponent));
> +
> + if (pwm_size_idx < 0 || pwm_clk_idx < 0
> + || prediv_idx < 0 || clk_exp_idx < 0)
> + return -EINVAL;
> +
> + /* pwm_clk_idx is 1 bit lower than the register value */
> + pwm_clk_idx += 1;
> + shift = PWM_SIZE_SHIFT;
> + mask = PWM_SIZE_MASK;
> + if (pwm->subtype == SUBTYPE_PWM_LITE) {
> + shift = PWM_LITE_PWM_SIZE_SHIFT;
> + mask = PWM_LITE_PWM_SIZE_MASK;
> + }
> +
> + val = pwm_size_idx << shift | pwm_clk_idx;

If you use

val = FIELD_PREP(pwm_size_idx, mask) | pwm_clk_idx;

you don't need the shift variable.

> + mask |= PWM_CLK_FREQ_SEL_MASK;
> + rc = qcom_pwm_channel_masked_write(pwm, REG_PWM_SIZE_CLK, mask, val);
> + if (rc < 0)
> + return rc;
> +
> + val = prediv_idx << PWM_FREQ_PREDIV_SHIFT | clk_exp_idx;
> + mask = PWM_FREQ_PREDIV_MASK | PWM_FREQ_EXPONENT_MASK;
> + rc = qcom_pwm_channel_masked_write(pwm, REG_PWM_FREQ_PREDIV_CLK, mask, val);
> + if (rc < 0)
> + return rc;
> +
> + val = pwm->pwm_config.pwm_value >> 8;
> + mask = PWM_VALUE_MSB_MASK;
> + rc = qcom_pwm_channel_masked_write(pwm, REG_PWM_VALUE_MSB, mask, val);
> + if (rc < 0)
> + return rc;
> +
> + val = pwm->pwm_config.pwm_value & PWM_VALUE_LSB_MASK;
> + rc = qcom_pwm_channel_write(pwm, REG_PWM_VALUE_LSB, val);
> + if (rc < 0)
> + return rc;
> +
> + val = PWM_VALUE_SYNC;
> + return qcom_pwm_channel_write(pwm, REG_PWM_SYNC, val);
> +}
> +
> +static int qcom_pwm_channel_enable(struct qcom_pwm_channel *pwm, bool en)
> +{
> + u8 mask, val;
> +
> + mask = EN_MODULE_BIT;
> + val = en ? EN_MODULE_BIT : 0;
> + return qcom_pwm_channel_masked_write(pwm,
> + REG_ENABLE_CONTROL, mask, val);
> +}
> +
> +static void __qcom_pwm_calc_pwm_period(u64 period_ns,
> + struct qcom_pwm_config *pwm_config)
> +{
> + struct qcom_pwm_config configs[NUM_PWM_SIZE];
> + int i, j, m, n;
> + u64 tmp1, tmp2;
> + u64 clk_period_ns = 0, pwm_clk_period_ns;
> + u64 clk_delta_ns = U64_MAX, min_clk_delta_ns = U64_MAX;
> + u64 pwm_period_delta = U64_MAX, min_pwm_period_delta = U64_MAX;
> + int pwm_size_step;
> +
> + /*
> + * (2^pwm_size) * (2^pwm_exp) * prediv * NSEC_PER_SEC
> + * pwm_period = ---------------------------------------------------
> + * clk_freq_hz
> + *
> + * Searching the closest settings for the requested PWM period.

Please don't pick the nearest setting, but the next smallest one.

> + */
> +
> + for (n = 0; n < ARRAY_SIZE(pwm_size); n++) {
> + pwm_clk_period_ns = period_ns >> pwm_size[n];
> + for (i = ARRAY_SIZE(clk_freq_hz) - 1; i >= 0; i--) {
> + for (j = 0; j < ARRAY_SIZE(clk_prediv); j++) {
> + for (m = 0; m < ARRAY_SIZE(pwm_exponent); m++) {
> + tmp1 = 1 << pwm_exponent[m];
> + tmp1 *= clk_prediv[j];
> + tmp2 = NSEC_PER_SEC;
> + do_div(tmp2, clk_freq_hz[i]);
> +
> + clk_period_ns = tmp1 * tmp2;
> +
> + clk_delta_ns = abs(pwm_clk_period_ns
> + - clk_period_ns);
> + /*
> + * Find the closest setting for
> + * PWM frequency predivide value
> + */
> + if (clk_delta_ns < min_clk_delta_ns) {
> + min_clk_delta_ns
> + = clk_delta_ns;
> + configs[n].pwm_clk
> + = clk_freq_hz[i];
> + configs[n].prediv
> + = clk_prediv[j];
> + configs[n].clk_exp
> + = pwm_exponent[m];
> + configs[n].pwm_size
> + = pwm_size[n];
> + configs[n].best_period_ns
> + = clk_period_ns;
> + }
> + }
> + }
> + }
> +
> + configs[n].best_period_ns *= 1 << pwm_size[n];
> + /* Find the closest setting for PWM period */
> + pwm_period_delta = min_clk_delta_ns << pwm_size[n];
> + if (pwm_period_delta < min_pwm_period_delta) {
> + min_pwm_period_delta = pwm_period_delta;
> + memcpy(pwm_config, &configs[n],
> + sizeof(struct qcom_pwm_config));
> + }
> + }

Huh, this is complicated. It would be great if this could be simplified.
If you provide a reference manual or at least a .get_state function, I
can try to advise.

> + /* Larger PWM size can achieve better resolution for PWM duty */
> + for (n = ARRAY_SIZE(pwm_size) - 1; n > 0; n--) {
> + if (pwm_config->pwm_size >= pwm_size[n])
> + break;
> + pwm_size_step = pwm_size[n] - pwm_config->pwm_size;
> + if (pwm_config->clk_exp >= pwm_size_step) {
> + pwm_config->pwm_size = pwm_size[n];

If you store n instead of pwm_size[n] finding n in
qcom_pwm_channel_config becomes easier and you can drop
__find_index_in_array.

> + pwm_config->clk_exp -= pwm_size_step;
> + }
> + }
> +
> + pr_debug("PWM setting for period_ns %llu: pwm_clk = %dHZ, prediv = %d, exponent = %d, pwm_size = %d\n",
> + period_ns, pwm_config->pwm_clk, pwm_config->prediv,
> + pwm_config->clk_exp, pwm_config->pwm_size);
> + pr_debug("Actual period: %lluns\n", pwm_config->best_period_ns);
> +}
> +
> +static void __qcom_pwm_calc_pwm_duty(u64 period_ns, u64 duty_ns,
> + struct qcom_pwm_config *pwm_config)
> +{
> + u16 pwm_value, max_pwm_value;
> + u64 tmp;
> +
> + tmp = (u64)duty_ns << pwm_config->pwm_size;
> + pwm_value = (u16)div64_u64(tmp, period_ns);
> +
> + max_pwm_value = (1 << pwm_config->pwm_size) - 1;
> + if (pwm_value > max_pwm_value)
> + pwm_value = max_pwm_value;
> +
> + pwm_config->pwm_value = pwm_value;
> +}
> +
> +static int qcom_pwm_config(struct pwm_chip *pwm_chip,
> + struct pwm_device *pwm_dev, u64 duty_ns, u64 period_ns)
> +{
> + struct qcom_pwm_channel *pwm;
> + int rc;
> +
> + pwm = pwm_dev_to_pwm_channel(pwm_chip, pwm_dev);
> + if (pwm == NULL) {
> + dev_err(pwm_chip->dev, "PWM channel not found\n");
> + return -ENODEV;
> + }
> +
> + if (duty_ns > period_ns) {
> + dev_err(pwm_chip->dev, "Duty %llu ns is larger than period %llu ns\n",
> + duty_ns, period_ns);
> + return -EINVAL;
> + }
> +
> + if (period_ns != pwm->current_period_ns)
> + __qcom_pwm_calc_pwm_period(period_ns, &pwm->pwm_config);
> +
> + if (period_ns != pwm->current_period_ns ||
> + duty_ns != pwm->current_duty_ns)
> + __qcom_pwm_calc_pwm_duty(period_ns, duty_ns, &pwm->pwm_config);

You're losing precision here by using the requested period length
(instead of the time that is implemented in hardware).

> + rc = qcom_pwm_channel_config(pwm);
> + if (rc < 0) {
> + dev_err(pwm_chip->dev, "Config PWM channel %u failed, rc=%d\n",
> + pwm->chan_idx, rc);
> + return rc;
> + }
> +
> + pwm->current_period_ns = period_ns;
> + pwm->current_duty_ns = duty_ns;
> + return 0;
> +}
> +
> +static int qcom_pwm_enable(struct pwm_chip *pwm_chip,
> + struct pwm_device *pwm_dev)
> +{
> + struct qcom_pwm_channel *pwm;
> + int rc = 0;
> +
> + pwm = pwm_dev_to_pwm_channel(pwm_chip, pwm_dev);
> + if (pwm == NULL) {
> + dev_err(pwm_chip->dev, "PWM channel not found\n");
> + return -ENODEV;
> + }
> +
> + rc = qcom_pwm_channel_write(pwm, REG_PWM_SYNC, PWM_VALUE_SYNC);
> + if (rc < 0)
> + return rc;
> +
> + rc = qcom_pwm_channel_set_glitch_removal(pwm, true);
> + if (rc < 0)
> + return rc;
> +
> + return qcom_pwm_channel_enable(pwm, true);
> +}
> +
> +static int qcom_pwm_disable(struct pwm_chip *pwm_chip,
> + struct pwm_device *pwm_dev)
> +{
> + struct qcom_pwm_channel *pwm;
> + int rc;
> +
> + pwm = pwm_dev_to_pwm_channel(pwm_chip, pwm_dev);
> + if (pwm == NULL) {
> + dev_err(pwm_chip->dev, "PWM channel not found\n");
> + return -ENODEV;
> + }
> +
> + rc = qcom_pwm_channel_enable(pwm, false);
> + if (rc < 0)
> + return rc;
> +
> + return qcom_pwm_channel_set_glitch_removal(pwm, false);
> +}
> +
> +static int qcom_pwm_apply(struct pwm_chip *pwm_chip,
> + struct pwm_device *pwm_dev, const struct pwm_state *state)

s/pwm_chip/chip/; s/pwm_dev/pwm/;

> +{
> + int rc;
> +

You have to check for polarity here.

> + if (state->period != pwm_dev->state.period ||
> + state->duty_cycle != pwm_dev->state.duty_cycle) {
> + rc = qcom_pwm_config(pwm_chip, pwm_dev,
> + state->duty_cycle, state->period);
> + if (rc < 0)
> + return rc;
> +
> + pwm_dev->state.duty_cycle = state->duty_cycle;
> + pwm_dev->state.period = state->period;

The core takes care for this, please drop these two assignments.

> + }
> +
> + if (state->enabled != pwm_dev->state.enabled) {
> + if (state->enabled)
> + rc = qcom_pwm_enable(pwm_chip, pwm_dev);
> + else
> + rc = qcom_pwm_disable(pwm_chip, pwm_dev);

Please handle state->enabled = false before configuring duty/period to
prevent a glitch.

> + if (rc < 0)
> + return rc;
> +
> + pwm_dev->state.enabled = state->enabled;
> + }
> +
> + return 0;
> +}
> +
> +static const struct pwm_ops qcom_pwm_ops = {
> + .apply = qcom_pwm_apply,
> + .owner = THIS_MODULE,

Please implement .get_status and test your driver with
CONFIG_PWM_ENABLED.

> +};
> +
> +static int qcom_pwm_parse_dt(struct qcom_pwm_chip *chip)
> +{
> + int rc = 0, i;
> + const __be32 *addr;
> + u32 base;
> +
> + addr = of_get_address(chip->dev->of_node, 0, NULL, NULL);
> + if (!addr) {
> + dev_err(chip->dev, "Get PWM device address failed, rc=%d\n",
> + rc);
> + return -EINVAL;
> + }
> +
> + base = be32_to_cpu(*addr);
> + rc = of_property_read_u32(chip->dev->of_node, "qcom,num-channels",
> + &chip->num_channels);
> + if (rc < 0) {
> + dev_err(chip->dev, "Failed to get qcom,num-channels, rc=%d\n",
> + rc);
> + return rc;
> + }
> +
> + if (chip->num_channels == 0) {
> + dev_err(chip->dev, "No PWM channel specified\n");
> + return rc;
> + }
> +
> + chip->pwms = devm_kcalloc(chip->dev, chip->num_channels,
> + sizeof(*chip->pwms), GFP_KERNEL);
> + if (!chip->pwms)
> + return -ENOMEM;
> +
> + for (i = 0; i < chip->num_channels; i++) {
> + chip->pwms[i].chip = chip;
> + chip->pwms[i].chan_idx = i;
> + chip->pwms[i].reg_base = base + i * REG_SIZE_PER_CHANN;
> + rc = qcom_pwm_channel_read(&chip->pwms[i], REG_PERPH_SUBTYPE,
> + &chip->pwms[i].subtype);

Can a single device have channels with different sub-types?

> + if (rc < 0) {
> + dev_err(chip->dev, "Read PWM channel %d subtype failed, rc=%d\n",
> + i, rc);
> + return rc;
> + }
> + }
> +
> + return 0;
> +}
> +
> +static int qcom_pwm_probe(struct platform_device *pdev)
> +{
> + int rc;
> + struct qcom_pwm_chip *chip;
> +
> + chip = devm_kzalloc(&pdev->dev, sizeof(*chip), GFP_KERNEL);
> + if (!chip)
> + return -ENOMEM;

If you parse qcom,num-channels already before allocating driver data you
can allocate driver and per channel data in a single chunk, making some
operations simpler and maybe even save some memory.

> + chip->dev = &pdev->dev;
> + chip->regmap = dev_get_regmap(chip->dev->parent, NULL);
> + if (!chip->regmap) {
> + dev_err(chip->dev, "Getting regmap failed\n");
> + return -EINVAL;

ENODEV instead of EINVAL is more usual I think. Please use

return dev_err_probe(chip->dev, -ENODEV, "....");

and also use dev_err_probe in the other error paths.

> + }
> +
> + rc = qcom_pwm_parse_dt(chip);
> + if (rc < 0)
> + return rc;
> +
> + mutex_init(&chip->rw_lock);
> + dev_set_drvdata(chip->dev, chip);
> + chip->pwm_chip.dev = chip->dev;
> + chip->pwm_chip.base = -1;

This shouldn't be done any more since commit f9a8ee8c8bcd ("pwm: Always
allocate PWM chip base ID dynamically") (which currently sits in next).

> + chip->pwm_chip.npwm = chip->num_channels;
> + chip->pwm_chip.ops = &qcom_pwm_ops;
> +
> + rc = pwmchip_add(&chip->pwm_chip);
> + if (rc < 0) {
> + dev_err(chip->dev, "Add pwmchip failed, rc=%d\n", rc);
> + goto err_out;

The cleanups done after this goto are not necessary. Just use

return dev_err_probe(chip->dev, rc, "Add pwmchip failed\n");


> + }
> +
> + return 0;
> +err_out:
> + mutex_destroy(&chip->rw_lock);
> + dev_set_drvdata(chip->dev, NULL);
> + return rc;
> +}
> +
> +static int qcom_pwm_remove(struct platform_device *pdev)
> +{
> + struct qcom_pwm_chip *chip = dev_get_drvdata(&pdev->dev);
> + int rc = 0;
> +
> + rc = pwmchip_remove(&chip->pwm_chip);
> + if (rc < 0)
> + dev_err(chip->dev, "Remove pwmchip failed, rc=%d\n", rc);
> +
> + mutex_destroy(&chip->rw_lock);
> + dev_set_drvdata(chip->dev, NULL);

The driver core cares for

dev_set_drvdata(chip->dev, NULL);

Also destroying the mutes isn't usually done.

> + return rc;
> +}
> +
> +static const struct of_device_id qcom_pwm_of_match[] = {
> + { .compatible = "qcom,pwm"},
> + { },
> +};
> +
> +static struct platform_driver qcom_pwm_driver = {
> + .driver = {
> + .name = "qcom,pwm",
> + .of_match_table = qcom_pwm_of_match,
> + },
> + .probe = qcom_pwm_probe,
> + .remove = qcom_pwm_remove,

I'm not a big fan of aligning the =. It looks ugly with that big white
space before = (and using a smaller space is bad if you later have to
initialize a member with a longer name).

But no hard veto from my side here, if you want to stick to that layout.

> +};
> +module_platform_driver(qcom_pwm_driver);
> +
> +MODULE_DESCRIPTION("QCOM PWM driver");
> +MODULE_LICENSE("GPL v2");
> --
> Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> a Linux Foundation Collaborative Project.
>
>

--
Pengutronix e.K. | Uwe Kleine-König |
Industrial Linux Solutions | https://www.pengutronix.de/ |
[unhandled content-type:application/pgp-signature]
\
 
 \ /
  Last update: 2021-04-27 19:08    [W:0.163 / U:0.080 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site