* [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind [not found] <cover.1785158244.git.sean@mess.org> @ 2026-07-27 13:18 ` Sean Young 2026-07-27 14:51 ` sashiko-bot 2026-07-27 13:18 ` [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called " Sean Young 2026-07-27 13:18 ` [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated Sean Young 2 siblings, 1 reply; 6+ messages in thread From: Sean Young @ 2026-07-27 13:18 UTC (permalink / raw) To: linux-media, Sean Young, Mauro Carvalho Chehab, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Viktor Prutyanov Cc: stable, Mauro Carvalho Chehab, linux-arm-kernel, linux-amlogic, linux-kernel clk_prepare_enable() needs a call to clk_disable_unprepare() on driver unbind. Make it devm managed. Fixes: 49be1c78d575 ("media: rc: introduce Meson IR TX driver") Signed-off-by: Sean Young <sean@mess.org> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Cc: stable@vger.kernel.org --- drivers/media/rc/meson-ir-tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c index fded2c256f2a..e7bb107e6a84 100644 --- a/drivers/media/rc/meson-ir-tx.c +++ b/drivers/media/rc/meson-ir-tx.c @@ -288,8 +288,8 @@ static int meson_irtx_mod_clock_probe(struct meson_irtx *ir, if (!np) return -ENODEV; - clock = devm_clk_get(ir->dev, "xtal"); - if (IS_ERR(clock) || clk_prepare_enable(clock)) + clock = devm_clk_get_enabled(ir->dev, "xtal"); + if (IS_ERR(clock)) return -ENODEV; *clk_nr = IRB_MOD_XTAL3_CLK; -- 2.55.0 _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind 2026-07-27 13:18 ` [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind Sean Young @ 2026-07-27 14:51 ` sashiko-bot 0 siblings, 0 replies; 6+ messages in thread From: sashiko-bot @ 2026-07-27 14:51 UTC (permalink / raw) To: Sean Young; +Cc: neil.armstrong, linux-amlogic, media-ci Thank you for your contribution! Sashiko AI review found 4 potential issue(s) to consider: Pre-existing issues: - [High] Memory leak of the rc_dev struct on driver unbind due to mixing unmanaged allocation with managed registration. - [High] Integer underflow and division by zero when configuring high carrier frequencies. - [High] Lockless check of completion_done in the IRQ handler exposes a race that can overflow the hardware FIFO. - [Medium] Error codes from core kernel APIs are hardcoded to -ENODEV, breaking probe deferral. -- --- Patch [7]: [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind --- commit b425f7e336876fa07197476c4560b56dec0eb33d Author: Sean Young <sean@mess.org> media: meson-ir-tx: Ensure clock is disabled on unbind clk_prepare_enable() needs a call to clk_disable_unprepare() on driver unbind. Make it devm managed. > diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c > index fded2c256f2a6..e7bb107e6a843 100644 > --- a/drivers/media/rc/meson-ir-tx.c > +++ b/drivers/media/rc/meson-ir-tx.c > @@ -288,8 +288,8 @@ static int meson_irtx_mod_clock_probe(struct meson_irtx *ir, > if (!np) > return -ENODEV; > > - clock = devm_clk_get(ir->dev, "xtal"); > - if (IS_ERR(clock) || clk_prepare_enable(clock)) > + clock = devm_clk_get_enabled(ir->dev, "xtal"); > + if (IS_ERR(clock)) > return -ENODEV; > > *clk_nr = IRB_MOD_XTAL3_CLK; [Severity: Medium] This isn't a bug introduced by this patch, but returning -ENODEV here prevents proper probe deferral. If the clock is not yet ready and devm_clk_get_enabled() returns -EPROBE_DEFER, the initialization will permanently fail instead of trying again later. Also in meson_irtx_probe(), the same pattern exists for the IRQ: drivers/media/rc/meson-ir-tx.c:meson_irtx_probe() { ... irq = platform_get_irq(pdev, 0); if (irq < 0) return -ENODEV; ... } Should these functions return the exact error pointer (e.g. PTR_ERR(clock)) or error code rather than hardcoding -ENODEV? [Severity: High] This is a pre-existing issue, but does this code cause an integer underflow and division by zero when configuring high carrier frequencies? drivers/media/rc/meson-ir-tx.c:meson_irtx_set_mod() { ... unsigned int cnt = DIV_ROUND_CLOSEST(ir->clk_rate, ir->carrier); unsigned int pulse_cnt = DIV_ROUND_CLOSEST(cnt * ir->duty_cycle, 100); unsigned int space_cnt = cnt - pulse_cnt; dev_dbg(ir->dev, "F_mod = %uHz, T_mod = %luns, duty_cycle = %u%%\n", ir->carrier, NSEC_PER_SEC / ir->clk_rate * cnt, 100 * pulse_cnt / cnt); ... } If a user space process provides a carrier frequency greater than twice the modulator clock rate (ir->clk_rate), cnt will be 0. This results in pulse_cnt being 0, which triggers a division by zero in the dev_dbg() statement. Could this also cause an underflow when writing to the hardware register via IRB_MOD_COUNT(pulse_cnt, space_cnt)? [Severity: High] This is a pre-existing issue, but does the lockless check of completion_done() in the IRQ handler expose a race condition? drivers/media/rc/meson-ir-tx.c:meson_irtx_irqhandler() { ... if (completion_done(&ir->completion)) return IRQ_HANDLED; spin_lock_irqsave(&ir->lock, flags); if (ir->buf_head < ir->buf_len) meson_irtx_send_buffer(ir); else complete(&ir->completion); spin_unlock_irqrestore(&ir->lock, flags); ... } If an edge interrupt for the FIFO threshold is delayed, and a new transmission begins by acquiring the lock and reinitializing the completion, could the delayed IRQ handler evaluate completion_done() outside the lock, see it as false, and then blindly write up to 96 more words, overflowing the hardware FIFO? [Severity: High] This is a pre-existing issue, but does this code leak the rc_dev structure on driver unbind? drivers/media/rc/meson-ir-tx.c:meson_irtx_probe() { ... rc = rc_allocate_device(RC_DRIVER_IR_RAW_TX); if (!rc) return -ENOMEM; ... ret = devm_rc_register_device(dev, rc); if (ret < 0) { rc_free_device(rc); return dev_err_probe(dev, ret, "rc_dev registration failed\n"); } ... } Because rc is allocated with rc_allocate_device() instead of a managed variant like devm_rc_allocate_device(), when the driver is unbound, devm_rc_register_device() will automatically unregister the device, but the memory for the rc_dev structure is never freed since there is no remove callback. -- Sashiko AI review · https://sashiko.dev/#/patchset/cover.1785158244.git.sean@mess.org?part=7 _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called on unbind [not found] <cover.1785158244.git.sean@mess.org> 2026-07-27 13:18 ` [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind Sean Young @ 2026-07-27 13:18 ` Sean Young 2026-07-28 8:30 ` Neil Armstrong 2026-07-27 13:18 ` [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated Sean Young 2 siblings, 1 reply; 6+ messages in thread From: Sean Young @ 2026-07-27 13:18 UTC (permalink / raw) To: linux-media, Sean Young, Mauro Carvalho Chehab, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Hans Verkuil, Patrice Chotard Cc: stable, linux-arm-kernel, linux-amlogic, linux-kernel Make rc_dev devm managed. Fixes: dccc0c3ddf8f ("media: rc: fix race between unregister and urb/irq callbacks") Signed-off-by: Sean Young <sean@mess.org> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Cc: stable@vger.kernel.org --- drivers/media/rc/meson-ir-tx.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c index e7bb107e6a84..abb107d19e8c 100644 --- a/drivers/media/rc/meson-ir-tx.c +++ b/drivers/media/rc/meson-ir-tx.c @@ -345,7 +345,7 @@ static int meson_irtx_probe(struct platform_device *pdev) if (ret) return dev_err_probe(dev, ret, "irq request failed\n"); - rc = rc_allocate_device(RC_DRIVER_IR_RAW_TX); + rc = devm_rc_allocate_device(dev, RC_DRIVER_IR_RAW_TX); if (!rc) return -ENOMEM; @@ -358,10 +358,8 @@ static int meson_irtx_probe(struct platform_device *pdev) rc->s_tx_duty_cycle = meson_irtx_set_duty_cycle; ret = devm_rc_register_device(dev, rc); - if (ret < 0) { - rc_free_device(rc); + if (ret < 0) return dev_err_probe(dev, ret, "rc_dev registration failed\n"); - } return 0; } -- 2.55.0 _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called on unbind 2026-07-27 13:18 ` [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called " Sean Young @ 2026-07-28 8:30 ` Neil Armstrong 0 siblings, 0 replies; 6+ messages in thread From: Neil Armstrong @ 2026-07-28 8:30 UTC (permalink / raw) To: Sean Young, linux-media, Mauro Carvalho Chehab, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Hans Verkuil, Patrice Chotard Cc: stable, linux-arm-kernel, linux-amlogic, linux-kernel On 7/27/26 15:18, Sean Young wrote: > Make rc_dev devm managed. > > Fixes: dccc0c3ddf8f ("media: rc: fix race between unregister and urb/irq callbacks") > Signed-off-by: Sean Young <sean@mess.org> > Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > Cc: stable@vger.kernel.org > --- > drivers/media/rc/meson-ir-tx.c | 6 ++---- > 1 file changed, 2 insertions(+), 4 deletions(-) > > diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c > index e7bb107e6a84..abb107d19e8c 100644 > --- a/drivers/media/rc/meson-ir-tx.c > +++ b/drivers/media/rc/meson-ir-tx.c > @@ -345,7 +345,7 @@ static int meson_irtx_probe(struct platform_device *pdev) > if (ret) > return dev_err_probe(dev, ret, "irq request failed\n"); > > - rc = rc_allocate_device(RC_DRIVER_IR_RAW_TX); > + rc = devm_rc_allocate_device(dev, RC_DRIVER_IR_RAW_TX); > if (!rc) > return -ENOMEM; > > @@ -358,10 +358,8 @@ static int meson_irtx_probe(struct platform_device *pdev) > rc->s_tx_duty_cycle = meson_irtx_set_duty_cycle; > > ret = devm_rc_register_device(dev, rc); > - if (ret < 0) { > - rc_free_device(rc); > + if (ret < 0) > return dev_err_probe(dev, ret, "rc_dev registration failed\n"); > - } > > return 0; > } Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Thanks, Neil _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated [not found] <cover.1785158244.git.sean@mess.org> 2026-07-27 13:18 ` [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind Sean Young 2026-07-27 13:18 ` [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called " Sean Young @ 2026-07-27 13:18 ` Sean Young 2026-07-28 8:30 ` Neil Armstrong 2 siblings, 1 reply; 6+ messages in thread From: Sean Young @ 2026-07-27 13:18 UTC (permalink / raw) To: linux-media, Sean Young, Mauro Carvalho Chehab, Neil Armstrong, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Viktor Prutyanov Cc: stable, Mauro Carvalho Chehab, linux-arm-kernel, linux-amlogic, linux-kernel devm_clk_get_enabled() may return -EPROBE_DEFER which needs to be propagated else the probe will not be deferred, it will fail instead. Fixes: 49be1c78d575 ("media: rc: introduce Meson IR TX driver") Signed-off-by: Sean Young <sean@mess.org> Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Cc: stable@vger.kernel.org --- drivers/media/rc/meson-ir-tx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c index abb107d19e8c..174d5135e1bb 100644 --- a/drivers/media/rc/meson-ir-tx.c +++ b/drivers/media/rc/meson-ir-tx.c @@ -290,7 +290,7 @@ static int meson_irtx_mod_clock_probe(struct meson_irtx *ir, clock = devm_clk_get_enabled(ir->dev, "xtal"); if (IS_ERR(clock)) - return -ENODEV; + return PTR_ERR(clock); *clk_nr = IRB_MOD_XTAL3_CLK; ir->clk_rate = clk_get_rate(clock) / 3; @@ -324,7 +324,7 @@ static int meson_irtx_probe(struct platform_device *pdev) irq = platform_get_irq(pdev, 0); if (irq < 0) - return -ENODEV; + return irq; ir->dev = dev; ir->carrier = MIRTX_DEFAULT_CARRIER; -- 2.55.0 _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated 2026-07-27 13:18 ` [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated Sean Young @ 2026-07-28 8:30 ` Neil Armstrong 0 siblings, 0 replies; 6+ messages in thread From: Neil Armstrong @ 2026-07-28 8:30 UTC (permalink / raw) To: Sean Young, linux-media, Mauro Carvalho Chehab, Kevin Hilman, Jerome Brunet, Martin Blumenstingl, Viktor Prutyanov Cc: stable, Mauro Carvalho Chehab, linux-arm-kernel, linux-amlogic, linux-kernel On 7/27/26 15:18, Sean Young wrote: > devm_clk_get_enabled() may return -EPROBE_DEFER which needs to be > propagated else the probe will not be deferred, it will fail instead. > > Fixes: 49be1c78d575 ("media: rc: introduce Meson IR TX driver") > Signed-off-by: Sean Young <sean@mess.org> > Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > Cc: stable@vger.kernel.org > --- > drivers/media/rc/meson-ir-tx.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/media/rc/meson-ir-tx.c b/drivers/media/rc/meson-ir-tx.c > index abb107d19e8c..174d5135e1bb 100644 > --- a/drivers/media/rc/meson-ir-tx.c > +++ b/drivers/media/rc/meson-ir-tx.c > @@ -290,7 +290,7 @@ static int meson_irtx_mod_clock_probe(struct meson_irtx *ir, > > clock = devm_clk_get_enabled(ir->dev, "xtal"); > if (IS_ERR(clock)) > - return -ENODEV; > + return PTR_ERR(clock); > > *clk_nr = IRB_MOD_XTAL3_CLK; > ir->clk_rate = clk_get_rate(clock) / 3; > @@ -324,7 +324,7 @@ static int meson_irtx_probe(struct platform_device *pdev) > > irq = platform_get_irq(pdev, 0); > if (irq < 0) > - return -ENODEV; > + return irq; > > ir->dev = dev; > ir->carrier = MIRTX_DEFAULT_CARRIER; Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Thanks, Neil _______________________________________________ linux-amlogic mailing list linux-amlogic@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-amlogic ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-28 8:31 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <cover.1785158244.git.sean@mess.org>
2026-07-27 13:18 ` [PATCH v4 07/15] media: meson-ir-tx: Ensure clock is disabled on unbind Sean Young
2026-07-27 14:51 ` sashiko-bot
2026-07-27 13:18 ` [PATCH v4 08/15] media: meson-ir-tx: Ensure rc_free_device() is called " Sean Young
2026-07-28 8:30 ` Neil Armstrong
2026-07-27 13:18 ` [PATCH v4 09/15] media: meson-ir-tx: Ensure probe error is propagated Sean Young
2026-07-28 8:30 ` Neil Armstrong
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
Powered by JetHome