1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for Silicon Labs Si544 Programmable Oscillator
4 * Copyright (C) 2018 Topic Embedded Products
5 * Author: Mike Looijmans <mike.looijmans@topic.nl>
8 #include <linux/clk-provider.h>
9 #include <linux/delay.h>
10 #include <linux/module.h>
11 #include <linux/i2c.h>
12 #include <linux/regmap.h>
13 #include <linux/slab.h>
15 /* I2C registers (decimal as in datasheet) */
16 #define SI544_REG_CONTROL 7
17 #define SI544_REG_OE_STATE 17
18 #define SI544_REG_HS_DIV 23
19 #define SI544_REG_LS_HS_DIV 24
20 #define SI544_REG_FBDIV0 26
21 #define SI544_REG_FBDIV8 27
22 #define SI544_REG_FBDIV16 28
23 #define SI544_REG_FBDIV24 29
24 #define SI544_REG_FBDIV32 30
25 #define SI544_REG_FBDIV40 31
26 #define SI544_REG_FCAL_OVR 69
27 #define SI544_REG_ADPLL_DELTA_M0 231
28 #define SI544_REG_ADPLL_DELTA_M8 232
29 #define SI544_REG_ADPLL_DELTA_M16 233
30 #define SI544_REG_PAGE_SELECT 255
33 #define SI544_CONTROL_RESET BIT(7)
34 #define SI544_CONTROL_MS_ICAL2 BIT(3)
36 #define SI544_OE_STATE_ODC_OE BIT(0)
38 /* Max freq depends on speed grade */
39 #define SI544_MIN_FREQ 200000U
41 /* Si544 Internal oscilator runs at 55.05 MHz */
44 /* VCO range is 10.8 .. 12.1 GHz, max depends on speed grade */
45 #define FVCO_MIN 10800000000ULL
47 #define HS_DIV_MAX 2046
48 #define HS_DIV_MAX_ODD 33
50 /* Lowest frequency synthesizeable using only the HS divider */
51 #define MIN_HSDIV_FREQ (FVCO_MIN / HS_DIV_MAX)
53 enum si544_speed_grade
{
61 struct regmap
*regmap
;
62 struct i2c_client
*i2c_client
;
63 enum si544_speed_grade speed_grade
;
65 #define to_clk_si544(_hw) container_of(_hw, struct clk_si544, hw)
68 * struct clk_si544_muldiv - Multiplier/divider settings
69 * @fb_div_frac: integer part of feedback divider (32 bits)
70 * @fb_div_int: fractional part of feedback divider (11 bits)
71 * @hs_div: 1st divider, 5..2046, must be even when >33
72 * @ls_div_bits: 2nd divider, as 2^x, range 0..5
73 * If ls_div_bits is non-zero, hs_div must be even
75 struct clk_si544_muldiv
{
82 /* Enables or disables the output driver */
83 static int si544_enable_output(struct clk_si544
*data
, bool enable
)
85 return regmap_update_bits(data
->regmap
, SI544_REG_OE_STATE
,
86 SI544_OE_STATE_ODC_OE
, enable
? SI544_OE_STATE_ODC_OE
: 0);
89 /* Retrieve clock multiplier and dividers from hardware */
90 static int si544_get_muldiv(struct clk_si544
*data
,
91 struct clk_si544_muldiv
*settings
)
96 err
= regmap_bulk_read(data
->regmap
, SI544_REG_HS_DIV
, reg
, 2);
100 settings
->ls_div_bits
= (reg
[1] >> 4) & 0x07;
101 settings
->hs_div
= (reg
[1] & 0x07) << 8 | reg
[0];
103 err
= regmap_bulk_read(data
->regmap
, SI544_REG_FBDIV0
, reg
, 6);
107 settings
->fb_div_int
= reg
[4] | (reg
[5] & 0x07) << 8;
108 settings
->fb_div_frac
= reg
[0] | reg
[1] << 8 | reg
[2] << 16 |
113 static int si544_set_muldiv(struct clk_si544
*data
,
114 struct clk_si544_muldiv
*settings
)
119 reg
[0] = settings
->hs_div
;
120 reg
[1] = settings
->hs_div
>> 8 | settings
->ls_div_bits
<< 4;
122 err
= regmap_bulk_write(data
->regmap
, SI544_REG_HS_DIV
, reg
, 2);
126 reg
[0] = settings
->fb_div_frac
;
127 reg
[1] = settings
->fb_div_frac
>> 8;
128 reg
[2] = settings
->fb_div_frac
>> 16;
129 reg
[3] = settings
->fb_div_frac
>> 24;
130 reg
[4] = settings
->fb_div_int
;
131 reg
[5] = settings
->fb_div_int
>> 8;
134 * Writing to SI544_REG_FBDIV40 triggers the clock change, so that
135 * must be written last
137 return regmap_bulk_write(data
->regmap
, SI544_REG_FBDIV0
, reg
, 6);
140 static bool is_valid_frequency(const struct clk_si544
*data
,
141 unsigned long frequency
)
143 unsigned long max_freq
= 0;
145 if (frequency
< SI544_MIN_FREQ
)
148 switch (data
->speed_grade
) {
150 max_freq
= 1500000000;
153 max_freq
= 800000000;
156 max_freq
= 350000000;
160 return frequency
<= max_freq
;
163 /* Calculate divider settings for a given frequency */
164 static int si544_calc_muldiv(struct clk_si544_muldiv
*settings
,
165 unsigned long frequency
)
172 /* Determine the minimum value of LS_DIV and resulting target freq. */
174 settings
->ls_div_bits
= 0;
176 if (frequency
>= MIN_HSDIV_FREQ
) {
177 settings
->ls_div_bits
= 0;
180 tmp
= 2 * HS_DIV_MAX
;
181 while (tmp
<= (HS_DIV_MAX
* 32)) {
182 if (((u64
)frequency
* tmp
) >= FVCO_MIN
)
187 settings
->ls_div_bits
= res
;
188 ls_freq
= frequency
<< res
;
191 /* Determine minimum HS_DIV by rounding up */
192 vco
= FVCO_MIN
+ ls_freq
- 1;
193 do_div(vco
, ls_freq
);
194 settings
->hs_div
= vco
;
196 /* round up to even number when required */
197 if ((settings
->hs_div
& 1) &&
198 (settings
->hs_div
> HS_DIV_MAX_ODD
|| settings
->ls_div_bits
))
201 /* Calculate VCO frequency (in 10..12GHz range) */
202 vco
= (u64
)ls_freq
* settings
->hs_div
;
204 /* Calculate the integer part of the feedback divider */
205 tmp
= do_div(vco
, FXO
);
206 settings
->fb_div_int
= vco
;
208 /* And the fractional bits using the remainder */
209 vco
= (u64
)tmp
<< 32;
210 vco
+= FXO
/ 2; /* Round to nearest multiple */
212 settings
->fb_div_frac
= vco
;
217 /* Calculate resulting frequency given the register settings */
218 static unsigned long si544_calc_rate(struct clk_si544_muldiv
*settings
)
220 u32 d
= settings
->hs_div
* BIT(settings
->ls_div_bits
);
223 /* Calculate VCO from the fractional part */
224 vco
= (u64
)settings
->fb_div_frac
* FXO
;
228 /* Add the integer part of the VCO frequency */
229 vco
+= (u64
)settings
->fb_div_int
* FXO
;
231 /* Apply divider to obtain the generated frequency */
237 static unsigned long si544_recalc_rate(struct clk_hw
*hw
,
238 unsigned long parent_rate
)
240 struct clk_si544
*data
= to_clk_si544(hw
);
241 struct clk_si544_muldiv settings
;
244 err
= si544_get_muldiv(data
, &settings
);
248 return si544_calc_rate(&settings
);
251 static long si544_round_rate(struct clk_hw
*hw
, unsigned long rate
,
252 unsigned long *parent_rate
)
254 struct clk_si544
*data
= to_clk_si544(hw
);
255 struct clk_si544_muldiv settings
;
258 if (!is_valid_frequency(data
, rate
))
261 err
= si544_calc_muldiv(&settings
, rate
);
265 return si544_calc_rate(&settings
);
269 * Update output frequency for "big" frequency changes
271 static int si544_set_rate(struct clk_hw
*hw
, unsigned long rate
,
272 unsigned long parent_rate
)
274 struct clk_si544
*data
= to_clk_si544(hw
);
275 struct clk_si544_muldiv settings
;
278 if (!is_valid_frequency(data
, rate
))
281 err
= si544_calc_muldiv(&settings
, rate
);
285 si544_enable_output(data
, false);
287 /* Allow FCAL for this frequency update */
288 err
= regmap_write(data
->regmap
, SI544_REG_FCAL_OVR
, 0);
293 err
= si544_set_muldiv(data
, &settings
);
295 return err
; /* Undefined state now, best to leave disabled */
297 /* Trigger calibration */
298 err
= regmap_write(data
->regmap
, SI544_REG_CONTROL
,
299 SI544_CONTROL_MS_ICAL2
);
303 /* Applying a new frequency can take up to 10ms */
304 usleep_range(10000, 12000);
306 si544_enable_output(data
, true);
311 static const struct clk_ops si544_clk_ops
= {
312 .recalc_rate
= si544_recalc_rate
,
313 .round_rate
= si544_round_rate
,
314 .set_rate
= si544_set_rate
,
317 static bool si544_regmap_is_volatile(struct device
*dev
, unsigned int reg
)
320 case SI544_REG_CONTROL
:
321 case SI544_REG_FCAL_OVR
:
328 static const struct regmap_config si544_regmap_config
= {
331 .cache_type
= REGCACHE_RBTREE
,
332 .max_register
= SI544_REG_PAGE_SELECT
,
333 .volatile_reg
= si544_regmap_is_volatile
,
336 static int si544_probe(struct i2c_client
*client
,
337 const struct i2c_device_id
*id
)
339 struct clk_si544
*data
;
340 struct clk_init_data init
;
343 data
= devm_kzalloc(&client
->dev
, sizeof(*data
), GFP_KERNEL
);
347 init
.ops
= &si544_clk_ops
;
349 init
.num_parents
= 0;
350 data
->hw
.init
= &init
;
351 data
->i2c_client
= client
;
352 data
->speed_grade
= id
->driver_data
;
354 if (of_property_read_string(client
->dev
.of_node
, "clock-output-names",
356 init
.name
= client
->dev
.of_node
->name
;
358 data
->regmap
= devm_regmap_init_i2c(client
, &si544_regmap_config
);
359 if (IS_ERR(data
->regmap
))
360 return PTR_ERR(data
->regmap
);
362 i2c_set_clientdata(client
, data
);
364 /* Select page 0, just to be sure, there appear to be no more */
365 err
= regmap_write(data
->regmap
, SI544_REG_PAGE_SELECT
, 0);
369 err
= devm_clk_hw_register(&client
->dev
, &data
->hw
);
371 dev_err(&client
->dev
, "clock registration failed\n");
374 err
= devm_of_clk_add_hw_provider(&client
->dev
, of_clk_hw_simple_get
,
377 dev_err(&client
->dev
, "unable to add clk provider\n");
384 static const struct i2c_device_id si544_id
[] = {
385 { "si544a", si544a
},
386 { "si544b", si544b
},
387 { "si544c", si544c
},
390 MODULE_DEVICE_TABLE(i2c
, si544_id
);
392 static const struct of_device_id clk_si544_of_match
[] = {
393 { .compatible
= "silabs,si544a" },
394 { .compatible
= "silabs,si544b" },
395 { .compatible
= "silabs,si544c" },
398 MODULE_DEVICE_TABLE(of
, clk_si544_of_match
);
400 static struct i2c_driver si544_driver
= {
403 .of_match_table
= clk_si544_of_match
,
405 .probe
= si544_probe
,
406 .id_table
= si544_id
,
408 module_i2c_driver(si544_driver
);
410 MODULE_AUTHOR("Mike Looijmans <mike.looijmans@topic.nl>");
411 MODULE_DESCRIPTION("Si544 driver");
412 MODULE_LICENSE("GPL");