blob: 797e5379075da87e5dac71ed7d61106c8dd9fbff [file] [log] [blame]
Masahiro Yamadab21e20b2016-01-19 13:55:28 +09001/*
2 * Copyright (C) 2016 Masahiro Yamada <yamada.masahiro@socionext.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Stephen Warren135aa952016-06-17 09:44:00 -06008#include <clk-uclass.h>
Masahiro Yamadab21e20b2016-01-19 13:55:28 +09009#include <dm/device.h>
10
11DECLARE_GLOBAL_DATA_PTR;
12
13struct clk_fixed_rate {
14 unsigned long fixed_rate;
15};
16
17#define to_clk_fixed_rate(dev) ((struct clk_fixed_rate *)dev_get_platdata(dev))
18
Stephen Warren135aa952016-06-17 09:44:00 -060019static ulong clk_fixed_rate_get_rate(struct clk *clk)
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090020{
Stephen Warren135aa952016-06-17 09:44:00 -060021 if (clk->id != 0)
22 return -EINVAL;
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090023
Stephen Warren135aa952016-06-17 09:44:00 -060024 return to_clk_fixed_rate(clk->dev)->fixed_rate;
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090025}
26
27const struct clk_ops clk_fixed_rate_ops = {
28 .get_rate = clk_fixed_rate_get_rate,
Masahiro Yamadab21e20b2016-01-19 13:55:28 +090029};
30
31static int clk_fixed_rate_ofdata_to_platdata(struct udevice *dev)
32{
33 to_clk_fixed_rate(dev)->fixed_rate =
34 fdtdec_get_int(gd->fdt_blob, dev->of_offset,
35 "clock-frequency", 0);
36
37 return 0;
38}
39
40static const struct udevice_id clk_fixed_rate_match[] = {
41 {
42 .compatible = "fixed-clock",
43 },
44 { /* sentinel */ }
45};
46
47U_BOOT_DRIVER(clk_fixed_rate) = {
48 .name = "fixed_rate_clock",
49 .id = UCLASS_CLK,
50 .of_match = clk_fixed_rate_match,
51 .ofdata_to_platdata = clk_fixed_rate_ofdata_to_platdata,
52 .platdata_auto_alloc_size = sizeof(struct clk_fixed_rate),
53 .ops = &clk_fixed_rate_ops,
54};