Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-2.0
2 : : /*
3 : : * Copyright (C) 2014 Samsung Electronics Co., Ltd.
4 : : * Sylwester Nawrocki <s.nawrocki@samsung.com>
5 : : */
6 : :
7 : : #include <linux/clk.h>
8 : : #include <linux/clk-provider.h>
9 : : #include <linux/clk/clk-conf.h>
10 : : #include <linux/device.h>
11 : : #include <linux/of.h>
12 : : #include <linux/printk.h>
13 : :
14 : 13736 : static int __set_clk_parents(struct device_node *node, bool clk_supplier)
15 : : {
16 : : struct of_phandle_args clkspec;
17 : : int index, rc, num_parents;
18 : : struct clk *clk, *pclk;
19 : :
20 : 13736 : num_parents = of_count_phandle_with_args(node, "assigned-clock-parents",
21 : : "#clock-cells");
22 [ - + ]: 13736 : if (num_parents == -EINVAL)
23 : 0 : pr_err("clk: invalid value of clock-parents property at %pOF\n",
24 : : node);
25 : :
26 [ - + ]: 0 : for (index = 0; index < num_parents; index++) {
27 : 0 : rc = of_parse_phandle_with_args(node, "assigned-clock-parents",
28 : : "#clock-cells", index, &clkspec);
29 [ # # ]: 0 : if (rc < 0) {
30 : : /* skip empty (null) phandles */
31 [ # # ]: 0 : if (rc == -ENOENT)
32 : 0 : continue;
33 : : else
34 : 0 : return rc;
35 : : }
36 [ # # # # ]: 0 : if (clkspec.np == node && !clk_supplier)
37 : : return 0;
38 : 0 : pclk = of_clk_get_from_provider(&clkspec);
39 [ # # ]: 0 : if (IS_ERR(pclk)) {
40 [ # # ]: 0 : if (PTR_ERR(pclk) != -EPROBE_DEFER)
41 : 0 : pr_warn("clk: couldn't get parent clock %d for %pOF\n",
42 : : index, node);
43 : 0 : return PTR_ERR(pclk);
44 : : }
45 : :
46 : 0 : rc = of_parse_phandle_with_args(node, "assigned-clocks",
47 : : "#clock-cells", index, &clkspec);
48 [ # # ]: 0 : if (rc < 0)
49 : : goto err;
50 [ # # # # ]: 0 : if (clkspec.np == node && !clk_supplier) {
51 : : rc = 0;
52 : : goto err;
53 : : }
54 : 0 : clk = of_clk_get_from_provider(&clkspec);
55 [ # # ]: 0 : if (IS_ERR(clk)) {
56 [ # # ]: 0 : if (PTR_ERR(clk) != -EPROBE_DEFER)
57 : 0 : pr_warn("clk: couldn't get assigned clock %d for %pOF\n",
58 : : index, node);
59 : : rc = PTR_ERR(clk);
60 : 0 : goto err;
61 : : }
62 : :
63 : 0 : rc = clk_set_parent(clk, pclk);
64 [ # # ]: 0 : if (rc < 0)
65 : 0 : pr_err("clk: failed to reparent %s to %s: %d\n",
66 : : __clk_get_name(clk), __clk_get_name(pclk), rc);
67 : 0 : clk_put(clk);
68 : 0 : clk_put(pclk);
69 : : }
70 : : return 0;
71 : : err:
72 : 0 : clk_put(pclk);
73 : 0 : return rc;
74 : : }
75 : :
76 : 13736 : static int __set_clk_rates(struct device_node *node, bool clk_supplier)
77 : : {
78 : : struct of_phandle_args clkspec;
79 : : struct property *prop;
80 : : const __be32 *cur;
81 : : int rc, index = 0;
82 : : struct clk *clk;
83 : : u32 rate;
84 : :
85 [ - + ]: 13736 : of_property_for_each_u32(node, "assigned-clock-rates", prop, cur, rate) {
86 [ # # ]: 0 : if (rate) {
87 : 0 : rc = of_parse_phandle_with_args(node, "assigned-clocks",
88 : : "#clock-cells", index, &clkspec);
89 [ # # ]: 0 : if (rc < 0) {
90 : : /* skip empty (null) phandles */
91 [ # # ]: 0 : if (rc == -ENOENT)
92 : 0 : continue;
93 : : else
94 : 0 : return rc;
95 : : }
96 [ # # # # ]: 0 : if (clkspec.np == node && !clk_supplier)
97 : : return 0;
98 : :
99 : 0 : clk = of_clk_get_from_provider(&clkspec);
100 [ # # ]: 0 : if (IS_ERR(clk)) {
101 [ # # ]: 0 : if (PTR_ERR(clk) != -EPROBE_DEFER)
102 : 0 : pr_warn("clk: couldn't get clock %d for %pOF\n",
103 : : index, node);
104 : 0 : return PTR_ERR(clk);
105 : : }
106 : :
107 : 0 : rc = clk_set_rate(clk, rate);
108 [ # # ]: 0 : if (rc < 0)
109 : 0 : pr_err("clk: couldn't set %s clk rate to %u (%d), current rate: %lu\n",
110 : : __clk_get_name(clk), rate, rc,
111 : : clk_get_rate(clk));
112 : 0 : clk_put(clk);
113 : : }
114 : 0 : index++;
115 : : }
116 : : return 0;
117 : : }
118 : :
119 : : /**
120 : : * of_clk_set_defaults() - parse and set assigned clocks configuration
121 : : * @node: device node to apply clock settings for
122 : : * @clk_supplier: true if clocks supplied by @node should also be considered
123 : : *
124 : : * This function parses 'assigned-{clocks/clock-parents/clock-rates}' properties
125 : : * and sets any specified clock parents and rates. The @clk_supplier argument
126 : : * should be set to true if @node may be also a clock supplier of any clock
127 : : * listed in its 'assigned-clocks' or 'assigned-clock-parents' properties.
128 : : * If @clk_supplier is false the function exits returning 0 as soon as it
129 : : * determines the @node is also a supplier of any of the clocks.
130 : : */
131 : 16160 : int of_clk_set_defaults(struct device_node *node, bool clk_supplier)
132 : : {
133 : : int rc;
134 : :
135 [ + + ]: 16160 : if (!node)
136 : : return 0;
137 : :
138 : 13736 : rc = __set_clk_parents(node, clk_supplier);
139 [ + - ]: 13736 : if (rc < 0)
140 : : return rc;
141 : :
142 : 13736 : return __set_clk_rates(node, clk_supplier);
143 : : }
144 : : EXPORT_SYMBOL_GPL(of_clk_set_defaults);
|