Linux kernel and device drivers for NXP i.MX platforms
 help / color / mirror / Atom feed
* [PATCH] clk: imx: Add audio PLL debugfs for K-divider control
@ 2026-05-12  9:08 Jacky Bai
  2026-05-12 15:12 ` Frank Li
  2026-05-13 20:04 ` sashiko-bot
  0 siblings, 2 replies; 4+ messages in thread
From: Jacky Bai @ 2026-05-12  9:08 UTC (permalink / raw)
  To: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd,
	Brian Masney, Frank Li, Sascha Hauer, Pengutronix Kernel Team,
	Fabio Estevam
  Cc: linux-clk, imx, linux-arm-kernel, Jacky Bai

Add debugfs support for runtime tuning of the audio PLL K divider,
which enables fine-grained frequency adjustments for audio PLL.
This is used for:
  - Audio clock calibration and testing
  - Debugging audio synchronization issues

Two debug interfaces are exported to userspace:
  - delta_k: It is used to adjust the K divider in PLL based on small
    steps
  - pll_parameter: It is used for get PLL's current M-divider,
    P-divider, S-divider & K-divider setting in PLL register

examples for the usage of the two interfaces:
   1): Get the current PLL setting of dividers
     cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/pll_parameter

   2): if want to adjust the K-divider by a delta_k '1', then
     echo 1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;

   3): if want to adjust the K-divider by a delta_k '-1', then
     echo -1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;

Signed-off-by: Jacky Bai <ping.bai@nxp.com>
---
 drivers/clk/imx/clk-imx8mm.c  |  6 ++++
 drivers/clk/imx/clk-pll14xx.c | 79 +++++++++++++++++++++++++++++++++++++++++++
 drivers/clk/imx/clk.h         |  1 +
 3 files changed, 86 insertions(+)

diff --git a/drivers/clk/imx/clk-imx8mm.c b/drivers/clk/imx/clk-imx8mm.c
index 319af4deec01c188524807d39dff92bbd08f3601..6a031d7cd031c8b5f5b01e5531ce54360724ba44 100644
--- a/drivers/clk/imx/clk-imx8mm.c
+++ b/drivers/clk/imx/clk-imx8mm.c
@@ -298,6 +298,7 @@ static struct clk_hw **hws;
 
 static int imx8mm_clocks_probe(struct platform_device *pdev)
 {
+	struct clk_hw *audio_pll_hws[2];
 	struct device *dev = &pdev->dev;
 	struct device_node *np = dev->of_node;
 	void __iomem *base;
@@ -610,6 +611,11 @@ static int imx8mm_clocks_probe(struct platform_device *pdev)
 
 	imx_register_uart_clocks();
 
+	/* Add debug interface for audio PLLs */
+	audio_pll_hws[0] = hws[IMX8MM_AUDIO_PLL1];
+	audio_pll_hws[1] = hws[IMX8MM_AUDIO_PLL2];
+	audio_pll_debug_init(audio_pll_hws, ARRAY_SIZE(audio_pll_hws));
+
 	return 0;
 
 unregister_hws:
diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
index 39600ee22be3066683b562aa6f2a8b750d19c4cc..59f126f35474116bdad0aeda59777b9eb7f246cf 100644
--- a/drivers/clk/imx/clk-pll14xx.c
+++ b/drivers/clk/imx/clk-pll14xx.c
@@ -8,6 +8,7 @@
 #include <linux/bitfield.h>
 #include <linux/bits.h>
 #include <linux/clk-provider.h>
+#include <linux/debugfs.h>
 #include <linux/err.h>
 #include <linux/export.h>
 #include <linux/io.h>
@@ -551,3 +552,81 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
 	return hw;
 }
 EXPORT_SYMBOL_GPL(imx_dev_clk_hw_pll14xx);
+
+/*
+ * Debugfs interface for Audio PLL runtime monitoring and control
+ *
+ * This interface allows dynamic adjustment of the Audio PLL
+ * K-divider for precise frequency tuning, particularly useful
+ * for audio applications.
+ *
+ * examples for the usage of the two interfaces:
+ *   1): Get the current PLL setting of dividers
+ *     cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/pll_parameter
+ *
+ *   2): if want to adjust the K-divider by a delta_k '1', then
+ *     echo 1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
+ *
+ *   3): if want to adjust the K-divider by a delta_k '-1', then
+ *     echo -1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
+ */
+#ifdef CONFIG_DEBUG_FS
+static int pll_delta_k_set(void *data, u64 val)
+{
+	struct clk_pll14xx *pll = to_clk_pll14xx(data);
+	s16 delta_k = (s16)val;
+	u32 div_ctl1;
+	s16 kdiv;
+
+	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
+	kdiv = FIELD_GET(KDIV_MASK, div_ctl1) + delta_k;
+	writel_relaxed(FIELD_PREP(KDIV_MASK, kdiv), pll->base + DIV_CTL1);
+
+	return 0;
+}
+DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(delta_k_fops, NULL, pll_delta_k_set, "%lld\n");
+
+static int pll_setting_show(struct seq_file *s, void *data)
+{
+	struct clk_pll14xx *pll = to_clk_pll14xx(s->private);
+	u32 div_ctl0, div_ctl1;
+	u32 mdiv, pdiv, sdiv, kdiv;
+
+	div_ctl0 = readl_relaxed(pll->base + DIV_CTL0);
+	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
+
+	mdiv = FIELD_GET(MDIV_MASK, div_ctl0);
+	pdiv = FIELD_GET(PDIV_MASK, div_ctl0);
+	sdiv = FIELD_GET(SDIV_MASK, div_ctl0);
+	kdiv = FIELD_GET(KDIV_MASK, div_ctl1);
+
+	seq_printf(s, "Mdiv: 0x%x; Pdiv: 0x%x; Sdiv: 0x%x; Kdiv: 0x%x\n",
+	mdiv, pdiv, sdiv, kdiv);
+
+	return 0;
+}
+DEFINE_SHOW_ATTRIBUTE(pll_setting);
+
+void audio_pll_debug_init(struct clk_hw *hws[], unsigned int num_plls)
+{
+	struct dentry *rootdir, *audio_pll_dir;
+	const char *pll_name;
+	int i;
+
+	rootdir = debugfs_create_dir("audio_pll_monitor", NULL);
+
+	for (i = 0; i < num_plls; i++) {
+		pll_name = clk_hw_get_name(hws[i]);
+		audio_pll_dir = debugfs_create_dir(pll_name, rootdir);
+		debugfs_create_file_unsafe("delta_k", 0200, audio_pll_dir,
+				hws[i], &delta_k_fops);
+		debugfs_create_file("pll_parameter", 0444, audio_pll_dir,
+				hws[i], &pll_setting_fops);
+	}
+}
+#else /* !CONFIG_DEBUG_FS */
+void audio_pll_debug_init(struct clk_hw *hws[], unsigned int num_plls)
+{
+}
+#endif /* CONFIG_DEBUG_FS */
+EXPORT_SYMBOL_GPL(audio_pll_debug_init);
diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
index aa5202f284f3d1b7c1b4bf65e2329831832b43a5..9611ab127dad6f23770c18e22e1acbe2fc22bd4e 100644
--- a/drivers/clk/imx/clk.h
+++ b/drivers/clk/imx/clk.h
@@ -487,4 +487,5 @@ struct clk_hw *imx_clk_gpr_mux(const char *name, const char *compatible,
 			       u32 reg, const char **parent_names,
 			       u8 num_parents, const u32 *mux_table, u32 mask);
 
+void audio_pll_debug_init(struct clk_hw **hws, unsigned int num_plls);
 #endif

---
base-commit: e98d21c170b01ddef366f023bbfcf6b31509fa83
change-id: 20260421-imx8m_pll_debugfs-246d0fbbb617

Best regards,
-- 
Jacky Bai <ping.bai@nxp.com>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: imx: Add audio PLL debugfs for K-divider control
  2026-05-12  9:08 [PATCH] clk: imx: Add audio PLL debugfs for K-divider control Jacky Bai
@ 2026-05-12 15:12 ` Frank Li
  2026-05-13  8:01   ` Jacky Bai
  2026-05-13 20:04 ` sashiko-bot
  1 sibling, 1 reply; 4+ messages in thread
From: Frank Li @ 2026-05-12 15:12 UTC (permalink / raw)
  To: Jacky Bai
  Cc: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd,
	Brian Masney, Sascha Hauer, Pengutronix Kernel Team,
	Fabio Estevam, linux-clk, imx, linux-arm-kernel

On Tue, May 12, 2026 at 05:08:10PM +0800, Jacky Bai wrote:
> Add debugfs support for runtime tuning of the audio PLL K divider,
> which enables fine-grained frequency adjustments for audio PLL.
> This is used for:
>   - Audio clock calibration and testing
>   - Debugging audio synchronization issues
>
> Two debug interfaces are exported to userspace:
>   - delta_k: It is used to adjust the K divider in PLL based on small
>     steps
>   - pll_parameter: It is used for get PLL's current M-divider,
>     P-divider, S-divider & K-divider setting in PLL register
>
> examples for the usage of the two interfaces:
>    1): Get the current PLL setting of dividers
>      cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/pll_parameter
>
>    2): if want to adjust the K-divider by a delta_k '1', then
>      echo 1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
>
>    3): if want to adjust the K-divider by a delta_k '-1', then
>      echo -1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;

Nit: needn't example, it is basic usage mode for debugfs.

>
> Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> ---
>  drivers/clk/imx/clk-imx8mm.c  |  6 ++++
>  drivers/clk/imx/clk-pll14xx.c | 79 +++++++++++++++++++++++++++++++++++++++++++
>  drivers/clk/imx/clk.h         |  1 +
>  3 files changed, 86 insertions(+)
>
> diff --git a/drivers/clk/imx/clk-imx8mm.c b/drivers/clk/imx/clk-imx8mm.c
> index 319af4deec01c188524807d39dff92bbd08f3601..6a031d7cd031c8b5f5b01e5531ce54360724ba44 100644
> --- a/drivers/clk/imx/clk-imx8mm.c
> +++ b/drivers/clk/imx/clk-imx8mm.c
> @@ -298,6 +298,7 @@ static struct clk_hw **hws;
>
>  static int imx8mm_clocks_probe(struct platform_device *pdev)
>  {
> +	struct clk_hw *audio_pll_hws[2];
>  	struct device *dev = &pdev->dev;
>  	struct device_node *np = dev->of_node;
>  	void __iomem *base;
> @@ -610,6 +611,11 @@ static int imx8mm_clocks_probe(struct platform_device *pdev)
>
>  	imx_register_uart_clocks();
>
> +	/* Add debug interface for audio PLLs */
> +	audio_pll_hws[0] = hws[IMX8MM_AUDIO_PLL1];
> +	audio_pll_hws[1] = hws[IMX8MM_AUDIO_PLL2];
> +	audio_pll_debug_init(audio_pll_hws, ARRAY_SIZE(audio_pll_hws));
> +
>  	return 0;
>
>  unregister_hws:
> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index 39600ee22be3066683b562aa6f2a8b750d19c4cc..59f126f35474116bdad0aeda59777b9eb7f246cf 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c
> @@ -8,6 +8,7 @@
>  #include <linux/bitfield.h>
>  #include <linux/bits.h>
>  #include <linux/clk-provider.h>
> +#include <linux/debugfs.h>
>  #include <linux/err.h>
>  #include <linux/export.h>
>  #include <linux/io.h>
> @@ -551,3 +552,81 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,
>  	return hw;
>  }
>  EXPORT_SYMBOL_GPL(imx_dev_clk_hw_pll14xx);
> +
> +/*
> + * Debugfs interface for Audio PLL runtime monitoring and control
> + *
> + * This interface allows dynamic adjustment of the Audio PLL
> + * K-divider for precise frequency tuning, particularly useful
> + * for audio applications.
> + *
> + * examples for the usage of the two interfaces:
> + *   1): Get the current PLL setting of dividers
> + *     cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/pll_parameter
> + *
> + *   2): if want to adjust the K-divider by a delta_k '1', then
> + *     echo 1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
> + *
> + *   3): if want to adjust the K-divider by a delta_k '-1', then
> + *     echo -1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
> + */

2) and 3) keep one is enough, you better descript validate range for
delta_k here, which is more valuable information.

> +#ifdef CONFIG_DEBUG_FS
> +static int pll_delta_k_set(void *data, u64 val)
> +{
> +	struct clk_pll14xx *pll = to_clk_pll14xx(data);
> +	s16 delta_k = (s16)val;
> +	u32 div_ctl1;
> +	s16 kdiv;
> +
> +	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> +	kdiv = FIELD_GET(KDIV_MASK, div_ctl1) + delta_k;
> +	writel_relaxed(FIELD_PREP(KDIV_MASK, kdiv), pll->base + DIV_CTL1);
> +
> +	return 0;
> +}
> +DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(delta_k_fops, NULL, pll_delta_k_set, "%lld\n");

generally, better also provide read for delta_k

cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k because user
want to check value by read it back naturally.

Frank
> +
> +static int pll_setting_show(struct seq_file *s, void *data)
> +{
> +	struct clk_pll14xx *pll = to_clk_pll14xx(s->private);
> +	u32 div_ctl0, div_ctl1;
> +	u32 mdiv, pdiv, sdiv, kdiv;
> +
> +	div_ctl0 = readl_relaxed(pll->base + DIV_CTL0);
> +	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> +
> +	mdiv = FIELD_GET(MDIV_MASK, div_ctl0);
> +	pdiv = FIELD_GET(PDIV_MASK, div_ctl0);
> +	sdiv = FIELD_GET(SDIV_MASK, div_ctl0);
> +	kdiv = FIELD_GET(KDIV_MASK, div_ctl1);
> +
> +	seq_printf(s, "Mdiv: 0x%x; Pdiv: 0x%x; Sdiv: 0x%x; Kdiv: 0x%x\n",
> +	mdiv, pdiv, sdiv, kdiv);
> +
> +	return 0;
> +}
> +DEFINE_SHOW_ATTRIBUTE(pll_setting);
> +
> +void audio_pll_debug_init(struct clk_hw *hws[], unsigned int num_plls)
> +{
> +	struct dentry *rootdir, *audio_pll_dir;
> +	const char *pll_name;
> +	int i;
> +
> +	rootdir = debugfs_create_dir("audio_pll_monitor", NULL);
> +
> +	for (i = 0; i < num_plls; i++) {
> +		pll_name = clk_hw_get_name(hws[i]);
> +		audio_pll_dir = debugfs_create_dir(pll_name, rootdir);
> +		debugfs_create_file_unsafe("delta_k", 0200, audio_pll_dir,
> +				hws[i], &delta_k_fops);
> +		debugfs_create_file("pll_parameter", 0444, audio_pll_dir,
> +				hws[i], &pll_setting_fops);
> +	}
> +}
> +#else /* !CONFIG_DEBUG_FS */
> +void audio_pll_debug_init(struct clk_hw *hws[], unsigned int num_plls)
> +{
> +}
> +#endif /* CONFIG_DEBUG_FS */
> +EXPORT_SYMBOL_GPL(audio_pll_debug_init);
> diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h
> index aa5202f284f3d1b7c1b4bf65e2329831832b43a5..9611ab127dad6f23770c18e22e1acbe2fc22bd4e 100644
> --- a/drivers/clk/imx/clk.h
> +++ b/drivers/clk/imx/clk.h
> @@ -487,4 +487,5 @@ struct clk_hw *imx_clk_gpr_mux(const char *name, const char *compatible,
>  			       u32 reg, const char **parent_names,
>  			       u8 num_parents, const u32 *mux_table, u32 mask);
>
> +void audio_pll_debug_init(struct clk_hw **hws, unsigned int num_plls);
>  #endif
>
> ---
> base-commit: e98d21c170b01ddef366f023bbfcf6b31509fa83
> change-id: 20260421-imx8m_pll_debugfs-246d0fbbb617
>
> Best regards,
> --
> Jacky Bai <ping.bai@nxp.com>
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH] clk: imx: Add audio PLL debugfs for K-divider control
  2026-05-12 15:12 ` Frank Li
@ 2026-05-13  8:01   ` Jacky Bai
  0 siblings, 0 replies; 4+ messages in thread
From: Jacky Bai @ 2026-05-13  8:01 UTC (permalink / raw)
  To: Frank Li
  Cc: Abel Vesa, Peng Fan, Michael Turquette, Stephen Boyd,
	Brian Masney, Sascha Hauer, Pengutronix Kernel Team,
	Fabio Estevam, linux-clk@vger.kernel.org, imx@lists.linux.dev,
	linux-arm-kernel@lists.infradead.org

> Subject: Re: [PATCH] clk: imx: Add audio PLL debugfs for K-divider control
> 
> On Tue, May 12, 2026 at 05:08:10PM +0800, Jacky Bai wrote:
> > Add debugfs support for runtime tuning of the audio PLL K divider,
> > which enables fine-grained frequency adjustments for audio PLL.
> > This is used for:
> >   - Audio clock calibration and testing
> >   - Debugging audio synchronization issues
> >
> > Two debug interfaces are exported to userspace:
> >   - delta_k: It is used to adjust the K divider in PLL based on small
> >     steps
> >   - pll_parameter: It is used for get PLL's current M-divider,
> >     P-divider, S-divider & K-divider setting in PLL register
> >
> > examples for the usage of the two interfaces:
> >    1): Get the current PLL setting of dividers
> >      cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/pll_parameter
> >
> >    2): if want to adjust the K-divider by a delta_k '1', then
> >      echo 1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
> >
> >    3): if want to adjust the K-divider by a delta_k '-1', then
> >      echo -1 > /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
> 
> Nit: needn't example, it is basic usage mode for debugfs.
> 

will drop it.

> >
> > Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> > ---
> >  drivers/clk/imx/clk-imx8mm.c  |  6 ++++
> > drivers/clk/imx/clk-pll14xx.c | 79
> +++++++++++++++++++++++++++++++++++++++++++
> >  drivers/clk/imx/clk.h         |  1 +
> >  3 files changed, 86 insertions(+)

[...]

> > + *   3): if want to adjust the K-divider by a delta_k '-1', then
> > + *     echo -1 >
> /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k;
> > + */
> 
> 2) and 3) keep one is enough, you better descript validate range for delta_k
> here, which is more valuable information.
> 

Ok, will refine the comment in next version.

> > +#ifdef CONFIG_DEBUG_FS
> > +static int pll_delta_k_set(void *data, u64 val) {
> > +	struct clk_pll14xx *pll = to_clk_pll14xx(data);
> > +	s16 delta_k = (s16)val;
> > +	u32 div_ctl1;
> > +	s16 kdiv;
> > +
> > +	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> > +	kdiv = FIELD_GET(KDIV_MASK, div_ctl1) + delta_k;
> > +	writel_relaxed(FIELD_PREP(KDIV_MASK, kdiv), pll->base + DIV_CTL1);
> > +
> > +	return 0;
> > +}
> > +DEFINE_DEBUGFS_ATTRIBUTE_SIGNED(delta_k_fops, NULL,
> pll_delta_k_set,
> > +"%lld\n");
> 
> generally, better also provide read for delta_k
> 
> cat /sys/kernel/debug/audio_pll_monitor/audio_pll1/delta_k because user
> want to check value by read it back naturally.
> 

Thx, will add it.

BR
> Frank
> > +
> > +static int pll_setting_show(struct seq_file *s, void *data) {
> > +	struct clk_pll14xx *pll = to_clk_pll14xx(s->private);
> > +	u32 div_ctl0, div_ctl1;
> > +	u32 mdiv, pdiv, sdiv, kdiv;
> > +
> > +	div_ctl0 = readl_relaxed(pll->base + DIV_CTL0);
> > +	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> > +
> > +	mdiv = FIELD_GET(MDIV_MASK, div_ctl0);
> > +	pdiv = FIELD_GET(PDIV_MASK, div_ctl0);
> > +	sdiv = FIELD_GET(SDIV_MASK, div_ctl0);
> > +	kdiv = FIELD_GET(KDIV_MASK, div_ctl1);
> > +
> > +	seq_printf(s, "Mdiv: 0x%x; Pdiv: 0x%x; Sdiv: 0x%x; Kdiv: 0x%x\n",
> > +	mdiv, pdiv, sdiv, kdiv);
> > +
> > +	return 0;
> > +}
> > +DEFINE_SHOW_ATTRIBUTE(pll_setting);
> > +
> > +void audio_pll_debug_init(struct clk_hw *hws[], unsigned int
> > +num_plls) {
> > +	struct dentry *rootdir, *audio_pll_dir;
> > +	const char *pll_name;
> > +	int i;
> > +
> > +	rootdir = debugfs_create_dir("audio_pll_monitor", NULL);
> > +
> > +	for (i = 0; i < num_plls; i++) {
> > +		pll_name = clk_hw_get_name(hws[i]);
> > +		audio_pll_dir = debugfs_create_dir(pll_name, rootdir);
> > +		debugfs_create_file_unsafe("delta_k", 0200, audio_pll_dir,
> > +				hws[i], &delta_k_fops);
> > +		debugfs_create_file("pll_parameter", 0444, audio_pll_dir,
> > +				hws[i], &pll_setting_fops);
> > +	}
> > +}
> > +#else /* !CONFIG_DEBUG_FS */
> > +void audio_pll_debug_init(struct clk_hw *hws[], unsigned int
> > +num_plls) { } #endif /* CONFIG_DEBUG_FS */
> > +EXPORT_SYMBOL_GPL(audio_pll_debug_init);
> > diff --git a/drivers/clk/imx/clk.h b/drivers/clk/imx/clk.h index
> >
> aa5202f284f3d1b7c1b4bf65e2329831832b43a5..9611ab127dad6f23770c18e
> 22e1a
> > cbe2fc22bd4e 100644
> > --- a/drivers/clk/imx/clk.h
> > +++ b/drivers/clk/imx/clk.h
> > @@ -487,4 +487,5 @@ struct clk_hw *imx_clk_gpr_mux(const char *name,
> const char *compatible,
> >  			       u32 reg, const char **parent_names,
> >  			       u8 num_parents, const u32 *mux_table, u32 mask);
> >
> > +void audio_pll_debug_init(struct clk_hw **hws, unsigned int
> > +num_plls);
> >  #endif
> >
> > ---
> > base-commit: e98d21c170b01ddef366f023bbfcf6b31509fa83
> > change-id: 20260421-imx8m_pll_debugfs-246d0fbbb617
> >
> > Best regards,
> > --
> > Jacky Bai <ping.bai@nxp.com>
> >

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] clk: imx: Add audio PLL debugfs for K-divider control
  2026-05-12  9:08 [PATCH] clk: imx: Add audio PLL debugfs for K-divider control Jacky Bai
  2026-05-12 15:12 ` Frank Li
@ 2026-05-13 20:04 ` sashiko-bot
  1 sibling, 0 replies; 4+ messages in thread
From: sashiko-bot @ 2026-05-13 20:04 UTC (permalink / raw)
  To: Jacky Bai; +Cc: imx, Frank.Li

Thank you for your contribution! Sashiko AI review found 3 potential issue(s) to consider:
- [High] Unchecked ERR_PTR dereference in `audio_pll_debug_init()` causes kernel panic if PLL registration fails.
- [High] Lockless read-modify-write of PLL registers causes a race condition with the Common Clock Framework.
- [Medium] Missing bounds checking allows the K-divider to wrap around, causing massive frequency jumps.
--

commit 654083d958b35cc8cdcae8664a30b757df4a7f7a
Author: Jacky Bai <ping.bai@nxp.com>

clk: imx: Add audio PLL debugfs for K-divider control

This commit adds debugfs support for runtime tuning of the audio PLL K
divider on i.MX platforms. It exposes delta_k and pll_parameter interfaces
to adjust and monitor the fractional dividers.

> diff --git a/drivers/clk/imx/clk-pll14xx.c b/drivers/clk/imx/clk-pll14xx.c
> index 39600ee22be30..59f126f354741 100644
> --- a/drivers/clk/imx/clk-pll14xx.c
> +++ b/drivers/clk/imx/clk-pll14xx.c

[ ... ]

> @@ -551,3 +552,81 @@ struct clk_hw *imx_dev_clk_hw_pll14xx(struct device *dev, const char *name,

[ ... ]

> +static int pll_delta_k_set(void *data, u64 val)
> +{
> +	struct clk_pll14xx *pll = to_clk_pll14xx(data);
> +	s16 delta_k = (s16)val;
> +	u32 div_ctl1;
> +	s16 kdiv;
> +
> +	div_ctl1 = readl_relaxed(pll->base + DIV_CTL1);
> +	kdiv = FIELD_GET(KDIV_MASK, div_ctl1) + delta_k;

If a user provides a large positive delta_k that pushes kdiv beyond 32767,
will this s16 addition wrap around to a large negative number? Does this
need a clamp_val() check to prevent abrupt frequency discontinuities?

> +	writel_relaxed(FIELD_PREP(KDIV_MASK, kdiv), pll->base + DIV_CTL1);

Because this read-modify-write sequence is performed without acquiring the
CCF prepare lock or a hardware spinlock, can it race with a concurrent
clk_set_rate() operation?

If CCF is updating DIV_CTL1 at the same time, could this overwrite the
CCF's register changes and desynchronize the hardware state?

> +
> +	return 0;
> +}

[ ... ]

> +void audio_pll_debug_init(struct clk_hw *hws[], unsigned int num_plls)
> +{
> +	struct dentry *rootdir, *audio_pll_dir;
> +	const char *pll_name;
> +	int i;
> +
> +	rootdir = debugfs_create_dir("audio_pll_monitor", NULL);
> +
> +	for (i = 0; i < num_plls; i++) {
> +		pll_name = clk_hw_get_name(hws[i]);

In imx8mm_clocks_probe(), if the PLL fails to register, the hws array might
contain an error pointer. When clk_hw_get_name() is called here, it directly
dereferences hw->core:

clk_hw_get_name(const struct clk_hw *hw)
{
	return hw->core->name;
}

Could this code cause a kernel panic by dereferencing an error pointer if
the PLL registration failed earlier?

> +		audio_pll_dir = debugfs_create_dir(pll_name, rootdir);
> +		debugfs_create_file_unsafe("delta_k", 0200, audio_pll_dir,
> +				hws[i], &delta_k_fops);
> +		debugfs_create_file("pll_parameter", 0444, audio_pll_dir,
> +				hws[i], &pll_setting_fops);
> +	}
> +}

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260512-imx8m_pll_debugfs-v1-1-e1e44b21be90@nxp.com?part=1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-05-13 20:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-12  9:08 [PATCH] clk: imx: Add audio PLL debugfs for K-divider control Jacky Bai
2026-05-12 15:12 ` Frank Li
2026-05-13  8:01   ` Jacky Bai
2026-05-13 20:04 ` sashiko-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox