linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [v4 1/2] dt/bindings: clk: Add YAML schemas for LS1028A Display Clock bindings
@ 2019-08-29 10:59 Wen He
  2019-08-29 10:59 ` [v4 2/2] clk: ls1028a: Add clock driver for Display output interface Wen He
  0 siblings, 1 reply; 6+ messages in thread
From: Wen He @ 2019-08-29 10:59 UTC (permalink / raw)
  To: linux-devel, Michael Turquette, Stephen Boyd, Rob Herring,
	Mark Rutland, devicetree, linux-clk, linux-kernel
  Cc: leoyang.li, liviu.dudau, Wen He

LS1028A has a clock domain PXLCLK0 used for provide pixel clocks to Display
output interface. Add a YAML schema for this.

Signed-off-by: Wen He <wen.he_1@nxp.com>
Reviewed-by: Rob Herring <robh@kernel.org>
---
 .../devicetree/bindings/clock/fsl,plldig.yaml | 43 +++++++++++++++++++
 1 file changed, 43 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/clock/fsl,plldig.yaml

diff --git a/Documentation/devicetree/bindings/clock/fsl,plldig.yaml b/Documentation/devicetree/bindings/clock/fsl,plldig.yaml
new file mode 100644
index 000000000000..32274e94aafc
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/fsl,plldig.yaml
@@ -0,0 +1,43 @@
+# SPDX-License-Identifier: GPL-2.0
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/bindings/clock/fsl,plldig.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: NXP QorIQ Layerscape LS1028A Display PIXEL Clock Binding
+
+maintainers:
+  - Wen He <wen.he_1@nxp.com>
+
+description: |
+  NXP LS1028A has a clock domain PXLCLK0 used for the Display output
+  interface in the display core, as implemented in TSMC CLN28HPM PLL.
+  which generate and offers pixel clocks to Display.
+
+properties:
+  compatible:
+    const: fsl,ls1028a-plldig
+
+  reg:
+    maxItems: 1
+
+  '#clock-cells':
+    const: 0
+
+required:
+  - compatible
+  - reg
+  - clocks
+  - '#clock-cells'
+
+examples:
+  # Display PIXEL Clock node:
+  - |
+    dpclk: clock-display@f1f0000 {
+        compatible = "fsl,ls1028a-plldig";
+        reg = <0x0 0xf1f0000 0x0 0xffff>;
+        #clock-cells = <0>;
+        clocks = <&osc_27m>;
+    };
+
+...
-- 
2.17.1


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

* [v4 2/2] clk: ls1028a: Add clock driver for Display output interface
  2019-08-29 10:59 [v4 1/2] dt/bindings: clk: Add YAML schemas for LS1028A Display Clock bindings Wen He
@ 2019-08-29 10:59 ` Wen He
  2019-09-16 20:26   ` Stephen Boyd
  0 siblings, 1 reply; 6+ messages in thread
From: Wen He @ 2019-08-29 10:59 UTC (permalink / raw)
  To: linux-devel, Michael Turquette, Stephen Boyd, Rob Herring,
	Mark Rutland, devicetree, linux-clk, linux-kernel
  Cc: leoyang.li, liviu.dudau, Wen He

Add clock driver for QorIQ LS1028A Display output interfaces(LCD, DPHY),
as implemented in TSMC CLN28HPM PLL, this PLL supports the programmable
integer division and range of the display output pixel clock's 27-594MHz.

Signed-off-by: Wen He <wen.he_1@nxp.com>
---
change in v4:
        - correction some code according the Stephen comments.
        - update calc algorithm.

 drivers/clk/Kconfig      |  10 ++
 drivers/clk/Makefile     |   1 +
 drivers/clk/clk-plldig.c | 298 +++++++++++++++++++++++++++++++++++++++
 3 files changed, 309 insertions(+)
 create mode 100644 drivers/clk/clk-plldig.c

diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index 801fa1cd0321..ab05f342af04 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -223,6 +223,16 @@ config CLK_QORIQ
 	  This adds the clock driver support for Freescale QorIQ platforms
 	  using common clock framework.
 
+config CLK_LS1028A_PLLDIG
+        bool "Clock driver for LS1028A Display output"
+        depends on ARCH_LAYERSCAPE || COMPILE_TEST
+        default ARCH_LAYERSCAPE
+        help
+          This driver support the Display output interfaces(LCD, DPHY) pixel clocks
+          of the QorIQ Layerscape LS1028A, as implemented TSMC CLN28HPM PLL. Not all
+          features of the PLL are currently supported by the driver. By default,
+          configured bypass mode with this PLL.
+
 config COMMON_CLK_XGENE
 	bool "Clock driver for APM XGene SoC"
 	default ARCH_XGENE
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index 0cad76021297..c8e22a764c4d 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -44,6 +44,7 @@ obj-$(CONFIG_COMMON_CLK_OXNAS)		+= clk-oxnas.o
 obj-$(CONFIG_COMMON_CLK_PALMAS)		+= clk-palmas.o
 obj-$(CONFIG_COMMON_CLK_PWM)		+= clk-pwm.o
 obj-$(CONFIG_CLK_QORIQ)			+= clk-qoriq.o
+obj-$(CONFIG_CLK_LS1028A_PLLDIG)	+= clk-plldig.o
 obj-$(CONFIG_COMMON_CLK_RK808)		+= clk-rk808.o
 obj-$(CONFIG_COMMON_CLK_HI655X)		+= clk-hi655x.o
 obj-$(CONFIG_COMMON_CLK_S2MPS11)	+= clk-s2mps11.o
diff --git a/drivers/clk/clk-plldig.c b/drivers/clk/clk-plldig.c
new file mode 100644
index 000000000000..d3239bcf59de
--- /dev/null
+++ b/drivers/clk/clk-plldig.c
@@ -0,0 +1,298 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * Copyright 2019 NXP
+ *
+ * Clock driver for LS1028A Display output interfaces(LCD, DPHY).
+ */
+
+#include <linux/clk-provider.h>
+#include <linux/device.h>
+#include <linux/module.h>
+#include <linux/err.h>
+#include <linux/io.h>
+#include <linux/iopoll.h>
+#include <linux/of.h>
+#include <linux/of_address.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
+#include <linux/slab.h>
+
+/* PLLDIG register offsets and bit masks */
+#define PLLDIG_REG_PLLSR            0x24
+#define PLLDIG_REG_PLLDV            0x28
+#define PLLDIG_REG_PLLFM            0x2c
+#define PLLDIG_REG_PLLFD            0x30
+#define PLLDIG_REG_PLLCAL1          0x38
+#define PLLDIG_REG_PLLCAL2          0x3c
+#define PLLDIG_LOCK_MASK            BIT(2)
+#define PLLDIG_SSCGBYP_ENABLE       BIT(30)
+#define PLLDIG_FDEN                 BIT(30)
+#define PLLDIG_DTHRCTL              (0x3 << 16)
+
+/* macro to get/set values into register */
+#define PLLDIG_GET_MULT(x)          (((x) & ~(0xffffff00)) << 0)
+#define PLLDIG_GET_RFDPHI1(x)       ((u32)(x) >> 25)
+#define PLLDIG_SET_RFDPHI1(x)       ((u32)(x) << 25)
+
+/* Maximum of the divider */
+#define MAX_RFDPHI1          63
+
+/* Best value of multiplication factor divider */
+#define PLLDIG_DEFAULE_MULT         44
+
+/*
+ * Clock configuration relationship between the PHI1 frequency(fpll_phi) and
+ * the output frequency of the PLL is determined by the PLLDV, according to
+ * the following equation:
+ * fpll_phi = (pll_ref * mfd) / div_rfdphi1
+ */
+struct plldig_phi1_param {
+	unsigned long rate;
+	unsigned int rfdphi1;
+	unsigned int mfd;
+};
+
+enum plldig_phi1_freq_range {
+	PHI1_MIN        = 27000000U,
+	PHI1_MAX        = 600000000U
+};
+
+struct clk_plldig {
+	struct clk_hw hw;
+	void __iomem *regs;
+	struct device *dev;
+};
+
+#define to_clk_plldig(_hw)	container_of(_hw, struct clk_plldig, hw)
+#define LOCK_TIMEOUT_US		USEC_PER_MSEC
+
+static int plldig_enable(struct clk_hw *hw)
+{
+	struct clk_plldig *data = to_clk_plldig(hw);
+	u32 val;
+
+	val = readl(data->regs + PLLDIG_REG_PLLFM);
+	/*
+	 * Use Bypass mode with PLL off by default, the frequency overshoot
+	 * detector output was disable. SSCG Bypass mode should be enable.
+	 */
+	val |= PLLDIG_SSCGBYP_ENABLE;
+	writel(val, data->regs + PLLDIG_REG_PLLFM);
+
+	val = readl(data->regs + PLLDIG_REG_PLLFD);
+	/* Disable dither and Sigma delta modulation in bypass mode */
+	val |= (PLLDIG_FDEN | PLLDIG_DTHRCTL);
+	writel(val, data->regs + PLLDIG_REG_PLLFD);
+
+	return 0;
+}
+
+static void plldig_disable(struct clk_hw *hw)
+{
+	struct clk_plldig *data = to_clk_plldig(hw);
+	u32 val;
+
+	val = readl(data->regs + PLLDIG_REG_PLLFM);
+
+	val &= ~PLLDIG_SSCGBYP_ENABLE;
+	writel(val, data->regs + PLLDIG_REG_PLLFM);
+}
+
+static int plldig_is_enabled(struct clk_hw *hw)
+{
+	struct clk_plldig *data = to_clk_plldig(hw);
+
+	return (readl(data->regs + PLLDIG_REG_PLLFM) & PLLDIG_SSCGBYP_ENABLE);
+}
+
+static unsigned long plldig_recalc_rate(struct clk_hw *hw,
+		unsigned long parent_rate)
+{
+	struct clk_plldig *data = to_clk_plldig(hw);
+	u32 mult, div, val;
+
+	val = readl(data->regs + PLLDIG_REG_PLLDV);
+
+	/* Check if PLL is bypassed */
+	if (val & PLLDIG_SSCGBYP_ENABLE)
+		return parent_rate;
+
+	/* Checkout multiplication factor divider value */
+	mult = val;
+	mult = PLLDIG_GET_MULT(mult);
+
+	/* Checkout divider value of the output frequency */
+	div = val;
+	div = PLLDIG_GET_RFDPHI1(div);
+
+	return (parent_rate * mult) / div;
+}
+
+static int plldig_calc_target_rate(unsigned long target_rate,
+				   unsigned long parent_rate,
+				   struct plldig_phi1_param *phi1_out)
+{
+	unsigned int div, mfd, ret;
+	unsigned long round_rate;
+
+	/*
+	 * Firstly, check the target rate whether is divisible
+	 * by the best VCO frequency.
+	 */
+	mfd = PLLDIG_DEFAULE_MULT;
+	round_rate = parent_rate * mfd;
+	div = round_rate / target_rate;
+	if (!div || div > MAX_RFDPHI1)
+		return -EINVAL;
+
+	ret = round_rate % target_rate;
+	if (!ret)
+		goto out;
+
+	/*
+	 * Otherwise, try a rounding algorithm to driven the target rate,
+	 * this algorithm allows tolerances between the target rate and
+	 * real rate, it based on the best VCO output frequency.
+	 */
+	mfd = PLLDIG_DEFAULE_MULT;
+	round_rate = parent_rate * mfd;
+
+	/*
+	 * Add half of the target rate so the result will be
+	 * rounded to cloeset instead of rounded down.
+	 */
+	round_rate += (target_rate / 2);
+	div = round_rate / target_rate;
+	if (!div || div > MAX_RFDPHI1)
+		return -EINVAL;
+
+out:
+	phi1_out->rfdphi1 = PLLDIG_SET_RFDPHI1(div);
+	phi1_out->mfd = mfd;
+	phi1_out->rate = target_rate;
+
+	return 0;
+}
+
+static int plldig_determine_rate(struct clk_hw *hw,
+				 struct clk_rate_request *req)
+{
+	int ret;
+	struct clk_hw *parent;
+	struct plldig_phi1_param phi1_param;
+	unsigned long parent_rate;
+
+	if (req->rate == 0 || req->rate < PHI1_MIN || req->rate > PHI1_MAX)
+		return -EINVAL;
+
+	parent = clk_hw_get_parent(hw);
+	parent_rate = clk_hw_get_rate(parent);
+
+	ret = plldig_calc_target_rate(req->rate, parent_rate, &phi1_param);
+	if (ret)
+		return ret;
+
+	req->rate = phi1_param.rate;
+
+	return 0;
+}
+
+static int plldig_set_rate(struct clk_hw *hw, unsigned long rate,
+		unsigned long parent_rate)
+{
+	struct clk_plldig *data = to_clk_plldig(hw);
+	struct plldig_phi1_param phi1_param;
+	unsigned int rfdphi1, val, cond;
+	int ret = -ETIMEDOUT;
+
+	ret = plldig_calc_target_rate(rate, parent_rate, &phi1_param);
+	if (ret)
+		return ret;
+
+	val = readl(data->regs + PLLDIG_REG_PLLDV);
+	val = phi1_param.mfd;
+	rfdphi1 = phi1_param.rfdphi1;
+	val |= rfdphi1;
+
+	writel(val, data->regs + PLLDIG_REG_PLLDV);
+
+	/* delay 200us make sure that old lock state is cleared */
+	udelay(200);
+
+	/* Wait until PLL is locked or timeout (maximum 1000 usecs) */
+	ret = readl_poll_timeout_atomic(data->regs + PLLDIG_REG_PLLSR, cond,
+					cond & PLLDIG_LOCK_MASK, 0,
+					USEC_PER_MSEC);
+
+	return ret;
+}
+
+static const struct clk_ops plldig_clk_ops = {
+	.enable = plldig_enable,
+	.disable = plldig_disable,
+	.is_enabled = plldig_is_enabled,
+	.recalc_rate = plldig_recalc_rate,
+	.determine_rate = plldig_determine_rate,
+	.set_rate = plldig_set_rate,
+};
+
+static int plldig_clk_probe(struct platform_device *pdev)
+{
+	struct clk_plldig *data;
+	struct resource *mem;
+	struct clk_init_data init = {};
+	struct device *dev = &pdev->dev;
+	struct clk_parent_data parent_data;
+	int ret;
+
+	data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
+	if (!data)
+		return -ENOMEM;
+
+	mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+	data->regs = devm_ioremap_resource(dev, mem);
+	if (IS_ERR(data->regs))
+		return PTR_ERR(data->regs);
+
+	parent_data.name = of_clk_get_parent_name(dev->of_node, 0);
+	parent_data.index = 0;
+
+	init.name = dev->of_node->name;
+	init.ops = &plldig_clk_ops;
+	init.parent_data = &parent_data;
+	init.num_parents = 1;
+
+	data->hw.init = &init;
+	data->dev = dev;
+
+	ret = devm_clk_hw_register(dev, &data->hw);
+	if (ret) {
+		dev_err(dev, "failed to register %s clock\n", init.name);
+		return ret;
+	}
+
+	ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, &data->hw);
+	if (ret)
+		dev_err(dev, "failed adding the clock provider\n");
+
+	return ret;
+}
+
+static const struct of_device_id plldig_clk_id[] = {
+	{ .compatible = "fsl,ls1028a-plldig"},
+	{ }
+};
+MODULE_DEVICE_TABLE(of, plldig_clk_id);
+
+static struct platform_driver plldig_clk_driver = {
+	.driver = {
+		.name = "plldig-clock",
+		.of_match_table = plldig_clk_id,
+	},
+	.probe = plldig_clk_probe,
+};
+module_platform_driver(plldig_clk_driver);
+
+MODULE_LICENSE("GPL v2");
+MODULE_AUTHOR("Wen He <wen.he_1@nxp.com>");
+MODULE_DESCRIPTION("LS1028A Display output interface pixel clock driver");
-- 
2.17.1


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

* Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output interface
  2019-08-29 10:59 ` [v4 2/2] clk: ls1028a: Add clock driver for Display output interface Wen He
@ 2019-09-16 20:26   ` Stephen Boyd
  2019-09-18  9:20     ` [EXT] " Wen He
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Boyd @ 2019-09-16 20:26 UTC (permalink / raw)
  To: Mark Rutland, Michael Turquette, Rob Herring, Wen He, devicetree,
	linux-clk, linux-devel, linux-kernel
  Cc: leoyang.li, liviu.dudau, Wen He

Quoting Wen He (2019-08-29 03:59:19)
> diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
> index 801fa1cd0321..ab05f342af04 100644
> --- a/drivers/clk/Kconfig
> +++ b/drivers/clk/Kconfig
> @@ -223,6 +223,16 @@ config CLK_QORIQ
>           This adds the clock driver support for Freescale QorIQ platforms
>           using common clock framework.
>  
> +config CLK_LS1028A_PLLDIG
> +        bool "Clock driver for LS1028A Display output"

Is this a tristate? The driver is made to be a module but it isn't
allowed to be compiled as such.

> +        depends on ARCH_LAYERSCAPE || COMPILE_TEST
> +        default ARCH_LAYERSCAPE
> +        help
> +          This driver support the Display output interfaces(LCD, DPHY) pixel clocks
> +          of the QorIQ Layerscape LS1028A, as implemented TSMC CLN28HPM PLL. Not all
> +          features of the PLL are currently supported by the driver. By default,
> +          configured bypass mode with this PLL.
> +
>  config COMMON_CLK_XGENE
>         bool "Clock driver for APM XGene SoC"
>         default ARCH_XGENE
> diff --git a/drivers/clk/clk-plldig.c b/drivers/clk/clk-plldig.c
> new file mode 100644
> index 000000000000..d3239bcf59de
> --- /dev/null
> +++ b/drivers/clk/clk-plldig.c
> @@ -0,0 +1,298 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Copyright 2019 NXP
> + *
> + * Clock driver for LS1028A Display output interfaces(LCD, DPHY).
> + */
> +
> +#include <linux/clk-provider.h>
> +#include <linux/device.h>
> +#include <linux/module.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/iopoll.h>
> +#include <linux/of.h>
> +#include <linux/of_address.h>
> +#include <linux/of_device.h>
> +#include <linux/platform_device.h>
> +#include <linux/slab.h>
> +
> +/* PLLDIG register offsets and bit masks */
> +#define PLLDIG_REG_PLLSR            0x24
> +#define PLLDIG_REG_PLLDV            0x28
> +#define PLLDIG_REG_PLLFM            0x2c
> +#define PLLDIG_REG_PLLFD            0x30
> +#define PLLDIG_REG_PLLCAL1          0x38
> +#define PLLDIG_REG_PLLCAL2          0x3c
> +#define PLLDIG_LOCK_MASK            BIT(2)
> +#define PLLDIG_SSCGBYP_ENABLE       BIT(30)
> +#define PLLDIG_FDEN                 BIT(30)
> +#define PLLDIG_DTHRCTL              (0x3 << 16)
> +
> +/* macro to get/set values into register */
> +#define PLLDIG_GET_MULT(x)          (((x) & ~(0xffffff00)) << 0)
> +#define PLLDIG_GET_RFDPHI1(x)       ((u32)(x) >> 25)
> +#define PLLDIG_SET_RFDPHI1(x)       ((u32)(x) << 25)

Maybe you can use the FIELD_GET() APIs and genmask from bitfield.h?

> +
> +/* Maximum of the divider */
> +#define MAX_RFDPHI1          63
> +
> +/* Best value of multiplication factor divider */
> +#define PLLDIG_DEFAULE_MULT         44
> +
> +/*
> + * Clock configuration relationship between the PHI1 frequency(fpll_phi) and
> + * the output frequency of the PLL is determined by the PLLDV, according to
> + * the following equation:
> + * fpll_phi = (pll_ref * mfd) / div_rfdphi1
> + */
> +struct plldig_phi1_param {
> +       unsigned long rate;
> +       unsigned int rfdphi1;
> +       unsigned int mfd;
> +};
> +
> +enum plldig_phi1_freq_range {
> +       PHI1_MIN        = 27000000U,
> +       PHI1_MAX        = 600000000U
> +};

Please just inline these values in the one place they're used.

> +
> +struct clk_plldig {
> +       struct clk_hw hw;
> +       void __iomem *regs;
> +       struct device *dev;

Please remove this, it is unused.

> +};
> +
> +#define to_clk_plldig(_hw)     container_of(_hw, struct clk_plldig, hw)
> +#define LOCK_TIMEOUT_US                USEC_PER_MSEC

Is this used?

> +
> +static int plldig_enable(struct clk_hw *hw)
> +{
> +       struct clk_plldig *data = to_clk_plldig(hw);
> +       u32 val;
> +
> +       val = readl(data->regs + PLLDIG_REG_PLLFM);
> +       /*
> +        * Use Bypass mode with PLL off by default, the frequency overshoot
> +        * detector output was disable. SSCG Bypass mode should be enable.
> +        */
> +       val |= PLLDIG_SSCGBYP_ENABLE;
> +       writel(val, data->regs + PLLDIG_REG_PLLFM);
> +
> +       val = readl(data->regs + PLLDIG_REG_PLLFD);
> +       /* Disable dither and Sigma delta modulation in bypass mode */
> +       val |= (PLLDIG_FDEN | PLLDIG_DTHRCTL);
> +       writel(val, data->regs + PLLDIG_REG_PLLFD);
> +
> +       return 0;
> +}
> +
> +static void plldig_disable(struct clk_hw *hw)
> +{
> +       struct clk_plldig *data = to_clk_plldig(hw);
> +       u32 val;
> +
> +       val = readl(data->regs + PLLDIG_REG_PLLFM);
> +
> +       val &= ~PLLDIG_SSCGBYP_ENABLE;
> +       writel(val, data->regs + PLLDIG_REG_PLLFM);
> +}
> +
> +static int plldig_is_enabled(struct clk_hw *hw)
> +{
> +       struct clk_plldig *data = to_clk_plldig(hw);
> +
> +       return (readl(data->regs + PLLDIG_REG_PLLFM) & PLLDIG_SSCGBYP_ENABLE);
> +}
> +
> +static unsigned long plldig_recalc_rate(struct clk_hw *hw,
> +               unsigned long parent_rate)
> +{
> +       struct clk_plldig *data = to_clk_plldig(hw);
> +       u32 mult, div, val;
> +
> +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> +
> +       /* Check if PLL is bypassed */
> +       if (val & PLLDIG_SSCGBYP_ENABLE)
> +               return parent_rate;
> +
> +       /* Checkout multiplication factor divider value */
> +       mult = val;
> +       mult = PLLDIG_GET_MULT(mult);
> +
> +       /* Checkout divider value of the output frequency */
> +       div = val;
> +       div = PLLDIG_GET_RFDPHI1(div);
> +
> +       return (parent_rate * mult) / div;
> +}
> +
> +static int plldig_calc_target_rate(unsigned long target_rate,
> +                                  unsigned long parent_rate,
> +                                  struct plldig_phi1_param *phi1_out)
> +{
> +       unsigned int div, mfd, ret;
> +       unsigned long round_rate;
> +
> +       /*
> +        * Firstly, check the target rate whether is divisible
> +        * by the best VCO frequency.
> +        */
> +       mfd = PLLDIG_DEFAULE_MULT;
> +       round_rate = parent_rate * mfd;
> +       div = round_rate / target_rate;
> +       if (!div || div > MAX_RFDPHI1)
> +               return -EINVAL;
> +
> +       ret = round_rate % target_rate;
> +       if (!ret)
> +               goto out;

Please get rid of ret and do the test here directly and then put the
below code into the if statement to remove the goto.


	if (round_rate % target_rate) {
	       /*
	        * Otherwise, try a rounding algorithm to driven the target rate,
	        * this algorithm allows tolerances between the target rate and
	        * real rate, it based on the best VCO output frequency.
	        */
	       mfd = PLLDIG_DEFAULE_MULT;
	       round_rate = parent_rate * mfd;
	
	       /*
	        * Add half of the target rate so the result will be
	        * rounded to cloeset instead of rounded down.
	        */
	       round_rate += (target_rate / 2);
	       div = round_rate / target_rate;
	       if (!div || div > MAX_RFDPHI1)
	               return -EINVAL;
	
	}

> +       phi1_out->rfdphi1 = PLLDIG_SET_RFDPHI1(div);
> +       phi1_out->mfd = mfd;
> +       phi1_out->rate = target_rate;
> +
> +       return 0;
> +}
> +
> +static int plldig_determine_rate(struct clk_hw *hw,
> +                                struct clk_rate_request *req)
> +{
> +       int ret;
> +       struct clk_hw *parent;
> +       struct plldig_phi1_param phi1_param;
> +       unsigned long parent_rate;
> +
> +       if (req->rate == 0 || req->rate < PHI1_MIN || req->rate > PHI1_MAX)
> +               return -EINVAL;

Preferably you clamp the requested rate to min/max instead of just
returning a failure. That way the clk_set_rate() API "works" by trying
to achieve some frequency that is there. You'll have to look at the
request that is passed into this function to make sure that the min/max
of the request is within the range this clk supports, but it will be
better than just blindly returning a failure because this function
should try to round the rate to something that is supported.

> +
> +       parent = clk_hw_get_parent(hw);
> +       parent_rate = clk_hw_get_rate(parent);
> +
> +       ret = plldig_calc_target_rate(req->rate, parent_rate, &phi1_param);
> +       if (ret)
> +               return ret;
> +
> +       req->rate = phi1_param.rate;
> +
> +       return 0;
> +}
> +
> +static int plldig_set_rate(struct clk_hw *hw, unsigned long rate,
> +               unsigned long parent_rate)
> +{
> +       struct clk_plldig *data = to_clk_plldig(hw);
> +       struct plldig_phi1_param phi1_param;
> +       unsigned int rfdphi1, val, cond;
> +       int ret = -ETIMEDOUT;

Drop this initial assignment please.

> +
> +       ret = plldig_calc_target_rate(rate, parent_rate, &phi1_param);
> +       if (ret)
> +               return ret;

Because it's overwritten immediately.

> +
> +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> +       val = phi1_param.mfd;
> +       rfdphi1 = phi1_param.rfdphi1;
> +       val |= rfdphi1;
> +
> +       writel(val, data->regs + PLLDIG_REG_PLLDV);
> +
> +       /* delay 200us make sure that old lock state is cleared */
> +       udelay(200);
> +
> +       /* Wait until PLL is locked or timeout (maximum 1000 usecs) */
> +       ret = readl_poll_timeout_atomic(data->regs + PLLDIG_REG_PLLSR, cond,
> +                                       cond & PLLDIG_LOCK_MASK, 0,
> +                                       USEC_PER_MSEC);
> +
> +       return ret;

Just return readl_poll_timeout_atomic(...) here.

> +}
> +
> +static const struct clk_ops plldig_clk_ops = {
> +       .enable = plldig_enable,
> +       .disable = plldig_disable,
> +       .is_enabled = plldig_is_enabled,
> +       .recalc_rate = plldig_recalc_rate,
> +       .determine_rate = plldig_determine_rate,
> +       .set_rate = plldig_set_rate,
> +};
> +
> +static int plldig_clk_probe(struct platform_device *pdev)
> +{
> +       struct clk_plldig *data;
> +       struct resource *mem;
> +       struct clk_init_data init = {};
> +       struct device *dev = &pdev->dev;
> +       struct clk_parent_data parent_data;

Set this to = { .index = 0 }

> +       int ret;
> +
> +       data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
> +       if (!data)
> +               return -ENOMEM;
> +
> +       mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +       data->regs = devm_ioremap_resource(dev, mem);
> +       if (IS_ERR(data->regs))
> +               return PTR_ERR(data->regs);
> +
> +       parent_data.name = of_clk_get_parent_name(dev->of_node, 0);
> +       parent_data.index = 0;

And don't assign these.

> +
> +       init.name = dev->of_node->name;
> +       init.ops = &plldig_clk_ops;
> +       init.parent_data = &parent_data;
> +       init.num_parents = 1;
> +
> +       data->hw.init = &init;
> +       data->dev = dev;
> +
> +       ret = devm_clk_hw_register(dev, &data->hw);
> +       if (ret) {
> +               dev_err(dev, "failed to register %s clock\n", init.name);
> +               return ret;
> +       }
> +
> +       ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, &data->hw);
> +       if (ret)
> +               dev_err(dev, "failed adding the clock provider\n");
> +
> +       return ret;

I'd prefer to just see return devm_of_clk_add_hw_provider(), but not a
big deal.


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

* RE: [EXT] Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output interface
  2019-09-16 20:26   ` Stephen Boyd
@ 2019-09-18  9:20     ` Wen He
  2019-09-18 17:00       ` Stephen Boyd
  0 siblings, 1 reply; 6+ messages in thread
From: Wen He @ 2019-09-18  9:20 UTC (permalink / raw)
  To: Stephen Boyd, Mark Rutland, Michael Turquette, Rob Herring,
	devicetree, linux-clk, linux-devel, linux-kernel
  Cc: Leo Li, liviu.dudau



> -----Original Message-----
> From: Stephen Boyd <sboyd@kernel.org>
> Sent: 2019年9月17日 4:27
> To: Mark Rutland <mark.rutland@arm.com>; Michael Turquette
> <mturquette@baylibre.com>; Rob Herring <robh+dt@kernel.org>; Wen He
> <wen.he_1@nxp.com>; devicetree@vger.kernel.org; linux-clk@vger.kernel.org;
> linux-devel@linux.nxdi.nxp.com; linux-kernel@vger.kernel.org
> Cc: Leo Li <leoyang.li@nxp.com>; liviu.dudau@arm.com; Wen He
> <wen.he_1@nxp.com>
> Subject: [EXT] Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output
> interface
> 
> 
> Quoting Wen He (2019-08-29 03:59:19)
> > diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index
> > 801fa1cd0321..ab05f342af04 100644
> > --- a/drivers/clk/Kconfig
> > +++ b/drivers/clk/Kconfig
> > @@ -223,6 +223,16 @@ config CLK_QORIQ
> >           This adds the clock driver support for Freescale QorIQ platforms
> >           using common clock framework.
> >
> > +config CLK_LS1028A_PLLDIG
> > +        bool "Clock driver for LS1028A Display output"
> 
> Is this a tristate? The driver is made to be a module but it isn't allowed to be
> compiled as such.
> 
> > +        depends on ARCH_LAYERSCAPE || COMPILE_TEST
> > +        default ARCH_LAYERSCAPE
> > +        help
> > +          This driver support the Display output interfaces(LCD, DPHY)
> pixel clocks
> > +          of the QorIQ Layerscape LS1028A, as implemented TSMC
> CLN28HPM PLL. Not all
> > +          features of the PLL are currently supported by the driver. By
> default,
> > +          configured bypass mode with this PLL.
> > +
> >  config COMMON_CLK_XGENE
> >         bool "Clock driver for APM XGene SoC"
> >         default ARCH_XGENE
> > diff --git a/drivers/clk/clk-plldig.c b/drivers/clk/clk-plldig.c new
> > file mode 100644 index 000000000000..d3239bcf59de
> > --- /dev/null
> > +++ b/drivers/clk/clk-plldig.c
> > @@ -0,0 +1,298 @@
> > +// SPDX-License-Identifier: GPL-2.0
> > +/*
> > + * Copyright 2019 NXP
> > + *
> > + * Clock driver for LS1028A Display output interfaces(LCD, DPHY).
> > + */
> > +
> > +#include <linux/clk-provider.h>
> > +#include <linux/device.h>
> > +#include <linux/module.h>
> > +#include <linux/err.h>
> > +#include <linux/io.h>
> > +#include <linux/iopoll.h>
> > +#include <linux/of.h>
> > +#include <linux/of_address.h>
> > +#include <linux/of_device.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/slab.h>
> > +
> > +/* PLLDIG register offsets and bit masks */
> > +#define PLLDIG_REG_PLLSR            0x24
> > +#define PLLDIG_REG_PLLDV            0x28
> > +#define PLLDIG_REG_PLLFM            0x2c
> > +#define PLLDIG_REG_PLLFD            0x30
> > +#define PLLDIG_REG_PLLCAL1          0x38
> > +#define PLLDIG_REG_PLLCAL2          0x3c
> > +#define PLLDIG_LOCK_MASK            BIT(2)
> > +#define PLLDIG_SSCGBYP_ENABLE       BIT(30)
> > +#define PLLDIG_FDEN                 BIT(30)
> > +#define PLLDIG_DTHRCTL              (0x3 << 16)
> > +
> > +/* macro to get/set values into register */
> > +#define PLLDIG_GET_MULT(x)          (((x) & ~(0xffffff00)) << 0)
> > +#define PLLDIG_GET_RFDPHI1(x)       ((u32)(x) >> 25)
> > +#define PLLDIG_SET_RFDPHI1(x)       ((u32)(x) << 25)
> 
> Maybe you can use the FIELD_GET() APIs and genmask from bitfield.h?

Hmm, that a good idea. 

> 
> > +
> > +/* Maximum of the divider */
> > +#define MAX_RFDPHI1          63
> > +
> > +/* Best value of multiplication factor divider */
> > +#define PLLDIG_DEFAULE_MULT         44
> > +
> > +/*
> > + * Clock configuration relationship between the PHI1
> > +frequency(fpll_phi) and
> > + * the output frequency of the PLL is determined by the PLLDV,
> > +according to
> > + * the following equation:
> > + * fpll_phi = (pll_ref * mfd) / div_rfdphi1  */ struct
> > +plldig_phi1_param {
> > +       unsigned long rate;
> > +       unsigned int rfdphi1;
> > +       unsigned int mfd;
> > +};
> > +
> > +enum plldig_phi1_freq_range {
> > +       PHI1_MIN        = 27000000U,
> > +       PHI1_MAX        = 600000000U
> > +};
> 
> Please just inline these values in the one place they're used.
> 
> > +
> > +struct clk_plldig {
> > +       struct clk_hw hw;
> > +       void __iomem *regs;
> > +       struct device *dev;
> 
> Please remove this, it is unused.

It is used for probe.

> 
> > +};
> > +
> > +#define to_clk_plldig(_hw)     container_of(_hw, struct clk_plldig, hw)
> > +#define LOCK_TIMEOUT_US                USEC_PER_MSEC
> 
> Is this used?

Yes, it is used.

> 
> > +
> > +static int plldig_enable(struct clk_hw *hw) {
> > +       struct clk_plldig *data = to_clk_plldig(hw);
> > +       u32 val;
> > +
> > +       val = readl(data->regs + PLLDIG_REG_PLLFM);
> > +       /*
> > +        * Use Bypass mode with PLL off by default, the frequency
> overshoot
> > +        * detector output was disable. SSCG Bypass mode should be
> enable.
> > +        */
> > +       val |= PLLDIG_SSCGBYP_ENABLE;
> > +       writel(val, data->regs + PLLDIG_REG_PLLFM);
> > +
> > +       val = readl(data->regs + PLLDIG_REG_PLLFD);
> > +       /* Disable dither and Sigma delta modulation in bypass mode */
> > +       val |= (PLLDIG_FDEN | PLLDIG_DTHRCTL);
> > +       writel(val, data->regs + PLLDIG_REG_PLLFD);
> > +
> > +       return 0;
> > +}
> > +
> > +static void plldig_disable(struct clk_hw *hw) {
> > +       struct clk_plldig *data = to_clk_plldig(hw);
> > +       u32 val;
> > +
> > +       val = readl(data->regs + PLLDIG_REG_PLLFM);
> > +
> > +       val &= ~PLLDIG_SSCGBYP_ENABLE;
> > +       writel(val, data->regs + PLLDIG_REG_PLLFM); }
> > +
> > +static int plldig_is_enabled(struct clk_hw *hw) {
> > +       struct clk_plldig *data = to_clk_plldig(hw);
> > +
> > +       return (readl(data->regs + PLLDIG_REG_PLLFM) &
> > +PLLDIG_SSCGBYP_ENABLE); }
> > +
> > +static unsigned long plldig_recalc_rate(struct clk_hw *hw,
> > +               unsigned long parent_rate) {
> > +       struct clk_plldig *data = to_clk_plldig(hw);
> > +       u32 mult, div, val;
> > +
> > +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> > +
> > +       /* Check if PLL is bypassed */
> > +       if (val & PLLDIG_SSCGBYP_ENABLE)
> > +               return parent_rate;
> > +
> > +       /* Checkout multiplication factor divider value */
> > +       mult = val;
> > +       mult = PLLDIG_GET_MULT(mult);
> > +
> > +       /* Checkout divider value of the output frequency */
> > +       div = val;
> > +       div = PLLDIG_GET_RFDPHI1(div);
> > +
> > +       return (parent_rate * mult) / div; }
> > +
> > +static int plldig_calc_target_rate(unsigned long target_rate,
> > +                                  unsigned long parent_rate,
> > +                                  struct plldig_phi1_param
> *phi1_out)
> > +{
> > +       unsigned int div, mfd, ret;
> > +       unsigned long round_rate;
> > +
> > +       /*
> > +        * Firstly, check the target rate whether is divisible
> > +        * by the best VCO frequency.
> > +        */
> > +       mfd = PLLDIG_DEFAULE_MULT;
> > +       round_rate = parent_rate * mfd;
> > +       div = round_rate / target_rate;
> > +       if (!div || div > MAX_RFDPHI1)
> > +               return -EINVAL;
> > +
> > +       ret = round_rate % target_rate;
> > +       if (!ret)
> > +               goto out;
> 
> Please get rid of ret and do the test here directly and then put the below code
> into the if statement to remove the goto.

Here provide two condition to test the request target rate whether meet.
1. always check the request rate whether is divisible by the VCO frequency.
2. If option#1 is not meet, trying to rounding.

Option#1 and option#2 both need use the below code, if remove the goto, will
see the duplicate code statement.

> 
> 
>         if (round_rate % target_rate) {
>                /*
>                 * Otherwise, try a rounding algorithm to driven the target
> rate,
>                 * this algorithm allows tolerances between the target rate
> and
>                 * real rate, it based on the best VCO output frequency.
>                 */
>                mfd = PLLDIG_DEFAULE_MULT;
>                round_rate = parent_rate * mfd;
> 
>                /*
>                 * Add half of the target rate so the result will be
>                 * rounded to cloeset instead of rounded down.
>                 */
>                round_rate += (target_rate / 2);
>                div = round_rate / target_rate;
>                if (!div || div > MAX_RFDPHI1)
>                        return -EINVAL;
> 
>         }
> 
> > +       phi1_out->rfdphi1 = PLLDIG_SET_RFDPHI1(div);
> > +       phi1_out->mfd = mfd;
> > +       phi1_out->rate = target_rate;
> > +
> > +       return 0;
> > +}
> > +
> > +static int plldig_determine_rate(struct clk_hw *hw,
> > +                                struct clk_rate_request *req) {
> > +       int ret;
> > +       struct clk_hw *parent;
> > +       struct plldig_phi1_param phi1_param;
> > +       unsigned long parent_rate;
> > +
> > +       if (req->rate == 0 || req->rate < PHI1_MIN || req->rate >
> PHI1_MAX)
> > +               return -EINVAL;
> 
> Preferably you clamp the requested rate to min/max instead of just returning a
> failure. That way the clk_set_rate() API "works" by trying to achieve some
> frequency that is there. You'll have to look at the request that is passed into
> this function to make sure that the min/max of the request is within the range
> this clk supports, but it will be better than just blindly returning a failure
> because this function should try to round the rate to something that is
> supported.

I agree with you.

> 
> > +
> > +       parent = clk_hw_get_parent(hw);
> > +       parent_rate = clk_hw_get_rate(parent);
> > +
> > +       ret = plldig_calc_target_rate(req->rate, parent_rate, &phi1_param);
> > +       if (ret)
> > +               return ret;
> > +
> > +       req->rate = phi1_param.rate;
> > +
> > +       return 0;
> > +}
> > +
> > +static int plldig_set_rate(struct clk_hw *hw, unsigned long rate,
> > +               unsigned long parent_rate) {
> > +       struct clk_plldig *data = to_clk_plldig(hw);
> > +       struct plldig_phi1_param phi1_param;
> > +       unsigned int rfdphi1, val, cond;
> > +       int ret = -ETIMEDOUT;
> 
> Drop this initial assignment please.
> 
> > +
> > +       ret = plldig_calc_target_rate(rate, parent_rate, &phi1_param);
> > +       if (ret)
> > +               return ret;
> 
> Because it's overwritten immediately.
> 
> > +
> > +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> > +       val = phi1_param.mfd;
> > +       rfdphi1 = phi1_param.rfdphi1;
> > +       val |= rfdphi1;
> > +
> > +       writel(val, data->regs + PLLDIG_REG_PLLDV);
> > +
> > +       /* delay 200us make sure that old lock state is cleared */
> > +       udelay(200);
> > +
> > +       /* Wait until PLL is locked or timeout (maximum 1000 usecs) */
> > +       ret = readl_poll_timeout_atomic(data->regs + PLLDIG_REG_PLLSR,
> cond,
> > +                                       cond & PLLDIG_LOCK_MASK,
> 0,
> > +                                       USEC_PER_MSEC);
> > +
> > +       return ret;
> 
> Just return readl_poll_timeout_atomic(...) here.

Maybe use below code will to best describes.

If (ret)
	return -ETIMEOUT;

return 0;

> 
> > +}
> > +
> > +static const struct clk_ops plldig_clk_ops = {
> > +       .enable = plldig_enable,
> > +       .disable = plldig_disable,
> > +       .is_enabled = plldig_is_enabled,
> > +       .recalc_rate = plldig_recalc_rate,
> > +       .determine_rate = plldig_determine_rate,
> > +       .set_rate = plldig_set_rate,
> > +};
> > +
> > +static int plldig_clk_probe(struct platform_device *pdev) {
> > +       struct clk_plldig *data;
> > +       struct resource *mem;
> > +       struct clk_init_data init = {};
> > +       struct device *dev = &pdev->dev;
> > +       struct clk_parent_data parent_data;
> 
> Set this to = { .index = 0 }

Understand,

> 
> > +       int ret;
> > +
> > +       data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
> > +       if (!data)
> > +               return -ENOMEM;
> > +
> > +       mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > +       data->regs = devm_ioremap_resource(dev, mem);
> > +       if (IS_ERR(data->regs))
> > +               return PTR_ERR(data->regs);
> > +
> > +       parent_data.name = of_clk_get_parent_name(dev->of_node, 0);
> > +       parent_data.index = 0;
> 
> And don't assign these.

Understand,

> 
> > +
> > +       init.name = dev->of_node->name;
> > +       init.ops = &plldig_clk_ops;
> > +       init.parent_data = &parent_data;
> > +       init.num_parents = 1;
> > +
> > +       data->hw.init = &init;
> > +       data->dev = dev;
> > +
> > +       ret = devm_clk_hw_register(dev, &data->hw);
> > +       if (ret) {
> > +               dev_err(dev, "failed to register %s clock\n", init.name);
> > +               return ret;
> > +       }
> > +
> > +       ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get,
> &data->hw);
> > +       if (ret)
> > +               dev_err(dev, "failed adding the clock provider\n");
> > +
> > +       return ret;
> 
> I'd prefer to just see return devm_of_clk_add_hw_provider(), but not a big
> deal.

Understand, thank you for the review.

Best Regards,
Wen


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

* RE: [EXT] Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output interface
  2019-09-18  9:20     ` [EXT] " Wen He
@ 2019-09-18 17:00       ` Stephen Boyd
  2019-09-19  3:53         ` Wen He
  0 siblings, 1 reply; 6+ messages in thread
From: Stephen Boyd @ 2019-09-18 17:00 UTC (permalink / raw)
  To: devicetree, linux-clk, linux-devel, linux-kernel, Mark Rutland,
	Michael Turquette, Rob Herring, Wen He
  Cc: Leo Li, liviu.dudau

Quoting Wen He (2019-09-18 02:20:26)
> > -----Original Message-----
> > From: Stephen Boyd <sboyd@kernel.org>
> > Quoting Wen He (2019-08-29 03:59:19)
> > > diff --git a/drivers/clk/clk-plldig.c b/drivers/clk/clk-plldig.c new
> > > file mode 100644 index 000000000000..d3239bcf59de
> > > --- /dev/null
> > > +++ b/drivers/clk/clk-plldig.c
> > > @@ -0,0 +1,298 @@
[...]
> 
> > 
> > > +
> > > +/* Maximum of the divider */
> > > +#define MAX_RFDPHI1          63
> > > +
> > > +/* Best value of multiplication factor divider */
> > > +#define PLLDIG_DEFAULE_MULT         44
> > > +
> > > +/*
> > > + * Clock configuration relationship between the PHI1
> > > +frequency(fpll_phi) and
> > > + * the output frequency of the PLL is determined by the PLLDV,
> > > +according to
> > > + * the following equation:
> > > + * fpll_phi = (pll_ref * mfd) / div_rfdphi1  */ struct
> > > +plldig_phi1_param {
> > > +       unsigned long rate;
> > > +       unsigned int rfdphi1;
> > > +       unsigned int mfd;
> > > +};
> > > +
> > > +enum plldig_phi1_freq_range {
> > > +       PHI1_MIN        = 27000000U,
> > > +       PHI1_MAX        = 600000000U
> > > +};
> > 
> > Please just inline these values in the one place they're used.
> > 
> > > +
> > > +struct clk_plldig {
> > > +       struct clk_hw hw;
> > > +       void __iomem *regs;
> > > +       struct device *dev;
> > 
> > Please remove this, it is unused.
> 
> It is used for probe.

Use a local variable and don't store it away forever in the struct.

> > 
> > > +
> > > +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> > > +       val = phi1_param.mfd;
> > > +       rfdphi1 = phi1_param.rfdphi1;
> > > +       val |= rfdphi1;
> > > +
> > > +       writel(val, data->regs + PLLDIG_REG_PLLDV);
> > > +
> > > +       /* delay 200us make sure that old lock state is cleared */
> > > +       udelay(200);
> > > +
> > > +       /* Wait until PLL is locked or timeout (maximum 1000 usecs) */
> > > +       ret = readl_poll_timeout_atomic(data->regs + PLLDIG_REG_PLLSR,
> > cond,
> > > +                                       cond & PLLDIG_LOCK_MASK,
> > 0,
> > > +                                       USEC_PER_MSEC);
> > > +
> > > +       return ret;
> > 
> > Just return readl_poll_timeout_atomic(...) here.
> 
> Maybe use below code will to best describes.
> 
> If (ret)
>         return -ETIMEOUT;
> 
> return 0;

No, just return readl_poll_timeout_atomic().


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

* RE: [EXT] Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output interface
  2019-09-18 17:00       ` Stephen Boyd
@ 2019-09-19  3:53         ` Wen He
  0 siblings, 0 replies; 6+ messages in thread
From: Wen He @ 2019-09-19  3:53 UTC (permalink / raw)
  To: Stephen Boyd, devicetree, linux-clk, linux-devel, linux-kernel,
	Mark Rutland, Michael Turquette, Rob Herring
  Cc: Leo Li, liviu.dudau



> -----Original Message-----
> From: Stephen Boyd <sboyd@kernel.org>
> Sent: 2019年9月19日 1:01
> To: devicetree@vger.kernel.org; linux-clk@vger.kernel.org;
> linux-devel@linux.nxdi.nxp.com; linux-kernel@vger.kernel.org; Mark Rutland
> <mark.rutland@arm.com>; Michael Turquette <mturquette@baylibre.com>;
> Rob Herring <robh+dt@kernel.org>; Wen He <wen.he_1@nxp.com>
> Cc: Leo Li <leoyang.li@nxp.com>; liviu.dudau@arm.com
> Subject: RE: [EXT] Re: [v4 2/2] clk: ls1028a: Add clock driver for Display output
> interface
> 
> 
> Quoting Wen He (2019-09-18 02:20:26)
> > > -----Original Message-----
> > > From: Stephen Boyd <sboyd@kernel.org> Quoting Wen He (2019-08-29
> > > 03:59:19)
> > > > diff --git a/drivers/clk/clk-plldig.c b/drivers/clk/clk-plldig.c
> > > > new file mode 100644 index 000000000000..d3239bcf59de
> > > > --- /dev/null
> > > > +++ b/drivers/clk/clk-plldig.c
> > > > @@ -0,0 +1,298 @@
> [...]
> >
> > >
> > > > +
> > > > +/* Maximum of the divider */
> > > > +#define MAX_RFDPHI1          63
> > > > +
> > > > +/* Best value of multiplication factor divider */
> > > > +#define PLLDIG_DEFAULE_MULT         44
> > > > +
> > > > +/*
> > > > + * Clock configuration relationship between the PHI1
> > > > +frequency(fpll_phi) and
> > > > + * the output frequency of the PLL is determined by the PLLDV,
> > > > +according to
> > > > + * the following equation:
> > > > + * fpll_phi = (pll_ref * mfd) / div_rfdphi1  */ struct
> > > > +plldig_phi1_param {
> > > > +       unsigned long rate;
> > > > +       unsigned int rfdphi1;
> > > > +       unsigned int mfd;
> > > > +};
> > > > +
> > > > +enum plldig_phi1_freq_range {
> > > > +       PHI1_MIN        = 27000000U,
> > > > +       PHI1_MAX        = 600000000U
> > > > +};
> > >
> > > Please just inline these values in the one place they're used.
> > >
> > > > +
> > > > +struct clk_plldig {
> > > > +       struct clk_hw hw;
> > > > +       void __iomem *regs;
> > > > +       struct device *dev;
> > >
> > > Please remove this, it is unused.
> >
> > It is used for probe.
> 
> Use a local variable and don't store it away forever in the struct.
> 

Understand, will remove it.

> > >
> > > > +
> > > > +       val = readl(data->regs + PLLDIG_REG_PLLDV);
> > > > +       val = phi1_param.mfd;
> > > > +       rfdphi1 = phi1_param.rfdphi1;
> > > > +       val |= rfdphi1;
> > > > +
> > > > +       writel(val, data->regs + PLLDIG_REG_PLLDV);
> > > > +
> > > > +       /* delay 200us make sure that old lock state is cleared */
> > > > +       udelay(200);
> > > > +
> > > > +       /* Wait until PLL is locked or timeout (maximum 1000 usecs) */
> > > > +       ret = readl_poll_timeout_atomic(data->regs +
> > > > + PLLDIG_REG_PLLSR,
> > > cond,
> > > > +                                       cond &
> PLLDIG_LOCK_MASK,
> > > 0,
> > > > +                                       USEC_PER_MSEC);
> > > > +
> > > > +       return ret;
> > >
> > > Just return readl_poll_timeout_atomic(...) here.
> >
> > Maybe use below code will to best describes.
> >
> > If (ret)
> >         return -ETIMEOUT;
> >
> > return 0;
> 
> No, just return readl_poll_timeout_atomic().

Understand, I will send next version patch for this.

Thanks && Best Regards,
Wen


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

end of thread, other threads:[~2019-09-19  3:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-29 10:59 [v4 1/2] dt/bindings: clk: Add YAML schemas for LS1028A Display Clock bindings Wen He
2019-08-29 10:59 ` [v4 2/2] clk: ls1028a: Add clock driver for Display output interface Wen He
2019-09-16 20:26   ` Stephen Boyd
2019-09-18  9:20     ` [EXT] " Wen He
2019-09-18 17:00       ` Stephen Boyd
2019-09-19  3:53         ` Wen He

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).