2 * clk-si5351.c: Silicon Laboratories Si5351A/B/C I2C Clock Generator
4 * Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
5 * Rabeeh Khoury <rabeeh@solid-run.com>
8 * [1] "Si5351A/B/C Data Sheet"
9 * http://www.silabs.com/Support%20Documents/TechnicalDocs/Si5351.pdf
10 * [2] "Manually Generating an Si5351 Register Map"
11 * http://www.silabs.com/Support%20Documents/TechnicalDocs/AN619.pdf
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 #include <linux/module.h>
20 #include <linux/kernel.h>
21 #include <linux/clk.h>
22 #include <linux/clk-provider.h>
23 #include <linux/delay.h>
24 #include <linux/err.h>
25 #include <linux/errno.h>
26 #include <linux/rational.h>
27 #include <linux/i2c.h>
28 #include <linux/of_platform.h>
29 #include <linux/platform_data/si5351.h>
30 #include <linux/regmap.h>
31 #include <linux/slab.h>
32 #include <linux/string.h>
33 #include <asm/div64.h>
35 #include "clk-si5351.h"
37 struct si5351_driver_data
;
39 struct si5351_parameters
{
46 struct si5351_hw_data
{
48 struct si5351_driver_data
*drvdata
;
49 struct si5351_parameters params
;
53 struct si5351_driver_data
{
54 enum si5351_variant variant
;
55 struct i2c_client
*client
;
56 struct regmap
*regmap
;
59 const char *pxtal_name
;
62 const char *pclkin_name
;
65 struct si5351_hw_data pll
[2];
66 struct si5351_hw_data
*msynth
;
67 struct si5351_hw_data
*clkout
;
71 static const char * const si5351_input_names
[] = {
74 static const char * const si5351_pll_names
[] = {
75 "plla", "pllb", "vxco"
77 static const char * const si5351_msynth_names
[] = {
78 "ms0", "ms1", "ms2", "ms3", "ms4", "ms5", "ms6", "ms7"
80 static const char * const si5351_clkout_names
[] = {
81 "clk0", "clk1", "clk2", "clk3", "clk4", "clk5", "clk6", "clk7"
87 static inline u8
si5351_reg_read(struct si5351_driver_data
*drvdata
, u8 reg
)
92 ret
= regmap_read(drvdata
->regmap
, reg
, &val
);
94 dev_err(&drvdata
->client
->dev
,
95 "unable to read from reg%02x\n", reg
);
102 static inline int si5351_bulk_read(struct si5351_driver_data
*drvdata
,
103 u8 reg
, u8 count
, u8
*buf
)
105 return regmap_bulk_read(drvdata
->regmap
, reg
, buf
, count
);
108 static inline int si5351_reg_write(struct si5351_driver_data
*drvdata
,
111 return regmap_write(drvdata
->regmap
, reg
, val
);
114 static inline int si5351_bulk_write(struct si5351_driver_data
*drvdata
,
115 u8 reg
, u8 count
, const u8
*buf
)
117 return regmap_raw_write(drvdata
->regmap
, reg
, buf
, count
);
120 static inline int si5351_set_bits(struct si5351_driver_data
*drvdata
,
121 u8 reg
, u8 mask
, u8 val
)
123 return regmap_update_bits(drvdata
->regmap
, reg
, mask
, val
);
126 static inline u8
si5351_msynth_params_address(int num
)
129 return SI5351_CLK6_PARAMETERS
+ (num
- 6);
130 return SI5351_CLK0_PARAMETERS
+ (SI5351_PARAMETERS_LENGTH
* num
);
133 static void si5351_read_parameters(struct si5351_driver_data
*drvdata
,
134 u8 reg
, struct si5351_parameters
*params
)
136 u8 buf
[SI5351_PARAMETERS_LENGTH
];
139 case SI5351_CLK6_PARAMETERS
:
140 case SI5351_CLK7_PARAMETERS
:
141 buf
[0] = si5351_reg_read(drvdata
, reg
);
147 si5351_bulk_read(drvdata
, reg
, SI5351_PARAMETERS_LENGTH
, buf
);
148 params
->p1
= ((buf
[2] & 0x03) << 16) | (buf
[3] << 8) | buf
[4];
149 params
->p2
= ((buf
[5] & 0x0f) << 16) | (buf
[6] << 8) | buf
[7];
150 params
->p3
= ((buf
[5] & 0xf0) << 12) | (buf
[0] << 8) | buf
[1];
155 static void si5351_write_parameters(struct si5351_driver_data
*drvdata
,
156 u8 reg
, struct si5351_parameters
*params
)
158 u8 buf
[SI5351_PARAMETERS_LENGTH
];
161 case SI5351_CLK6_PARAMETERS
:
162 case SI5351_CLK7_PARAMETERS
:
163 buf
[0] = params
->p1
& 0xff;
164 si5351_reg_write(drvdata
, reg
, buf
[0]);
167 buf
[0] = ((params
->p3
& 0x0ff00) >> 8) & 0xff;
168 buf
[1] = params
->p3
& 0xff;
169 /* save rdiv and divby4 */
170 buf
[2] = si5351_reg_read(drvdata
, reg
+ 2) & ~0x03;
171 buf
[2] |= ((params
->p1
& 0x30000) >> 16) & 0x03;
172 buf
[3] = ((params
->p1
& 0x0ff00) >> 8) & 0xff;
173 buf
[4] = params
->p1
& 0xff;
174 buf
[5] = ((params
->p3
& 0xf0000) >> 12) |
175 ((params
->p2
& 0xf0000) >> 16);
176 buf
[6] = ((params
->p2
& 0x0ff00) >> 8) & 0xff;
177 buf
[7] = params
->p2
& 0xff;
178 si5351_bulk_write(drvdata
, reg
, SI5351_PARAMETERS_LENGTH
, buf
);
182 static bool si5351_regmap_is_volatile(struct device
*dev
, unsigned int reg
)
185 case SI5351_DEVICE_STATUS
:
186 case SI5351_INTERRUPT_STATUS
:
187 case SI5351_PLL_RESET
:
193 static bool si5351_regmap_is_writeable(struct device
*dev
, unsigned int reg
)
195 /* reserved registers */
196 if (reg
>= 4 && reg
<= 8)
198 if (reg
>= 10 && reg
<= 14)
200 if (reg
>= 173 && reg
<= 176)
202 if (reg
>= 178 && reg
<= 182)
205 if (reg
== SI5351_DEVICE_STATUS
)
210 static const struct regmap_config si5351_regmap_config
= {
213 .cache_type
= REGCACHE_RBTREE
,
215 .writeable_reg
= si5351_regmap_is_writeable
,
216 .volatile_reg
= si5351_regmap_is_volatile
,
220 * Si5351 xtal clock input
222 static int si5351_xtal_prepare(struct clk_hw
*hw
)
224 struct si5351_driver_data
*drvdata
=
225 container_of(hw
, struct si5351_driver_data
, xtal
);
226 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
227 SI5351_XTAL_ENABLE
, SI5351_XTAL_ENABLE
);
231 static void si5351_xtal_unprepare(struct clk_hw
*hw
)
233 struct si5351_driver_data
*drvdata
=
234 container_of(hw
, struct si5351_driver_data
, xtal
);
235 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
236 SI5351_XTAL_ENABLE
, 0);
239 static const struct clk_ops si5351_xtal_ops
= {
240 .prepare
= si5351_xtal_prepare
,
241 .unprepare
= si5351_xtal_unprepare
,
245 * Si5351 clkin clock input (Si5351C only)
247 static int si5351_clkin_prepare(struct clk_hw
*hw
)
249 struct si5351_driver_data
*drvdata
=
250 container_of(hw
, struct si5351_driver_data
, clkin
);
251 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
252 SI5351_CLKIN_ENABLE
, SI5351_CLKIN_ENABLE
);
256 static void si5351_clkin_unprepare(struct clk_hw
*hw
)
258 struct si5351_driver_data
*drvdata
=
259 container_of(hw
, struct si5351_driver_data
, clkin
);
260 si5351_set_bits(drvdata
, SI5351_FANOUT_ENABLE
,
261 SI5351_CLKIN_ENABLE
, 0);
265 * CMOS clock source constraints:
266 * The input frequency range of the PLL is 10Mhz to 40MHz.
267 * If CLKIN is >40MHz, the input divider must be used.
269 static unsigned long si5351_clkin_recalc_rate(struct clk_hw
*hw
,
270 unsigned long parent_rate
)
272 struct si5351_driver_data
*drvdata
=
273 container_of(hw
, struct si5351_driver_data
, clkin
);
278 if (parent_rate
> 160000000) {
279 idiv
= SI5351_CLKIN_DIV_8
;
281 } else if (parent_rate
> 80000000) {
282 idiv
= SI5351_CLKIN_DIV_4
;
284 } else if (parent_rate
> 40000000) {
285 idiv
= SI5351_CLKIN_DIV_2
;
288 idiv
= SI5351_CLKIN_DIV_1
;
291 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
,
292 SI5351_CLKIN_DIV_MASK
, idiv
);
294 dev_dbg(&drvdata
->client
->dev
, "%s - clkin div = %d, rate = %lu\n",
295 __func__
, (1 << (idiv
>> 6)), rate
);
300 static const struct clk_ops si5351_clkin_ops
= {
301 .prepare
= si5351_clkin_prepare
,
302 .unprepare
= si5351_clkin_unprepare
,
303 .recalc_rate
= si5351_clkin_recalc_rate
,
307 * Si5351 vxco clock input (Si5351B only)
310 static int si5351_vxco_prepare(struct clk_hw
*hw
)
312 struct si5351_hw_data
*hwdata
=
313 container_of(hw
, struct si5351_hw_data
, hw
);
315 dev_warn(&hwdata
->drvdata
->client
->dev
, "VXCO currently unsupported\n");
320 static void si5351_vxco_unprepare(struct clk_hw
*hw
)
324 static unsigned long si5351_vxco_recalc_rate(struct clk_hw
*hw
,
325 unsigned long parent_rate
)
330 static int si5351_vxco_set_rate(struct clk_hw
*hw
, unsigned long rate
,
331 unsigned long parent
)
336 static const struct clk_ops si5351_vxco_ops
= {
337 .prepare
= si5351_vxco_prepare
,
338 .unprepare
= si5351_vxco_unprepare
,
339 .recalc_rate
= si5351_vxco_recalc_rate
,
340 .set_rate
= si5351_vxco_set_rate
,
346 * Feedback Multisynth Divider Equations [2]
348 * fVCO = fIN * (a + b/c)
350 * with 15 + 0/1048575 <= (a + b/c) <= 90 + 0/1048575 and
351 * fIN = fXTAL or fIN = fCLKIN/CLKIN_DIV
353 * Feedback Multisynth Register Equations
355 * (1) MSNx_P1[17:0] = 128 * a + floor(128 * b/c) - 512
356 * (2) MSNx_P2[19:0] = 128 * b - c * floor(128 * b/c) = (128*b) mod c
357 * (3) MSNx_P3[19:0] = c
359 * Transposing (2) yields: (4) floor(128 * b/c) = (128 * b / MSNx_P2)/c
361 * Using (4) on (1) yields:
362 * MSNx_P1 = 128 * a + (128 * b/MSNx_P2)/c - 512
363 * MSNx_P1 + 512 + MSNx_P2/c = 128 * a + 128 * b/c
365 * a + b/c = (MSNx_P1 + MSNx_P2/MSNx_P3 + 512)/128
366 * = (MSNx_P1*MSNx_P3 + MSNx_P2 + 512*MSNx_P3)/(128*MSNx_P3)
369 static int _si5351_pll_reparent(struct si5351_driver_data
*drvdata
,
370 int num
, enum si5351_pll_src parent
)
372 u8 mask
= (num
== 0) ? SI5351_PLLA_SOURCE
: SI5351_PLLB_SOURCE
;
374 if (parent
== SI5351_PLL_SRC_DEFAULT
)
380 if (drvdata
->variant
!= SI5351_VARIANT_C
&&
381 parent
!= SI5351_PLL_SRC_XTAL
)
384 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
, mask
,
385 (parent
== SI5351_PLL_SRC_XTAL
) ? 0 : mask
);
389 static unsigned char si5351_pll_get_parent(struct clk_hw
*hw
)
391 struct si5351_hw_data
*hwdata
=
392 container_of(hw
, struct si5351_hw_data
, hw
);
393 u8 mask
= (hwdata
->num
== 0) ? SI5351_PLLA_SOURCE
: SI5351_PLLB_SOURCE
;
396 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_PLL_INPUT_SOURCE
);
398 return (val
& mask
) ? 1 : 0;
401 static int si5351_pll_set_parent(struct clk_hw
*hw
, u8 index
)
403 struct si5351_hw_data
*hwdata
=
404 container_of(hw
, struct si5351_hw_data
, hw
);
406 if (hwdata
->drvdata
->variant
!= SI5351_VARIANT_C
&&
413 return _si5351_pll_reparent(hwdata
->drvdata
, hwdata
->num
,
414 (index
== 0) ? SI5351_PLL_SRC_XTAL
:
415 SI5351_PLL_SRC_CLKIN
);
418 static unsigned long si5351_pll_recalc_rate(struct clk_hw
*hw
,
419 unsigned long parent_rate
)
421 struct si5351_hw_data
*hwdata
=
422 container_of(hw
, struct si5351_hw_data
, hw
);
423 u8 reg
= (hwdata
->num
== 0) ? SI5351_PLLA_PARAMETERS
:
424 SI5351_PLLB_PARAMETERS
;
425 unsigned long long rate
;
427 if (!hwdata
->params
.valid
)
428 si5351_read_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
430 if (hwdata
->params
.p3
== 0)
433 /* fVCO = fIN * (P1*P3 + 512*P3 + P2)/(128*P3) */
434 rate
= hwdata
->params
.p1
* hwdata
->params
.p3
;
435 rate
+= 512 * hwdata
->params
.p3
;
436 rate
+= hwdata
->params
.p2
;
438 do_div(rate
, 128 * hwdata
->params
.p3
);
440 dev_dbg(&hwdata
->drvdata
->client
->dev
,
441 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, parent_rate = %lu, rate = %lu\n",
442 __func__
, clk_hw_get_name(hw
),
443 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
444 parent_rate
, (unsigned long)rate
);
446 return (unsigned long)rate
;
449 static long si5351_pll_round_rate(struct clk_hw
*hw
, unsigned long rate
,
450 unsigned long *parent_rate
)
452 struct si5351_hw_data
*hwdata
=
453 container_of(hw
, struct si5351_hw_data
, hw
);
454 unsigned long rfrac
, denom
, a
, b
, c
;
455 unsigned long long lltmp
;
457 if (rate
< SI5351_PLL_VCO_MIN
)
458 rate
= SI5351_PLL_VCO_MIN
;
459 if (rate
> SI5351_PLL_VCO_MAX
)
460 rate
= SI5351_PLL_VCO_MAX
;
462 /* determine integer part of feedback equation */
463 a
= rate
/ *parent_rate
;
465 if (a
< SI5351_PLL_A_MIN
)
466 rate
= *parent_rate
* SI5351_PLL_A_MIN
;
467 if (a
> SI5351_PLL_A_MAX
)
468 rate
= *parent_rate
* SI5351_PLL_A_MAX
;
470 /* find best approximation for b/c = fVCO mod fIN */
472 lltmp
= rate
% (*parent_rate
);
474 do_div(lltmp
, *parent_rate
);
475 rfrac
= (unsigned long)lltmp
;
480 rational_best_approximation(rfrac
, denom
,
481 SI5351_PLL_B_MAX
, SI5351_PLL_C_MAX
, &b
, &c
);
483 /* calculate parameters */
484 hwdata
->params
.p3
= c
;
485 hwdata
->params
.p2
= (128 * b
) % c
;
486 hwdata
->params
.p1
= 128 * a
;
487 hwdata
->params
.p1
+= (128 * b
/ c
);
488 hwdata
->params
.p1
-= 512;
490 /* recalculate rate by fIN * (a + b/c) */
491 lltmp
= *parent_rate
;
495 rate
= (unsigned long)lltmp
;
496 rate
+= *parent_rate
* a
;
498 dev_dbg(&hwdata
->drvdata
->client
->dev
,
499 "%s - %s: a = %lu, b = %lu, c = %lu, parent_rate = %lu, rate = %lu\n",
500 __func__
, clk_hw_get_name(hw
), a
, b
, c
,
506 static int si5351_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
,
507 unsigned long parent_rate
)
509 struct si5351_hw_data
*hwdata
=
510 container_of(hw
, struct si5351_hw_data
, hw
);
511 u8 reg
= (hwdata
->num
== 0) ? SI5351_PLLA_PARAMETERS
:
512 SI5351_PLLB_PARAMETERS
;
514 /* write multisynth parameters */
515 si5351_write_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
517 /* plla/pllb ctrl is in clk6/clk7 ctrl registers */
518 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_CTRL
+ hwdata
->num
,
519 SI5351_CLK_INTEGER_MODE
,
520 (hwdata
->params
.p2
== 0) ? SI5351_CLK_INTEGER_MODE
: 0);
522 /* Do a pll soft reset on the affected pll */
523 si5351_reg_write(hwdata
->drvdata
, SI5351_PLL_RESET
,
524 hwdata
->num
== 0 ? SI5351_PLL_RESET_A
:
527 dev_dbg(&hwdata
->drvdata
->client
->dev
,
528 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, parent_rate = %lu, rate = %lu\n",
529 __func__
, clk_hw_get_name(hw
),
530 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
536 static const struct clk_ops si5351_pll_ops
= {
537 .set_parent
= si5351_pll_set_parent
,
538 .get_parent
= si5351_pll_get_parent
,
539 .recalc_rate
= si5351_pll_recalc_rate
,
540 .round_rate
= si5351_pll_round_rate
,
541 .set_rate
= si5351_pll_set_rate
,
545 * Si5351 multisync divider
547 * for fOUT <= 150 MHz:
549 * fOUT = (fIN * (a + b/c)) / CLKOUTDIV
551 * with 6 + 0/1048575 <= (a + b/c) <= 1800 + 0/1048575 and
554 * Output Clock Multisynth Register Equations
556 * MSx_P1[17:0] = 128 * a + floor(128 * b/c) - 512
557 * MSx_P2[19:0] = 128 * b - c * floor(128 * b/c) = (128*b) mod c
560 * MS[6,7] are integer (P1) divide only, P1 = divide value,
561 * P2 and P3 are not applicable
563 * for 150MHz < fOUT <= 160MHz:
565 * MSx_P1 = 0, MSx_P2 = 0, MSx_P3 = 1, MSx_INT = 1, MSx_DIVBY4 = 11b
567 static int _si5351_msynth_reparent(struct si5351_driver_data
*drvdata
,
568 int num
, enum si5351_multisynth_src parent
)
570 if (parent
== SI5351_MULTISYNTH_SRC_DEFAULT
)
576 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
, SI5351_CLK_PLL_SELECT
,
577 (parent
== SI5351_MULTISYNTH_SRC_VCO0
) ? 0 :
578 SI5351_CLK_PLL_SELECT
);
582 static unsigned char si5351_msynth_get_parent(struct clk_hw
*hw
)
584 struct si5351_hw_data
*hwdata
=
585 container_of(hw
, struct si5351_hw_data
, hw
);
588 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
590 return (val
& SI5351_CLK_PLL_SELECT
) ? 1 : 0;
593 static int si5351_msynth_set_parent(struct clk_hw
*hw
, u8 index
)
595 struct si5351_hw_data
*hwdata
=
596 container_of(hw
, struct si5351_hw_data
, hw
);
598 return _si5351_msynth_reparent(hwdata
->drvdata
, hwdata
->num
,
599 (index
== 0) ? SI5351_MULTISYNTH_SRC_VCO0
:
600 SI5351_MULTISYNTH_SRC_VCO1
);
603 static unsigned long si5351_msynth_recalc_rate(struct clk_hw
*hw
,
604 unsigned long parent_rate
)
606 struct si5351_hw_data
*hwdata
=
607 container_of(hw
, struct si5351_hw_data
, hw
);
608 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
609 unsigned long long rate
;
612 if (!hwdata
->params
.valid
)
613 si5351_read_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
616 * multisync0-5: fOUT = (128 * P3 * fIN) / (P1*P3 + P2 + 512*P3)
617 * multisync6-7: fOUT = fIN / P1
620 if (hwdata
->num
> 5) {
621 m
= hwdata
->params
.p1
;
622 } else if (hwdata
->params
.p3
== 0) {
624 } else if ((si5351_reg_read(hwdata
->drvdata
, reg
+ 2) &
625 SI5351_OUTPUT_CLK_DIVBY4
) == SI5351_OUTPUT_CLK_DIVBY4
) {
628 rate
*= 128 * hwdata
->params
.p3
;
629 m
= hwdata
->params
.p1
* hwdata
->params
.p3
;
630 m
+= hwdata
->params
.p2
;
631 m
+= 512 * hwdata
->params
.p3
;
638 dev_dbg(&hwdata
->drvdata
->client
->dev
,
639 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, m = %lu, parent_rate = %lu, rate = %lu\n",
640 __func__
, clk_hw_get_name(hw
),
641 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
642 m
, parent_rate
, (unsigned long)rate
);
644 return (unsigned long)rate
;
647 static long si5351_msynth_round_rate(struct clk_hw
*hw
, unsigned long rate
,
648 unsigned long *parent_rate
)
650 struct si5351_hw_data
*hwdata
=
651 container_of(hw
, struct si5351_hw_data
, hw
);
652 unsigned long long lltmp
;
653 unsigned long a
, b
, c
;
656 /* multisync6-7 can only handle freqencies < 150MHz */
657 if (hwdata
->num
>= 6 && rate
> SI5351_MULTISYNTH67_MAX_FREQ
)
658 rate
= SI5351_MULTISYNTH67_MAX_FREQ
;
660 /* multisync frequency is 1MHz .. 160MHz */
661 if (rate
> SI5351_MULTISYNTH_MAX_FREQ
)
662 rate
= SI5351_MULTISYNTH_MAX_FREQ
;
663 if (rate
< SI5351_MULTISYNTH_MIN_FREQ
)
664 rate
= SI5351_MULTISYNTH_MIN_FREQ
;
667 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
670 /* multisync can set pll */
671 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
673 * find largest integer divider for max
674 * vco frequency and given target rate
677 lltmp
= SI5351_PLL_VCO_MAX
;
679 a
= (unsigned long)lltmp
;
686 *parent_rate
= a
* rate
;
687 } else if (hwdata
->num
>= 6) {
688 /* determine the closest integer divider */
689 a
= DIV_ROUND_CLOSEST(*parent_rate
, rate
);
690 if (a
< SI5351_MULTISYNTH_A_MIN
)
691 a
= SI5351_MULTISYNTH_A_MIN
;
692 if (a
> SI5351_MULTISYNTH67_A_MAX
)
693 a
= SI5351_MULTISYNTH67_A_MAX
;
698 unsigned long rfrac
, denom
;
702 rate
= SI5351_MULTISYNTH_DIVBY4_FREQ
;
706 /* determine integer part of divider equation */
707 a
= *parent_rate
/ rate
;
708 if (a
< SI5351_MULTISYNTH_A_MIN
)
709 a
= SI5351_MULTISYNTH_A_MIN
;
710 if (a
> SI5351_MULTISYNTH_A_MAX
)
711 a
= SI5351_MULTISYNTH_A_MAX
;
713 /* find best approximation for b/c = fVCO mod fOUT */
715 lltmp
= (*parent_rate
) % rate
;
718 rfrac
= (unsigned long)lltmp
;
723 rational_best_approximation(rfrac
, denom
,
724 SI5351_MULTISYNTH_B_MAX
, SI5351_MULTISYNTH_C_MAX
,
728 /* recalculate rate by fOUT = fIN / (a + b/c) */
729 lltmp
= *parent_rate
;
731 do_div(lltmp
, a
* c
+ b
);
732 rate
= (unsigned long)lltmp
;
734 /* calculate parameters */
736 hwdata
->params
.p3
= 1;
737 hwdata
->params
.p2
= 0;
738 hwdata
->params
.p1
= 0;
739 } else if (hwdata
->num
>= 6) {
740 hwdata
->params
.p3
= 0;
741 hwdata
->params
.p2
= 0;
742 hwdata
->params
.p1
= a
;
744 hwdata
->params
.p3
= c
;
745 hwdata
->params
.p2
= (128 * b
) % c
;
746 hwdata
->params
.p1
= 128 * a
;
747 hwdata
->params
.p1
+= (128 * b
/ c
);
748 hwdata
->params
.p1
-= 512;
751 dev_dbg(&hwdata
->drvdata
->client
->dev
,
752 "%s - %s: a = %lu, b = %lu, c = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
753 __func__
, clk_hw_get_name(hw
), a
, b
, c
, divby4
,
759 static int si5351_msynth_set_rate(struct clk_hw
*hw
, unsigned long rate
,
760 unsigned long parent_rate
)
762 struct si5351_hw_data
*hwdata
=
763 container_of(hw
, struct si5351_hw_data
, hw
);
764 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
767 /* write multisynth parameters */
768 si5351_write_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
770 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
773 /* enable/disable integer mode and divby4 on multisynth0-5 */
774 if (hwdata
->num
< 6) {
775 si5351_set_bits(hwdata
->drvdata
, reg
+ 2,
776 SI5351_OUTPUT_CLK_DIVBY4
,
777 (divby4
) ? SI5351_OUTPUT_CLK_DIVBY4
: 0);
778 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
779 SI5351_CLK_INTEGER_MODE
,
780 (hwdata
->params
.p2
== 0) ? SI5351_CLK_INTEGER_MODE
: 0);
783 dev_dbg(&hwdata
->drvdata
->client
->dev
,
784 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
785 __func__
, clk_hw_get_name(hw
),
786 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
787 divby4
, parent_rate
, rate
);
792 static const struct clk_ops si5351_msynth_ops
= {
793 .set_parent
= si5351_msynth_set_parent
,
794 .get_parent
= si5351_msynth_get_parent
,
795 .recalc_rate
= si5351_msynth_recalc_rate
,
796 .round_rate
= si5351_msynth_round_rate
,
797 .set_rate
= si5351_msynth_set_rate
,
801 * Si5351 clkout divider
803 static int _si5351_clkout_reparent(struct si5351_driver_data
*drvdata
,
804 int num
, enum si5351_clkout_src parent
)
812 case SI5351_CLKOUT_SRC_MSYNTH_N
:
813 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
815 case SI5351_CLKOUT_SRC_MSYNTH_0_4
:
816 /* clk0/clk4 can only connect to its own multisync */
817 if (num
== 0 || num
== 4)
818 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
820 val
= SI5351_CLK_INPUT_MULTISYNTH_0_4
;
822 case SI5351_CLKOUT_SRC_XTAL
:
823 val
= SI5351_CLK_INPUT_XTAL
;
825 case SI5351_CLKOUT_SRC_CLKIN
:
826 if (drvdata
->variant
!= SI5351_VARIANT_C
)
829 val
= SI5351_CLK_INPUT_CLKIN
;
835 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
836 SI5351_CLK_INPUT_MASK
, val
);
840 static int _si5351_clkout_set_drive_strength(
841 struct si5351_driver_data
*drvdata
, int num
,
842 enum si5351_drive_strength drive
)
850 case SI5351_DRIVE_2MA
:
851 mask
= SI5351_CLK_DRIVE_STRENGTH_2MA
;
853 case SI5351_DRIVE_4MA
:
854 mask
= SI5351_CLK_DRIVE_STRENGTH_4MA
;
856 case SI5351_DRIVE_6MA
:
857 mask
= SI5351_CLK_DRIVE_STRENGTH_6MA
;
859 case SI5351_DRIVE_8MA
:
860 mask
= SI5351_CLK_DRIVE_STRENGTH_8MA
;
866 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
867 SI5351_CLK_DRIVE_STRENGTH_MASK
, mask
);
871 static int _si5351_clkout_set_disable_state(
872 struct si5351_driver_data
*drvdata
, int num
,
873 enum si5351_disable_state state
)
875 u8 reg
= (num
< 4) ? SI5351_CLK3_0_DISABLE_STATE
:
876 SI5351_CLK7_4_DISABLE_STATE
;
877 u8 shift
= (num
< 4) ? (2 * num
) : (2 * (num
-4));
878 u8 mask
= SI5351_CLK_DISABLE_STATE_MASK
<< shift
;
885 case SI5351_DISABLE_LOW
:
886 val
= SI5351_CLK_DISABLE_STATE_LOW
;
888 case SI5351_DISABLE_HIGH
:
889 val
= SI5351_CLK_DISABLE_STATE_HIGH
;
891 case SI5351_DISABLE_FLOATING
:
892 val
= SI5351_CLK_DISABLE_STATE_FLOAT
;
894 case SI5351_DISABLE_NEVER
:
895 val
= SI5351_CLK_DISABLE_STATE_NEVER
;
901 si5351_set_bits(drvdata
, reg
, mask
, val
<< shift
);
906 static int si5351_clkout_prepare(struct clk_hw
*hw
)
908 struct si5351_hw_data
*hwdata
=
909 container_of(hw
, struct si5351_hw_data
, hw
);
911 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
912 SI5351_CLK_POWERDOWN
, 0);
913 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
914 (1 << hwdata
->num
), 0);
918 static void si5351_clkout_unprepare(struct clk_hw
*hw
)
920 struct si5351_hw_data
*hwdata
=
921 container_of(hw
, struct si5351_hw_data
, hw
);
923 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
924 SI5351_CLK_POWERDOWN
, SI5351_CLK_POWERDOWN
);
925 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
926 (1 << hwdata
->num
), (1 << hwdata
->num
));
929 static u8
si5351_clkout_get_parent(struct clk_hw
*hw
)
931 struct si5351_hw_data
*hwdata
=
932 container_of(hw
, struct si5351_hw_data
, hw
);
936 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
937 switch (val
& SI5351_CLK_INPUT_MASK
) {
938 case SI5351_CLK_INPUT_MULTISYNTH_N
:
941 case SI5351_CLK_INPUT_MULTISYNTH_0_4
:
944 case SI5351_CLK_INPUT_XTAL
:
947 case SI5351_CLK_INPUT_CLKIN
:
955 static int si5351_clkout_set_parent(struct clk_hw
*hw
, u8 index
)
957 struct si5351_hw_data
*hwdata
=
958 container_of(hw
, struct si5351_hw_data
, hw
);
959 enum si5351_clkout_src parent
= SI5351_CLKOUT_SRC_DEFAULT
;
963 parent
= SI5351_CLKOUT_SRC_MSYNTH_N
;
966 parent
= SI5351_CLKOUT_SRC_MSYNTH_0_4
;
969 parent
= SI5351_CLKOUT_SRC_XTAL
;
972 parent
= SI5351_CLKOUT_SRC_CLKIN
;
976 return _si5351_clkout_reparent(hwdata
->drvdata
, hwdata
->num
, parent
);
979 static unsigned long si5351_clkout_recalc_rate(struct clk_hw
*hw
,
980 unsigned long parent_rate
)
982 struct si5351_hw_data
*hwdata
=
983 container_of(hw
, struct si5351_hw_data
, hw
);
987 if (hwdata
->num
<= 5)
988 reg
= si5351_msynth_params_address(hwdata
->num
) + 2;
990 reg
= SI5351_CLK6_7_OUTPUT_DIVIDER
;
992 rdiv
= si5351_reg_read(hwdata
->drvdata
, reg
);
993 if (hwdata
->num
== 6) {
994 rdiv
&= SI5351_OUTPUT_CLK6_DIV_MASK
;
996 rdiv
&= SI5351_OUTPUT_CLK_DIV_MASK
;
997 rdiv
>>= SI5351_OUTPUT_CLK_DIV_SHIFT
;
1000 return parent_rate
>> rdiv
;
1003 static long si5351_clkout_round_rate(struct clk_hw
*hw
, unsigned long rate
,
1004 unsigned long *parent_rate
)
1006 struct si5351_hw_data
*hwdata
=
1007 container_of(hw
, struct si5351_hw_data
, hw
);
1010 /* clkout6/7 can only handle output freqencies < 150MHz */
1011 if (hwdata
->num
>= 6 && rate
> SI5351_CLKOUT67_MAX_FREQ
)
1012 rate
= SI5351_CLKOUT67_MAX_FREQ
;
1014 /* clkout freqency is 8kHz - 160MHz */
1015 if (rate
> SI5351_CLKOUT_MAX_FREQ
)
1016 rate
= SI5351_CLKOUT_MAX_FREQ
;
1017 if (rate
< SI5351_CLKOUT_MIN_FREQ
)
1018 rate
= SI5351_CLKOUT_MIN_FREQ
;
1020 /* request frequency if multisync master */
1021 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
1022 /* use r divider for frequencies below 1MHz */
1023 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1024 while (rate
< SI5351_MULTISYNTH_MIN_FREQ
&&
1025 rdiv
< SI5351_OUTPUT_CLK_DIV_128
) {
1029 *parent_rate
= rate
;
1031 unsigned long new_rate
, new_err
, err
;
1033 /* round to closed rdiv */
1034 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1035 new_rate
= *parent_rate
;
1036 err
= abs(new_rate
- rate
);
1039 new_err
= abs(new_rate
- rate
);
1040 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1046 rate
= *parent_rate
>> rdiv
;
1048 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1049 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1050 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1051 *parent_rate
, rate
);
1056 static int si5351_clkout_set_rate(struct clk_hw
*hw
, unsigned long rate
,
1057 unsigned long parent_rate
)
1059 struct si5351_hw_data
*hwdata
=
1060 container_of(hw
, struct si5351_hw_data
, hw
);
1061 unsigned long new_rate
, new_err
, err
;
1064 /* round to closed rdiv */
1065 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1066 new_rate
= parent_rate
;
1067 err
= abs(new_rate
- rate
);
1070 new_err
= abs(new_rate
- rate
);
1071 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1077 /* write output divider */
1078 switch (hwdata
->num
) {
1080 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1081 SI5351_OUTPUT_CLK6_DIV_MASK
, rdiv
);
1084 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1085 SI5351_OUTPUT_CLK_DIV_MASK
,
1086 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1089 si5351_set_bits(hwdata
->drvdata
,
1090 si5351_msynth_params_address(hwdata
->num
) + 2,
1091 SI5351_OUTPUT_CLK_DIV_MASK
,
1092 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1095 /* powerup clkout */
1096 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
1097 SI5351_CLK_POWERDOWN
, 0);
1099 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1100 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1101 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1107 static const struct clk_ops si5351_clkout_ops
= {
1108 .prepare
= si5351_clkout_prepare
,
1109 .unprepare
= si5351_clkout_unprepare
,
1110 .set_parent
= si5351_clkout_set_parent
,
1111 .get_parent
= si5351_clkout_get_parent
,
1112 .recalc_rate
= si5351_clkout_recalc_rate
,
1113 .round_rate
= si5351_clkout_round_rate
,
1114 .set_rate
= si5351_clkout_set_rate
,
1118 * Si5351 i2c probe and DT
1121 static const struct of_device_id si5351_dt_ids
[] = {
1122 { .compatible
= "silabs,si5351a", .data
= (void *)SI5351_VARIANT_A
, },
1123 { .compatible
= "silabs,si5351a-msop",
1124 .data
= (void *)SI5351_VARIANT_A3
, },
1125 { .compatible
= "silabs,si5351b", .data
= (void *)SI5351_VARIANT_B
, },
1126 { .compatible
= "silabs,si5351c", .data
= (void *)SI5351_VARIANT_C
, },
1129 MODULE_DEVICE_TABLE(of
, si5351_dt_ids
);
1131 static int si5351_dt_parse(struct i2c_client
*client
,
1132 enum si5351_variant variant
)
1134 struct device_node
*child
, *np
= client
->dev
.of_node
;
1135 struct si5351_platform_data
*pdata
;
1136 struct property
*prop
;
1144 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1149 * property silabs,pll-source : <num src>, [<..>]
1150 * allow to selectively set pll source
1152 of_property_for_each_u32(np
, "silabs,pll-source", prop
, p
, num
) {
1154 dev_err(&client
->dev
,
1155 "invalid pll %d on pll-source prop\n", num
);
1159 p
= of_prop_next_u32(prop
, p
, &val
);
1161 dev_err(&client
->dev
,
1162 "missing pll-source for pll %d\n", num
);
1168 pdata
->pll_src
[num
] = SI5351_PLL_SRC_XTAL
;
1171 if (variant
!= SI5351_VARIANT_C
) {
1172 dev_err(&client
->dev
,
1173 "invalid parent %d for pll %d\n",
1177 pdata
->pll_src
[num
] = SI5351_PLL_SRC_CLKIN
;
1180 dev_err(&client
->dev
,
1181 "invalid parent %d for pll %d\n", val
, num
);
1186 /* per clkout properties */
1187 for_each_child_of_node(np
, child
) {
1188 if (of_property_read_u32(child
, "reg", &num
)) {
1189 dev_err(&client
->dev
, "missing reg property of %s\n",
1195 (variant
== SI5351_VARIANT_A3
&& num
>= 3)) {
1196 dev_err(&client
->dev
, "invalid clkout %d\n", num
);
1200 if (!of_property_read_u32(child
, "silabs,multisynth-source",
1204 pdata
->clkout
[num
].multisynth_src
=
1205 SI5351_MULTISYNTH_SRC_VCO0
;
1208 pdata
->clkout
[num
].multisynth_src
=
1209 SI5351_MULTISYNTH_SRC_VCO1
;
1212 dev_err(&client
->dev
,
1213 "invalid parent %d for multisynth %d\n",
1219 if (!of_property_read_u32(child
, "silabs,clock-source", &val
)) {
1222 pdata
->clkout
[num
].clkout_src
=
1223 SI5351_CLKOUT_SRC_MSYNTH_N
;
1226 pdata
->clkout
[num
].clkout_src
=
1227 SI5351_CLKOUT_SRC_MSYNTH_0_4
;
1230 pdata
->clkout
[num
].clkout_src
=
1231 SI5351_CLKOUT_SRC_XTAL
;
1234 if (variant
!= SI5351_VARIANT_C
) {
1235 dev_err(&client
->dev
,
1236 "invalid parent %d for clkout %d\n",
1240 pdata
->clkout
[num
].clkout_src
=
1241 SI5351_CLKOUT_SRC_CLKIN
;
1244 dev_err(&client
->dev
,
1245 "invalid parent %d for clkout %d\n",
1251 if (!of_property_read_u32(child
, "silabs,drive-strength",
1254 case SI5351_DRIVE_2MA
:
1255 case SI5351_DRIVE_4MA
:
1256 case SI5351_DRIVE_6MA
:
1257 case SI5351_DRIVE_8MA
:
1258 pdata
->clkout
[num
].drive
= val
;
1261 dev_err(&client
->dev
,
1262 "invalid drive strength %d for clkout %d\n",
1268 if (!of_property_read_u32(child
, "silabs,disable-state",
1272 pdata
->clkout
[num
].disable_state
=
1276 pdata
->clkout
[num
].disable_state
=
1277 SI5351_DISABLE_HIGH
;
1280 pdata
->clkout
[num
].disable_state
=
1281 SI5351_DISABLE_FLOATING
;
1284 pdata
->clkout
[num
].disable_state
=
1285 SI5351_DISABLE_NEVER
;
1288 dev_err(&client
->dev
,
1289 "invalid disable state %d for clkout %d\n",
1295 if (!of_property_read_u32(child
, "clock-frequency", &val
))
1296 pdata
->clkout
[num
].rate
= val
;
1298 pdata
->clkout
[num
].pll_master
=
1299 of_property_read_bool(child
, "silabs,pll-master");
1301 client
->dev
.platform_data
= pdata
;
1309 static struct clk_hw
*
1310 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1312 struct si5351_driver_data
*drvdata
= data
;
1313 unsigned int idx
= clkspec
->args
[0];
1315 if (idx
>= drvdata
->num_clkout
) {
1316 pr_err("%s: invalid index %u\n", __func__
, idx
);
1317 return ERR_PTR(-EINVAL
);
1320 return &drvdata
->clkout
[idx
].hw
;
1323 static int si5351_dt_parse(struct i2c_client
*client
, enum si5351_variant variant
)
1328 static struct clk_hw
*
1329 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1333 #endif /* CONFIG_OF */
1335 static int si5351_i2c_probe(struct i2c_client
*client
,
1336 const struct i2c_device_id
*id
)
1338 enum si5351_variant variant
= (enum si5351_variant
)id
->driver_data
;
1339 struct si5351_platform_data
*pdata
;
1340 struct si5351_driver_data
*drvdata
;
1341 struct clk_init_data init
;
1342 const char *parent_names
[4];
1343 u8 num_parents
, num_clocks
;
1346 ret
= si5351_dt_parse(client
, variant
);
1350 pdata
= client
->dev
.platform_data
;
1354 drvdata
= devm_kzalloc(&client
->dev
, sizeof(*drvdata
), GFP_KERNEL
);
1358 i2c_set_clientdata(client
, drvdata
);
1359 drvdata
->client
= client
;
1360 drvdata
->variant
= variant
;
1361 drvdata
->pxtal
= devm_clk_get(&client
->dev
, "xtal");
1362 drvdata
->pclkin
= devm_clk_get(&client
->dev
, "clkin");
1364 if (PTR_ERR(drvdata
->pxtal
) == -EPROBE_DEFER
||
1365 PTR_ERR(drvdata
->pclkin
) == -EPROBE_DEFER
)
1366 return -EPROBE_DEFER
;
1369 * Check for valid parent clock: VARIANT_A and VARIANT_B need XTAL,
1370 * VARIANT_C can have CLKIN instead.
1372 if (IS_ERR(drvdata
->pxtal
) &&
1373 (drvdata
->variant
!= SI5351_VARIANT_C
|| IS_ERR(drvdata
->pclkin
))) {
1374 dev_err(&client
->dev
, "missing parent clock\n");
1378 drvdata
->regmap
= devm_regmap_init_i2c(client
, &si5351_regmap_config
);
1379 if (IS_ERR(drvdata
->regmap
)) {
1380 dev_err(&client
->dev
, "failed to allocate register map\n");
1381 return PTR_ERR(drvdata
->regmap
);
1384 /* Disable interrupts */
1385 si5351_reg_write(drvdata
, SI5351_INTERRUPT_MASK
, 0xf0);
1386 /* Ensure pll select is on XTAL for Si5351A/B */
1387 if (drvdata
->variant
!= SI5351_VARIANT_C
)
1388 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
,
1389 SI5351_PLLA_SOURCE
| SI5351_PLLB_SOURCE
, 0);
1391 /* setup clock configuration */
1392 for (n
= 0; n
< 2; n
++) {
1393 ret
= _si5351_pll_reparent(drvdata
, n
, pdata
->pll_src
[n
]);
1395 dev_err(&client
->dev
,
1396 "failed to reparent pll %d to %d\n",
1397 n
, pdata
->pll_src
[n
]);
1402 for (n
= 0; n
< 8; n
++) {
1403 ret
= _si5351_msynth_reparent(drvdata
, n
,
1404 pdata
->clkout
[n
].multisynth_src
);
1406 dev_err(&client
->dev
,
1407 "failed to reparent multisynth %d to %d\n",
1408 n
, pdata
->clkout
[n
].multisynth_src
);
1412 ret
= _si5351_clkout_reparent(drvdata
, n
,
1413 pdata
->clkout
[n
].clkout_src
);
1415 dev_err(&client
->dev
,
1416 "failed to reparent clkout %d to %d\n",
1417 n
, pdata
->clkout
[n
].clkout_src
);
1421 ret
= _si5351_clkout_set_drive_strength(drvdata
, n
,
1422 pdata
->clkout
[n
].drive
);
1424 dev_err(&client
->dev
,
1425 "failed set drive strength of clkout%d to %d\n",
1426 n
, pdata
->clkout
[n
].drive
);
1430 ret
= _si5351_clkout_set_disable_state(drvdata
, n
,
1431 pdata
->clkout
[n
].disable_state
);
1433 dev_err(&client
->dev
,
1434 "failed set disable state of clkout%d to %d\n",
1435 n
, pdata
->clkout
[n
].disable_state
);
1440 if (!IS_ERR(drvdata
->pxtal
))
1441 clk_prepare_enable(drvdata
->pxtal
);
1442 if (!IS_ERR(drvdata
->pclkin
))
1443 clk_prepare_enable(drvdata
->pclkin
);
1445 /* register xtal input clock gate */
1446 memset(&init
, 0, sizeof(init
));
1447 init
.name
= si5351_input_names
[0];
1448 init
.ops
= &si5351_xtal_ops
;
1450 if (!IS_ERR(drvdata
->pxtal
)) {
1451 drvdata
->pxtal_name
= __clk_get_name(drvdata
->pxtal
);
1452 init
.parent_names
= &drvdata
->pxtal_name
;
1453 init
.num_parents
= 1;
1455 drvdata
->xtal
.init
= &init
;
1456 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->xtal
);
1458 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1462 /* register clkin input clock gate */
1463 if (drvdata
->variant
== SI5351_VARIANT_C
) {
1464 memset(&init
, 0, sizeof(init
));
1465 init
.name
= si5351_input_names
[1];
1466 init
.ops
= &si5351_clkin_ops
;
1467 if (!IS_ERR(drvdata
->pclkin
)) {
1468 drvdata
->pclkin_name
= __clk_get_name(drvdata
->pclkin
);
1469 init
.parent_names
= &drvdata
->pclkin_name
;
1470 init
.num_parents
= 1;
1472 drvdata
->clkin
.init
= &init
;
1473 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->clkin
);
1475 dev_err(&client
->dev
, "unable to register %s\n",
1481 /* Si5351C allows to mux either xtal or clkin to PLL input */
1482 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 2 : 1;
1483 parent_names
[0] = si5351_input_names
[0];
1484 parent_names
[1] = si5351_input_names
[1];
1487 drvdata
->pll
[0].num
= 0;
1488 drvdata
->pll
[0].drvdata
= drvdata
;
1489 drvdata
->pll
[0].hw
.init
= &init
;
1490 memset(&init
, 0, sizeof(init
));
1491 init
.name
= si5351_pll_names
[0];
1492 init
.ops
= &si5351_pll_ops
;
1494 init
.parent_names
= parent_names
;
1495 init
.num_parents
= num_parents
;
1496 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[0].hw
);
1498 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1502 /* register PLLB or VXCO (Si5351B) */
1503 drvdata
->pll
[1].num
= 1;
1504 drvdata
->pll
[1].drvdata
= drvdata
;
1505 drvdata
->pll
[1].hw
.init
= &init
;
1506 memset(&init
, 0, sizeof(init
));
1507 if (drvdata
->variant
== SI5351_VARIANT_B
) {
1508 init
.name
= si5351_pll_names
[2];
1509 init
.ops
= &si5351_vxco_ops
;
1511 init
.parent_names
= NULL
;
1512 init
.num_parents
= 0;
1514 init
.name
= si5351_pll_names
[1];
1515 init
.ops
= &si5351_pll_ops
;
1517 init
.parent_names
= parent_names
;
1518 init
.num_parents
= num_parents
;
1520 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[1].hw
);
1522 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1526 /* register clk multisync and clk out divider */
1527 num_clocks
= (drvdata
->variant
== SI5351_VARIANT_A3
) ? 3 : 8;
1528 parent_names
[0] = si5351_pll_names
[0];
1529 if (drvdata
->variant
== SI5351_VARIANT_B
)
1530 parent_names
[1] = si5351_pll_names
[2];
1532 parent_names
[1] = si5351_pll_names
[1];
1534 drvdata
->msynth
= devm_kcalloc(&client
->dev
, num_clocks
,
1535 sizeof(*drvdata
->msynth
), GFP_KERNEL
);
1536 drvdata
->clkout
= devm_kcalloc(&client
->dev
, num_clocks
,
1537 sizeof(*drvdata
->clkout
), GFP_KERNEL
);
1538 drvdata
->num_clkout
= num_clocks
;
1540 if (WARN_ON(!drvdata
->msynth
|| !drvdata
->clkout
)) {
1545 for (n
= 0; n
< num_clocks
; n
++) {
1546 drvdata
->msynth
[n
].num
= n
;
1547 drvdata
->msynth
[n
].drvdata
= drvdata
;
1548 drvdata
->msynth
[n
].hw
.init
= &init
;
1549 memset(&init
, 0, sizeof(init
));
1550 init
.name
= si5351_msynth_names
[n
];
1551 init
.ops
= &si5351_msynth_ops
;
1553 if (pdata
->clkout
[n
].pll_master
)
1554 init
.flags
|= CLK_SET_RATE_PARENT
;
1555 init
.parent_names
= parent_names
;
1556 init
.num_parents
= 2;
1557 ret
= devm_clk_hw_register(&client
->dev
,
1558 &drvdata
->msynth
[n
].hw
);
1560 dev_err(&client
->dev
, "unable to register %s\n",
1566 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 4 : 3;
1567 parent_names
[2] = si5351_input_names
[0];
1568 parent_names
[3] = si5351_input_names
[1];
1569 for (n
= 0; n
< num_clocks
; n
++) {
1570 parent_names
[0] = si5351_msynth_names
[n
];
1571 parent_names
[1] = (n
< 4) ? si5351_msynth_names
[0] :
1572 si5351_msynth_names
[4];
1574 drvdata
->clkout
[n
].num
= n
;
1575 drvdata
->clkout
[n
].drvdata
= drvdata
;
1576 drvdata
->clkout
[n
].hw
.init
= &init
;
1577 memset(&init
, 0, sizeof(init
));
1578 init
.name
= si5351_clkout_names
[n
];
1579 init
.ops
= &si5351_clkout_ops
;
1581 if (pdata
->clkout
[n
].clkout_src
== SI5351_CLKOUT_SRC_MSYNTH_N
)
1582 init
.flags
|= CLK_SET_RATE_PARENT
;
1583 init
.parent_names
= parent_names
;
1584 init
.num_parents
= num_parents
;
1585 ret
= devm_clk_hw_register(&client
->dev
,
1586 &drvdata
->clkout
[n
].hw
);
1588 dev_err(&client
->dev
, "unable to register %s\n",
1593 /* set initial clkout rate */
1594 if (pdata
->clkout
[n
].rate
!= 0) {
1596 ret
= clk_set_rate(drvdata
->clkout
[n
].hw
.clk
,
1597 pdata
->clkout
[n
].rate
);
1599 dev_err(&client
->dev
, "Cannot set rate : %d\n",
1605 ret
= of_clk_add_hw_provider(client
->dev
.of_node
, si53351_of_clk_get
,
1608 dev_err(&client
->dev
, "unable to add clk provider\n");
1615 if (!IS_ERR(drvdata
->pxtal
))
1616 clk_disable_unprepare(drvdata
->pxtal
);
1617 if (!IS_ERR(drvdata
->pclkin
))
1618 clk_disable_unprepare(drvdata
->pclkin
);
1622 static const struct i2c_device_id si5351_i2c_ids
[] = {
1623 { "si5351a", SI5351_VARIANT_A
},
1624 { "si5351a-msop", SI5351_VARIANT_A3
},
1625 { "si5351b", SI5351_VARIANT_B
},
1626 { "si5351c", SI5351_VARIANT_C
},
1629 MODULE_DEVICE_TABLE(i2c
, si5351_i2c_ids
);
1631 static struct i2c_driver si5351_driver
= {
1634 .of_match_table
= of_match_ptr(si5351_dt_ids
),
1636 .probe
= si5351_i2c_probe
,
1637 .id_table
= si5351_i2c_ids
,
1639 module_i2c_driver(si5351_driver
);
1641 MODULE_AUTHOR("Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com");
1642 MODULE_DESCRIPTION("Silicon Labs Si5351A/B/C clock generator driver");
1643 MODULE_LICENSE("GPL");