LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
@ 2021-11-03 6:19 Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 1/3] dt-bindings: clock: lan966x: Add binding includes for lan966x SoC clock IDs Kavyasree Kotagiri
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Kavyasree Kotagiri @ 2021-11-03 6:19 UTC (permalink / raw)
To: robh+dt, mturquette, sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
nicolas.ferre, Eugen.Hristev, Kavyasree.Kotagiri, Manohar.Puri
This patch series adds a device driver for Generic Clock Controller
of lan966x SoC.
v9 -> v10:
- Removed .name from lan966x_gck_pdata struct.
- Removed "_clk" in fw_names like used in bindings
v8 -> v9:
- Added Acked-by to dt-bindings and Documentation file.
- Changed clk_name "timer" to "timer1"
- Updated devm_kzalloc in probe function.
v7 -> v8:
- Defined new constant DIV_MAX.
- Corrected and updated prescaler divider condition check.
- Added Acked-by.
v6 -> v7:
- Added Kconfig and Makefile entires for lan966x clock driver.
v5 -> v6:
- Added Acked-by to dt-bindings file.
- Removed "_clk" in clock-names.
- Added Reviewed-by to Documentation file.
v4 -> v5:
- In v4 dt-bindings, missed adding "clock-names" in required
properties and example. So, added them.
- Returning proper error - PTR_ERR.
- Removed unused variable "ret" in probe function.
v3 -> v4:
- Updated "clocks" and added "clock-names" in dt-bindings.
- Used clk_parent_data instead of of_clk_get_parent_name().
v2 -> v3:
- Fixed dt_binding_check errors.
v1 -> v2:
- Updated license in dt-bindings.
- Updated example provided for clock controller node.
Kavyasree Kotagiri (3):
dt-bindings: clock: lan966x: Add binding includes for lan966x SoC
clock IDs
dt-bindings: clock: lan966x: Add LAN966X Clock Controller
clk: lan966x: Add lan966x SoC clock driver
.../bindings/clock/microchip,lan966x-gck.yaml | 57 +++++
drivers/clk/Kconfig | 7 +
drivers/clk/Makefile | 1 +
drivers/clk/clk-lan966x.c | 240 ++++++++++++++++++
include/dt-bindings/clock/microchip,lan966x.h | 28 ++
5 files changed, 333 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
create mode 100644 drivers/clk/clk-lan966x.c
create mode 100644 include/dt-bindings/clock/microchip,lan966x.h
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v10 1/3] dt-bindings: clock: lan966x: Add binding includes for lan966x SoC clock IDs
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
@ 2021-11-03 6:19 ` Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 2/3] dt-bindings: clock: lan966x: Add LAN966X Clock Controller Kavyasree Kotagiri
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Kavyasree Kotagiri @ 2021-11-03 6:19 UTC (permalink / raw)
To: robh+dt, mturquette, sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
nicolas.ferre, Eugen.Hristev, Kavyasree.Kotagiri, Manohar.Puri
LAN966X supports 14 clock outputs for its peripherals.
This include file is introduced to use identifiers for clocks.
Signed-off-by: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
Acked-by: Rob Herring <robh@kernel.org>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
---
v9 -> v10:
- No changes.
v8 -> v9:
- Added Acked-by: Nicolas Ferre.
v7 -> v8:
- No changes.
v6 -> v7:
- No changes.
v5 -> v6:
- Added Acked-by.
v4 -> v5:
- No changes.
v3 -> v4:
- No changes.
v2 -> v3:
- No changes.
v1 -> v2:
- Updated license.
include/dt-bindings/clock/microchip,lan966x.h | 28 +++++++++++++++++++
1 file changed, 28 insertions(+)
create mode 100644 include/dt-bindings/clock/microchip,lan966x.h
diff --git a/include/dt-bindings/clock/microchip,lan966x.h b/include/dt-bindings/clock/microchip,lan966x.h
new file mode 100644
index 000000000000..fe36ed6d8b5f
--- /dev/null
+++ b/include/dt-bindings/clock/microchip,lan966x.h
@@ -0,0 +1,28 @@
+/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
+/*
+ * Copyright (c) 2021 Microchip Inc.
+ *
+ * Author: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
+ */
+
+#ifndef _DT_BINDINGS_CLK_LAN966X_H
+#define _DT_BINDINGS_CLK_LAN966X_H
+
+#define GCK_ID_QSPI0 0
+#define GCK_ID_QSPI1 1
+#define GCK_ID_QSPI2 2
+#define GCK_ID_SDMMC0 3
+#define GCK_ID_PI 4
+#define GCK_ID_MCAN0 5
+#define GCK_ID_MCAN1 6
+#define GCK_ID_FLEXCOM0 7
+#define GCK_ID_FLEXCOM1 8
+#define GCK_ID_FLEXCOM2 9
+#define GCK_ID_FLEXCOM3 10
+#define GCK_ID_FLEXCOM4 11
+#define GCK_ID_TIMER 12
+#define GCK_ID_USB_REFCLK 13
+
+#define N_CLOCKS 14
+
+#endif
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v10 2/3] dt-bindings: clock: lan966x: Add LAN966X Clock Controller
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 1/3] dt-bindings: clock: lan966x: Add binding includes for lan966x SoC clock IDs Kavyasree Kotagiri
@ 2021-11-03 6:19 ` Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 3/3] clk: lan966x: Add lan966x SoC clock driver Kavyasree Kotagiri
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Kavyasree Kotagiri @ 2021-11-03 6:19 UTC (permalink / raw)
To: robh+dt, mturquette, sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
nicolas.ferre, Eugen.Hristev, Kavyasree.Kotagiri, Manohar.Puri
This adds the DT bindings documentation for lan966x SoC
generic clock controller.
Signed-off-by: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
---
v9 -> v10:
- No changes.
v8 -> v9:
- Added Acked-by: Nicolas Ferre.
v7 -> v8:
- No changes.
v6 -> v7:
- No changes.
v5 -> v6:
- Removed "_clk" in clock-names.
- Added Reviewed-by.
v4 -> v5:
- In v4 dt-bindings, missed adding "clock-names" in required
properties and example. So, added them.
v3 -> v4:
- Updated "clocks" description.
- Added "clock-names".
v2 -> v3:
- Fixed dt_binding_check errors.
v1 -> v2:
- Updated example provided for clk controller DT node.
.../bindings/clock/microchip,lan966x-gck.yaml | 57 +++++++++++++++++++
1 file changed, 57 insertions(+)
create mode 100644 Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
diff --git a/Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml b/Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
new file mode 100644
index 000000000000..fca83bd68e26
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
@@ -0,0 +1,57 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/clock/microchip,lan966x-gck.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Microchip LAN966X Generic Clock Controller
+
+maintainers:
+ - Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
+
+description: |
+ The LAN966X Generic clock controller contains 3 PLLs - cpu_clk,
+ ddr_clk and sys_clk. This clock controller generates and supplies
+ clock to various peripherals within the SoC.
+
+properties:
+ compatible:
+ const: microchip,lan966x-gck
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ items:
+ - description: CPU clock source
+ - description: DDR clock source
+ - description: System clock source
+
+ clock-names:
+ items:
+ - const: cpu
+ - const: ddr
+ - const: sys
+
+ '#clock-cells':
+ const: 1
+
+required:
+ - compatible
+ - reg
+ - clocks
+ - clock-names
+ - '#clock-cells'
+
+additionalProperties: false
+
+examples:
+ - |
+ clks: clock-controller@e00c00a8 {
+ compatible = "microchip,lan966x-gck";
+ #clock-cells = <1>;
+ clocks = <&cpu_clk>, <&ddr_clk>, <&sys_clk>;
+ clock-names = "cpu", "ddr", "sys";
+ reg = <0xe00c00a8 0x38>;
+ };
+...
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v10 3/3] clk: lan966x: Add lan966x SoC clock driver
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 1/3] dt-bindings: clock: lan966x: Add binding includes for lan966x SoC clock IDs Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 2/3] dt-bindings: clock: lan966x: Add LAN966X Clock Controller Kavyasree Kotagiri
@ 2021-11-03 6:19 ` Kavyasree Kotagiri
2021-11-08 5:12 ` [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree.Kotagiri
2021-12-08 10:10 ` Nicolas Ferre
4 siblings, 0 replies; 7+ messages in thread
From: Kavyasree Kotagiri @ 2021-11-03 6:19 UTC (permalink / raw)
To: robh+dt, mturquette, sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
nicolas.ferre, Eugen.Hristev, Kavyasree.Kotagiri, Manohar.Puri
This adds Generic Clock Controller driver for lan966x SoC.
Lan966x clock controller contains 3 PLLs - cpu_clk, ddr_clk
and sys_clk. It generates and supplies clock to various
peripherals within SoC.
Register settings required to provide GCK clocking to a
peripheral is as below:
GCK_SRC_SEL = Select clock source.
GCK_PRESCALER = Set divider value.
GCK_ENA = 1 - Enable GCK clock.
Signed-off-by: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
Co-developed-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com>
---
v9 -> v10:
- Removed .name from lan966x_gck_pdata struct.
- Removed "_clk" in fw_names like used in bindings
v8 -> v9:
- Changed clk_name "timer" to "timer1"
- Updated devm_kzalloc in probe function.
v7 -> v8:
- Defined new constant DIV_MAX.
- Corrected and updated divider value condition check.
- Added Acked-by.
v6 -> v7:
- Added Kconfig and Makefile entires for lan966x clock driver.
v5 -> v6:
- No changes.
v4 -> v5:
- Returning proper error - PTR_ERR.
- Removed unused variable "ret" in probe function.
v3 -> v4:
- Used clk_parent_data instead of of_clk_get_parent_name().
v2 -> v3:
- No changes.
v1 -> v2:
- No changes.
drivers/clk/Kconfig | 7 ++
drivers/clk/Makefile | 1 +
drivers/clk/clk-lan966x.c | 240 ++++++++++++++++++++++++++++++++++++++
3 files changed, 248 insertions(+)
create mode 100644 drivers/clk/clk-lan966x.c
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index c5b3dc97396a..1b992a554ff8 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -221,6 +221,13 @@ config COMMON_CLK_GEMINI
This driver supports the SoC clocks on the Cortina Systems Gemini
platform, also known as SL3516 or CS3516.
+config COMMON_CLK_LAN966X
+ bool "Generic Clock Controller driver for LAN966X SoC"
+ help
+ This driver provides support for Generic Clock Controller(GCK) on
+ LAN966X SoC. GCK generates and supplies clock to various peripherals
+ within the SoC.
+
config COMMON_CLK_ASPEED
bool "Clock driver for Aspeed BMC SoCs"
depends on ARCH_ASPEED || COMPILE_TEST
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index e42312121e51..d8565ef01b34 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -37,6 +37,7 @@ obj-$(CONFIG_ARCH_HIGHBANK) += clk-highbank.o
obj-$(CONFIG_CLK_HSDK) += clk-hsdk-pll.o
obj-$(CONFIG_COMMON_CLK_K210) += clk-k210.o
obj-$(CONFIG_LMK04832) += clk-lmk04832.o
+obj-$(CONFIG_COMMON_CLK_LAN966X) += clk-lan966x.o
obj-$(CONFIG_COMMON_CLK_LOCHNAGAR) += clk-lochnagar.o
obj-$(CONFIG_COMMON_CLK_MAX77686) += clk-max77686.o
obj-$(CONFIG_COMMON_CLK_MAX9485) += clk-max9485.o
diff --git a/drivers/clk/clk-lan966x.c b/drivers/clk/clk-lan966x.c
new file mode 100644
index 000000000000..d99cc639eb04
--- /dev/null
+++ b/drivers/clk/clk-lan966x.c
@@ -0,0 +1,240 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Microchip LAN966x SoC Clock driver.
+ *
+ * Copyright (C) 2021 Microchip Technology, Inc. and its subsidiaries
+ *
+ * Author: Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>
+ */
+
+#include <linux/bitfield.h>
+#include <linux/clk-provider.h>
+#include <linux/io.h>
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/platform_device.h>
+#include <linux/slab.h>
+
+#include <dt-bindings/clock/microchip,lan966x.h>
+
+#define GCK_ENA BIT(0)
+#define GCK_SRC_SEL GENMASK(9, 8)
+#define GCK_PRESCALER GENMASK(23, 16)
+
+#define DIV_MAX 255
+
+static const char *clk_names[N_CLOCKS] = {
+ "qspi0", "qspi1", "qspi2", "sdmmc0",
+ "pi", "mcan0", "mcan1", "flexcom0",
+ "flexcom1", "flexcom2", "flexcom3",
+ "flexcom4", "timer1", "usb_refclk",
+};
+
+struct lan966x_gck {
+ struct clk_hw hw;
+ void __iomem *reg;
+};
+#define to_lan966x_gck(hw) container_of(hw, struct lan966x_gck, hw)
+
+static const struct clk_parent_data lan966x_gck_pdata[] = {
+ { .fw_name = "cpu", },
+ { .fw_name = "ddr", },
+ { .fw_name = "sys", },
+};
+
+static struct clk_init_data init = {
+ .parent_data = lan966x_gck_pdata,
+ .num_parents = ARRAY_SIZE(lan966x_gck_pdata),
+};
+
+static void __iomem *base;
+
+static int lan966x_gck_enable(struct clk_hw *hw)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 val = readl(gck->reg);
+
+ val |= GCK_ENA;
+ writel(val, gck->reg);
+
+ return 0;
+}
+
+static void lan966x_gck_disable(struct clk_hw *hw)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 val = readl(gck->reg);
+
+ val &= ~GCK_ENA;
+ writel(val, gck->reg);
+}
+
+static int lan966x_gck_set_rate(struct clk_hw *hw,
+ unsigned long rate,
+ unsigned long parent_rate)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 div, val = readl(gck->reg);
+
+ if (rate == 0 || parent_rate == 0)
+ return -EINVAL;
+
+ /* Set Prescalar */
+ div = parent_rate / rate;
+ val &= ~GCK_PRESCALER;
+ val |= FIELD_PREP(GCK_PRESCALER, (div - 1));
+ writel(val, gck->reg);
+
+ return 0;
+}
+
+static long lan966x_gck_round_rate(struct clk_hw *hw, unsigned long rate,
+ unsigned long *parent_rate)
+{
+ unsigned int div;
+
+ if (rate == 0 || *parent_rate == 0)
+ return -EINVAL;
+
+ if (rate >= *parent_rate)
+ return *parent_rate;
+
+ div = DIV_ROUND_CLOSEST(*parent_rate, rate);
+
+ return *parent_rate / div;
+}
+
+static unsigned long lan966x_gck_recalc_rate(struct clk_hw *hw,
+ unsigned long parent_rate)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 div, val = readl(gck->reg);
+
+ div = FIELD_GET(GCK_PRESCALER, val);
+
+ return parent_rate / (div + 1);
+}
+
+static int lan966x_gck_determine_rate(struct clk_hw *hw,
+ struct clk_rate_request *req)
+{
+ struct clk_hw *parent;
+ int i;
+
+ for (i = 0; i < clk_hw_get_num_parents(hw); ++i) {
+ parent = clk_hw_get_parent_by_index(hw, i);
+ if (!parent)
+ continue;
+
+ /* Allowed prescaler divider range is 0-255 */
+ if (clk_hw_get_rate(parent) / req->rate <= DIV_MAX) {
+ req->best_parent_hw = parent;
+ req->best_parent_rate = clk_hw_get_rate(parent);
+
+ return 0;
+ }
+ }
+
+ return -EINVAL;
+}
+
+static u8 lan966x_gck_get_parent(struct clk_hw *hw)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 val = readl(gck->reg);
+
+ return FIELD_GET(GCK_SRC_SEL, val);
+}
+
+static int lan966x_gck_set_parent(struct clk_hw *hw, u8 index)
+{
+ struct lan966x_gck *gck = to_lan966x_gck(hw);
+ u32 val = readl(gck->reg);
+
+ val &= ~GCK_SRC_SEL;
+ val |= FIELD_PREP(GCK_SRC_SEL, index);
+ writel(val, gck->reg);
+
+ return 0;
+}
+
+static const struct clk_ops lan966x_gck_ops = {
+ .enable = lan966x_gck_enable,
+ .disable = lan966x_gck_disable,
+ .set_rate = lan966x_gck_set_rate,
+ .round_rate = lan966x_gck_round_rate,
+ .recalc_rate = lan966x_gck_recalc_rate,
+ .determine_rate = lan966x_gck_determine_rate,
+ .set_parent = lan966x_gck_set_parent,
+ .get_parent = lan966x_gck_get_parent,
+};
+
+static struct clk_hw *lan966x_gck_clk_register(struct device *dev, int i)
+{
+ struct lan966x_gck *priv;
+ int ret;
+
+ priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
+ if (!priv)
+ return ERR_PTR(-ENOMEM);
+
+ priv->reg = base + (i * 4);
+ priv->hw.init = &init;
+ ret = devm_clk_hw_register(dev, &priv->hw);
+ if (ret)
+ return ERR_PTR(ret);
+
+ return &priv->hw;
+};
+
+static int lan966x_clk_probe(struct platform_device *pdev)
+{
+ struct clk_hw_onecell_data *hw_data;
+ struct device *dev = &pdev->dev;
+ int i;
+
+ hw_data = devm_kzalloc(dev, struct_size(hw_data, hws, N_CLOCKS),
+ GFP_KERNEL);
+ if (!hw_data)
+ return -ENOMEM;
+
+ base = devm_platform_ioremap_resource(pdev, 0);
+ if (IS_ERR(base))
+ return PTR_ERR(base);
+
+ init.ops = &lan966x_gck_ops;
+
+ hw_data->num = N_CLOCKS;
+
+ for (i = 0; i < N_CLOCKS; i++) {
+ init.name = clk_names[i];
+ hw_data->hws[i] = lan966x_gck_clk_register(dev, i);
+ if (IS_ERR(hw_data->hws[i])) {
+ dev_err(dev, "failed to register %s clock\n",
+ init.name);
+ return PTR_ERR(hw_data->hws[i]);
+ }
+ }
+
+ return devm_of_clk_add_hw_provider(dev, of_clk_hw_onecell_get, hw_data);
+}
+
+static const struct of_device_id lan966x_clk_dt_ids[] = {
+ { .compatible = "microchip,lan966x-gck", },
+ { }
+};
+MODULE_DEVICE_TABLE(of, lan966x_clk_dt_ids);
+
+static struct platform_driver lan966x_clk_driver = {
+ .probe = lan966x_clk_probe,
+ .driver = {
+ .name = "lan966x-clk",
+ .of_match_table = lan966x_clk_dt_ids,
+ },
+};
+builtin_platform_driver(lan966x_clk_driver);
+
+MODULE_AUTHOR("Kavyasree Kotagiri <kavyasree.kotagiri@microchip.com>");
+MODULE_DESCRIPTION("LAN966X clock driver");
+MODULE_LICENSE("GPL v2");
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
` (2 preceding siblings ...)
2021-11-03 6:19 ` [PATCH v10 3/3] clk: lan966x: Add lan966x SoC clock driver Kavyasree Kotagiri
@ 2021-11-08 5:12 ` Kavyasree.Kotagiri
2021-11-26 5:09 ` Kavyasree.Kotagiri
2021-12-08 10:10 ` Nicolas Ferre
4 siblings, 1 reply; 7+ messages in thread
From: Kavyasree.Kotagiri @ 2021-11-08 5:12 UTC (permalink / raw)
To: sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
Nicolas.Ferre, Eugen.Hristev, Manohar.Puri, robh+dt, mturquette,
Kavyasree.Kotagiri
Hi Stephen,
Addressed your comments in v10 patch series.
Please let me know when you include my patches into PR.
Thanks,
Kavya
> -----Original Message-----
> From: Kavyasree Kotagiri [mailto:kavyasree.kotagiri@microchip.com]
> Sent: Wednesday, November 3, 2021 11:50 AM
> To: robh+dt@kernel.org; mturquette@baylibre.com; sboyd@kernel.org
> Cc: linux-kernel@vger.kernel.org; devicetree@vger.kernel.org; linux-
> clk@vger.kernel.org; UNGLinuxDriver <UNGLinuxDriver@microchip.com>;
> Nicolas Ferre - M43238 <Nicolas.Ferre@microchip.com>; Eugen Hristev -
> M18282 <Eugen.Hristev@microchip.com>; Kavyasree Kotagiri - I30978
> <Kavyasree.Kotagiri@microchip.com>; Manohar Puri - I30488
> <Manohar.Puri@microchip.com>
> Subject: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
>
> This patch series adds a device driver for Generic Clock Controller
> of lan966x SoC.
>
> v9 -> v10:
> - Removed .name from lan966x_gck_pdata struct.
> - Removed "_clk" in fw_names like used in bindings
>
> v8 -> v9:
> - Added Acked-by to dt-bindings and Documentation file.
> - Changed clk_name "timer" to "timer1"
> - Updated devm_kzalloc in probe function.
>
> v7 -> v8:
> - Defined new constant DIV_MAX.
> - Corrected and updated prescaler divider condition check.
> - Added Acked-by.
>
> v6 -> v7:
> - Added Kconfig and Makefile entires for lan966x clock driver.
>
> v5 -> v6:
> - Added Acked-by to dt-bindings file.
> - Removed "_clk" in clock-names.
> - Added Reviewed-by to Documentation file.
>
> v4 -> v5:
> - In v4 dt-bindings, missed adding "clock-names" in required
> properties and example. So, added them.
> - Returning proper error - PTR_ERR.
> - Removed unused variable "ret" in probe function.
>
> v3 -> v4:
> - Updated "clocks" and added "clock-names" in dt-bindings.
> - Used clk_parent_data instead of of_clk_get_parent_name().
>
> v2 -> v3:
> - Fixed dt_binding_check errors.
>
> v1 -> v2:
> - Updated license in dt-bindings.
> - Updated example provided for clock controller node.
>
> Kavyasree Kotagiri (3):
> dt-bindings: clock: lan966x: Add binding includes for lan966x SoC
> clock IDs
> dt-bindings: clock: lan966x: Add LAN966X Clock Controller
> clk: lan966x: Add lan966x SoC clock driver
>
> .../bindings/clock/microchip,lan966x-gck.yaml | 57 +++++
> drivers/clk/Kconfig | 7 +
> drivers/clk/Makefile | 1 +
> drivers/clk/clk-lan966x.c | 240 ++++++++++++++++++
> include/dt-bindings/clock/microchip,lan966x.h | 28 ++
> 5 files changed, 333 insertions(+)
> create mode 100644
> Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
> create mode 100644 drivers/clk/clk-lan966x.c
> create mode 100644 include/dt-bindings/clock/microchip,lan966x.h
>
> --
> 2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
2021-11-08 5:12 ` [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree.Kotagiri
@ 2021-11-26 5:09 ` Kavyasree.Kotagiri
0 siblings, 0 replies; 7+ messages in thread
From: Kavyasree.Kotagiri @ 2021-11-26 5:09 UTC (permalink / raw)
To: sboyd
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
Nicolas.Ferre, Eugen.Hristev, Manohar.Puri, robh+dt, mturquette
Hi Stephen,
Please provide your comments on this. I am waiting for the response on this patch series so that I can submit further lan966x code which have dependencies on this gck driver.
Thanks,
Kavya
> -----Original Message-----
> From: Kavyasree Kotagiri - I30978
> Sent: Monday, November 8, 2021 10:42 AM
> To: sboyd@kernel.org
> Cc: linux-kernel@vger.kernel.org; devicetree@vger.kernel.org; linux-
> clk@vger.kernel.org; UNGLinuxDriver <UNGLinuxDriver@microchip.com>;
> Nicolas Ferre - M43238 <Nicolas.Ferre@microchip.com>; Eugen Hristev -
> M18282 <Eugen.Hristev@microchip.com>; Manohar Puri - I30488
> <Manohar.Puri@microchip.com>; robh+dt@kernel.org;
> mturquette@baylibre.com; Kavyasree Kotagiri - I30978
> <Kavyasree.Kotagiri@microchip.com>
> Subject: RE: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
>
> Hi Stephen,
>
> Addressed your comments in v10 patch series.
> Please let me know when you include my patches into PR.
>
> Thanks,
> Kavya
> > -----Original Message-----
> > From: Kavyasree Kotagiri [mailto:kavyasree.kotagiri@microchip.com]
> > Sent: Wednesday, November 3, 2021 11:50 AM
> > To: robh+dt@kernel.org; mturquette@baylibre.com; sboyd@kernel.org
> > Cc: linux-kernel@vger.kernel.org; devicetree@vger.kernel.org; linux-
> > clk@vger.kernel.org; UNGLinuxDriver <UNGLinuxDriver@microchip.com>;
> > Nicolas Ferre - M43238 <Nicolas.Ferre@microchip.com>; Eugen Hristev -
> > M18282 <Eugen.Hristev@microchip.com>; Kavyasree Kotagiri - I30978
> > <Kavyasree.Kotagiri@microchip.com>; Manohar Puri - I30488
> > <Manohar.Puri@microchip.com>
> > Subject: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
> >
> > This patch series adds a device driver for Generic Clock Controller
> > of lan966x SoC.
> >
> > v9 -> v10:
> > - Removed .name from lan966x_gck_pdata struct.
> > - Removed "_clk" in fw_names like used in bindings
> >
> > v8 -> v9:
> > - Added Acked-by to dt-bindings and Documentation file.
> > - Changed clk_name "timer" to "timer1"
> > - Updated devm_kzalloc in probe function.
> >
> > v7 -> v8:
> > - Defined new constant DIV_MAX.
> > - Corrected and updated prescaler divider condition check.
> > - Added Acked-by.
> >
> > v6 -> v7:
> > - Added Kconfig and Makefile entires for lan966x clock driver.
> >
> > v5 -> v6:
> > - Added Acked-by to dt-bindings file.
> > - Removed "_clk" in clock-names.
> > - Added Reviewed-by to Documentation file.
> >
> > v4 -> v5:
> > - In v4 dt-bindings, missed adding "clock-names" in required
> > properties and example. So, added them.
> > - Returning proper error - PTR_ERR.
> > - Removed unused variable "ret" in probe function.
> >
> > v3 -> v4:
> > - Updated "clocks" and added "clock-names" in dt-bindings.
> > - Used clk_parent_data instead of of_clk_get_parent_name().
> >
> > v2 -> v3:
> > - Fixed dt_binding_check errors.
> >
> > v1 -> v2:
> > - Updated license in dt-bindings.
> > - Updated example provided for clock controller node.
> >
> > Kavyasree Kotagiri (3):
> > dt-bindings: clock: lan966x: Add binding includes for lan966x SoC
> > clock IDs
> > dt-bindings: clock: lan966x: Add LAN966X Clock Controller
> > clk: lan966x: Add lan966x SoC clock driver
> >
> > .../bindings/clock/microchip,lan966x-gck.yaml | 57 +++++
> > drivers/clk/Kconfig | 7 +
> > drivers/clk/Makefile | 1 +
> > drivers/clk/clk-lan966x.c | 240 ++++++++++++++++++
> > include/dt-bindings/clock/microchip,lan966x.h | 28 ++
> > 5 files changed, 333 insertions(+)
> > create mode 100644
> > Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
> > create mode 100644 drivers/clk/clk-lan966x.c
> > create mode 100644 include/dt-bindings/clock/microchip,lan966x.h
> >
> > --
> > 2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
` (3 preceding siblings ...)
2021-11-08 5:12 ` [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree.Kotagiri
@ 2021-12-08 10:10 ` Nicolas Ferre
4 siblings, 0 replies; 7+ messages in thread
From: Nicolas Ferre @ 2021-12-08 10:10 UTC (permalink / raw)
To: Kavyasree Kotagiri, robh+dt, mturquette, sboyd, Claudiu Beznea
Cc: linux-kernel, devicetree, linux-clk, UNGLinuxDriver,
Eugen.Hristev, Manohar.Puri
On 03/11/2021 at 07:19, Kavyasree Kotagiri wrote:
> This patch series adds a device driver for Generic Clock Controller
> of lan966x SoC.
>
> v9 -> v10:
> - Removed .name from lan966x_gck_pdata struct.
> - Removed "_clk" in fw_names like used in bindings
>
> v8 -> v9:
> - Added Acked-by to dt-bindings and Documentation file.
> - Changed clk_name "timer" to "timer1"
> - Updated devm_kzalloc in probe function.
>
> v7 -> v8:
> - Defined new constant DIV_MAX.
> - Corrected and updated prescaler divider condition check.
> - Added Acked-by.
>
> v6 -> v7:
> - Added Kconfig and Makefile entires for lan966x clock driver.
>
> v5 -> v6:
> - Added Acked-by to dt-bindings file.
> - Removed "_clk" in clock-names.
> - Added Reviewed-by to Documentation file.
>
> v4 -> v5:
> - In v4 dt-bindings, missed adding "clock-names" in required
> properties and example. So, added them.
> - Returning proper error - PTR_ERR.
> - Removed unused variable "ret" in probe function.
>
> v3 -> v4:
> - Updated "clocks" and added "clock-names" in dt-bindings.
> - Used clk_parent_data instead of of_clk_get_parent_name().
>
> v2 -> v3:
> - Fixed dt_binding_check errors.
>
> v1 -> v2:
> - Updated license in dt-bindings.
> - Updated example provided for clock controller node.
>
> Kavyasree Kotagiri (3):
> dt-bindings: clock: lan966x: Add binding includes for lan966x SoC
> clock IDs
> dt-bindings: clock: lan966x: Add LAN966X Clock Controller
> clk: lan966x: Add lan966x SoC clock driver
3 patches added in clk-at91 branch which will be merged in at91-next
consumed by linux-next.
I plan to issue a PR for at91 clock patches soon.
Best regards,
Nicolas
> .../bindings/clock/microchip,lan966x-gck.yaml | 57 +++++
> drivers/clk/Kconfig | 7 +
> drivers/clk/Makefile | 1 +
> drivers/clk/clk-lan966x.c | 240 ++++++++++++++++++
> include/dt-bindings/clock/microchip,lan966x.h | 28 ++
> 5 files changed, 333 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/clock/microchip,lan966x-gck.yaml
> create mode 100644 drivers/clk/clk-lan966x.c
> create mode 100644 include/dt-bindings/clock/microchip,lan966x.h
>
--
Nicolas Ferre
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2021-12-08 10:10 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-03 6:19 [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 1/3] dt-bindings: clock: lan966x: Add binding includes for lan966x SoC clock IDs Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 2/3] dt-bindings: clock: lan966x: Add LAN966X Clock Controller Kavyasree Kotagiri
2021-11-03 6:19 ` [PATCH v10 3/3] clk: lan966x: Add lan966x SoC clock driver Kavyasree Kotagiri
2021-11-08 5:12 ` [PATCH v10 0/3] Add driver for lan966x Generic Clock Controller Kavyasree.Kotagiri
2021-11-26 5:09 ` Kavyasree.Kotagiri
2021-12-08 10:10 ` Nicolas Ferre
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).