From: Laxman Dewangan <ldewangan@nvidia.com>
To: mturquette@baylibre.com, sboyd@codeaurora.org, robh+dt@kernel.org
Cc: linux-clk@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org,
Laxman Dewangan <ldewangan@nvidia.com>
Subject: [PATCH 2/2] clk: max77620: Add clock driver for MAX77620/MAX20024
Date: Fri, 10 Jun 2016 15:42:16 +0530 [thread overview]
Message-ID: <1465553536-23838-2-git-send-email-ldewangan@nvidia.com> (raw)
In-Reply-To: <1465553536-23838-1-git-send-email-ldewangan@nvidia.com>
MAXIM MAX77620 is the power management IC with multiple DCDC/LDO
regulators, RTC, GPIOs, Watchdog, 32KHz clock source etc.
Add support for controlling the 32KHz clock source via clock
framework.
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
---
drivers/clk/Kconfig | 9 +++
drivers/clk/Makefile | 1 +
drivers/clk/clk-max77620.c | 143 +++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 153 insertions(+)
create mode 100644 drivers/clk/clk-max77620.c
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig
index 98efbfc..149f813 100644
--- a/drivers/clk/Kconfig
+++ b/drivers/clk/Kconfig
@@ -34,6 +34,15 @@ source "drivers/clk/versatile/Kconfig"
config COMMON_CLK_MAX_GEN
bool
+config COMMON_CLK_MAX77620
+ tristate "Clock driver for Maxim 77620/MAX20024 MFD"
+ depends on MFD_MAX77620
+ ---help---
+ This driver supports Maxim MAX77620/MAX20024 32KHz crystal
+ oscillator. These multi-function devices have one fixed rate.
+ The clock can be ON and OFF. Say y to make this driver as
+ built-in and m to make it as module.
+
config COMMON_CLK_MAX77686
tristate "Clock driver for Maxim 77686 MFD"
depends on MFD_MAX77686
diff --git a/drivers/clk/Makefile b/drivers/clk/Makefile
index dcc5e69..8c2de43 100644
--- a/drivers/clk/Makefile
+++ b/drivers/clk/Makefile
@@ -26,6 +26,7 @@ obj-$(CONFIG_ARCH_CLPS711X) += clk-clps711x.o
obj-$(CONFIG_ARCH_EFM32) += clk-efm32gg.o
obj-$(CONFIG_ARCH_HIGHBANK) += clk-highbank.o
obj-$(CONFIG_MACH_LOONGSON32) += clk-ls1x.o
+obj-$(CONFIG_COMMON_CLK_MAX77620) += clk-max77620.o
obj-$(CONFIG_COMMON_CLK_MAX_GEN) += clk-max-gen.o
obj-$(CONFIG_COMMON_CLK_MAX77686) += clk-max77686.o
obj-$(CONFIG_COMMON_CLK_MAX77802) += clk-max77802.o
diff --git a/drivers/clk/clk-max77620.c b/drivers/clk/clk-max77620.c
new file mode 100644
index 0000000..615cf2e
--- /dev/null
+++ b/drivers/clk/clk-max77620.c
@@ -0,0 +1,143 @@
+/*
+ * Clock driver for Maxim Max77620 device.
+ *
+ * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms and conditions of the GNU General Public License,
+ * version 2, as published by the Free Software Foundation.
+ */
+
+#include <linux/clk.h>
+#include <linux/clkdev.h>
+#include <linux/clk-provider.h>
+#include <linux/mfd/max77620.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+#include <linux/slab.h>
+
+struct max77620_clks_info {
+ struct device *dev;
+ struct regmap *rmap;
+ struct clk *clk;
+ struct clk_hw hw;
+};
+
+static struct max77620_clks_info *to_max77620_clks_info(struct clk_hw *hw)
+{
+ return container_of(hw, struct max77620_clks_info, hw);
+}
+
+static unsigned long max77620_clks_recalc_rate(struct clk_hw *hw,
+ unsigned long parent_rate)
+{
+ return 32768;
+}
+
+static int max77620_clks_prepare(struct clk_hw *hw)
+{
+ struct max77620_clks_info *mci = to_max77620_clks_info(hw);
+
+ return regmap_update_bits(mci->rmap, MAX77620_REG_CNFG1_32K,
+ MAX77620_CNFG1_32K_OUT0_EN,
+ MAX77620_CNFG1_32K_OUT0_EN);
+}
+
+static void max77620_clks_unprepare(struct clk_hw *hw)
+{
+ struct max77620_clks_info *mci = to_max77620_clks_info(hw);
+
+ regmap_update_bits(mci->rmap, MAX77620_REG_CNFG1_32K,
+ MAX77620_CNFG1_32K_OUT0_EN, 0);
+}
+
+static int max77620_clks_is_prepared(struct clk_hw *hw)
+{
+ struct max77620_clks_info *mci = to_max77620_clks_info(hw);
+ unsigned int rval;
+ int ret;
+
+ ret = regmap_read(mci->rmap, MAX77620_REG_CNFG1_32K, &rval);
+ if (ret < 0)
+ return ret;
+
+ return !!(rval & MAX77620_CNFG1_32K_OUT0_EN);
+}
+
+static struct clk_ops max77620_clks_ops = {
+ .prepare = max77620_clks_prepare,
+ .unprepare = max77620_clks_unprepare,
+ .is_prepared = max77620_clks_is_prepared,
+ .recalc_rate = max77620_clks_recalc_rate,
+};
+
+struct clk_init_data max77620_clk_init_data = {
+ .name = "clk-32k",
+ .ops = &max77620_clks_ops,
+ .flags = CLK_IGNORE_UNUSED,
+};
+
+static int max77620_clks_probe(struct platform_device *pdev)
+{
+ struct device_node *np = pdev->dev.parent->of_node;
+ struct max77620_clks_info *mci;
+ struct clk *clk;
+ int ret;
+
+ mci = devm_kzalloc(&pdev->dev, sizeof(*mci), GFP_KERNEL);
+ if (!mci)
+ return -ENOMEM;
+
+ platform_set_drvdata(pdev, mci);
+
+ mci->dev = &pdev->dev;
+ mci->rmap = dev_get_regmap(pdev->dev.parent, NULL);
+ if (!mci->rmap) {
+ dev_err(mci->dev, "Failed to get parent regmap\n");
+ return -ENODEV;
+ }
+ mci->hw.init = &max77620_clk_init_data;
+
+ clk = devm_clk_register(&pdev->dev, &mci->hw);
+ if (IS_ERR(clk)) {
+ ret = PTR_ERR(clk);
+ dev_err(mci->dev, "Fail to register clock: %d\n", ret);
+ return ret;
+ }
+
+ mci->clk = clk;
+ ret = of_clk_add_provider(np, of_clk_src_simple_get, mci->clk);
+ if (ret < 0)
+ dev_err(&pdev->dev, "Fail to add clock driver, %d\n", ret);
+
+ return ret;
+}
+
+static int max77620_clks_remove(struct platform_device *pdev)
+{
+ of_clk_del_provider(pdev->dev.parent->of_node);
+
+ return 0;
+}
+
+static struct platform_device_id max77620_clks_devtype[] = {
+ { .name = "max77620-clock", },
+ {},
+};
+
+static struct platform_driver max77620_clks_driver = {
+ .driver = {
+ .name = "max77620-clock",
+ },
+ .probe = max77620_clks_probe,
+ .remove = max77620_clks_remove,
+ .id_table = max77620_clks_devtype,
+};
+
+module_platform_driver(max77620_clks_driver);
+
+MODULE_DESCRIPTION("Clock driver for Maxim max77620 PMIC Device");
+MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
+MODULE_LICENSE("GPL v2");
--
2.1.4
next prev parent reply other threads:[~2016-06-10 10:12 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-10 10:12 [PATCH 1/2] clk: max77620: Add DT binding doc for MAX77620 clock Laxman Dewangan
2016-06-10 10:12 ` Laxman Dewangan [this message]
2016-06-10 13:20 ` [PATCH 2/2] clk: max77620: Add clock driver for MAX77620/MAX20024 Javier Martinez Canillas
2016-06-10 13:13 ` Laxman Dewangan
2016-06-10 13:32 ` Javier Martinez Canillas
2016-06-10 13:31 ` Laxman Dewangan
2016-06-10 14:11 ` Krzysztof Kozlowski
2016-06-10 13:26 ` [PATCH 1/2] clk: max77620: Add DT binding doc for MAX77620 clock Javier Martinez Canillas
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1465553536-23838-2-git-send-email-ldewangan@nvidia.com \
--to=ldewangan@nvidia.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@codeaurora.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).