lkml.org 
[lkml]   [2019]   [Feb]   [22]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH v2 05/14] clk: qcom: apcs-msm8916: get parent clock names from DT
From
Date
Quoting Jorge Ramirez-Ortiz (2019-01-28 10:32:52)
> @@ -61,6 +65,25 @@ static int qcom_apcs_msm8916_clk_probe(struct platform_device *pdev)
> if (!a53cc)
> return -ENOMEM;
>
> + /* check if the parent names are present in the device tree */

This looks odd.

> + ret = devm_clk_bulk_get(parent, ARRAY_SIZE(pclks), pclks);
> + if (ret == -EPROBE_DEFER)
> + return ret;

Why can't we use of_clk_parent_fill() if we know this is always a DT
platform? The parent clks may not be registered at the time of probe?
Maybe this series should wait for the parent registration stuff I'm
working on so that this can be made simpler.

> +
> + if (!ret) {
> + gpll0_a53cc[0] = __clk_get_name(pclks[0].clk);
> + gpll0_a53cc[1] = __clk_get_name(pclks[1].clk);
> + a53cc->pclk = pclks[1].clk;
> + } else {
> + /* support old binding where only pll was explicitily defined */
> + a53cc->pclk = devm_clk_get(parent, NULL);
> + if (IS_ERR(a53cc->pclk)) {
> + ret = PTR_ERR(a53cc->pclk);
> + dev_err(dev, "failed to get clk: %d\n", ret);
> + return ret;
> + }
> + }
> +
> init.name = "a53mux";
> init.parent_names = gpll0_a53cc;
> init.num_parents = ARRAY_SIZE(gpll0_a53cc);

\
 
 \ /
  Last update: 2019-02-22 19:12    [W:0.201 / U:0.804 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site