1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * clk-si5351.c: Silicon Laboratories Si5351A/B/C I2C Clock Generator
5 * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
6 * Rabeeh Khoury <rabeeh@solid-run.com>
9 * [1] "Si5351A/B/C Data Sheet"
10 * https://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351.pdf
11 * [2] "Manually Generating an Si5351 Register Map"
12 * https://www.silabs.com/Support%20Documents/TechnicalDocs/AN619.pdf
15 #include <linux/module.h>
16 #include <linux/kernel.h>
17 #include <linux/clk.h>
18 #include <linux/clk-provider.h>
19 #include <linux/delay.h>
20 #include <linux/err.h>
21 #include <linux/errno.h>
22 #include <linux/rational.h>
23 #include <linux/i2c.h>
24 #include <linux/of_platform.h>
25 #include <linux/platform_data/si5351.h>
26 #include <linux/regmap.h>
27 #include <linux/slab.h>
28 #include <linux/string.h>
29 #include <asm/div64.h>
31 #include "clk-si5351.h"
33 struct si5351_driver_data
;
35 struct si5351_parameters
{
42 struct si5351_hw_data
{
44 struct si5351_driver_data
*drvdata
;
45 struct si5351_parameters params
;
49 struct si5351_driver_data
{
50 enum si5351_variant variant
;
51 struct i2c_client
*client
;
52 struct regmap
*regmap
;
55 const char *pxtal_name
;
58 const char *pclkin_name
;
61 struct si5351_hw_data pll
[2];
62 struct si5351_hw_data
*msynth
;
63 struct si5351_hw_data
*clkout
;
67 static const char * const si5351_input_names
[] = {
70 static const char * const si5351_pll_names
[] = {
71 "si5351_plla", "si5351_pllb", "si5351_vxco"
73 static const char * const si5351_msynth_names
[] = {
74 "ms0", "ms1", "ms2", "ms3", "ms4", "ms5", "ms6", "ms7"
76 static const char * const si5351_clkout_names
[] = {
77 "clk0", "clk1", "clk2", "clk3", "clk4", "clk5", "clk6", "clk7"
83 static inline u8
si5351_reg_read(struct si5351_driver_data
*drvdata
, u8 reg
)
88 ret
= regmap_read(drvdata
->regmap
, reg
, &val
);
90 dev_err(&drvdata
->client
->dev
,
91 "unable to read from reg%02x\n", reg
);
98 static inline int si5351_bulk_read(struct si5351_driver_data
*drvdata
,
99 u8 reg
, u8 count
, u8
*buf
)
101 return regmap_bulk_read(drvdata
->regmap
, reg
, buf
, count
);
104 static inline int si5351_reg_write(struct si5351_driver_data
*drvdata
,
107 return regmap_write(drvdata
->regmap
, reg
, val
);
110 static inline int si5351_bulk_write(struct si5351_driver_data
*drvdata
,
111 u8 reg
, u8 count
, const u8
*buf
)
113 return regmap_raw_write(drvdata
->regmap
, reg
, buf
, count
);
116 static inline int si5351_set_bits(struct si5351_driver_data
*drvdata
,
117 u8 reg
, u8 mask
, u8 val
)
119 return regmap_update_bits(drvdata
->regmap
, reg
, mask
, val
);
122 static inline u8
si5351_msynth_params_address(int num
)
125 return SI5351_CLK6_PARAMETERS
+ (num
- 6);
126 return SI5351_CLK0_PARAMETERS
+ (SI5351_PARAMETERS_LENGTH
* num
);
129 static void si5351_read_parameters(struct si5351_driver_data
*drvdata
,
130 u8 reg
, struct si5351_parameters
*params
)
132 u8 buf
[SI5351_PARAMETERS_LENGTH
];
135 case SI5351_CLK6_PARAMETERS
:
136 case SI5351_CLK7_PARAMETERS
:
137 buf
[0] = si5351_reg_read(drvdata
, reg
);
143 si5351_bulk_read(drvdata
, reg
, SI5351_PARAMETERS_LENGTH
, buf
);
144 params
->p1
= ((buf
[2] & 0x03) << 16) | (buf
[3] << 8) | buf
[4];
145 params
->p2
= ((buf
[5] & 0x0f) << 16) | (buf
[6] << 8) | buf
[7];
146 params
->p3
= ((buf
[5] & 0xf0) << 12) | (buf
[0] << 8) | buf
[1];
151 static void si5351_write_parameters(struct si5351_driver_data
*drvdata
,
152 u8 reg
, struct si5351_parameters
*params
)
154 u8 buf
[SI5351_PARAMETERS_LENGTH
];
157 case SI5351_CLK6_PARAMETERS
:
158 case SI5351_CLK7_PARAMETERS
:
159 buf
[0] = params
->p1
& 0xff;
160 si5351_reg_write(drvdata
, reg
, buf
[0]);
163 buf
[0] = ((params
->p3
& 0x0ff00) >> 8) & 0xff;
164 buf
[1] = params
->p3
& 0xff;
165 /* save rdiv and divby4 */
166 buf
[2] = si5351_reg_read(drvdata
, reg
+ 2) & ~0x03;
167 buf
[2] |= ((params
->p1
& 0x30000) >> 16) & 0x03;
168 buf
[3] = ((params
->p1
& 0x0ff00) >> 8) & 0xff;
169 buf
[4] = params
->p1
& 0xff;
170 buf
[5] = ((params
->p3
& 0xf0000) >> 12) |
171 ((params
->p2
& 0xf0000) >> 16);
172 buf
[6] = ((params
->p2
& 0x0ff00) >> 8) & 0xff;
173 buf
[7] = params
->p2
& 0xff;
174 si5351_bulk_write(drvdata
, reg
, SI5351_PARAMETERS_LENGTH
, buf
);
178 static bool si5351_regmap_is_volatile(struct device
*dev
, unsigned int reg
)
181 case SI5351_DEVICE_STATUS
:
182 case SI5351_INTERRUPT_STATUS
:
183 case SI5351_PLL_RESET
:
189 static bool si5351_regmap_is_writeable(struct device
*dev
, unsigned int reg
)
191 /* reserved registers */
192 if (reg
>= 4 && reg
<= 8)
194 if (reg
>= 10 && reg
<= 14)
196 if (reg
>= 173 && reg
<= 176)
198 if (reg
>= 178 && reg
<= 182)
201 if (reg
== SI5351_DEVICE_STATUS
)
206 static const struct regmap_config si5351_regmap_config
= {
209 .cache_type
= REGCACHE_RBTREE
,
211 .writeable_reg
= si5351_regmap_is_writeable
,
212 .volatile_reg
= si5351_regmap_is_volatile
,
216 * Si5351 xtal clock input
218 static int si5351_xtal_prepare(struct clk_hw
*hw
)
220 struct si5351_driver_data
*drvdata
=
221 container_of(hw
, struct si5351_driver_data
, xtal
);
222 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
223 SI5351_XTAL_ENABLE
, SI5351_XTAL_ENABLE
);
227 static void si5351_xtal_unprepare(struct clk_hw
*hw
)
229 struct si5351_driver_data
*drvdata
=
230 container_of(hw
, struct si5351_driver_data
, xtal
);
231 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
232 SI5351_XTAL_ENABLE
, 0);
235 static const struct clk_ops si5351_xtal_ops
= {
236 .prepare
= si5351_xtal_prepare
,
237 .unprepare
= si5351_xtal_unprepare
,
241 * Si5351 clkin clock input (Si5351C only)
243 static int si5351_clkin_prepare(struct clk_hw
*hw
)
245 struct si5351_driver_data
*drvdata
=
246 container_of(hw
, struct si5351_driver_data
, clkin
);
247 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
248 SI5351_CLKIN_ENABLE
, SI5351_CLKIN_ENABLE
);
252 static void si5351_clkin_unprepare(struct clk_hw
*hw
)
254 struct si5351_driver_data
*drvdata
=
255 container_of(hw
, struct si5351_driver_data
, clkin
);
256 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
257 SI5351_CLKIN_ENABLE
, 0);
261 * CMOS clock source constraints:
262 * The input frequency range of the PLL is 10Mhz to 40MHz.
263 * If CLKIN is >40MHz, the input divider must be used.
265 static unsigned long si5351_clkin_recalc_rate(struct clk_hw
*hw
,
266 unsigned long parent_rate
)
268 struct si5351_driver_data
*drvdata
=
269 container_of(hw
, struct si5351_driver_data
, clkin
);
274 if (parent_rate
> 160000000) {
275 idiv
= SI5351_CLKIN_DIV_8
;
277 } else if (parent_rate
> 80000000) {
278 idiv
= SI5351_CLKIN_DIV_4
;
280 } else if (parent_rate
> 40000000) {
281 idiv
= SI5351_CLKIN_DIV_2
;
284 idiv
= SI5351_CLKIN_DIV_1
;
287 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
,
288 SI5351_CLKIN_DIV_MASK
, idiv
);
290 dev_dbg(&drvdata
->client
->dev
, "%s - clkin div = %d, rate = %lu\n",
291 __func__
, (1 << (idiv
>> 6)), rate
);
296 static const struct clk_ops si5351_clkin_ops
= {
297 .prepare
= si5351_clkin_prepare
,
298 .unprepare
= si5351_clkin_unprepare
,
299 .recalc_rate
= si5351_clkin_recalc_rate
,
303 * Si5351 vxco clock input (Si5351B only)
306 static int si5351_vxco_prepare(struct clk_hw
*hw
)
308 struct si5351_hw_data
*hwdata
=
309 container_of(hw
, struct si5351_hw_data
, hw
);
311 dev_warn(&hwdata
->drvdata
->client
->dev
, "VXCO currently unsupported\n");
316 static void si5351_vxco_unprepare(struct clk_hw
*hw
)
320 static unsigned long si5351_vxco_recalc_rate(struct clk_hw
*hw
,
321 unsigned long parent_rate
)
326 static int si5351_vxco_set_rate(struct clk_hw
*hw
, unsigned long rate
,
327 unsigned long parent
)
332 static const struct clk_ops si5351_vxco_ops
= {
333 .prepare
= si5351_vxco_prepare
,
334 .unprepare
= si5351_vxco_unprepare
,
335 .recalc_rate
= si5351_vxco_recalc_rate
,
336 .set_rate
= si5351_vxco_set_rate
,
342 * Feedback Multisynth Divider Equations [2]
344 * fVCO = fIN * (a + b/c)
346 * with 15 + 0/1048575 <= (a + b/c) <= 90 + 0/1048575 and
347 * fIN = fXTAL or fIN = fCLKIN/CLKIN_DIV
349 * Feedback Multisynth Register Equations
351 * (1) MSNx_P1[17:0] = 128 * a + floor(128 * b/c) - 512
352 * (2) MSNx_P2[19:0] = 128 * b - c * floor(128 * b/c) = (128*b) mod c
353 * (3) MSNx_P3[19:0] = c
355 * Transposing (2) yields: (4) floor(128 * b/c) = (128 * b / MSNx_P2)/c
357 * Using (4) on (1) yields:
358 * MSNx_P1 = 128 * a + (128 * b/MSNx_P2)/c - 512
359 * MSNx_P1 + 512 + MSNx_P2/c = 128 * a + 128 * b/c
361 * a + b/c = (MSNx_P1 + MSNx_P2/MSNx_P3 + 512)/128
362 * = (MSNx_P1*MSNx_P3 + MSNx_P2 + 512*MSNx_P3)/(128*MSNx_P3)
365 static int _si5351_pll_reparent(struct si5351_driver_data
*drvdata
,
366 int num
, enum si5351_pll_src parent
)
368 u8 mask
= (num
== 0) ? SI5351_PLLA_SOURCE
: SI5351_PLLB_SOURCE
;
370 if (parent
== SI5351_PLL_SRC_DEFAULT
)
376 if (drvdata
->variant
!= SI5351_VARIANT_C
&&
377 parent
!= SI5351_PLL_SRC_XTAL
)
380 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
, mask
,
381 (parent
== SI5351_PLL_SRC_XTAL
) ? 0 : mask
);
385 static unsigned char si5351_pll_get_parent(struct clk_hw
*hw
)
387 struct si5351_hw_data
*hwdata
=
388 container_of(hw
, struct si5351_hw_data
, hw
);
389 u8 mask
= (hwdata
->num
== 0) ? SI5351_PLLA_SOURCE
: SI5351_PLLB_SOURCE
;
392 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_PLL_INPUT_SOURCE
);
394 return (val
& mask
) ? 1 : 0;
397 static int si5351_pll_set_parent(struct clk_hw
*hw
, u8 index
)
399 struct si5351_hw_data
*hwdata
=
400 container_of(hw
, struct si5351_hw_data
, hw
);
402 if (hwdata
->drvdata
->variant
!= SI5351_VARIANT_C
&&
409 return _si5351_pll_reparent(hwdata
->drvdata
, hwdata
->num
,
410 (index
== 0) ? SI5351_PLL_SRC_XTAL
:
411 SI5351_PLL_SRC_CLKIN
);
414 static unsigned long si5351_pll_recalc_rate(struct clk_hw
*hw
,
415 unsigned long parent_rate
)
417 struct si5351_hw_data
*hwdata
=
418 container_of(hw
, struct si5351_hw_data
, hw
);
419 u8 reg
= (hwdata
->num
== 0) ? SI5351_PLLA_PARAMETERS
:
420 SI5351_PLLB_PARAMETERS
;
421 unsigned long long rate
;
423 if (!hwdata
->params
.valid
)
424 si5351_read_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
426 if (hwdata
->params
.p3
== 0)
429 /* fVCO = fIN * (P1*P3 + 512*P3 + P2)/(128*P3) */
430 rate
= hwdata
->params
.p1
* hwdata
->params
.p3
;
431 rate
+= 512 * hwdata
->params
.p3
;
432 rate
+= hwdata
->params
.p2
;
434 do_div(rate
, 128 * hwdata
->params
.p3
);
436 dev_dbg(&hwdata
->drvdata
->client
->dev
,
437 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, parent_rate = %lu, rate = %lu\n",
438 __func__
, clk_hw_get_name(hw
),
439 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
440 parent_rate
, (unsigned long)rate
);
442 return (unsigned long)rate
;
445 static long si5351_pll_round_rate(struct clk_hw
*hw
, unsigned long rate
,
446 unsigned long *parent_rate
)
448 struct si5351_hw_data
*hwdata
=
449 container_of(hw
, struct si5351_hw_data
, hw
);
450 unsigned long rfrac
, denom
, a
, b
, c
;
451 unsigned long long lltmp
;
453 if (rate
< SI5351_PLL_VCO_MIN
)
454 rate
= SI5351_PLL_VCO_MIN
;
455 if (rate
> SI5351_PLL_VCO_MAX
)
456 rate
= SI5351_PLL_VCO_MAX
;
458 /* determine integer part of feedback equation */
459 a
= rate
/ *parent_rate
;
461 if (a
< SI5351_PLL_A_MIN
)
462 rate
= *parent_rate
* SI5351_PLL_A_MIN
;
463 if (a
> SI5351_PLL_A_MAX
)
464 rate
= *parent_rate
* SI5351_PLL_A_MAX
;
466 /* find best approximation for b/c = fVCO mod fIN */
468 lltmp
= rate
% (*parent_rate
);
470 do_div(lltmp
, *parent_rate
);
471 rfrac
= (unsigned long)lltmp
;
476 rational_best_approximation(rfrac
, denom
,
477 SI5351_PLL_B_MAX
, SI5351_PLL_C_MAX
, &b
, &c
);
479 /* calculate parameters */
480 hwdata
->params
.p3
= c
;
481 hwdata
->params
.p2
= (128 * b
) % c
;
482 hwdata
->params
.p1
= 128 * a
;
483 hwdata
->params
.p1
+= (128 * b
/ c
);
484 hwdata
->params
.p1
-= 512;
486 /* recalculate rate by fIN * (a + b/c) */
487 lltmp
= *parent_rate
;
491 rate
= (unsigned long)lltmp
;
492 rate
+= *parent_rate
* a
;
494 dev_dbg(&hwdata
->drvdata
->client
->dev
,
495 "%s - %s: a = %lu, b = %lu, c = %lu, parent_rate = %lu, rate = %lu\n",
496 __func__
, clk_hw_get_name(hw
), a
, b
, c
,
502 static int si5351_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
,
503 unsigned long parent_rate
)
505 struct si5351_hw_data
*hwdata
=
506 container_of(hw
, struct si5351_hw_data
, hw
);
507 u8 reg
= (hwdata
->num
== 0) ? SI5351_PLLA_PARAMETERS
:
508 SI5351_PLLB_PARAMETERS
;
510 /* write multisynth parameters */
511 si5351_write_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
513 /* plla/pllb ctrl is in clk6/clk7 ctrl registers */
514 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_CTRL
+ hwdata
->num
,
515 SI5351_CLK_INTEGER_MODE
,
516 (hwdata
->params
.p2
== 0) ? SI5351_CLK_INTEGER_MODE
: 0);
518 /* Do a pll soft reset on the affected pll */
519 si5351_reg_write(hwdata
->drvdata
, SI5351_PLL_RESET
,
520 hwdata
->num
== 0 ? SI5351_PLL_RESET_A
:
523 dev_dbg(&hwdata
->drvdata
->client
->dev
,
524 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, parent_rate = %lu, rate = %lu\n",
525 __func__
, clk_hw_get_name(hw
),
526 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
532 static const struct clk_ops si5351_pll_ops
= {
533 .set_parent
= si5351_pll_set_parent
,
534 .get_parent
= si5351_pll_get_parent
,
535 .recalc_rate
= si5351_pll_recalc_rate
,
536 .round_rate
= si5351_pll_round_rate
,
537 .set_rate
= si5351_pll_set_rate
,
541 * Si5351 multisync divider
543 * for fOUT <= 150 MHz:
545 * fOUT = (fIN * (a + b/c)) / CLKOUTDIV
547 * with 6 + 0/1048575 <= (a + b/c) <= 1800 + 0/1048575 and
550 * Output Clock Multisynth Register Equations
552 * MSx_P1[17:0] = 128 * a + floor(128 * b/c) - 512
553 * MSx_P2[19:0] = 128 * b - c * floor(128 * b/c) = (128*b) mod c
556 * MS[6,7] are integer (P1) divide only, P1 = divide value,
557 * P2 and P3 are not applicable
559 * for 150MHz < fOUT <= 160MHz:
561 * MSx_P1 = 0, MSx_P2 = 0, MSx_P3 = 1, MSx_INT = 1, MSx_DIVBY4 = 11b
563 static int _si5351_msynth_reparent(struct si5351_driver_data
*drvdata
,
564 int num
, enum si5351_multisynth_src parent
)
566 if (parent
== SI5351_MULTISYNTH_SRC_DEFAULT
)
572 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
, SI5351_CLK_PLL_SELECT
,
573 (parent
== SI5351_MULTISYNTH_SRC_VCO0
) ? 0 :
574 SI5351_CLK_PLL_SELECT
);
578 static unsigned char si5351_msynth_get_parent(struct clk_hw
*hw
)
580 struct si5351_hw_data
*hwdata
=
581 container_of(hw
, struct si5351_hw_data
, hw
);
584 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
586 return (val
& SI5351_CLK_PLL_SELECT
) ? 1 : 0;
589 static int si5351_msynth_set_parent(struct clk_hw
*hw
, u8 index
)
591 struct si5351_hw_data
*hwdata
=
592 container_of(hw
, struct si5351_hw_data
, hw
);
594 return _si5351_msynth_reparent(hwdata
->drvdata
, hwdata
->num
,
595 (index
== 0) ? SI5351_MULTISYNTH_SRC_VCO0
:
596 SI5351_MULTISYNTH_SRC_VCO1
);
599 static unsigned long si5351_msynth_recalc_rate(struct clk_hw
*hw
,
600 unsigned long parent_rate
)
602 struct si5351_hw_data
*hwdata
=
603 container_of(hw
, struct si5351_hw_data
, hw
);
604 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
605 unsigned long long rate
;
608 if (!hwdata
->params
.valid
)
609 si5351_read_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
612 * multisync0-5: fOUT = (128 * P3 * fIN) / (P1*P3 + P2 + 512*P3)
613 * multisync6-7: fOUT = fIN / P1
616 if (hwdata
->num
> 5) {
617 m
= hwdata
->params
.p1
;
618 } else if (hwdata
->params
.p3
== 0) {
620 } else if ((si5351_reg_read(hwdata
->drvdata
, reg
+ 2) &
621 SI5351_OUTPUT_CLK_DIVBY4
) == SI5351_OUTPUT_CLK_DIVBY4
) {
624 rate
*= 128 * hwdata
->params
.p3
;
625 m
= hwdata
->params
.p1
* hwdata
->params
.p3
;
626 m
+= hwdata
->params
.p2
;
627 m
+= 512 * hwdata
->params
.p3
;
634 dev_dbg(&hwdata
->drvdata
->client
->dev
,
635 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, m = %lu, parent_rate = %lu, rate = %lu\n",
636 __func__
, clk_hw_get_name(hw
),
637 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
638 m
, parent_rate
, (unsigned long)rate
);
640 return (unsigned long)rate
;
643 static long si5351_msynth_round_rate(struct clk_hw
*hw
, unsigned long rate
,
644 unsigned long *parent_rate
)
646 struct si5351_hw_data
*hwdata
=
647 container_of(hw
, struct si5351_hw_data
, hw
);
648 unsigned long long lltmp
;
649 unsigned long a
, b
, c
;
652 /* multisync6-7 can only handle freqencies < 150MHz */
653 if (hwdata
->num
>= 6 && rate
> SI5351_MULTISYNTH67_MAX_FREQ
)
654 rate
= SI5351_MULTISYNTH67_MAX_FREQ
;
656 /* multisync frequency is 1MHz .. 160MHz */
657 if (rate
> SI5351_MULTISYNTH_MAX_FREQ
)
658 rate
= SI5351_MULTISYNTH_MAX_FREQ
;
659 if (rate
< SI5351_MULTISYNTH_MIN_FREQ
)
660 rate
= SI5351_MULTISYNTH_MIN_FREQ
;
663 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
666 /* multisync can set pll */
667 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
669 * find largest integer divider for max
670 * vco frequency and given target rate
673 lltmp
= SI5351_PLL_VCO_MAX
;
675 a
= (unsigned long)lltmp
;
682 *parent_rate
= a
* rate
;
683 } else if (hwdata
->num
>= 6) {
684 /* determine the closest integer divider */
685 a
= DIV_ROUND_CLOSEST(*parent_rate
, rate
);
686 if (a
< SI5351_MULTISYNTH_A_MIN
)
687 a
= SI5351_MULTISYNTH_A_MIN
;
688 if (a
> SI5351_MULTISYNTH67_A_MAX
)
689 a
= SI5351_MULTISYNTH67_A_MAX
;
694 unsigned long rfrac
, denom
;
698 rate
= SI5351_MULTISYNTH_DIVBY4_FREQ
;
702 /* determine integer part of divider equation */
703 a
= *parent_rate
/ rate
;
704 if (a
< SI5351_MULTISYNTH_A_MIN
)
705 a
= SI5351_MULTISYNTH_A_MIN
;
706 if (a
> SI5351_MULTISYNTH_A_MAX
)
707 a
= SI5351_MULTISYNTH_A_MAX
;
709 /* find best approximation for b/c = fVCO mod fOUT */
711 lltmp
= (*parent_rate
) % rate
;
714 rfrac
= (unsigned long)lltmp
;
719 rational_best_approximation(rfrac
, denom
,
720 SI5351_MULTISYNTH_B_MAX
, SI5351_MULTISYNTH_C_MAX
,
724 /* recalculate rate by fOUT = fIN / (a + b/c) */
725 lltmp
= *parent_rate
;
727 do_div(lltmp
, a
* c
+ b
);
728 rate
= (unsigned long)lltmp
;
730 /* calculate parameters */
732 hwdata
->params
.p3
= 1;
733 hwdata
->params
.p2
= 0;
734 hwdata
->params
.p1
= 0;
735 } else if (hwdata
->num
>= 6) {
736 hwdata
->params
.p3
= 0;
737 hwdata
->params
.p2
= 0;
738 hwdata
->params
.p1
= a
;
740 hwdata
->params
.p3
= c
;
741 hwdata
->params
.p2
= (128 * b
) % c
;
742 hwdata
->params
.p1
= 128 * a
;
743 hwdata
->params
.p1
+= (128 * b
/ c
);
744 hwdata
->params
.p1
-= 512;
747 dev_dbg(&hwdata
->drvdata
->client
->dev
,
748 "%s - %s: a = %lu, b = %lu, c = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
749 __func__
, clk_hw_get_name(hw
), a
, b
, c
, divby4
,
755 static int si5351_msynth_set_rate(struct clk_hw
*hw
, unsigned long rate
,
756 unsigned long parent_rate
)
758 struct si5351_hw_data
*hwdata
=
759 container_of(hw
, struct si5351_hw_data
, hw
);
760 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
763 /* write multisynth parameters */
764 si5351_write_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
766 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
769 /* enable/disable integer mode and divby4 on multisynth0-5 */
770 if (hwdata
->num
< 6) {
771 si5351_set_bits(hwdata
->drvdata
, reg
+ 2,
772 SI5351_OUTPUT_CLK_DIVBY4
,
773 (divby4
) ? SI5351_OUTPUT_CLK_DIVBY4
: 0);
774 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
775 SI5351_CLK_INTEGER_MODE
,
776 (hwdata
->params
.p2
== 0) ? SI5351_CLK_INTEGER_MODE
: 0);
779 dev_dbg(&hwdata
->drvdata
->client
->dev
,
780 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
781 __func__
, clk_hw_get_name(hw
),
782 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
783 divby4
, parent_rate
, rate
);
788 static const struct clk_ops si5351_msynth_ops
= {
789 .set_parent
= si5351_msynth_set_parent
,
790 .get_parent
= si5351_msynth_get_parent
,
791 .recalc_rate
= si5351_msynth_recalc_rate
,
792 .round_rate
= si5351_msynth_round_rate
,
793 .set_rate
= si5351_msynth_set_rate
,
797 * Si5351 clkout divider
799 static int _si5351_clkout_reparent(struct si5351_driver_data
*drvdata
,
800 int num
, enum si5351_clkout_src parent
)
808 case SI5351_CLKOUT_SRC_MSYNTH_N
:
809 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
811 case SI5351_CLKOUT_SRC_MSYNTH_0_4
:
812 /* clk0/clk4 can only connect to its own multisync */
813 if (num
== 0 || num
== 4)
814 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
816 val
= SI5351_CLK_INPUT_MULTISYNTH_0_4
;
818 case SI5351_CLKOUT_SRC_XTAL
:
819 val
= SI5351_CLK_INPUT_XTAL
;
821 case SI5351_CLKOUT_SRC_CLKIN
:
822 if (drvdata
->variant
!= SI5351_VARIANT_C
)
825 val
= SI5351_CLK_INPUT_CLKIN
;
831 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
832 SI5351_CLK_INPUT_MASK
, val
);
836 static int _si5351_clkout_set_drive_strength(
837 struct si5351_driver_data
*drvdata
, int num
,
838 enum si5351_drive_strength drive
)
846 case SI5351_DRIVE_2MA
:
847 mask
= SI5351_CLK_DRIVE_STRENGTH_2MA
;
849 case SI5351_DRIVE_4MA
:
850 mask
= SI5351_CLK_DRIVE_STRENGTH_4MA
;
852 case SI5351_DRIVE_6MA
:
853 mask
= SI5351_CLK_DRIVE_STRENGTH_6MA
;
855 case SI5351_DRIVE_8MA
:
856 mask
= SI5351_CLK_DRIVE_STRENGTH_8MA
;
862 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
863 SI5351_CLK_DRIVE_STRENGTH_MASK
, mask
);
867 static int _si5351_clkout_set_disable_state(
868 struct si5351_driver_data
*drvdata
, int num
,
869 enum si5351_disable_state state
)
871 u8 reg
= (num
< 4) ? SI5351_CLK3_0_DISABLE_STATE
:
872 SI5351_CLK7_4_DISABLE_STATE
;
873 u8 shift
= (num
< 4) ? (2 * num
) : (2 * (num
-4));
874 u8 mask
= SI5351_CLK_DISABLE_STATE_MASK
<< shift
;
881 case SI5351_DISABLE_LOW
:
882 val
= SI5351_CLK_DISABLE_STATE_LOW
;
884 case SI5351_DISABLE_HIGH
:
885 val
= SI5351_CLK_DISABLE_STATE_HIGH
;
887 case SI5351_DISABLE_FLOATING
:
888 val
= SI5351_CLK_DISABLE_STATE_FLOAT
;
890 case SI5351_DISABLE_NEVER
:
891 val
= SI5351_CLK_DISABLE_STATE_NEVER
;
897 si5351_set_bits(drvdata
, reg
, mask
, val
<< shift
);
902 static void _si5351_clkout_reset_pll(struct si5351_driver_data
*drvdata
, int num
)
904 u8 val
= si5351_reg_read(drvdata
, SI5351_CLK0_CTRL
+ num
);
905 u8 mask
= val
& SI5351_CLK_PLL_SELECT
? SI5351_PLL_RESET_B
:
910 switch (val
& SI5351_CLK_INPUT_MASK
) {
911 case SI5351_CLK_INPUT_XTAL
:
912 case SI5351_CLK_INPUT_CLKIN
:
913 return; /* pll not used, no need to reset */
916 si5351_reg_write(drvdata
, SI5351_PLL_RESET
, mask
);
918 err
= regmap_read_poll_timeout(drvdata
->regmap
, SI5351_PLL_RESET
, v
,
919 !(v
& mask
), 0, 20000);
921 dev_err(&drvdata
->client
->dev
, "Reset bit didn't clear\n");
923 dev_dbg(&drvdata
->client
->dev
, "%s - %s: pll = %d\n",
924 __func__
, clk_hw_get_name(&drvdata
->clkout
[num
].hw
),
925 (val
& SI5351_CLK_PLL_SELECT
) ? 1 : 0);
928 static int si5351_clkout_prepare(struct clk_hw
*hw
)
930 struct si5351_hw_data
*hwdata
=
931 container_of(hw
, struct si5351_hw_data
, hw
);
932 struct si5351_platform_data
*pdata
=
933 hwdata
->drvdata
->client
->dev
.platform_data
;
935 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
936 SI5351_CLK_POWERDOWN
, 0);
939 * Do a pll soft reset on the parent pll -- needed to get a
940 * deterministic phase relationship between the output clocks.
942 if (pdata
->clkout
[hwdata
->num
].pll_reset
)
943 _si5351_clkout_reset_pll(hwdata
->drvdata
, hwdata
->num
);
945 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
946 (1 << hwdata
->num
), 0);
950 static void si5351_clkout_unprepare(struct clk_hw
*hw
)
952 struct si5351_hw_data
*hwdata
=
953 container_of(hw
, struct si5351_hw_data
, hw
);
955 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
956 SI5351_CLK_POWERDOWN
, SI5351_CLK_POWERDOWN
);
957 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
958 (1 << hwdata
->num
), (1 << hwdata
->num
));
961 static u8
si5351_clkout_get_parent(struct clk_hw
*hw
)
963 struct si5351_hw_data
*hwdata
=
964 container_of(hw
, struct si5351_hw_data
, hw
);
968 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
969 switch (val
& SI5351_CLK_INPUT_MASK
) {
970 case SI5351_CLK_INPUT_MULTISYNTH_N
:
973 case SI5351_CLK_INPUT_MULTISYNTH_0_4
:
976 case SI5351_CLK_INPUT_XTAL
:
979 case SI5351_CLK_INPUT_CLKIN
:
987 static int si5351_clkout_set_parent(struct clk_hw
*hw
, u8 index
)
989 struct si5351_hw_data
*hwdata
=
990 container_of(hw
, struct si5351_hw_data
, hw
);
991 enum si5351_clkout_src parent
= SI5351_CLKOUT_SRC_DEFAULT
;
995 parent
= SI5351_CLKOUT_SRC_MSYNTH_N
;
998 parent
= SI5351_CLKOUT_SRC_MSYNTH_0_4
;
1001 parent
= SI5351_CLKOUT_SRC_XTAL
;
1004 parent
= SI5351_CLKOUT_SRC_CLKIN
;
1008 return _si5351_clkout_reparent(hwdata
->drvdata
, hwdata
->num
, parent
);
1011 static unsigned long si5351_clkout_recalc_rate(struct clk_hw
*hw
,
1012 unsigned long parent_rate
)
1014 struct si5351_hw_data
*hwdata
=
1015 container_of(hw
, struct si5351_hw_data
, hw
);
1019 if (hwdata
->num
<= 5)
1020 reg
= si5351_msynth_params_address(hwdata
->num
) + 2;
1022 reg
= SI5351_CLK6_7_OUTPUT_DIVIDER
;
1024 rdiv
= si5351_reg_read(hwdata
->drvdata
, reg
);
1025 if (hwdata
->num
== 6) {
1026 rdiv
&= SI5351_OUTPUT_CLK6_DIV_MASK
;
1028 rdiv
&= SI5351_OUTPUT_CLK_DIV_MASK
;
1029 rdiv
>>= SI5351_OUTPUT_CLK_DIV_SHIFT
;
1032 return parent_rate
>> rdiv
;
1035 static long si5351_clkout_round_rate(struct clk_hw
*hw
, unsigned long rate
,
1036 unsigned long *parent_rate
)
1038 struct si5351_hw_data
*hwdata
=
1039 container_of(hw
, struct si5351_hw_data
, hw
);
1042 /* clkout6/7 can only handle output freqencies < 150MHz */
1043 if (hwdata
->num
>= 6 && rate
> SI5351_CLKOUT67_MAX_FREQ
)
1044 rate
= SI5351_CLKOUT67_MAX_FREQ
;
1046 /* clkout freqency is 8kHz - 160MHz */
1047 if (rate
> SI5351_CLKOUT_MAX_FREQ
)
1048 rate
= SI5351_CLKOUT_MAX_FREQ
;
1049 if (rate
< SI5351_CLKOUT_MIN_FREQ
)
1050 rate
= SI5351_CLKOUT_MIN_FREQ
;
1052 /* request frequency if multisync master */
1053 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
1054 /* use r divider for frequencies below 1MHz */
1055 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1056 while (rate
< SI5351_MULTISYNTH_MIN_FREQ
&&
1057 rdiv
< SI5351_OUTPUT_CLK_DIV_128
) {
1061 *parent_rate
= rate
;
1063 unsigned long new_rate
, new_err
, err
;
1065 /* round to closed rdiv */
1066 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1067 new_rate
= *parent_rate
;
1068 err
= abs(new_rate
- rate
);
1071 new_err
= abs(new_rate
- rate
);
1072 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1078 rate
= *parent_rate
>> rdiv
;
1080 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1081 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1082 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1083 *parent_rate
, rate
);
1088 static int si5351_clkout_set_rate(struct clk_hw
*hw
, unsigned long rate
,
1089 unsigned long parent_rate
)
1091 struct si5351_hw_data
*hwdata
=
1092 container_of(hw
, struct si5351_hw_data
, hw
);
1093 unsigned long new_rate
, new_err
, err
;
1096 /* round to closed rdiv */
1097 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1098 new_rate
= parent_rate
;
1099 err
= abs(new_rate
- rate
);
1102 new_err
= abs(new_rate
- rate
);
1103 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1109 /* write output divider */
1110 switch (hwdata
->num
) {
1112 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1113 SI5351_OUTPUT_CLK6_DIV_MASK
, rdiv
);
1116 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1117 SI5351_OUTPUT_CLK_DIV_MASK
,
1118 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1121 si5351_set_bits(hwdata
->drvdata
,
1122 si5351_msynth_params_address(hwdata
->num
) + 2,
1123 SI5351_OUTPUT_CLK_DIV_MASK
,
1124 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1127 /* powerup clkout */
1128 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
1129 SI5351_CLK_POWERDOWN
, 0);
1131 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1132 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1133 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1139 static const struct clk_ops si5351_clkout_ops
= {
1140 .prepare
= si5351_clkout_prepare
,
1141 .unprepare
= si5351_clkout_unprepare
,
1142 .set_parent
= si5351_clkout_set_parent
,
1143 .get_parent
= si5351_clkout_get_parent
,
1144 .recalc_rate
= si5351_clkout_recalc_rate
,
1145 .round_rate
= si5351_clkout_round_rate
,
1146 .set_rate
= si5351_clkout_set_rate
,
1150 * Si5351 i2c probe and DT
1153 static const struct of_device_id si5351_dt_ids
[] = {
1154 { .compatible
= "silabs,si5351a", .data
= (void *)SI5351_VARIANT_A
, },
1155 { .compatible
= "silabs,si5351a-msop",
1156 .data
= (void *)SI5351_VARIANT_A3
, },
1157 { .compatible
= "silabs,si5351b", .data
= (void *)SI5351_VARIANT_B
, },
1158 { .compatible
= "silabs,si5351c", .data
= (void *)SI5351_VARIANT_C
, },
1161 MODULE_DEVICE_TABLE(of
, si5351_dt_ids
);
1163 static int si5351_dt_parse(struct i2c_client
*client
,
1164 enum si5351_variant variant
)
1166 struct device_node
*child
, *np
= client
->dev
.of_node
;
1167 struct si5351_platform_data
*pdata
;
1168 struct property
*prop
;
1176 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1181 * property silabs,pll-source : <num src>, [<..>]
1182 * allow to selectively set pll source
1184 of_property_for_each_u32(np
, "silabs,pll-source", prop
, p
, num
) {
1186 dev_err(&client
->dev
,
1187 "invalid pll %d on pll-source prop\n", num
);
1191 p
= of_prop_next_u32(prop
, p
, &val
);
1193 dev_err(&client
->dev
,
1194 "missing pll-source for pll %d\n", num
);
1200 pdata
->pll_src
[num
] = SI5351_PLL_SRC_XTAL
;
1203 if (variant
!= SI5351_VARIANT_C
) {
1204 dev_err(&client
->dev
,
1205 "invalid parent %d for pll %d\n",
1209 pdata
->pll_src
[num
] = SI5351_PLL_SRC_CLKIN
;
1212 dev_err(&client
->dev
,
1213 "invalid parent %d for pll %d\n", val
, num
);
1218 /* per clkout properties */
1219 for_each_child_of_node(np
, child
) {
1220 if (of_property_read_u32(child
, "reg", &num
)) {
1221 dev_err(&client
->dev
, "missing reg property of %pOFn\n",
1227 (variant
== SI5351_VARIANT_A3
&& num
>= 3)) {
1228 dev_err(&client
->dev
, "invalid clkout %d\n", num
);
1232 if (!of_property_read_u32(child
, "silabs,multisynth-source",
1236 pdata
->clkout
[num
].multisynth_src
=
1237 SI5351_MULTISYNTH_SRC_VCO0
;
1240 pdata
->clkout
[num
].multisynth_src
=
1241 SI5351_MULTISYNTH_SRC_VCO1
;
1244 dev_err(&client
->dev
,
1245 "invalid parent %d for multisynth %d\n",
1251 if (!of_property_read_u32(child
, "silabs,clock-source", &val
)) {
1254 pdata
->clkout
[num
].clkout_src
=
1255 SI5351_CLKOUT_SRC_MSYNTH_N
;
1258 pdata
->clkout
[num
].clkout_src
=
1259 SI5351_CLKOUT_SRC_MSYNTH_0_4
;
1262 pdata
->clkout
[num
].clkout_src
=
1263 SI5351_CLKOUT_SRC_XTAL
;
1266 if (variant
!= SI5351_VARIANT_C
) {
1267 dev_err(&client
->dev
,
1268 "invalid parent %d for clkout %d\n",
1272 pdata
->clkout
[num
].clkout_src
=
1273 SI5351_CLKOUT_SRC_CLKIN
;
1276 dev_err(&client
->dev
,
1277 "invalid parent %d for clkout %d\n",
1283 if (!of_property_read_u32(child
, "silabs,drive-strength",
1286 case SI5351_DRIVE_2MA
:
1287 case SI5351_DRIVE_4MA
:
1288 case SI5351_DRIVE_6MA
:
1289 case SI5351_DRIVE_8MA
:
1290 pdata
->clkout
[num
].drive
= val
;
1293 dev_err(&client
->dev
,
1294 "invalid drive strength %d for clkout %d\n",
1300 if (!of_property_read_u32(child
, "silabs,disable-state",
1304 pdata
->clkout
[num
].disable_state
=
1308 pdata
->clkout
[num
].disable_state
=
1309 SI5351_DISABLE_HIGH
;
1312 pdata
->clkout
[num
].disable_state
=
1313 SI5351_DISABLE_FLOATING
;
1316 pdata
->clkout
[num
].disable_state
=
1317 SI5351_DISABLE_NEVER
;
1320 dev_err(&client
->dev
,
1321 "invalid disable state %d for clkout %d\n",
1327 if (!of_property_read_u32(child
, "clock-frequency", &val
))
1328 pdata
->clkout
[num
].rate
= val
;
1330 pdata
->clkout
[num
].pll_master
=
1331 of_property_read_bool(child
, "silabs,pll-master");
1333 pdata
->clkout
[num
].pll_reset
=
1334 of_property_read_bool(child
, "silabs,pll-reset");
1336 client
->dev
.platform_data
= pdata
;
1344 static struct clk_hw
*
1345 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1347 struct si5351_driver_data
*drvdata
= data
;
1348 unsigned int idx
= clkspec
->args
[0];
1350 if (idx
>= drvdata
->num_clkout
) {
1351 pr_err("%s: invalid index %u\n", __func__
, idx
);
1352 return ERR_PTR(-EINVAL
);
1355 return &drvdata
->clkout
[idx
].hw
;
1358 static int si5351_dt_parse(struct i2c_client
*client
, enum si5351_variant variant
)
1363 static struct clk_hw
*
1364 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1368 #endif /* CONFIG_OF */
1370 static int si5351_i2c_probe(struct i2c_client
*client
,
1371 const struct i2c_device_id
*id
)
1373 enum si5351_variant variant
= (enum si5351_variant
)id
->driver_data
;
1374 struct si5351_platform_data
*pdata
;
1375 struct si5351_driver_data
*drvdata
;
1376 struct clk_init_data init
;
1377 const char *parent_names
[4];
1378 u8 num_parents
, num_clocks
;
1381 ret
= si5351_dt_parse(client
, variant
);
1385 pdata
= client
->dev
.platform_data
;
1389 drvdata
= devm_kzalloc(&client
->dev
, sizeof(*drvdata
), GFP_KERNEL
);
1393 i2c_set_clientdata(client
, drvdata
);
1394 drvdata
->client
= client
;
1395 drvdata
->variant
= variant
;
1396 drvdata
->pxtal
= devm_clk_get(&client
->dev
, "xtal");
1397 drvdata
->pclkin
= devm_clk_get(&client
->dev
, "clkin");
1399 if (PTR_ERR(drvdata
->pxtal
) == -EPROBE_DEFER
||
1400 PTR_ERR(drvdata
->pclkin
) == -EPROBE_DEFER
)
1401 return -EPROBE_DEFER
;
1404 * Check for valid parent clock: VARIANT_A and VARIANT_B need XTAL,
1405 * VARIANT_C can have CLKIN instead.
1407 if (IS_ERR(drvdata
->pxtal
) &&
1408 (drvdata
->variant
!= SI5351_VARIANT_C
|| IS_ERR(drvdata
->pclkin
))) {
1409 dev_err(&client
->dev
, "missing parent clock\n");
1413 drvdata
->regmap
= devm_regmap_init_i2c(client
, &si5351_regmap_config
);
1414 if (IS_ERR(drvdata
->regmap
)) {
1415 dev_err(&client
->dev
, "failed to allocate register map\n");
1416 return PTR_ERR(drvdata
->regmap
);
1419 /* Disable interrupts */
1420 si5351_reg_write(drvdata
, SI5351_INTERRUPT_MASK
, 0xf0);
1421 /* Ensure pll select is on XTAL for Si5351A/B */
1422 if (drvdata
->variant
!= SI5351_VARIANT_C
)
1423 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
,
1424 SI5351_PLLA_SOURCE
| SI5351_PLLB_SOURCE
, 0);
1426 /* setup clock configuration */
1427 for (n
= 0; n
< 2; n
++) {
1428 ret
= _si5351_pll_reparent(drvdata
, n
, pdata
->pll_src
[n
]);
1430 dev_err(&client
->dev
,
1431 "failed to reparent pll %d to %d\n",
1432 n
, pdata
->pll_src
[n
]);
1437 for (n
= 0; n
< 8; n
++) {
1438 ret
= _si5351_msynth_reparent(drvdata
, n
,
1439 pdata
->clkout
[n
].multisynth_src
);
1441 dev_err(&client
->dev
,
1442 "failed to reparent multisynth %d to %d\n",
1443 n
, pdata
->clkout
[n
].multisynth_src
);
1447 ret
= _si5351_clkout_reparent(drvdata
, n
,
1448 pdata
->clkout
[n
].clkout_src
);
1450 dev_err(&client
->dev
,
1451 "failed to reparent clkout %d to %d\n",
1452 n
, pdata
->clkout
[n
].clkout_src
);
1456 ret
= _si5351_clkout_set_drive_strength(drvdata
, n
,
1457 pdata
->clkout
[n
].drive
);
1459 dev_err(&client
->dev
,
1460 "failed set drive strength of clkout%d to %d\n",
1461 n
, pdata
->clkout
[n
].drive
);
1465 ret
= _si5351_clkout_set_disable_state(drvdata
, n
,
1466 pdata
->clkout
[n
].disable_state
);
1468 dev_err(&client
->dev
,
1469 "failed set disable state of clkout%d to %d\n",
1470 n
, pdata
->clkout
[n
].disable_state
);
1475 /* register xtal input clock gate */
1476 memset(&init
, 0, sizeof(init
));
1477 init
.name
= si5351_input_names
[0];
1478 init
.ops
= &si5351_xtal_ops
;
1480 if (!IS_ERR(drvdata
->pxtal
)) {
1481 drvdata
->pxtal_name
= __clk_get_name(drvdata
->pxtal
);
1482 init
.parent_names
= &drvdata
->pxtal_name
;
1483 init
.num_parents
= 1;
1485 drvdata
->xtal
.init
= &init
;
1486 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->xtal
);
1488 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1492 /* register clkin input clock gate */
1493 if (drvdata
->variant
== SI5351_VARIANT_C
) {
1494 memset(&init
, 0, sizeof(init
));
1495 init
.name
= si5351_input_names
[1];
1496 init
.ops
= &si5351_clkin_ops
;
1497 if (!IS_ERR(drvdata
->pclkin
)) {
1498 drvdata
->pclkin_name
= __clk_get_name(drvdata
->pclkin
);
1499 init
.parent_names
= &drvdata
->pclkin_name
;
1500 init
.num_parents
= 1;
1502 drvdata
->clkin
.init
= &init
;
1503 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->clkin
);
1505 dev_err(&client
->dev
, "unable to register %s\n",
1511 /* Si5351C allows to mux either xtal or clkin to PLL input */
1512 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 2 : 1;
1513 parent_names
[0] = si5351_input_names
[0];
1514 parent_names
[1] = si5351_input_names
[1];
1517 drvdata
->pll
[0].num
= 0;
1518 drvdata
->pll
[0].drvdata
= drvdata
;
1519 drvdata
->pll
[0].hw
.init
= &init
;
1520 memset(&init
, 0, sizeof(init
));
1521 init
.name
= si5351_pll_names
[0];
1522 init
.ops
= &si5351_pll_ops
;
1524 init
.parent_names
= parent_names
;
1525 init
.num_parents
= num_parents
;
1526 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[0].hw
);
1528 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1532 /* register PLLB or VXCO (Si5351B) */
1533 drvdata
->pll
[1].num
= 1;
1534 drvdata
->pll
[1].drvdata
= drvdata
;
1535 drvdata
->pll
[1].hw
.init
= &init
;
1536 memset(&init
, 0, sizeof(init
));
1537 if (drvdata
->variant
== SI5351_VARIANT_B
) {
1538 init
.name
= si5351_pll_names
[2];
1539 init
.ops
= &si5351_vxco_ops
;
1541 init
.parent_names
= NULL
;
1542 init
.num_parents
= 0;
1544 init
.name
= si5351_pll_names
[1];
1545 init
.ops
= &si5351_pll_ops
;
1547 init
.parent_names
= parent_names
;
1548 init
.num_parents
= num_parents
;
1550 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[1].hw
);
1552 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1556 /* register clk multisync and clk out divider */
1557 num_clocks
= (drvdata
->variant
== SI5351_VARIANT_A3
) ? 3 : 8;
1558 parent_names
[0] = si5351_pll_names
[0];
1559 if (drvdata
->variant
== SI5351_VARIANT_B
)
1560 parent_names
[1] = si5351_pll_names
[2];
1562 parent_names
[1] = si5351_pll_names
[1];
1564 drvdata
->msynth
= devm_kcalloc(&client
->dev
, num_clocks
,
1565 sizeof(*drvdata
->msynth
), GFP_KERNEL
);
1566 drvdata
->clkout
= devm_kcalloc(&client
->dev
, num_clocks
,
1567 sizeof(*drvdata
->clkout
), GFP_KERNEL
);
1568 drvdata
->num_clkout
= num_clocks
;
1570 if (WARN_ON(!drvdata
->msynth
|| !drvdata
->clkout
)) {
1575 for (n
= 0; n
< num_clocks
; n
++) {
1576 drvdata
->msynth
[n
].num
= n
;
1577 drvdata
->msynth
[n
].drvdata
= drvdata
;
1578 drvdata
->msynth
[n
].hw
.init
= &init
;
1579 memset(&init
, 0, sizeof(init
));
1580 init
.name
= si5351_msynth_names
[n
];
1581 init
.ops
= &si5351_msynth_ops
;
1583 if (pdata
->clkout
[n
].pll_master
)
1584 init
.flags
|= CLK_SET_RATE_PARENT
;
1585 init
.parent_names
= parent_names
;
1586 init
.num_parents
= 2;
1587 ret
= devm_clk_hw_register(&client
->dev
,
1588 &drvdata
->msynth
[n
].hw
);
1590 dev_err(&client
->dev
, "unable to register %s\n",
1596 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 4 : 3;
1597 parent_names
[2] = si5351_input_names
[0];
1598 parent_names
[3] = si5351_input_names
[1];
1599 for (n
= 0; n
< num_clocks
; n
++) {
1600 parent_names
[0] = si5351_msynth_names
[n
];
1601 parent_names
[1] = (n
< 4) ? si5351_msynth_names
[0] :
1602 si5351_msynth_names
[4];
1604 drvdata
->clkout
[n
].num
= n
;
1605 drvdata
->clkout
[n
].drvdata
= drvdata
;
1606 drvdata
->clkout
[n
].hw
.init
= &init
;
1607 memset(&init
, 0, sizeof(init
));
1608 init
.name
= si5351_clkout_names
[n
];
1609 init
.ops
= &si5351_clkout_ops
;
1611 if (pdata
->clkout
[n
].clkout_src
== SI5351_CLKOUT_SRC_MSYNTH_N
)
1612 init
.flags
|= CLK_SET_RATE_PARENT
;
1613 init
.parent_names
= parent_names
;
1614 init
.num_parents
= num_parents
;
1615 ret
= devm_clk_hw_register(&client
->dev
,
1616 &drvdata
->clkout
[n
].hw
);
1618 dev_err(&client
->dev
, "unable to register %s\n",
1623 /* set initial clkout rate */
1624 if (pdata
->clkout
[n
].rate
!= 0) {
1626 ret
= clk_set_rate(drvdata
->clkout
[n
].hw
.clk
,
1627 pdata
->clkout
[n
].rate
);
1629 dev_err(&client
->dev
, "Cannot set rate : %d\n",
1635 ret
= of_clk_add_hw_provider(client
->dev
.of_node
, si53351_of_clk_get
,
1638 dev_err(&client
->dev
, "unable to add clk provider\n");
1645 static int si5351_i2c_remove(struct i2c_client
*client
)
1647 of_clk_del_provider(client
->dev
.of_node
);
1652 static const struct i2c_device_id si5351_i2c_ids
[] = {
1653 { "si5351a", SI5351_VARIANT_A
},
1654 { "si5351a-msop", SI5351_VARIANT_A3
},
1655 { "si5351b", SI5351_VARIANT_B
},
1656 { "si5351c", SI5351_VARIANT_C
},
1659 MODULE_DEVICE_TABLE(i2c
, si5351_i2c_ids
);
1661 static struct i2c_driver si5351_driver
= {
1664 .of_match_table
= of_match_ptr(si5351_dt_ids
),
1666 .probe
= si5351_i2c_probe
,
1667 .remove
= si5351_i2c_remove
,
1668 .id_table
= si5351_i2c_ids
,
1670 module_i2c_driver(si5351_driver
);
1672 MODULE_AUTHOR("Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com");
1673 MODULE_DESCRIPTION("Silicon Labs Si5351A/B/C clock generator driver");
1674 MODULE_LICENSE("GPL");