1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Texas Instruments System Control Interface (TI SCI) clock driver
4 *
5 * Copyright (C) 2018 Texas Instruments Incorporated - http://www.ti.com/
6 * Andreas Dannenberg <dannenberg@ti.com>
7 *
8 * Loosely based on Linux kernel sci-clk.c...
9 */
10
11 #include <common.h>
12 #include <dm.h>
13 #include <errno.h>
14 #include <clk-uclass.h>
15 #include <log.h>
16 #include <malloc.h>
17 #include <dm/device_compat.h>
18 #include <linux/err.h>
19 #include <linux/soc/ti/ti_sci_protocol.h>
20 #include <k3-avs.h>
21
22 /**
23 * struct ti_sci_clk_data - clock controller information structure
24 * @sci: TI SCI handle used for communication with system controller
25 */
26 struct ti_sci_clk_data {
27 const struct ti_sci_handle *sci;
28 };
29
ti_sci_clk_probe(struct udevice * dev)30 static int ti_sci_clk_probe(struct udevice *dev)
31 {
32 struct ti_sci_clk_data *data = dev_get_priv(dev);
33
34 debug("%s(dev=%p)\n", __func__, dev);
35
36 if (!data)
37 return -ENOMEM;
38
39 /* Store handle for communication with the system controller */
40 data->sci = ti_sci_get_handle(dev);
41 if (IS_ERR(data->sci))
42 return PTR_ERR(data->sci);
43
44 return 0;
45 }
46
ti_sci_clk_of_xlate(struct clk * clk,struct ofnode_phandle_args * args)47 static int ti_sci_clk_of_xlate(struct clk *clk,
48 struct ofnode_phandle_args *args)
49 {
50 debug("%s(clk=%p, args_count=%d)\n", __func__, clk, args->args_count);
51
52 if (args->args_count != 2) {
53 debug("Invalid args_count: %d\n", args->args_count);
54 return -EINVAL;
55 }
56
57 /*
58 * On TI SCI-based devices, the clock provider id field is used as a
59 * device ID, and the data field is used as the associated sub-ID.
60 */
61 clk->id = args->args[0];
62 clk->data = args->args[1];
63
64 return 0;
65 }
66
ti_sci_clk_get_rate(struct clk * clk)67 static ulong ti_sci_clk_get_rate(struct clk *clk)
68 {
69 struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
70 const struct ti_sci_handle *sci = data->sci;
71 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
72 u64 current_freq;
73 int ret;
74
75 debug("%s(clk=%p)\n", __func__, clk);
76
77 ret = cops->get_freq(sci, clk->id, clk->data, ¤t_freq);
78 if (ret) {
79 dev_err(clk->dev, "%s: get_freq failed (%d)\n", __func__, ret);
80 return ret;
81 }
82
83 debug("%s(current_freq=%llu)\n", __func__, current_freq);
84
85 return current_freq;
86 }
87
ti_sci_clk_set_rate(struct clk * clk,ulong rate)88 static ulong ti_sci_clk_set_rate(struct clk *clk, ulong rate)
89 {
90 struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
91 const struct ti_sci_handle *sci = data->sci;
92 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
93 int ret;
94
95 debug("%s(clk=%p, rate=%lu)\n", __func__, clk, rate);
96
97 #ifdef CONFIG_K3_AVS0
98 k3_avs_notify_freq(clk->id, clk->data, rate);
99 #endif
100
101 ret = cops->set_freq(sci, clk->id, clk->data, 0, rate, ULONG_MAX);
102 if (ret) {
103 dev_err(clk->dev, "%s: set_freq failed (%d)\n", __func__, ret);
104 return ret;
105 }
106
107 return rate;
108 }
109
ti_sci_clk_set_parent(struct clk * clk,struct clk * parent)110 static int ti_sci_clk_set_parent(struct clk *clk, struct clk *parent)
111 {
112 struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
113 const struct ti_sci_handle *sci = data->sci;
114 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
115 u8 num_parents;
116 u8 parent_cid;
117 int ret;
118
119 debug("%s(clk=%p, parent=%p)\n", __func__, clk, parent);
120
121 /* Make sure the clock parent is valid for a given device ID */
122 if (clk->id != parent->id)
123 return -EINVAL;
124
125 /* Make sure clock has parents that can be set */
126 ret = cops->get_num_parents(sci, clk->id, clk->data, &num_parents);
127 if (ret) {
128 dev_err(clk->dev, "%s: get_num_parents failed (%d)\n",
129 __func__, ret);
130 return ret;
131 }
132 if (num_parents < 2) {
133 dev_err(clk->dev, "%s: clock has no settable parents!\n",
134 __func__);
135 return -EINVAL;
136 }
137
138 /* Make sure parent clock ID is valid */
139 parent_cid = parent->data - clk->data - 1;
140 if (parent_cid >= num_parents) {
141 dev_err(clk->dev, "%s: invalid parent clock!\n", __func__);
142 return -EINVAL;
143 }
144
145 /* Ready to proceed to configure the new clock parent */
146 ret = cops->set_parent(sci, clk->id, clk->data, parent->data);
147 if (ret)
148 dev_err(clk->dev, "%s: set_parent failed (%d)\n", __func__,
149 ret);
150
151 return ret;
152 }
153
ti_sci_clk_enable(struct clk * clk)154 static int ti_sci_clk_enable(struct clk *clk)
155 {
156 struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
157 const struct ti_sci_handle *sci = data->sci;
158 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
159 int ret;
160
161 debug("%s(clk=%p)\n", __func__, clk);
162
163 /*
164 * Allow the System Controller to automatically manage the state of
165 * this clock. If the device is enabled, then the clock is enabled.
166 */
167 ret = cops->put_clock(sci, clk->id, clk->data);
168 if (ret)
169 dev_err(clk->dev, "%s: put_clock failed (%d)\n", __func__, ret);
170
171 return ret;
172 }
173
ti_sci_clk_disable(struct clk * clk)174 static int ti_sci_clk_disable(struct clk *clk)
175 {
176 struct ti_sci_clk_data *data = dev_get_priv(clk->dev);
177 const struct ti_sci_handle *sci = data->sci;
178 const struct ti_sci_clk_ops *cops = &sci->ops.clk_ops;
179 int ret;
180
181 debug("%s(clk=%p)\n", __func__, clk);
182
183 /* Unconditionally disable clock, regardless of state of the device */
184 ret = cops->idle_clock(sci, clk->id, clk->data);
185 if (ret)
186 dev_err(clk->dev, "%s: idle_clock failed (%d)\n", __func__,
187 ret);
188
189 return ret;
190 }
191
192 static const struct udevice_id ti_sci_clk_of_match[] = {
193 { .compatible = "ti,k2g-sci-clk" },
194 { /* sentinel */ },
195 };
196
197 static struct clk_ops ti_sci_clk_ops = {
198 .of_xlate = ti_sci_clk_of_xlate,
199 .get_rate = ti_sci_clk_get_rate,
200 .set_rate = ti_sci_clk_set_rate,
201 .set_parent = ti_sci_clk_set_parent,
202 .enable = ti_sci_clk_enable,
203 .disable = ti_sci_clk_disable,
204 };
205
206 U_BOOT_DRIVER(ti_sci_clk) = {
207 .name = "ti-sci-clk",
208 .id = UCLASS_CLK,
209 .of_match = ti_sci_clk_of_match,
210 .probe = ti_sci_clk_probe,
211 .priv_auto = sizeof(struct ti_sci_clk_data),
212 .ops = &ti_sci_clk_ops,
213 };
214