2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2016-01-19 04:55:28 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2016-06-17 15:44:00 +00:00
|
|
|
#include <clk-uclass.h>
|
2017-05-17 23:18:03 +00:00
|
|
|
#include <dm.h>
|
2020-12-23 02:30:28 +00:00
|
|
|
#include <dm/device-internal.h>
|
2019-07-31 07:01:39 +00:00
|
|
|
#include <linux/clk-provider.h>
|
2016-01-19 04:55:28 +00:00
|
|
|
|
2021-06-11 08:45:06 +00:00
|
|
|
#define UBOOT_DM_CLK_FIXED_RATE "fixed_rate_clock"
|
|
|
|
#define UBOOT_DM_CLK_FIXED_RATE_RAW "fixed_rate_raw_clock"
|
|
|
|
|
2016-06-17 15:44:00 +00:00
|
|
|
static ulong clk_fixed_rate_get_rate(struct clk *clk)
|
2016-01-19 04:55:28 +00:00
|
|
|
{
|
2016-06-17 15:44:00 +00:00
|
|
|
return to_clk_fixed_rate(clk->dev)->fixed_rate;
|
2016-01-19 04:55:28 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 03:35:08 +00:00
|
|
|
/* avoid clk_enable() return -ENOSYS */
|
|
|
|
static int dummy_enable(struct clk *clk)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-01-19 04:55:28 +00:00
|
|
|
const struct clk_ops clk_fixed_rate_ops = {
|
|
|
|
.get_rate = clk_fixed_rate_get_rate,
|
2020-01-09 03:35:08 +00:00
|
|
|
.enable = dummy_enable,
|
2016-01-19 04:55:28 +00:00
|
|
|
};
|
|
|
|
|
2021-03-15 04:25:23 +00:00
|
|
|
void clk_fixed_rate_ofdata_to_plat_(struct udevice *dev,
|
|
|
|
struct clk_fixed_rate *plat)
|
2016-01-19 04:55:28 +00:00
|
|
|
{
|
2021-03-15 04:25:23 +00:00
|
|
|
struct clk *clk = &plat->clk;
|
2016-07-04 17:58:03 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
2021-03-15 04:25:23 +00:00
|
|
|
plat->fixed_rate = dev_read_u32_default(dev, "clock-frequency", 0);
|
2016-07-04 17:58:03 +00:00
|
|
|
#endif
|
2019-06-24 13:50:40 +00:00
|
|
|
/* Make fixed rate clock accessible from higher level struct clk */
|
2020-12-23 02:30:28 +00:00
|
|
|
/* FIXME: This is not allowed */
|
|
|
|
dev_set_uclass_priv(dev, clk);
|
2021-03-15 04:25:23 +00:00
|
|
|
|
2019-06-24 13:50:40 +00:00
|
|
|
clk->dev = dev;
|
2019-08-21 13:35:03 +00:00
|
|
|
clk->enable_count = 0;
|
2021-03-15 04:25:23 +00:00
|
|
|
}
|
|
|
|
|
2021-06-11 08:45:06 +00:00
|
|
|
static ulong clk_fixed_rate_raw_get_rate(struct clk *clk)
|
|
|
|
{
|
|
|
|
return container_of(clk, struct clk_fixed_rate, clk)->fixed_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
const struct clk_ops clk_fixed_rate_raw_ops = {
|
|
|
|
.get_rate = clk_fixed_rate_raw_get_rate,
|
|
|
|
};
|
|
|
|
|
2021-03-15 04:25:23 +00:00
|
|
|
static int clk_fixed_rate_of_to_plat(struct udevice *dev)
|
|
|
|
{
|
|
|
|
clk_fixed_rate_ofdata_to_plat_(dev, to_clk_fixed_rate(dev));
|
2016-01-19 04:55:28 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-06-11 08:45:06 +00:00
|
|
|
#if CONFIG_IS_ENABLED(CLK_CCF)
|
|
|
|
struct clk *clk_register_fixed_rate(struct device *dev, const char *name,
|
|
|
|
ulong rate)
|
|
|
|
{
|
|
|
|
struct clk *clk;
|
|
|
|
struct clk_fixed_rate *fixed;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
fixed = kzalloc(sizeof(*fixed), GFP_KERNEL);
|
|
|
|
if (!fixed)
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
|
|
|
|
fixed->fixed_rate = rate;
|
|
|
|
|
|
|
|
clk = &fixed->clk;
|
|
|
|
|
|
|
|
ret = clk_register(clk, UBOOT_DM_CLK_FIXED_RATE_RAW, name, NULL);
|
|
|
|
if (ret) {
|
|
|
|
kfree(fixed);
|
|
|
|
return ERR_PTR(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return clk;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-19 04:55:28 +00:00
|
|
|
static const struct udevice_id clk_fixed_rate_match[] = {
|
|
|
|
{
|
|
|
|
.compatible = "fixed-clock",
|
|
|
|
},
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
|
2020-10-03 17:31:32 +00:00
|
|
|
U_BOOT_DRIVER(fixed_clock) = {
|
|
|
|
.name = "fixed_clock",
|
2016-01-19 04:55:28 +00:00
|
|
|
.id = UCLASS_CLK,
|
|
|
|
.of_match = clk_fixed_rate_match,
|
2020-12-03 23:55:21 +00:00
|
|
|
.of_to_plat = clk_fixed_rate_of_to_plat,
|
2020-12-03 23:55:18 +00:00
|
|
|
.plat_auto = sizeof(struct clk_fixed_rate),
|
2016-01-19 04:55:28 +00:00
|
|
|
.ops = &clk_fixed_rate_ops,
|
2020-09-16 11:20:55 +00:00
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
2016-01-19 04:55:28 +00:00
|
|
|
};
|
2021-06-11 08:45:06 +00:00
|
|
|
|
|
|
|
U_BOOT_DRIVER(clk_fixed_rate_raw) = {
|
|
|
|
.name = UBOOT_DM_CLK_FIXED_RATE_RAW,
|
|
|
|
.id = UCLASS_CLK,
|
|
|
|
.ops = &clk_fixed_rate_raw_ops,
|
|
|
|
.flags = DM_FLAG_PRE_RELOC,
|
|
|
|
};
|