1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2012 ARM Limited
7 #include <linux/clkdev.h>
8 #include <linux/clk-provider.h>
11 #include <linux/platform_device.h>
12 #include <linux/slab.h>
13 #include <linux/vexpress.h>
18 unsigned long rate_min
;
19 unsigned long rate_max
;
22 #define to_vexpress_osc(osc) container_of(osc, struct vexpress_osc, hw)
24 static unsigned long vexpress_osc_recalc_rate(struct clk_hw
*hw
,
25 unsigned long parent_rate
)
27 struct vexpress_osc
*osc
= to_vexpress_osc(hw
);
30 regmap_read(osc
->reg
, 0, &rate
);
35 static long vexpress_osc_round_rate(struct clk_hw
*hw
, unsigned long rate
,
36 unsigned long *parent_rate
)
38 struct vexpress_osc
*osc
= to_vexpress_osc(hw
);
40 if (osc
->rate_min
&& rate
< osc
->rate_min
)
43 if (osc
->rate_max
&& rate
> osc
->rate_max
)
49 static int vexpress_osc_set_rate(struct clk_hw
*hw
, unsigned long rate
,
50 unsigned long parent_rate
)
52 struct vexpress_osc
*osc
= to_vexpress_osc(hw
);
54 return regmap_write(osc
->reg
, 0, rate
);
57 static const struct clk_ops vexpress_osc_ops
= {
58 .recalc_rate
= vexpress_osc_recalc_rate
,
59 .round_rate
= vexpress_osc_round_rate
,
60 .set_rate
= vexpress_osc_set_rate
,
64 static int vexpress_osc_probe(struct platform_device
*pdev
)
66 struct clk_init_data init
;
67 struct vexpress_osc
*osc
;
71 osc
= devm_kzalloc(&pdev
->dev
, sizeof(*osc
), GFP_KERNEL
);
75 osc
->reg
= devm_regmap_init_vexpress_config(&pdev
->dev
);
77 return PTR_ERR(osc
->reg
);
79 if (of_property_read_u32_array(pdev
->dev
.of_node
, "freq-range", range
,
80 ARRAY_SIZE(range
)) == 0) {
81 osc
->rate_min
= range
[0];
82 osc
->rate_max
= range
[1];
85 if (of_property_read_string(pdev
->dev
.of_node
, "clock-output-names",
87 init
.name
= dev_name(&pdev
->dev
);
89 init
.ops
= &vexpress_osc_ops
;
95 clk
= clk_register(NULL
, &osc
->hw
);
99 of_clk_add_provider(pdev
->dev
.of_node
, of_clk_src_simple_get
, clk
);
100 clk_hw_set_rate_range(&osc
->hw
, osc
->rate_min
, osc
->rate_max
);
102 dev_dbg(&pdev
->dev
, "Registered clock '%s'\n", init
.name
);
107 static const struct of_device_id vexpress_osc_of_match
[] = {
108 { .compatible
= "arm,vexpress-osc", },
112 static struct platform_driver vexpress_osc_driver
= {
114 .name
= "vexpress-osc",
115 .of_match_table
= vexpress_osc_of_match
,
117 .probe
= vexpress_osc_probe
,
120 static int __init
vexpress_osc_init(void)
122 return platform_driver_register(&vexpress_osc_driver
);
124 core_initcall(vexpress_osc_init
);