From: Stephen Boyd <sboyd@codeaurora.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Simon <horms@verge.net.au>,
Michael Turquette <mturquette@baylibre.com>,
Magnus <magnus.damm@gmail.com>,
Linux-SH <linux-sh@vger.kernel.org>,
Linux-Kernel <linux-kernel@vger.kernel.org>,
linux-clk@vger.kernel.org
Subject: Re: [PATCH v4] clk: add CS2000 Fractional-N driver
Date: Thu, 1 Oct 2015 17:38:51 -0700 [thread overview]
Message-ID: <20151002003851.GH12338@codeaurora.org> (raw)
In-Reply-To: <871te03x17.wl%kuninori.morimoto.gx@renesas.com>
On 09/15, Kuninori Morimoto wrote:
> +
> +static int cs2000_clk_register(struct cs2000_priv *priv)
> +{
> + struct device *dev = priv_to_dev(priv);
> + struct device_node *np = dev->of_node;
> + struct clk_init_data init;
> + const char *name = np->name;
> + struct clk *clk;
> + static const char *parent_names[CLK_MAX];
> + int ret;
> +
> + of_property_read_string(np, "clock-output-names", &name);
> +
> + parent_names[CLK_IN] = __clk_get_name(priv->clk_in);
> + parent_names[REF_CLK] = __clk_get_name(priv->ref_clk);
> +
> + init.name = name;
> + init.ops = &cs2000_ops;
> + init.flags = CLK_IS_BASIC | CLK_SET_RATE_GATE;
It's not basic.
> + init.parent_names = parent_names;
> + init.num_parents = ARRAY_SIZE(parent_names);
> +
> + priv->hw.init = &init;
> +
> + clk = clk_register(NULL, &priv->hw);
How about using devm_clk_register() and passing the i2c device
down to this function?
> + if (IS_ERR(clk))
> + return PTR_ERR(clk);
> +
> + ret = of_clk_add_provider(np, of_clk_src_simple_get, clk);
> + if (ret < 0) {
> + clk_unregister(clk);
> + return ret;
> + }
> +
> + priv->clk_out = clk;
> +
> + return 0;
> +}
> +
> +static int cs2000_clk_init(struct cs2000_priv *priv)
> +{
> + struct device *dev = priv_to_dev(priv);
> + struct device_node *np = dev->of_node;
> + u32 rate;
> + int ch = 0; /* it uses ch0 only at this point */
> + int ret;
> +
> + if (of_property_read_u32(np, "clock-frequency", &rate))
Why can't we do this with DT assigned rates?
> + return 0;
> +
> + ret = __cs2000_set_rate(priv, ch, rate, clk_get_rate(priv->ref_clk));
> + if (ret < 0)
> + return ret;
> +
> + ret = __cs2000_enable(priv);
> + if (ret < 0)
> + return ret;
> +
> + return 0;
> +}
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
WARNING: multiple messages have this Message-ID (diff)
From: Stephen Boyd <sboyd@codeaurora.org>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Simon <horms@verge.net.au>,
Michael Turquette <mturquette@baylibre.com>,
Magnus <magnus.damm@gmail.com>,
Linux-SH <linux-sh@vger.kernel.org>,
Linux-Kernel <linux-kernel@vger.kernel.org>,
linux-clk@vger.kernel.org
Subject: Re: [PATCH v4] clk: add CS2000 Fractional-N driver
Date: Fri, 02 Oct 2015 00:38:51 +0000 [thread overview]
Message-ID: <20151002003851.GH12338@codeaurora.org> (raw)
In-Reply-To: <871te03x17.wl%kuninori.morimoto.gx@renesas.com>
On 09/15, Kuninori Morimoto wrote:
> +
> +static int cs2000_clk_register(struct cs2000_priv *priv)
> +{
> + struct device *dev = priv_to_dev(priv);
> + struct device_node *np = dev->of_node;
> + struct clk_init_data init;
> + const char *name = np->name;
> + struct clk *clk;
> + static const char *parent_names[CLK_MAX];
> + int ret;
> +
> + of_property_read_string(np, "clock-output-names", &name);
> +
> + parent_names[CLK_IN] = __clk_get_name(priv->clk_in);
> + parent_names[REF_CLK] = __clk_get_name(priv->ref_clk);
> +
> + init.name = name;
> + init.ops = &cs2000_ops;
> + init.flags = CLK_IS_BASIC | CLK_SET_RATE_GATE;
It's not basic.
> + init.parent_names = parent_names;
> + init.num_parents = ARRAY_SIZE(parent_names);
> +
> + priv->hw.init = &init;
> +
> + clk = clk_register(NULL, &priv->hw);
How about using devm_clk_register() and passing the i2c device
down to this function?
> + if (IS_ERR(clk))
> + return PTR_ERR(clk);
> +
> + ret = of_clk_add_provider(np, of_clk_src_simple_get, clk);
> + if (ret < 0) {
> + clk_unregister(clk);
> + return ret;
> + }
> +
> + priv->clk_out = clk;
> +
> + return 0;
> +}
> +
> +static int cs2000_clk_init(struct cs2000_priv *priv)
> +{
> + struct device *dev = priv_to_dev(priv);
> + struct device_node *np = dev->of_node;
> + u32 rate;
> + int ch = 0; /* it uses ch0 only at this point */
> + int ret;
> +
> + if (of_property_read_u32(np, "clock-frequency", &rate))
Why can't we do this with DT assigned rates?
> + return 0;
> +
> + ret = __cs2000_set_rate(priv, ch, rate, clk_get_rate(priv->ref_clk));
> + if (ret < 0)
> + return ret;
> +
> + ret = __cs2000_enable(priv);
> + if (ret < 0)
> + return ret;
> +
> + return 0;
> +}
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
next prev parent reply other threads:[~2015-10-02 0:38 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-15 8:29 [PATCH v4] clk: add CS2000 Fractional-N driver Kuninori Morimoto
2015-09-15 8:29 ` Kuninori Morimoto
2015-10-02 0:38 ` Stephen Boyd [this message]
2015-10-02 0:38 ` Stephen Boyd
2015-10-02 1:11 ` Kuninori Morimoto
2015-10-02 1:11 ` Kuninori Morimoto
2015-10-02 18:11 ` Stephen Boyd
2015-10-02 18:11 ` Stephen Boyd
2015-10-15 1:35 ` Kuninori Morimoto
2015-10-15 1:35 ` Kuninori Morimoto
2015-10-15 18:28 ` Stephen Boyd
2015-10-15 18:28 ` Stephen Boyd
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=20151002003851.GH12338@codeaurora.org \
--to=sboyd@codeaurora.org \
--cc=horms@verge.net.au \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=mturquette@baylibre.com \
/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.