huangcm
2025-07-03 c26084b3642f262f858535ab4e46c1e9b520d3a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
 * drivers/clk/clk_fixed_rate.c
 *
 * Copyright (c) 2007-2019 Allwinnertech Co., Ltd.
 * Author: zhengxiaobin <zhengxiaobin@allwinnertech.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */
 
#include <common.h>
#include <clk-uclass.h>
#include <dm.h>
 
struct clk_fixed_rate {
   unsigned long fixed_rate;
};
 
#define to_clk_fixed_rate(dev)    ((struct clk_fixed_rate *)dev_get_platdata(dev))
 
static ulong clk_fixed_rate_get_rate(struct clk *clk)
{
   if (clk->id != 0)
       return -EINVAL;
 
   return to_clk_fixed_rate(clk->dev)->fixed_rate;
}
 
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)
{
#if !CONFIG_IS_ENABLED(OF_PLATDATA)
   to_clk_fixed_rate(dev)->fixed_rate =
       dev_read_u32_default(dev, "clock-frequency", 0);
#endif
 
   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,
};