All of lore.kernel.org
 help / color / mirror / Atom feed
From: wens@csie.org (Chen-Yu Tsai)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 1/8] clk: sunxi: add clock-output-names dt property support
Date: Mon,  3 Feb 2014 09:51:37 +0800	[thread overview]
Message-ID: <1391392304-4660-2-git-send-email-wens@csie.org> (raw)
In-Reply-To: <1391392304-4660-1-git-send-email-wens@csie.org>

sunxi clock drivers use dt node name as clock name, but clock
nodes should be named clk at X, so the names would be the same.
Let the drivers read clock names from dt clock-output-names
property.

Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Mike Turquette <mturquette@linaro.org>
---
 drivers/clk/sunxi/clk-sunxi.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/drivers/clk/sunxi/clk-sunxi.c b/drivers/clk/sunxi/clk-sunxi.c
index abb6c5a..0ed9794 100644
--- a/drivers/clk/sunxi/clk-sunxi.c
+++ b/drivers/clk/sunxi/clk-sunxi.c
@@ -51,6 +51,8 @@ static void __init sun4i_osc_clk_setup(struct device_node *node)
 	if (!gate)
 		goto err_free_fixed;
 
+	of_property_read_string(node, "clock-output-names", &clk_name);
+
 	/* set up gate and fixed rate properties */
 	gate->reg = of_iomap(node, 0);
 	gate->bit_idx = SUNXI_OSC24M_GATE;
@@ -601,6 +603,8 @@ static void __init sunxi_mux_clk_setup(struct device_node *node,
 	       (parents[i] = of_clk_get_parent_name(node, i)) != NULL)
 		i++;
 
+	of_property_read_string(node, "clock-output-names", &clk_name);
+
 	clk = clk_register_mux(NULL, clk_name, parents, i,
 			       CLK_SET_RATE_NO_REPARENT, reg,
 			       data->shift, SUNXI_MUX_GATE_WIDTH,
@@ -660,6 +664,8 @@ static void __init sunxi_divider_clk_setup(struct device_node *node,
 
 	clk_parent = of_clk_get_parent_name(node, 0);
 
+	of_property_read_string(node, "clock-output-names", &clk_name);
+
 	clk = clk_register_divider(NULL, clk_name, clk_parent, 0,
 				   reg, data->shift, data->width,
 				   data->pow ? CLK_DIVIDER_POWER_OF_TWO : 0,
-- 
1.9.rc1

  reply	other threads:[~2014-02-03  1:51 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-03  1:51 [PATCH v4 0/8] ARM: sunxi: rename DT clock node names to clk@N Chen-Yu Tsai
2014-02-03  1:51 ` Chen-Yu Tsai [this message]
2014-02-03  1:51 ` [PATCH v4 2/8] clk: sunxi: update clock-output-names dt binding documentation Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 3/8] clk: sunxi: add names for pll5, pll6 parent clocks to factors_data Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 4/8] clk: sunxi: get divs parent clock name from parent factor clock Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 5/8] ARM: dts: sun4i: rename clock node names to clk@N Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 6/8] ARM: dts: sun5i: " Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 7/8] ARM: dts: sun6i: " Chen-Yu Tsai
2014-02-03  1:51 ` [PATCH v4 8/8] ARM: dts: sun7i: " Chen-Yu Tsai
2014-03-18  1:06   ` [linux-sunxi] " Olof Johansson
2014-03-18  9:25     ` Maxime Ripard
2014-02-07 19:24 ` [PATCH v4 0/8] ARM: sunxi: rename DT " Maxime Ripard
2014-02-18 14:35   ` Emilio López

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=1391392304-4660-2-git-send-email-wens@csie.org \
    --to=wens@csie.org \
    --cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.