From: Christian Marangi <ansuelsmth@gmail.com>
To: "Uwe Kleine-König" <ukleinek@kernel.org>
Cc: linux-kernel@vger.kernel.org, linux-pwm@vger.kernel.org,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Benjamin Larsson <benjamin.larsson@genexis.eu>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
Lorenzo Bianconi <lorenzo@kernel.org>
Subject: Re: [PATCH v19] pwm: airoha: Add support for EN7581 SoC
Date: Tue, 1 Jul 2025 21:20:24 +0200 [thread overview]
Message-ID: <686434fb.050a0220.efc3e.909b@mx.google.com> (raw)
In-Reply-To: <bwtk2nac2eo2jgf2lousguw7o34tzhz7mesdo3jfaf4gc3pri6@tff3h4f4274u>
On Tue, Jul 01, 2025 at 09:40:03AM +0200, Uwe Kleine-König wrote:
> Hello Christian,
>
> On Mon, Jun 30, 2025 at 01:44:39PM +0200, Christian Marangi wrote:
> > +struct airoha_pwm_bucket {
> > + int used;
> > + u32 period_ticks;
> > + u32 duty_ticks;
> > +};
> > +
> > +struct airoha_pwm {
> > + struct regmap *regmap;
> > + /* Global mutex to protect bucket used counter */
> > + struct mutex mutex;
>
> I think you don't need that mutex. There is a chip lock already used by
> the core and that is held during .get_state() and .apply() serializing
> these calls (and more).
>
> > + DECLARE_BITMAP(initialized, AIROHA_PWM_MAX_CHANNELS);
> > +
> > + struct airoha_pwm_bucket buckets[AIROHA_PWM_NUM_BUCKETS];
> > +
> > + /* Cache bucket used by each pwm channel */
> > + u8 channel_bucket[AIROHA_PWM_MAX_CHANNELS];
> > +};
> > [...]
> > +static int airoha_pwm_apply_bucket_config(struct airoha_pwm *pc, int bucket,
> > + u32 duty_ticks, u32 period_ticks)
> > +{
> > + u32 mask, shift, val;
> > + u64 offset;
> > + int ret;
> > +
> > + offset = bucket;
> > + shift = do_div(offset, AIROHA_PWM_BUCKET_PER_CYCLE_CFG);
>
> Do you really need offset as a 64 bit variable? At least on 32 bit archs
>
> offset = bucket / AIROHA_PWM_BUCKET_PER_CYCLE_CFG;
> shift = AIROHA_PWM_REG_CYCLE_CFG_SHIFT(bucket % AIROHA_PWM_BUCKET_PER_CYCLE_CFG);
>
> should be cheaper. Also can bucket better be an unsigned value (to make
> it obvious that no strange things happen with the division)?
>
No for this u32 is ok.
> > + shift = AIROHA_PWM_REG_CYCLE_CFG_SHIFT(shift);
> > +
> > + /* Configure frequency divisor */
> > + mask = AIROHA_PWM_WAVE_GEN_CYCLE << shift;
> > + val = FIELD_PREP(AIROHA_PWM_WAVE_GEN_CYCLE, period_ticks) << shift;
> > + ret = regmap_update_bits(pc->regmap, AIROHA_PWM_REG_CYCLE_CFG_VALUE(offset),
> > + mask, val);
> > + if (ret)
> > + return ret;
> > +
> > + offset = bucket;
> > + shift = do_div(offset, AIROHA_PWM_BUCKET_PER_FLASH_PROD);
> > + shift = AIROHA_PWM_REG_GPIO_FLASH_PRD_SHIFT(shift);
> > +
> > + /* Configure duty cycle */
> > + mask = AIROHA_PWM_GPIO_FLASH_PRD_HIGH << shift;
> > + val = FIELD_PREP(AIROHA_PWM_GPIO_FLASH_PRD_HIGH, duty_ticks) << shift;
> > + ret = regmap_update_bits(pc->regmap, AIROHA_PWM_REG_GPIO_FLASH_PRD_SET(offset),
> > + mask, val);
> > + if (ret)
> > + return ret;
> > +
> > + mask = AIROHA_PWM_GPIO_FLASH_PRD_LOW << shift;
> > + val = FIELD_PREP(AIROHA_PWM_GPIO_FLASH_PRD_LOW,
> > + AIROHA_PWM_DUTY_FULL - duty_ticks) << shift;
> > + return regmap_update_bits(pc->regmap, AIROHA_PWM_REG_GPIO_FLASH_PRD_SET(offset),
> > + mask, val);
>
> Strange hardware, why do you have to configure both the high and the low
> relative duty? What happens if AIROHA_PWM_GPIO_FLASH_PRD_LOW +
> AIROHA_PWM_GPIO_FLASH_PRD_HIGH != AIROHA_PWM_DUTY_FULL?
>
From documentation it gets rejected and configured bucket doesn't work.
> > +}
> > +
> > [...]
> > +static int airoha_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
> > + const struct pwm_state *state)
> > +{
> > + struct airoha_pwm *pc = pwmchip_get_drvdata(chip);
> > + u32 period_ticks, duty_ticks;
> > + u32 period_ns, duty_ns;
> > +
> > + if (!state->enabled) {
> > + airoha_pwm_disable(pc, pwm);
> > + return 0;
> > + }
> > +
> > + /* Only normal polarity is supported */
> > + if (state->polarity == PWM_POLARITY_INVERSED)
> > + return -EINVAL;
> > +
> > + /* Exit early if period is less than minimum supported */
> > + if (state->period < AIROHA_PWM_PERIOD_TICK_NS)
> > + return -EINVAL;
> > +
> > + /* Clamp period to MAX supported value */
> > + if (state->period > AIROHA_PWM_PERIOD_MAX_NS)
> > + period_ns = AIROHA_PWM_PERIOD_MAX_NS;
> > + else
> > + period_ns = state->period;
> > +
> > + /* Validate duty to configured period */
> > + if (state->duty_cycle > period_ns)
> > + duty_ns = period_ns;
> > + else
> > + duty_ns = state->duty_cycle;
> > +
> > + /*
> > + * Period goes at 4ns step, normalize it to check if we can
> > + * share a generator.
> > + */
> > + period_ns = rounddown(period_ns, AIROHA_PWM_PERIOD_TICK_NS);
> > +
> > + /*
> > + * Duty is divided in 255 segment, normalize it to check if we
> > + * can share a generator.
> > + */
> > + duty_ns = DIV_U64_ROUND_UP(duty_ns * AIROHA_PWM_DUTY_FULL,
> > + AIROHA_PWM_DUTY_FULL);
>
> This looks bogus. This is just duty_ns = duty_ns, or what do I miss?
> Also duty_ns is an u32 and AIROHA_PWM_DUTY_FULL an int, so there is no
> need for a 64 bit division.
>
duty_ns * 255 goes beyond max u32.
225000000000.
Some revision ago it was asked to round also the duty_ns. And this is
really to round_up duty in 255 segment.
Consider that this have the ROUND_UP part that is different than doing
simple stuff like "duty * 255/255"
Hope we can solve these 2 problem since I think it's the last changes.
> > + /* Convert ns to ticks */
> > + period_ticks = airoha_pwm_get_period_ticks_from_ns(period_ns);
> > + duty_ticks = airoha_pwm_get_duty_ticks_from_ns(period_ns, duty_ns);
> > +
> > + return airoha_pwm_config(pc, pwm, period_ticks, duty_ticks);
> > +}
>
> Best regards
> Uwe
--
Ansuel
next prev parent reply other threads:[~2025-07-01 19:20 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-30 11:44 [PATCH v19] pwm: airoha: Add support for EN7581 SoC Christian Marangi
2025-06-30 14:26 ` Andy Shevchenko
2025-07-01 7:40 ` Uwe Kleine-König
2025-07-01 19:20 ` Christian Marangi [this message]
2025-07-02 6:01 ` Uwe Kleine-König
2025-07-03 18:07 ` Christian Marangi
2025-07-04 6:43 ` Uwe Kleine-König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=686434fb.050a0220.efc3e.909b@mx.google.com \
--to=ansuelsmth@gmail.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=benjamin.larsson@genexis.eu \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pwm@vger.kernel.org \
--cc=lorenzo@kernel.org \
--cc=ukleinek@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.