blob: 38755a241ab76e017c63b178e3f1124ff5b4c900 [file] [log] [blame]
Stephen Boyde1bd55e2018-12-11 09:57:48 -08001// SPDX-License-Identifier: GPL-2.0
Jyri Sarhac873d142014-09-05 15:21:34 +03002/*
Alexander A. Klimov5f1d8972020-07-03 19:51:14 +02003 * Copyright (C) 2013 - 2014 Texas Instruments Incorporated - https://www.ti.com
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +02004 *
5 * Authors:
6 * Jyri Sarha <jsarha@ti.com>
7 * Sergej Sawazki <ce3a@gmx.de>
Jyri Sarhac873d142014-09-05 15:21:34 +03008 *
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +02009 * Gpio controlled clock implementation
Jyri Sarhac873d142014-09-05 15:21:34 +030010 */
11
12#include <linux/clk-provider.h>
Sergej Sawazkie21b08e2015-06-28 16:24:53 +020013#include <linux/export.h>
Jyri Sarhac873d142014-09-05 15:21:34 +030014#include <linux/slab.h>
Mark Brown44b4aa92014-09-30 18:16:22 +010015#include <linux/gpio/consumer.h>
Jyri Sarhac873d142014-09-05 15:21:34 +030016#include <linux/err.h>
17#include <linux/device.h>
Stephen Boyd14b04f22016-02-02 17:09:26 -080018#include <linux/platform_device.h>
19#include <linux/of_device.h>
Jyri Sarhac873d142014-09-05 15:21:34 +030020
21/**
22 * DOC: basic gpio gated clock which can be enabled and disabled
23 * with gpio output
24 * Traits of this clock:
25 * prepare - clk_(un)prepare only ensures parent is (un)prepared
26 * enable - clk_enable and clk_disable are functional & control gpio
27 * rate - inherits rate from parent. No clk_set_rate support
28 * parent - fixed parent. No clk_set_parent support
29 */
30
Stephen Boyd9a9b5a42019-08-30 08:09:12 -070031/**
32 * struct clk_gpio - gpio gated clock
33 *
34 * @hw: handle between common and hardware-specific interfaces
35 * @gpiod: gpio descriptor
36 *
37 * Clock with a gpio control for enabling and disabling the parent clock
38 * or switching between two parents by asserting or deasserting the gpio.
39 *
40 * Implements .enable, .disable and .is_enabled or
41 * .get_parent, .set_parent and .determine_rate depending on which clk_ops
42 * is used.
43 */
44struct clk_gpio {
45 struct clk_hw hw;
46 struct gpio_desc *gpiod;
47};
48
49#define to_clk_gpio(_hw) container_of(_hw, struct clk_gpio, hw)
50
Jyri Sarhac873d142014-09-05 15:21:34 +030051static int clk_gpio_gate_enable(struct clk_hw *hw)
52{
53 struct clk_gpio *clk = to_clk_gpio(hw);
54
55 gpiod_set_value(clk->gpiod, 1);
56
57 return 0;
58}
59
60static void clk_gpio_gate_disable(struct clk_hw *hw)
61{
62 struct clk_gpio *clk = to_clk_gpio(hw);
63
64 gpiod_set_value(clk->gpiod, 0);
65}
66
67static int clk_gpio_gate_is_enabled(struct clk_hw *hw)
68{
69 struct clk_gpio *clk = to_clk_gpio(hw);
70
71 return gpiod_get_value(clk->gpiod);
72}
73
Stephen Boyd9a9b5a42019-08-30 08:09:12 -070074static const struct clk_ops clk_gpio_gate_ops = {
Jyri Sarhac873d142014-09-05 15:21:34 +030075 .enable = clk_gpio_gate_enable,
76 .disable = clk_gpio_gate_disable,
77 .is_enabled = clk_gpio_gate_is_enabled,
78};
Jyri Sarhac873d142014-09-05 15:21:34 +030079
Thomas Petazzonic0189fe2019-02-11 14:58:18 +010080static int clk_sleeping_gpio_gate_prepare(struct clk_hw *hw)
81{
82 struct clk_gpio *clk = to_clk_gpio(hw);
83
84 gpiod_set_value_cansleep(clk->gpiod, 1);
85
86 return 0;
87}
88
89static void clk_sleeping_gpio_gate_unprepare(struct clk_hw *hw)
90{
91 struct clk_gpio *clk = to_clk_gpio(hw);
92
93 gpiod_set_value_cansleep(clk->gpiod, 0);
94}
95
96static int clk_sleeping_gpio_gate_is_prepared(struct clk_hw *hw)
97{
98 struct clk_gpio *clk = to_clk_gpio(hw);
99
100 return gpiod_get_value_cansleep(clk->gpiod);
101}
102
103static const struct clk_ops clk_sleeping_gpio_gate_ops = {
104 .prepare = clk_sleeping_gpio_gate_prepare,
105 .unprepare = clk_sleeping_gpio_gate_unprepare,
106 .is_prepared = clk_sleeping_gpio_gate_is_prepared,
107};
108
Jyri Sarhac873d142014-09-05 15:21:34 +0300109/**
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200110 * DOC: basic clock multiplexer which can be controlled with a gpio output
111 * Traits of this clock:
112 * prepare - clk_prepare only ensures that parents are prepared
113 * rate - rate is only affected by parent switching. No clk_set_rate support
114 * parent - parent is adjustable through clk_set_parent
115 */
116
117static u8 clk_gpio_mux_get_parent(struct clk_hw *hw)
118{
119 struct clk_gpio *clk = to_clk_gpio(hw);
120
Mike Looijmans2e838e72018-03-13 09:54:03 +0100121 return gpiod_get_value_cansleep(clk->gpiod);
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200122}
123
124static int clk_gpio_mux_set_parent(struct clk_hw *hw, u8 index)
125{
126 struct clk_gpio *clk = to_clk_gpio(hw);
127
Mike Looijmans2e838e72018-03-13 09:54:03 +0100128 gpiod_set_value_cansleep(clk->gpiod, index);
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200129
130 return 0;
131}
132
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700133static const struct clk_ops clk_gpio_mux_ops = {
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200134 .get_parent = clk_gpio_mux_get_parent,
135 .set_parent = clk_gpio_mux_set_parent,
136 .determine_rate = __clk_mux_determine_rate,
137};
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200138
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700139static struct clk_hw *clk_register_gpio(struct device *dev, u8 num_parents,
140 struct gpio_desc *gpiod,
141 const struct clk_ops *clk_gpio_ops)
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200142{
143 struct clk_gpio *clk_gpio;
Stephen Boydb1207432016-02-07 00:27:55 -0800144 struct clk_hw *hw;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200145 struct clk_init_data init = {};
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200146 int err;
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700147 const struct clk_parent_data gpio_parent_data[] = {
148 { .index = 0 },
149 { .index = 1 },
150 };
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200151
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700152 clk_gpio = devm_kzalloc(dev, sizeof(*clk_gpio), GFP_KERNEL);
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200153 if (!clk_gpio)
154 return ERR_PTR(-ENOMEM);
155
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700156 init.name = dev->of_node->name;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200157 init.ops = clk_gpio_ops;
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700158 init.parent_data = gpio_parent_data;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200159 init.num_parents = num_parents;
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700160 init.flags = CLK_SET_RATE_PARENT;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200161
Linus Walleij908a5432017-09-24 18:19:18 +0200162 clk_gpio->gpiod = gpiod;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200163 clk_gpio->hw.init = &init;
164
Stephen Boydb1207432016-02-07 00:27:55 -0800165 hw = &clk_gpio->hw;
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700166 err = devm_clk_hw_register(dev, hw);
167 if (err)
168 return ERR_PTR(err);
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200169
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700170 return hw;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200171}
172
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700173static struct clk_hw *clk_hw_register_gpio_gate(struct device *dev,
174 int num_parents,
175 struct gpio_desc *gpiod)
Jyri Sarhac873d142014-09-05 15:21:34 +0300176{
Thomas Petazzonic0189fe2019-02-11 14:58:18 +0100177 const struct clk_ops *ops;
178
179 if (gpiod_cansleep(gpiod))
180 ops = &clk_sleeping_gpio_gate_ops;
181 else
182 ops = &clk_gpio_gate_ops;
183
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700184 return clk_register_gpio(dev, num_parents, gpiod, ops);
Jyri Sarhac873d142014-09-05 15:21:34 +0300185}
Stephen Boydb1207432016-02-07 00:27:55 -0800186
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700187static struct clk_hw *clk_hw_register_gpio_mux(struct device *dev,
188 struct gpio_desc *gpiod)
Stephen Boydb1207432016-02-07 00:27:55 -0800189{
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700190 return clk_register_gpio(dev, 2, gpiod, &clk_gpio_mux_ops);
Stephen Boydb1207432016-02-07 00:27:55 -0800191}
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200192
Stephen Boyd14b04f22016-02-02 17:09:26 -0800193static int gpio_clk_driver_probe(struct platform_device *pdev)
Jyri Sarhac873d142014-09-05 15:21:34 +0300194{
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700195 struct device *dev = &pdev->dev;
196 struct device_node *node = dev->of_node;
197 const char *gpio_name;
Stephen Boyd0985df82016-02-19 17:31:52 -0800198 unsigned int num_parents;
Linus Walleij908a5432017-09-24 18:19:18 +0200199 struct gpio_desc *gpiod;
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700200 struct clk_hw *hw;
Linus Walleij908a5432017-09-24 18:19:18 +0200201 bool is_mux;
202 int ret;
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200203
Stephen Boyd14b04f22016-02-02 17:09:26 -0800204 is_mux = of_device_is_compatible(node, "gpio-mux-clock");
Jyri Sarhac873d142014-09-05 15:21:34 +0300205
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700206 num_parents = of_clk_get_parent_count(node);
207 if (is_mux && num_parents != 2) {
208 dev_err(dev, "mux-clock must have 2 parents\n");
209 return -EINVAL;
210 }
211
Linus Walleij908a5432017-09-24 18:19:18 +0200212 gpio_name = is_mux ? "select" : "enable";
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700213 gpiod = devm_gpiod_get(dev, gpio_name, GPIOD_OUT_LOW);
Linus Walleij908a5432017-09-24 18:19:18 +0200214 if (IS_ERR(gpiod)) {
215 ret = PTR_ERR(gpiod);
216 if (ret == -EPROBE_DEFER)
Rob Herringe665f022018-08-28 10:44:29 -0500217 pr_debug("%pOFn: %s: GPIOs not yet available, retry later\n",
218 node, __func__);
Stephen Boyd14b04f22016-02-02 17:09:26 -0800219 else
Rob Herringe665f022018-08-28 10:44:29 -0500220 pr_err("%pOFn: %s: Can't get '%s' named GPIO property\n",
221 node, __func__,
Stephen Boyd14b04f22016-02-02 17:09:26 -0800222 gpio_name);
Linus Walleij908a5432017-09-24 18:19:18 +0200223 return ret;
Stephen Boyd14b04f22016-02-02 17:09:26 -0800224 }
225
Stephen Boyd14b04f22016-02-02 17:09:26 -0800226 if (is_mux)
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700227 hw = clk_hw_register_gpio_mux(dev, gpiod);
Stephen Boyd14b04f22016-02-02 17:09:26 -0800228 else
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700229 hw = clk_hw_register_gpio_gate(dev, num_parents, gpiod);
230 if (IS_ERR(hw))
231 return PTR_ERR(hw);
Stephen Boyd14b04f22016-02-02 17:09:26 -0800232
Stephen Boyd9a9b5a42019-08-30 08:09:12 -0700233 return devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, hw);
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200234}
235
Stephen Boyd14b04f22016-02-02 17:09:26 -0800236static const struct of_device_id gpio_clk_match_table[] = {
237 { .compatible = "gpio-mux-clock" },
238 { .compatible = "gpio-gate-clock" },
239 { }
240};
Sergej Sawazki80eeb1f2015-06-28 16:24:55 +0200241
Stephen Boyd14b04f22016-02-02 17:09:26 -0800242static struct platform_driver gpio_clk_driver = {
243 .probe = gpio_clk_driver_probe,
244 .driver = {
245 .name = "gpio-clk",
246 .of_match_table = gpio_clk_match_table,
247 },
248};
249builtin_platform_driver(gpio_clk_driver);