]> git.baikalelectronics.ru Git - uboot.git/commitdiff
clk: move clk-ti-sci driver to 'ti' directory
authorDario Binacchi <dariobin@libero.it>
Tue, 29 Dec 2020 23:16:20 +0000 (00:16 +0100)
committerLokesh Vutla <lokeshvutla@ti.com>
Tue, 12 Jan 2021 05:28:05 +0000 (10:58 +0530)
The patch moves the clk-ti-sci.c file to the 'ti' directory along with
all the other TI's drivers, and renames it clk-sci.c.

Signed-off-by: Dario Binacchi <dariobin@libero.it>
drivers/clk/Kconfig
drivers/clk/Makefile
drivers/clk/clk-ti-sci.c [deleted file]
drivers/clk/ti/Kconfig
drivers/clk/ti/Makefile
drivers/clk/ti/clk-sci.c [new file with mode: 0644]

index 9e549290398ccbc29ca71d42f5817f82a12853ee..db06f276ec2008b1fc0ba9df63c645037b4f3a35 100644 (file)
@@ -98,14 +98,6 @@ config CLK_STM32F
          This clock driver adds support for RCC clock management
          for STM32F4 and STM32F7 SoCs.
 
-config CLK_TI_SCI
-       bool "TI System Control Interface (TI SCI) clock driver"
-       depends on CLK && TI_SCI_PROTOCOL && OF_CONTROL
-       help
-         This enables the clock driver support over TI System Control Interface
-         available on some new TI's SoCs. If you wish to use clock resources
-         managed by the TI System Controller, say Y here. Otherwise, say N.
-
 config CLK_HSDK
        bool "Enable cgu clock driver for HSDK boards"
        depends on CLK && TARGET_HSDK
index 2581fe0a19890c6fd2be410e25c93a436e77d1d2..f8383e523d69cbf5ce522324954df1589829a557 100644 (file)
@@ -48,6 +48,5 @@ obj-$(CONFIG_SANDBOX) += clk_sandbox.o
 obj-$(CONFIG_SANDBOX) += clk_sandbox_test.o
 obj-$(CONFIG_SANDBOX_CLK_CCF) += clk_sandbox_ccf.o
 obj-$(CONFIG_STM32H7) += clk_stm32h7.o
-obj-$(CONFIG_CLK_TI_SCI) += clk-ti-sci.o
 obj-$(CONFIG_CLK_VERSAL) += clk_versal.o
 obj-$(CONFIG_CLK_CDCE9XX) += clk-cdce9xx.o
diff --git a/drivers/clk/clk-ti-sci.c b/drivers/clk/clk-ti-sci.c
deleted file mode 100644 (file)
index 6f0fdaa..0000000
+++ /dev/null
@@ -1,225 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Texas Instruments System Control Interface (TI SCI) clock driver
- *
- * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
- *     Andreas Dannenberg <dannenberg@ti.com>
- *
- * Loosely based on Linux kernel sci-clk.c...
- */
-
-#include <common.h>
-#include <dm.h>
-#include <errno.h>
-#include <clk-uclass.h>
-#include <log.h>
-#include <malloc.h>
-#include <dm/device_compat.h>
-#include <linux/err.h>
-#include <linux/soc/ti/ti_sci_protocol.h>
-#include <k3-avs.h>
-
-/**
- * struct ti_sci_clk_data - clock controller information structure
- * @sci: TI SCI handle used for communication with system controller
- */
-struct ti_sci_clk_data {
-       const struct ti_sci_handle *sci;
-};
-
-static int ti_sci_clk_probe(struct udevice *dev)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(dev);
-
-       debug("%s(dev=%p)\n", __func__, dev);
-
-       if (!data)
-               return -ENOMEM;
-
-       /* Store handle for communication with the system controller */
-       data->sci = ti_sci_get_handle(dev);
-       if (IS_ERR(data->sci))
-               return PTR_ERR(data->sci);
-
-       return 0;
-}
-
-static int ti_sci_clk_of_xlate(struct clk *clk,
-                              struct ofnode_phandle_args *args)
-{
-       debug("%s(clk=%p, args_count=%d)\n", __func__, clk, args->args_count);
-
-       if (args->args_count != 2) {
-               debug("Invalid args_count: %d\n", args->args_count);
-               return -EINVAL;
-       }
-
-       /*
-        * On TI SCI-based devices, the clock provider id field is used as a
-        * device ID, and the data field is used as the associated sub-ID.
-        */
-       clk->id = args->args[0];
-       clk->data = args->args[1];
-
-       return 0;
-}
-
-static int ti_sci_clk_request(struct clk *clk)
-{
-       debug("%s(clk=%p)\n", __func__, clk);
-       return 0;
-}
-
-static int ti_sci_clk_free(struct clk *clk)
-{
-       debug("%s(clk=%p)\n", __func__, clk);
-       return 0;
-}
-
-static ulong ti_sci_clk_get_rate(struct clk *clk)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
-       const struct ti_sci_handle *sci = data->sci;
-       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
-       u64 current_freq;
-       int ret;
-
-       debug("%s(clk=%p)\n", __func__, clk);
-
-       ret = cops->get_freq(sci, clk->id, clk->data, &current_freq);
-       if (ret) {
-               dev_err(clk->dev, "%s: get_freq failed (%d)\n", __func__, ret);
-               return ret;
-       }
-
-       debug("%s(current_freq=%llu)\n", __func__, current_freq);
-
-       return current_freq;
-}
-
-static ulong ti_sci_clk_set_rate(struct clk *clk, ulong rate)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
-       const struct ti_sci_handle *sci = data->sci;
-       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
-       int ret;
-
-       debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
-
-#ifdef CONFIG_K3_AVS0
-       k3_avs_notify_freq(clk->id, clk->data, rate);
-#endif
-
-       ret = cops->set_freq(sci, clk->id, clk->data, 0, rate, ULONG_MAX);
-       if (ret)
-               dev_err(clk->dev, "%s: set_freq failed (%d)\n", __func__, ret);
-
-       return ret;
-}
-
-static int ti_sci_clk_set_parent(struct clk *clk, struct clk *parent)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
-       const struct ti_sci_handle *sci = data->sci;
-       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
-       u8 num_parents;
-       u8 parent_cid;
-       int ret;
-
-       debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent);
-
-       /* Make sure the clock parent is valid for a given device ID */
-       if (clk->id != parent->id)
-               return -EINVAL;
-
-       /* Make sure clock has parents that can be set */
-       ret = cops->get_num_parents(sci, clk->id, clk->data, &num_parents);
-       if (ret) {
-               dev_err(clk->dev, "%s: get_num_parents failed (%d)\n",
-                       __func__, ret);
-               return ret;
-       }
-       if (num_parents < 2) {
-               dev_err(clk->dev, "%s: clock has no settable parents!\n",
-                       __func__);
-               return -EINVAL;
-       }
-
-       /* Make sure parent clock ID is valid */
-       parent_cid = parent->data - clk->data - 1;
-       if (parent_cid >= num_parents) {
-               dev_err(clk->dev, "%s: invalid parent clock!\n", __func__);
-               return -EINVAL;
-       }
-
-       /* Ready to proceed to configure the new clock parent */
-       ret = cops->set_parent(sci, clk->id, clk->data, parent->data);
-       if (ret)
-               dev_err(clk->dev, "%s: set_parent failed (%d)\n", __func__,
-                       ret);
-
-       return ret;
-}
-
-static int ti_sci_clk_enable(struct clk *clk)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
-       const struct ti_sci_handle *sci = data->sci;
-       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
-       int ret;
-
-       debug("%s(clk=%p)\n", __func__, clk);
-
-       /*
-        * Allow the System Controller to automatically manage the state of
-        * this clock. If the device is enabled, then the clock is enabled.
-        */
-       ret = cops->put_clock(sci, clk->id, clk->data);
-       if (ret)
-               dev_err(clk->dev, "%s: put_clock failed (%d)\n", __func__, ret);
-
-       return ret;
-}
-
-static int ti_sci_clk_disable(struct clk *clk)
-{
-       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
-       const struct ti_sci_handle *sci = data->sci;
-       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
-       int ret;
-
-       debug("%s(clk=%p)\n", __func__, clk);
-
-       /* Unconditionally disable clock, regardless of state of the device */
-       ret = cops->idle_clock(sci, clk->id, clk->data);
-       if (ret)
-               dev_err(clk->dev, "%s: idle_clock failed (%d)\n", __func__,
-                       ret);
-
-       return ret;
-}
-
-static const struct udevice_id ti_sci_clk_of_match[] = {
-       { .compatible = "ti,k2g-sci-clk" },
-       { /* sentinel */ },
-};
-
-static struct clk_ops ti_sci_clk_ops = {
-       .of_xlate = ti_sci_clk_of_xlate,
-       .request = ti_sci_clk_request,
-       .rfree = ti_sci_clk_free,
-       .get_rate = ti_sci_clk_get_rate,
-       .set_rate = ti_sci_clk_set_rate,
-       .set_parent = ti_sci_clk_set_parent,
-       .enable = ti_sci_clk_enable,
-       .disable = ti_sci_clk_disable,
-};
-
-U_BOOT_DRIVER(ti_sci_clk) = {
-       .name = "ti-sci-clk",
-       .id = UCLASS_CLK,
-       .of_match = ti_sci_clk_of_match,
-       .probe = ti_sci_clk_probe,
-       .priv_auto      = sizeof(struct ti_sci_clk_data),
-       .ops = &ti_sci_clk_ops,
-};
index 9e257a2eb7c1b0db7b73c3534b949763f9f2e1fc..2dc86d44a983d2b8c13d9f36804d873fe896e3eb 100644 (file)
@@ -33,3 +33,11 @@ config CLK_TI_MUX
        depends on CLK && OF_CONTROL && CLK_CCF
        help
          This enables the mux clock driver support on TI's SoCs.
+
+config CLK_TI_SCI
+       bool "TI System Control Interface (TI SCI) clock driver"
+       depends on CLK && TI_SCI_PROTOCOL && OF_CONTROL
+       help
+         This enables the clock driver support over TI System Control Interface
+         available on some new TI's SoCs. If you wish to use clock resources
+         managed by the TI System Controller, say Y here. Otherwise, say N.
index dbd343069c68704495cecfb0829e246c4da88ea6..9f56b47736019760ab60f499d4093da16ca9d7b9 100644 (file)
@@ -10,3 +10,4 @@ obj-$(CONFIG_CLK_TI_CTRL) += clk-ctrl.o
 obj-$(CONFIG_CLK_TI_DIVIDER) += clk-divider.o
 obj-$(CONFIG_CLK_TI_GATE) += clk-gate.o
 obj-$(CONFIG_CLK_TI_MUX) += clk-mux.o
+obj-$(CONFIG_CLK_TI_SCI) += clk-sci.o
diff --git a/drivers/clk/ti/clk-sci.c b/drivers/clk/ti/clk-sci.c
new file mode 100644 (file)
index 0000000..6f0fdaa
--- /dev/null
@@ -0,0 +1,225 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Texas Instruments System Control Interface (TI SCI) clock driver
+ *
+ * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
+ *     Andreas Dannenberg <dannenberg@ti.com>
+ *
+ * Loosely based on Linux kernel sci-clk.c...
+ */
+
+#include <common.h>
+#include <dm.h>
+#include <errno.h>
+#include <clk-uclass.h>
+#include <log.h>
+#include <malloc.h>
+#include <dm/device_compat.h>
+#include <linux/err.h>
+#include <linux/soc/ti/ti_sci_protocol.h>
+#include <k3-avs.h>
+
+/**
+ * struct ti_sci_clk_data - clock controller information structure
+ * @sci: TI SCI handle used for communication with system controller
+ */
+struct ti_sci_clk_data {
+       const struct ti_sci_handle *sci;
+};
+
+static int ti_sci_clk_probe(struct udevice *dev)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(dev);
+
+       debug("%s(dev=%p)\n", __func__, dev);
+
+       if (!data)
+               return -ENOMEM;
+
+       /* Store handle for communication with the system controller */
+       data->sci = ti_sci_get_handle(dev);
+       if (IS_ERR(data->sci))
+               return PTR_ERR(data->sci);
+
+       return 0;
+}
+
+static int ti_sci_clk_of_xlate(struct clk *clk,
+                              struct ofnode_phandle_args *args)
+{
+       debug("%s(clk=%p, args_count=%d)\n", __func__, clk, args->args_count);
+
+       if (args->args_count != 2) {
+               debug("Invalid args_count: %d\n", args->args_count);
+               return -EINVAL;
+       }
+
+       /*
+        * On TI SCI-based devices, the clock provider id field is used as a
+        * device ID, and the data field is used as the associated sub-ID.
+        */
+       clk->id = args->args[0];
+       clk->data = args->args[1];
+
+       return 0;
+}
+
+static int ti_sci_clk_request(struct clk *clk)
+{
+       debug("%s(clk=%p)\n", __func__, clk);
+       return 0;
+}
+
+static int ti_sci_clk_free(struct clk *clk)
+{
+       debug("%s(clk=%p)\n", __func__, clk);
+       return 0;
+}
+
+static ulong ti_sci_clk_get_rate(struct clk *clk)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
+       const struct ti_sci_handle *sci = data->sci;
+       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
+       u64 current_freq;
+       int ret;
+
+       debug("%s(clk=%p)\n", __func__, clk);
+
+       ret = cops->get_freq(sci, clk->id, clk->data, &current_freq);
+       if (ret) {
+               dev_err(clk->dev, "%s: get_freq failed (%d)\n", __func__, ret);
+               return ret;
+       }
+
+       debug("%s(current_freq=%llu)\n", __func__, current_freq);
+
+       return current_freq;
+}
+
+static ulong ti_sci_clk_set_rate(struct clk *clk, ulong rate)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
+       const struct ti_sci_handle *sci = data->sci;
+       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
+       int ret;
+
+       debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
+
+#ifdef CONFIG_K3_AVS0
+       k3_avs_notify_freq(clk->id, clk->data, rate);
+#endif
+
+       ret = cops->set_freq(sci, clk->id, clk->data, 0, rate, ULONG_MAX);
+       if (ret)
+               dev_err(clk->dev, "%s: set_freq failed (%d)\n", __func__, ret);
+
+       return ret;
+}
+
+static int ti_sci_clk_set_parent(struct clk *clk, struct clk *parent)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
+       const struct ti_sci_handle *sci = data->sci;
+       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
+       u8 num_parents;
+       u8 parent_cid;
+       int ret;
+
+       debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent);
+
+       /* Make sure the clock parent is valid for a given device ID */
+       if (clk->id != parent->id)
+               return -EINVAL;
+
+       /* Make sure clock has parents that can be set */
+       ret = cops->get_num_parents(sci, clk->id, clk->data, &num_parents);
+       if (ret) {
+               dev_err(clk->dev, "%s: get_num_parents failed (%d)\n",
+                       __func__, ret);
+               return ret;
+       }
+       if (num_parents < 2) {
+               dev_err(clk->dev, "%s: clock has no settable parents!\n",
+                       __func__);
+               return -EINVAL;
+       }
+
+       /* Make sure parent clock ID is valid */
+       parent_cid = parent->data - clk->data - 1;
+       if (parent_cid >= num_parents) {
+               dev_err(clk->dev, "%s: invalid parent clock!\n", __func__);
+               return -EINVAL;
+       }
+
+       /* Ready to proceed to configure the new clock parent */
+       ret = cops->set_parent(sci, clk->id, clk->data, parent->data);
+       if (ret)
+               dev_err(clk->dev, "%s: set_parent failed (%d)\n", __func__,
+                       ret);
+
+       return ret;
+}
+
+static int ti_sci_clk_enable(struct clk *clk)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
+       const struct ti_sci_handle *sci = data->sci;
+       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
+       int ret;
+
+       debug("%s(clk=%p)\n", __func__, clk);
+
+       /*
+        * Allow the System Controller to automatically manage the state of
+        * this clock. If the device is enabled, then the clock is enabled.
+        */
+       ret = cops->put_clock(sci, clk->id, clk->data);
+       if (ret)
+               dev_err(clk->dev, "%s: put_clock failed (%d)\n", __func__, ret);
+
+       return ret;
+}
+
+static int ti_sci_clk_disable(struct clk *clk)
+{
+       struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
+       const struct ti_sci_handle *sci = data->sci;
+       const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
+       int ret;
+
+       debug("%s(clk=%p)\n", __func__, clk);
+
+       /* Unconditionally disable clock, regardless of state of the device */
+       ret = cops->idle_clock(sci, clk->id, clk->data);
+       if (ret)
+               dev_err(clk->dev, "%s: idle_clock failed (%d)\n", __func__,
+                       ret);
+
+       return ret;
+}
+
+static const struct udevice_id ti_sci_clk_of_match[] = {
+       { .compatible = "ti,k2g-sci-clk" },
+       { /* sentinel */ },
+};
+
+static struct clk_ops ti_sci_clk_ops = {
+       .of_xlate = ti_sci_clk_of_xlate,
+       .request = ti_sci_clk_request,
+       .rfree = ti_sci_clk_free,
+       .get_rate = ti_sci_clk_get_rate,
+       .set_rate = ti_sci_clk_set_rate,
+       .set_parent = ti_sci_clk_set_parent,
+       .enable = ti_sci_clk_enable,
+       .disable = ti_sci_clk_disable,
+};
+
+U_BOOT_DRIVER(ti_sci_clk) = {
+       .name = "ti-sci-clk",
+       .id = UCLASS_CLK,
+       .of_match = ti_sci_clk_of_match,
+       .probe = ti_sci_clk_probe,
+       .priv_auto      = sizeof(struct ti_sci_clk_data),
+       .ops = &ti_sci_clk_ops,
+};