blob: b5e78c70559ed6e067c26157a4e866cb87f829d1 [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
Patrick Delaunay560e1e02021-11-19 15:12:07 +01006#define LOG_CATEGORY UCLASS_CLK
7
Masahiro Yamadab21e20b2016-01-19 13:55:28 +09008#include <common.h>
Stephen Warren135aa952016-06-17 09:44:00 -06009#include <clk-uclass.h>
Simon Glass9d922452017-05-17 17:18:03 -060010#include <dm.h>
Patrick Delaunay560e1e02021-11-19 15:12:07 +010011#include <log.h>
Simon Glass0fd3d912020-12-22 19:30:28 -070012#include <dm/device-internal.h>
Peng Fan4f305bf2019-07-31 07:01:39 +000013#include <linux/clk-provider.h>
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090014
Tero Kristofc960cb2021-06-11 11:45:06 +030015#define UBOOT_DM_CLK_FIXED_RATE "fixed_rate_clock"
16#define UBOOT_DM_CLK_FIXED_RATE_RAW "fixed_rate_raw_clock"
17
Stephen Warren135aa952016-06-17 09:44:00 -060018static ulong clk_fixed_rate_get_rate(struct clk *clk)
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090019{
Stephen Warren135aa952016-06-17 09:44:00 -060020 return to_clk_fixed_rate(clk->dev)->fixed_rate;
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090021}
22
Chunfeng Yun6bf6d812020-01-09 11:35:08 +080023/* avoid clk_enable() return -ENOSYS */
24static int dummy_enable(struct clk *clk)
25{
26 return 0;
27}
28
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090029const struct clk_ops clk_fixed_rate_ops = {
30 .get_rate = clk_fixed_rate_get_rate,
Chunfeng Yun6bf6d812020-01-09 11:35:08 +080031 .enable = dummy_enable,
Samuel Holland17864402021-10-12 19:40:29 -050032 .disable = dummy_enable,
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090033};
34
Simon Glass4ddc91b2021-03-15 17:25:23 +130035void clk_fixed_rate_ofdata_to_plat_(struct udevice *dev,
36 struct clk_fixed_rate *plat)
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090037{
Simon Glass4ddc91b2021-03-15 17:25:23 +130038 struct clk *clk = &plat->clk;
Simon Glassdcfc42b2021-08-07 07:24:06 -060039 if (CONFIG_IS_ENABLED(OF_REAL))
40 plat->fixed_rate = dev_read_u32_default(dev, "clock-frequency",
41 0);
42
Lukasz Majewski36bac0a2019-06-24 15:50:40 +020043 /* Make fixed rate clock accessible from higher level struct clk */
Simon Glass0fd3d912020-12-22 19:30:28 -070044 /* FIXME: This is not allowed */
45 dev_set_uclass_priv(dev, clk);
Simon Glass4ddc91b2021-03-15 17:25:23 +130046
Lukasz Majewski36bac0a2019-06-24 15:50:40 +020047 clk->dev = dev;
Peng Fane6849e22019-08-21 13:35:03 +000048 clk->enable_count = 0;
Simon Glass4ddc91b2021-03-15 17:25:23 +130049}
50
Tero Kristofc960cb2021-06-11 11:45:06 +030051static ulong clk_fixed_rate_raw_get_rate(struct clk *clk)
52{
53 return container_of(clk, struct clk_fixed_rate, clk)->fixed_rate;
54}
55
56const struct clk_ops clk_fixed_rate_raw_ops = {
57 .get_rate = clk_fixed_rate_raw_get_rate,
58};
59
Simon Glass4ddc91b2021-03-15 17:25:23 +130060static int clk_fixed_rate_of_to_plat(struct udevice *dev)
61{
62 clk_fixed_rate_ofdata_to_plat_(dev, to_clk_fixed_rate(dev));
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090063
64 return 0;
65}
66
Tero Kristofc960cb2021-06-11 11:45:06 +030067#if CONFIG_IS_ENABLED(CLK_CCF)
68struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
69 ulong rate)
70{
71 struct clk *clk;
72 struct clk_fixed_rate *fixed;
73 int ret;
74
75 fixed = kzalloc(sizeof(*fixed), GFP_KERNEL);
76 if (!fixed)
77 return ERR_PTR(-ENOMEM);
78
79 fixed->fixed_rate = rate;
80
81 clk = &fixed->clk;
82
83 ret = clk_register(clk, UBOOT_DM_CLK_FIXED_RATE_RAW, name, NULL);
84 if (ret) {
85 kfree(fixed);
86 return ERR_PTR(ret);
87 }
88
89 return clk;
90}
91#endif
92
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090093static const struct udevice_id clk_fixed_rate_match[] = {
94 {
95 .compatible = "fixed-clock",
96 },
97 { /* sentinel */ }
98};
99
Simon Glass88280522020-10-03 11:31:32 -0600100U_BOOT_DRIVER(fixed_clock) = {
101 .name = "fixed_clock",
Masahiro Yamadab21e20b2016-01-19 13:55:28 +0900102 .id = UCLASS_CLK,
103 .of_match = clk_fixed_rate_match,
Simon Glassd1998a92020-12-03 16:55:21 -0700104 .of_to_plat = clk_fixed_rate_of_to_plat,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700105 .plat_auto = sizeof(struct clk_fixed_rate),
Masahiro Yamadab21e20b2016-01-19 13:55:28 +0900106 .ops = &clk_fixed_rate_ops,
Michal Simek4ab38172020-09-16 13:20:55 +0200107 .flags = DM_FLAG_PRE_RELOC,
Masahiro Yamadab21e20b2016-01-19 13:55:28 +0900108};
Tero Kristofc960cb2021-06-11 11:45:06 +0300109
110U_BOOT_DRIVER(clk_fixed_rate_raw) = {
111 .name = UBOOT_DM_CLK_FIXED_RATE_RAW,
112 .id = UCLASS_CLK,
113 .ops = &clk_fixed_rate_raw_ops,
114 .flags = DM_FLAG_PRE_RELOC,
115};