From: Daniel Drake <dsd-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.org>
To: eric.y.miao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org,
pgf-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: [PATCH RESEND 2/2] clk: mmp: add support for DT-defined clocks
Date: Tue, 16 Jul 2013 14:11:19 -0400 (EDT) [thread overview]
Message-ID: <20130716181119.46C08FAAF3@dev.laptop.org> (raw)
Add support to the existing mmp clock drivers for clocks to be defined
in the device tree. This will be used on OLPC MMP2/MMP3-based laptops.
If clock info cannot be found in the device tree, we fall back to the
static clock initialization already present.
Signed-off-by: Daniel Drake <dsd-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.org>
---
.../devicetree/bindings/clock/mmp-apbc.txt | 30 ++++++++++
.../devicetree/bindings/clock/mmp-apmu.txt | 30 ++++++++++
drivers/clk/mmp/clk-apbc.c | 66 +++++++++++++++++++++-
drivers/clk/mmp/clk-apmu.c | 37 +++++++++++-
drivers/clk/mmp/clk-mmp2.c | 19 ++++++-
5 files changed, 179 insertions(+), 3 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/mmp-apbc.txt
create mode 100644 Documentation/devicetree/bindings/clock/mmp-apmu.txt
Resending after a month without review.
diff --git a/Documentation/devicetree/bindings/clock/mmp-apbc.txt b/Documentation/devicetree/bindings/clock/mmp-apbc.txt
new file mode 100644
index 0000000..88e1253
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/mmp-apbc.txt
@@ -0,0 +1,30 @@
+* Clock bindings for Marvell MMP Advanced Peripheral Bus clock
+
+Parent apb-clock node
+=====================
+Required properties:
+- reg: Address and length of the APB clock unit registers
+
+
+Child peripheral clock nodes
+============================
+Required properties:
+- compatible : shall be "marvell,mmp-apb-clock"
+- #clock-cells : from common clock binding; shall be set to 1
+- clocks : parent clock, from common clock binding
+- clock-output-names : Array of clock names, from common clock binding
+- reg : Array of control register offsets into APB clock unit register space
+
+
+Example:
+apbc: apb-clock {
+ reg = <0xd4015000 0x1000>;
+
+ twsi-clocks {
+ compatible = "marvell,mmp-apb-clock";
+ #clock-cells = <1>;
+ clocks = <&vctvxo-clock>;
+ clock-output-names = "TWSI0", "TWSI1";
+ reg = <0x04 0x08>;
+ };
+};
diff --git a/Documentation/devicetree/bindings/clock/mmp-apmu.txt b/Documentation/devicetree/bindings/clock/mmp-apmu.txt
new file mode 100644
index 0000000..18bb0f9
--- /dev/null
+++ b/Documentation/devicetree/bindings/clock/mmp-apmu.txt
@@ -0,0 +1,30 @@
+* Clock bindings for Marvell MMP Application Subsystem Power Management Unit
+
+Parent apmu-clock node
+=====================
+Required properties:
+- reg: Address and length of the CPU Subsystem PMU registers
+
+
+Child peripheral clock nodes
+============================
+Required properties:
+- compatible : shall be "marvell,mmp-apmu-clock"
+- #clock-cells : from common clock binding; shall be set to 0
+- clocks : parent clock, from common clock binding
+- reg : Control register offsets into parent register space
+- enable-mask : The bits to be set in the register to enable the clock, or
+ cleared to disable.
+
+Example:
+apmu-clock {
+ reg = <0xd4282800 0x1000>;
+
+ usb-clock {
+ compatible = "marvell,mmp-apmu-clock";
+ #clock-cells = <0>;
+ clocks = <&usb_pll>;
+ reg = <0x5c>;
+ enable-mask = <0x09>;
+ };
+};
diff --git a/drivers/clk/mmp/clk-apbc.c b/drivers/clk/mmp/clk-apbc.c
index 89a146a..d53bc79 100644
--- a/drivers/clk/mmp/clk-apbc.c
+++ b/drivers/clk/mmp/clk-apbc.c
@@ -15,6 +15,8 @@
#include <linux/err.h>
#include <linux/delay.h>
#include <linux/slab.h>
+#include <linux/of.h>
+#include <linux/of_address.h>
#include "clk.h"
@@ -129,8 +131,70 @@ struct clk *mmp_clk_register_apbc(const char *name, const char *parent_name,
apbc->hw.init = &init;
clk = clk_register(NULL, &apbc->hw);
- if (IS_ERR(clk))
+ if (WARN_ON(IS_ERR(clk)))
kfree(apbc);
return clk;
}
+
+static void __init mmp_apbc_dt_init(struct device_node *node)
+{
+ struct device_node *parent = of_get_parent(node);
+ const __be32 *regs;
+ struct clk *clk;
+ int rc;
+ int len;
+ int num_clocks;
+ int clock_num;
+ void __iomem *baseaddr;
+ const char *clock_name;
+ const char *parent_name;
+ struct clk **clks;
+ struct clk_onecell_data *clk_data;
+
+ regs = of_get_property(node, "reg", &len);
+ if (WARN_ON(!regs || (len % sizeof(__be32) != 0)))
+ return;
+ num_clocks = len / sizeof(__be32);
+
+ baseaddr = of_iomap(parent, 0);
+ of_node_put(parent);
+ if (WARN_ON(!baseaddr))
+ return;
+
+ clk_data = kzalloc(sizeof(*clk_data), GFP_KERNEL);
+ if (WARN_ON(!clk_data))
+ goto err_clk_data;
+
+ clks = kzalloc(num_clocks * sizeof(*clks), GFP_KERNEL);
+ if (WARN_ON(!clks))
+ goto err_clks;
+
+ clock_name = of_get_property(node, "clock-output-names", NULL);
+ parent_name = of_clk_get_parent_name(node, 0);
+
+ for (clock_num = 0; clock_num < num_clocks; clock_num++) {
+ void __iomem *clock_addr;
+ clock_addr = baseaddr + be32_to_cpup(regs + clock_num);
+
+ clk = mmp_clk_register_apbc(clock_name, parent_name,
+ clock_addr, 10, 0);
+ if (IS_ERR(clk))
+ return;
+ clock_name += strlen(clock_name) + 1;
+ clks[clock_num] = clk;
+ }
+
+ clk_data->clk_num = num_clocks;
+ clk_data->clks = clks;
+ rc = of_clk_add_provider(node, of_clk_src_onecell_get, clk_data);
+ WARN_ON(rc);
+ return;
+
+err_clks:
+ kfree(clk_data);
+err_clk_data:
+ iounmap(baseaddr);
+
+}
+CLK_OF_DECLARE(mmp2_apbc, "marvell,mmp-apb-clock", mmp_apbc_dt_init);
diff --git a/drivers/clk/mmp/clk-apmu.c b/drivers/clk/mmp/clk-apmu.c
index 4f4d8c5..dfcecc9 100644
--- a/drivers/clk/mmp/clk-apmu.c
+++ b/drivers/clk/mmp/clk-apmu.c
@@ -15,6 +15,8 @@
#include <linux/err.h>
#include <linux/delay.h>
#include <linux/slab.h>
+#include <linux/of.h>
+#include <linux/of_address.h>
#include "clk.h"
@@ -22,7 +24,6 @@
struct clk_apmu {
struct clk_hw hw;
void __iomem *base;
- u32 rst_mask;
u32 enable_mask;
};
@@ -85,3 +86,37 @@ struct clk *mmp_clk_register_apmu(const char *name, const char *parent_name,
return clk;
}
+
+static void __init mmp_apmu_dt_init(struct device_node *node)
+{
+ struct device_node *parent = of_get_parent(node);
+ const char *clk_name = node->name;
+ void __iomem *baseaddr;
+ struct clk *clk;
+ u32 reg;
+ u32 enable_mask;
+ int rc;
+
+ rc = of_property_read_u32(node, "reg", ®);
+ if (WARN_ON(rc))
+ return;
+
+ rc = of_property_read_u32(node, "enable-mask", &enable_mask);
+ if (WARN_ON(rc))
+ return;
+
+ baseaddr = of_iomap(parent, 0);
+ of_node_put(parent);
+ if (WARN_ON(!baseaddr))
+ return;
+
+ of_property_read_string(node, "clock-output-names", &clk_name);
+ clk = mmp_clk_register_apmu(clk_name, of_clk_get_parent_name(node, 0),
+ baseaddr + reg, enable_mask);
+ if (WARN_ON(IS_ERR(clk)))
+ return;
+
+ rc = of_clk_add_provider(node, of_clk_src_simple_get, clk);
+ WARN_ON(rc);
+}
+CLK_OF_DECLARE(mmp2_apmu, "marvell,mmp-apmu-clock", mmp_apmu_dt_init);
diff --git a/drivers/clk/mmp/clk-mmp2.c b/drivers/clk/mmp/clk-mmp2.c
index cb1b0b6..774193b 100644
--- a/drivers/clk/mmp/clk-mmp2.c
+++ b/drivers/clk/mmp/clk-mmp2.c
@@ -15,6 +15,7 @@
#include <linux/io.h>
#include <linux/delay.h>
#include <linux/err.h>
+#include <linux/of.h>
#include <mach/addr-map.h>
@@ -73,7 +74,7 @@ static const char *sdh_parent[] = {"pll1_4", "pll2", "usb_pll", "pll1"};
static const char *disp_parent[] = {"pll1", "pll1_16", "pll2", "vctcxo"};
static const char *ccic_parent[] = {"pll1_2", "pll1_16", "vctcxo"};
-void __init mmp2_clk_init(void)
+static void __init mmp2_clk_init_static(void)
{
struct clk *clk;
struct clk *vctcxo;
@@ -445,3 +446,19 @@ void __init mmp2_clk_init(void)
apmu_base + APMU_CCIC1, 0x300);
clk_register_clkdev(clk, "sphyclk", "mmp-ccic.1");
}
+
+void __init mmp2_clk_init(void)
+{
+ struct device_node *node;
+
+ /* The presence of the ABP clock node in the device tree indicates
+ * that we should use the DT for clock setup. */
+ node = of_find_compatible_node(NULL, NULL, "marvell,mmp-apb-clock");
+ if (node) {
+ of_node_put(node);
+ of_clk_init(NULL);
+ } else {
+ /* Fallback to static setup */
+ mmp2_clk_init_static();
+ }
+}
--
1.8.1.4
next reply other threads:[~2013-07-16 18:11 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-16 18:11 Daniel Drake [this message]
-- strict thread matches above, loose matches on Subject: below --
2013-08-05 22:00 [PATCH RESEND 2/2] clk: mmp: add support for DT-defined clocks Daniel Drake
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=20130716181119.46C08FAAF3@dev.laptop.org \
--to=dsd-2x9k7bc8m7mdnm+yrofe0a@public.gmane.org \
--cc=devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org \
--cc=eric.y.miao-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=haojian.zhuang-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=pgf-2X9k7bc8m7Mdnm+yROfE0A@public.gmane.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).