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>
|
2016-01-19 04:55:28 +00:00
|
|
|
|
|
|
|
struct clk_fixed_rate {
|
|
|
|
unsigned long fixed_rate;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_platdata(dev))
|
|
|
|
|
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
|
|
|
if (clk->id != 0)
|
|
|
|
return -EINVAL;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
const struct clk_ops clk_fixed_rate_ops = {
|
|
|
|
.get_rate = clk_fixed_rate_get_rate,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int clk_fixed_rate_ofdata_to_platdata(struct udevice *dev)
|
|
|
|
{
|
2016-07-04 17:58:03 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
|
2018-01-15 10:06:52 +00:00
|
|
|
to_clk_fixed_rate(dev)->fixed_rate =
|
|
|
|
dev_read_u32_default(dev, "clock-frequency", 0);
|
2016-07-04 17:58:03 +00:00
|
|
|
#endif
|
2016-01-19 04:55:28 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct udevice_id clk_fixed_rate_match[] = {
|
|
|
|
{
|
|
|
|
.compatible = "fixed-clock",
|
|
|
|
},
|
|
|
|
{ /* sentinel */ }
|
|
|
|
};
|
|
|
|
|
|
|
|
U_BOOT_DRIVER(clk_fixed_rate) = {
|
|
|
|
.name = "fixed_rate_clock",
|
|
|
|
.id = UCLASS_CLK,
|
|
|
|
.of_match = clk_fixed_rate_match,
|
|
|
|
.ofdata_to_platdata = clk_fixed_rate_ofdata_to_platdata,
|
|
|
|
.platdata_auto_alloc_size = sizeof(struct clk_fixed_rate),
|
|
|
|
.ops = &clk_fixed_rate_ops,
|
|
|
|
};
|