blob: 2c20eddb0b5c6164f3d430cb2a8cca39eb4fe24e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamadab21e20b2016-01-19 13:55:28 +09002/*
3 * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadab21e20b2016-01-19 13:55:28 +09004 */
5
6#include <common.h>
Stephen Warren135aa952016-06-17 09:44:00 -06007#include <clk-uclass.h>
Simon Glass9d922452017-05-17 17:18:03 -06008#include <dm.h>
Peng Fan4f305bf2019-07-31 07:01:39 +00009#include <linux/clk-provider.h>
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090010
Stephen Warren135aa952016-06-17 09:44:00 -060011static ulong clk_fixed_rate_get_rate(struct clk *clk)
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090012{
Stephen Warren135aa952016-06-17 09:44:00 -060013 return to_clk_fixed_rate(clk->dev)->fixed_rate;
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090014}
15
Chunfeng Yun6bf6d812020-01-09 11:35:08 +080016/* avoid clk_enable() return -ENOSYS */
17static int dummy_enable(struct clk *clk)
18{
19 return 0;
20}
21
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090022const struct clk_ops clk_fixed_rate_ops = {
23 .get_rate = clk_fixed_rate_get_rate,
Chunfeng Yun6bf6d812020-01-09 11:35:08 +080024 .enable = dummy_enable,
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090025};
26
27static int clk_fixed_rate_ofdata_to_platdata(struct udevice *dev)
28{
Lukasz Majewski36bac0a2019-06-24 15:50:40 +020029 struct clk *clk = &to_clk_fixed_rate(dev)->clk;
Simon Glass7423daa2016-07-04 11:58:03 -060030#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Mario Sixe2db9e72018-01-15 11:06:52 +010031 to_clk_fixed_rate(dev)->fixed_rate =
32 dev_read_u32_default(dev, "clock-frequency", 0);
Simon Glass7423daa2016-07-04 11:58:03 -060033#endif
Lukasz Majewski36bac0a2019-06-24 15:50:40 +020034 /* Make fixed rate clock accessible from higher level struct clk */
35 dev->uclass_priv = clk;
36 clk->dev = dev;
Peng Fane6849e22019-08-21 13:35:03 +000037 clk->enable_count = 0;
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090038
39 return 0;
40}
41
42static const struct udevice_id clk_fixed_rate_match[] = {
43 {
44 .compatible = "fixed-clock",
45 },
46 { /* sentinel */ }
47};
48
49U_BOOT_DRIVER(clk_fixed_rate) = {
50 .name = "fixed_rate_clock",
51 .id = UCLASS_CLK,
52 .of_match = clk_fixed_rate_match,
53 .ofdata_to_platdata = clk_fixed_rate_ofdata_to_platdata,
54 .platdata_auto_alloc_size = sizeof(struct clk_fixed_rate),
55 .ops = &clk_fixed_rate_ops,
56};