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 dev_dbg(&hwdata
->drvdata
->client
->dev
,
523 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, parent_rate = %lu, rate = %lu\n",
524 __func__
, clk_hw_get_name(hw
),
525 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
531 static const struct clk_ops si5351_pll_ops
= {
532 .set_parent
= si5351_pll_set_parent
,
533 .get_parent
= si5351_pll_get_parent
,
534 .recalc_rate
= si5351_pll_recalc_rate
,
535 .round_rate
= si5351_pll_round_rate
,
536 .set_rate
= si5351_pll_set_rate
,
540 * Si5351 multisync divider
542 * for fOUT <= 150 MHz:
544 * fOUT = (fIN * (a + b/c)) / CLKOUTDIV
546 * with 6 + 0/1048575 <= (a + b/c) <= 1800 + 0/1048575 and
549 * Output Clock Multisynth Register Equations
551 * MSx_P1[17:0] = 128 * a + floor(128 * b/c) - 512
552 * MSx_P2[19:0] = 128 * b - c * floor(128 * b/c) = (128*b) mod c
555 * MS[6,7] are integer (P1) divide only, P1 = divide value,
556 * P2 and P3 are not applicable
558 * for 150MHz < fOUT <= 160MHz:
560 * MSx_P1 = 0, MSx_P2 = 0, MSx_P3 = 1, MSx_INT = 1, MSx_DIVBY4 = 11b
562 static int _si5351_msynth_reparent(struct si5351_driver_data
*drvdata
,
563 int num
, enum si5351_multisynth_src parent
)
565 if (parent
== SI5351_MULTISYNTH_SRC_DEFAULT
)
571 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
, SI5351_CLK_PLL_SELECT
,
572 (parent
== SI5351_MULTISYNTH_SRC_VCO0
) ? 0 :
573 SI5351_CLK_PLL_SELECT
);
577 static unsigned char si5351_msynth_get_parent(struct clk_hw
*hw
)
579 struct si5351_hw_data
*hwdata
=
580 container_of(hw
, struct si5351_hw_data
, hw
);
583 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
585 return (val
& SI5351_CLK_PLL_SELECT
) ? 1 : 0;
588 static int si5351_msynth_set_parent(struct clk_hw
*hw
, u8 index
)
590 struct si5351_hw_data
*hwdata
=
591 container_of(hw
, struct si5351_hw_data
, hw
);
593 return _si5351_msynth_reparent(hwdata
->drvdata
, hwdata
->num
,
594 (index
== 0) ? SI5351_MULTISYNTH_SRC_VCO0
:
595 SI5351_MULTISYNTH_SRC_VCO1
);
598 static unsigned long si5351_msynth_recalc_rate(struct clk_hw
*hw
,
599 unsigned long parent_rate
)
601 struct si5351_hw_data
*hwdata
=
602 container_of(hw
, struct si5351_hw_data
, hw
);
603 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
604 unsigned long long rate
;
607 if (!hwdata
->params
.valid
)
608 si5351_read_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
611 * multisync0-5: fOUT = (128 * P3 * fIN) / (P1*P3 + P2 + 512*P3)
612 * multisync6-7: fOUT = fIN / P1
615 if (hwdata
->num
> 5) {
616 m
= hwdata
->params
.p1
;
617 } else if (hwdata
->params
.p3
== 0) {
619 } else if ((si5351_reg_read(hwdata
->drvdata
, reg
+ 2) &
620 SI5351_OUTPUT_CLK_DIVBY4
) == SI5351_OUTPUT_CLK_DIVBY4
) {
623 rate
*= 128 * hwdata
->params
.p3
;
624 m
= hwdata
->params
.p1
* hwdata
->params
.p3
;
625 m
+= hwdata
->params
.p2
;
626 m
+= 512 * hwdata
->params
.p3
;
633 dev_dbg(&hwdata
->drvdata
->client
->dev
,
634 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, m = %lu, parent_rate = %lu, rate = %lu\n",
635 __func__
, clk_hw_get_name(hw
),
636 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
637 m
, parent_rate
, (unsigned long)rate
);
639 return (unsigned long)rate
;
642 static long si5351_msynth_round_rate(struct clk_hw
*hw
, unsigned long rate
,
643 unsigned long *parent_rate
)
645 struct si5351_hw_data
*hwdata
=
646 container_of(hw
, struct si5351_hw_data
, hw
);
647 unsigned long long lltmp
;
648 unsigned long a
, b
, c
;
651 /* multisync6-7 can only handle freqencies < 150MHz */
652 if (hwdata
->num
>= 6 && rate
> SI5351_MULTISYNTH67_MAX_FREQ
)
653 rate
= SI5351_MULTISYNTH67_MAX_FREQ
;
655 /* multisync frequency is 1MHz .. 160MHz */
656 if (rate
> SI5351_MULTISYNTH_MAX_FREQ
)
657 rate
= SI5351_MULTISYNTH_MAX_FREQ
;
658 if (rate
< SI5351_MULTISYNTH_MIN_FREQ
)
659 rate
= SI5351_MULTISYNTH_MIN_FREQ
;
662 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
665 /* multisync can set pll */
666 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
668 * find largest integer divider for max
669 * vco frequency and given target rate
672 lltmp
= SI5351_PLL_VCO_MAX
;
674 a
= (unsigned long)lltmp
;
681 *parent_rate
= a
* rate
;
682 } else if (hwdata
->num
>= 6) {
683 /* determine the closest integer divider */
684 a
= DIV_ROUND_CLOSEST(*parent_rate
, rate
);
685 if (a
< SI5351_MULTISYNTH_A_MIN
)
686 a
= SI5351_MULTISYNTH_A_MIN
;
687 if (a
> SI5351_MULTISYNTH67_A_MAX
)
688 a
= SI5351_MULTISYNTH67_A_MAX
;
693 unsigned long rfrac
, denom
;
697 rate
= SI5351_MULTISYNTH_DIVBY4_FREQ
;
701 /* determine integer part of divider equation */
702 a
= *parent_rate
/ rate
;
703 if (a
< SI5351_MULTISYNTH_A_MIN
)
704 a
= SI5351_MULTISYNTH_A_MIN
;
705 if (a
> SI5351_MULTISYNTH_A_MAX
)
706 a
= SI5351_MULTISYNTH_A_MAX
;
708 /* find best approximation for b/c = fVCO mod fOUT */
710 lltmp
= (*parent_rate
) % rate
;
713 rfrac
= (unsigned long)lltmp
;
718 rational_best_approximation(rfrac
, denom
,
719 SI5351_MULTISYNTH_B_MAX
, SI5351_MULTISYNTH_C_MAX
,
723 /* recalculate rate by fOUT = fIN / (a + b/c) */
724 lltmp
= *parent_rate
;
726 do_div(lltmp
, a
* c
+ b
);
727 rate
= (unsigned long)lltmp
;
729 /* calculate parameters */
731 hwdata
->params
.p3
= 1;
732 hwdata
->params
.p2
= 0;
733 hwdata
->params
.p1
= 0;
734 } else if (hwdata
->num
>= 6) {
735 hwdata
->params
.p3
= 0;
736 hwdata
->params
.p2
= 0;
737 hwdata
->params
.p1
= a
;
739 hwdata
->params
.p3
= c
;
740 hwdata
->params
.p2
= (128 * b
) % c
;
741 hwdata
->params
.p1
= 128 * a
;
742 hwdata
->params
.p1
+= (128 * b
/ c
);
743 hwdata
->params
.p1
-= 512;
746 dev_dbg(&hwdata
->drvdata
->client
->dev
,
747 "%s - %s: a = %lu, b = %lu, c = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
748 __func__
, clk_hw_get_name(hw
), a
, b
, c
, divby4
,
754 static int si5351_msynth_set_rate(struct clk_hw
*hw
, unsigned long rate
,
755 unsigned long parent_rate
)
757 struct si5351_hw_data
*hwdata
=
758 container_of(hw
, struct si5351_hw_data
, hw
);
759 u8 reg
= si5351_msynth_params_address(hwdata
->num
);
762 /* write multisynth parameters */
763 si5351_write_parameters(hwdata
->drvdata
, reg
, &hwdata
->params
);
765 if (rate
> SI5351_MULTISYNTH_DIVBY4_FREQ
)
768 /* enable/disable integer mode and divby4 on multisynth0-5 */
769 if (hwdata
->num
< 6) {
770 si5351_set_bits(hwdata
->drvdata
, reg
+ 2,
771 SI5351_OUTPUT_CLK_DIVBY4
,
772 (divby4
) ? SI5351_OUTPUT_CLK_DIVBY4
: 0);
773 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
774 SI5351_CLK_INTEGER_MODE
,
775 (hwdata
->params
.p2
== 0) ? SI5351_CLK_INTEGER_MODE
: 0);
778 dev_dbg(&hwdata
->drvdata
->client
->dev
,
779 "%s - %s: p1 = %lu, p2 = %lu, p3 = %lu, divby4 = %d, parent_rate = %lu, rate = %lu\n",
780 __func__
, clk_hw_get_name(hw
),
781 hwdata
->params
.p1
, hwdata
->params
.p2
, hwdata
->params
.p3
,
782 divby4
, parent_rate
, rate
);
787 static const struct clk_ops si5351_msynth_ops
= {
788 .set_parent
= si5351_msynth_set_parent
,
789 .get_parent
= si5351_msynth_get_parent
,
790 .recalc_rate
= si5351_msynth_recalc_rate
,
791 .round_rate
= si5351_msynth_round_rate
,
792 .set_rate
= si5351_msynth_set_rate
,
796 * Si5351 clkout divider
798 static int _si5351_clkout_reparent(struct si5351_driver_data
*drvdata
,
799 int num
, enum si5351_clkout_src parent
)
807 case SI5351_CLKOUT_SRC_MSYNTH_N
:
808 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
810 case SI5351_CLKOUT_SRC_MSYNTH_0_4
:
811 /* clk0/clk4 can only connect to its own multisync */
812 if (num
== 0 || num
== 4)
813 val
= SI5351_CLK_INPUT_MULTISYNTH_N
;
815 val
= SI5351_CLK_INPUT_MULTISYNTH_0_4
;
817 case SI5351_CLKOUT_SRC_XTAL
:
818 val
= SI5351_CLK_INPUT_XTAL
;
820 case SI5351_CLKOUT_SRC_CLKIN
:
821 if (drvdata
->variant
!= SI5351_VARIANT_C
)
824 val
= SI5351_CLK_INPUT_CLKIN
;
830 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
831 SI5351_CLK_INPUT_MASK
, val
);
835 static int _si5351_clkout_set_drive_strength(
836 struct si5351_driver_data
*drvdata
, int num
,
837 enum si5351_drive_strength drive
)
845 case SI5351_DRIVE_2MA
:
846 mask
= SI5351_CLK_DRIVE_STRENGTH_2MA
;
848 case SI5351_DRIVE_4MA
:
849 mask
= SI5351_CLK_DRIVE_STRENGTH_4MA
;
851 case SI5351_DRIVE_6MA
:
852 mask
= SI5351_CLK_DRIVE_STRENGTH_6MA
;
854 case SI5351_DRIVE_8MA
:
855 mask
= SI5351_CLK_DRIVE_STRENGTH_8MA
;
861 si5351_set_bits(drvdata
, SI5351_CLK0_CTRL
+ num
,
862 SI5351_CLK_DRIVE_STRENGTH_MASK
, mask
);
866 static int _si5351_clkout_set_disable_state(
867 struct si5351_driver_data
*drvdata
, int num
,
868 enum si5351_disable_state state
)
870 u8 reg
= (num
< 4) ? SI5351_CLK3_0_DISABLE_STATE
:
871 SI5351_CLK7_4_DISABLE_STATE
;
872 u8 shift
= (num
< 4) ? (2 * num
) : (2 * (num
-4));
873 u8 mask
= SI5351_CLK_DISABLE_STATE_MASK
<< shift
;
880 case SI5351_DISABLE_LOW
:
881 val
= SI5351_CLK_DISABLE_STATE_LOW
;
883 case SI5351_DISABLE_HIGH
:
884 val
= SI5351_CLK_DISABLE_STATE_HIGH
;
886 case SI5351_DISABLE_FLOATING
:
887 val
= SI5351_CLK_DISABLE_STATE_FLOAT
;
889 case SI5351_DISABLE_NEVER
:
890 val
= SI5351_CLK_DISABLE_STATE_NEVER
;
896 si5351_set_bits(drvdata
, reg
, mask
, val
<< shift
);
901 static int si5351_clkout_prepare(struct clk_hw
*hw
)
903 struct si5351_hw_data
*hwdata
=
904 container_of(hw
, struct si5351_hw_data
, hw
);
906 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
907 SI5351_CLK_POWERDOWN
, 0);
908 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
909 (1 << hwdata
->num
), 0);
913 static void si5351_clkout_unprepare(struct clk_hw
*hw
)
915 struct si5351_hw_data
*hwdata
=
916 container_of(hw
, struct si5351_hw_data
, hw
);
918 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
919 SI5351_CLK_POWERDOWN
, SI5351_CLK_POWERDOWN
);
920 si5351_set_bits(hwdata
->drvdata
, SI5351_OUTPUT_ENABLE_CTRL
,
921 (1 << hwdata
->num
), (1 << hwdata
->num
));
924 static u8
si5351_clkout_get_parent(struct clk_hw
*hw
)
926 struct si5351_hw_data
*hwdata
=
927 container_of(hw
, struct si5351_hw_data
, hw
);
931 val
= si5351_reg_read(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
);
932 switch (val
& SI5351_CLK_INPUT_MASK
) {
933 case SI5351_CLK_INPUT_MULTISYNTH_N
:
936 case SI5351_CLK_INPUT_MULTISYNTH_0_4
:
939 case SI5351_CLK_INPUT_XTAL
:
942 case SI5351_CLK_INPUT_CLKIN
:
950 static int si5351_clkout_set_parent(struct clk_hw
*hw
, u8 index
)
952 struct si5351_hw_data
*hwdata
=
953 container_of(hw
, struct si5351_hw_data
, hw
);
954 enum si5351_clkout_src parent
= SI5351_CLKOUT_SRC_DEFAULT
;
958 parent
= SI5351_CLKOUT_SRC_MSYNTH_N
;
961 parent
= SI5351_CLKOUT_SRC_MSYNTH_0_4
;
964 parent
= SI5351_CLKOUT_SRC_XTAL
;
967 parent
= SI5351_CLKOUT_SRC_CLKIN
;
971 return _si5351_clkout_reparent(hwdata
->drvdata
, hwdata
->num
, parent
);
974 static unsigned long si5351_clkout_recalc_rate(struct clk_hw
*hw
,
975 unsigned long parent_rate
)
977 struct si5351_hw_data
*hwdata
=
978 container_of(hw
, struct si5351_hw_data
, hw
);
982 if (hwdata
->num
<= 5)
983 reg
= si5351_msynth_params_address(hwdata
->num
) + 2;
985 reg
= SI5351_CLK6_7_OUTPUT_DIVIDER
;
987 rdiv
= si5351_reg_read(hwdata
->drvdata
, reg
);
988 if (hwdata
->num
== 6) {
989 rdiv
&= SI5351_OUTPUT_CLK6_DIV_MASK
;
991 rdiv
&= SI5351_OUTPUT_CLK_DIV_MASK
;
992 rdiv
>>= SI5351_OUTPUT_CLK_DIV_SHIFT
;
995 return parent_rate
>> rdiv
;
998 static long si5351_clkout_round_rate(struct clk_hw
*hw
, unsigned long rate
,
999 unsigned long *parent_rate
)
1001 struct si5351_hw_data
*hwdata
=
1002 container_of(hw
, struct si5351_hw_data
, hw
);
1005 /* clkout6/7 can only handle output freqencies < 150MHz */
1006 if (hwdata
->num
>= 6 && rate
> SI5351_CLKOUT67_MAX_FREQ
)
1007 rate
= SI5351_CLKOUT67_MAX_FREQ
;
1009 /* clkout freqency is 8kHz - 160MHz */
1010 if (rate
> SI5351_CLKOUT_MAX_FREQ
)
1011 rate
= SI5351_CLKOUT_MAX_FREQ
;
1012 if (rate
< SI5351_CLKOUT_MIN_FREQ
)
1013 rate
= SI5351_CLKOUT_MIN_FREQ
;
1015 /* request frequency if multisync master */
1016 if (clk_hw_get_flags(hw
) & CLK_SET_RATE_PARENT
) {
1017 /* use r divider for frequencies below 1MHz */
1018 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1019 while (rate
< SI5351_MULTISYNTH_MIN_FREQ
&&
1020 rdiv
< SI5351_OUTPUT_CLK_DIV_128
) {
1024 *parent_rate
= rate
;
1026 unsigned long new_rate
, new_err
, err
;
1028 /* round to closed rdiv */
1029 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1030 new_rate
= *parent_rate
;
1031 err
= abs(new_rate
- rate
);
1034 new_err
= abs(new_rate
- rate
);
1035 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1041 rate
= *parent_rate
>> rdiv
;
1043 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1044 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1045 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1046 *parent_rate
, rate
);
1051 static int si5351_clkout_set_rate(struct clk_hw
*hw
, unsigned long rate
,
1052 unsigned long parent_rate
)
1054 struct si5351_hw_data
*hwdata
=
1055 container_of(hw
, struct si5351_hw_data
, hw
);
1056 unsigned long new_rate
, new_err
, err
;
1059 /* round to closed rdiv */
1060 rdiv
= SI5351_OUTPUT_CLK_DIV_1
;
1061 new_rate
= parent_rate
;
1062 err
= abs(new_rate
- rate
);
1065 new_err
= abs(new_rate
- rate
);
1066 if (new_err
> err
|| rdiv
== SI5351_OUTPUT_CLK_DIV_128
)
1072 /* write output divider */
1073 switch (hwdata
->num
) {
1075 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1076 SI5351_OUTPUT_CLK6_DIV_MASK
, rdiv
);
1079 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK6_7_OUTPUT_DIVIDER
,
1080 SI5351_OUTPUT_CLK_DIV_MASK
,
1081 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1084 si5351_set_bits(hwdata
->drvdata
,
1085 si5351_msynth_params_address(hwdata
->num
) + 2,
1086 SI5351_OUTPUT_CLK_DIV_MASK
,
1087 rdiv
<< SI5351_OUTPUT_CLK_DIV_SHIFT
);
1090 /* powerup clkout */
1091 si5351_set_bits(hwdata
->drvdata
, SI5351_CLK0_CTRL
+ hwdata
->num
,
1092 SI5351_CLK_POWERDOWN
, 0);
1095 * Do a pll soft reset on both plls, needed in some cases to get
1096 * all outputs running.
1098 si5351_reg_write(hwdata
->drvdata
, SI5351_PLL_RESET
,
1099 SI5351_PLL_RESET_A
| SI5351_PLL_RESET_B
);
1101 dev_dbg(&hwdata
->drvdata
->client
->dev
,
1102 "%s - %s: rdiv = %u, parent_rate = %lu, rate = %lu\n",
1103 __func__
, clk_hw_get_name(hw
), (1 << rdiv
),
1109 static const struct clk_ops si5351_clkout_ops
= {
1110 .prepare
= si5351_clkout_prepare
,
1111 .unprepare
= si5351_clkout_unprepare
,
1112 .set_parent
= si5351_clkout_set_parent
,
1113 .get_parent
= si5351_clkout_get_parent
,
1114 .recalc_rate
= si5351_clkout_recalc_rate
,
1115 .round_rate
= si5351_clkout_round_rate
,
1116 .set_rate
= si5351_clkout_set_rate
,
1120 * Si5351 i2c probe and DT
1123 static const struct of_device_id si5351_dt_ids
[] = {
1124 { .compatible
= "silabs,si5351a", .data
= (void *)SI5351_VARIANT_A
, },
1125 { .compatible
= "silabs,si5351a-msop",
1126 .data
= (void *)SI5351_VARIANT_A3
, },
1127 { .compatible
= "silabs,si5351b", .data
= (void *)SI5351_VARIANT_B
, },
1128 { .compatible
= "silabs,si5351c", .data
= (void *)SI5351_VARIANT_C
, },
1131 MODULE_DEVICE_TABLE(of
, si5351_dt_ids
);
1133 static int si5351_dt_parse(struct i2c_client
*client
,
1134 enum si5351_variant variant
)
1136 struct device_node
*child
, *np
= client
->dev
.of_node
;
1137 struct si5351_platform_data
*pdata
;
1138 struct property
*prop
;
1146 pdata
= devm_kzalloc(&client
->dev
, sizeof(*pdata
), GFP_KERNEL
);
1151 * property silabs,pll-source : <num src>, [<..>]
1152 * allow to selectively set pll source
1154 of_property_for_each_u32(np
, "silabs,pll-source", prop
, p
, num
) {
1156 dev_err(&client
->dev
,
1157 "invalid pll %d on pll-source prop\n", num
);
1161 p
= of_prop_next_u32(prop
, p
, &val
);
1163 dev_err(&client
->dev
,
1164 "missing pll-source for pll %d\n", num
);
1170 pdata
->pll_src
[num
] = SI5351_PLL_SRC_XTAL
;
1173 if (variant
!= SI5351_VARIANT_C
) {
1174 dev_err(&client
->dev
,
1175 "invalid parent %d for pll %d\n",
1179 pdata
->pll_src
[num
] = SI5351_PLL_SRC_CLKIN
;
1182 dev_err(&client
->dev
,
1183 "invalid parent %d for pll %d\n", val
, num
);
1188 /* per clkout properties */
1189 for_each_child_of_node(np
, child
) {
1190 if (of_property_read_u32(child
, "reg", &num
)) {
1191 dev_err(&client
->dev
, "missing reg property of %s\n",
1197 (variant
== SI5351_VARIANT_A3
&& num
>= 3)) {
1198 dev_err(&client
->dev
, "invalid clkout %d\n", num
);
1202 if (!of_property_read_u32(child
, "silabs,multisynth-source",
1206 pdata
->clkout
[num
].multisynth_src
=
1207 SI5351_MULTISYNTH_SRC_VCO0
;
1210 pdata
->clkout
[num
].multisynth_src
=
1211 SI5351_MULTISYNTH_SRC_VCO1
;
1214 dev_err(&client
->dev
,
1215 "invalid parent %d for multisynth %d\n",
1221 if (!of_property_read_u32(child
, "silabs,clock-source", &val
)) {
1224 pdata
->clkout
[num
].clkout_src
=
1225 SI5351_CLKOUT_SRC_MSYNTH_N
;
1228 pdata
->clkout
[num
].clkout_src
=
1229 SI5351_CLKOUT_SRC_MSYNTH_0_4
;
1232 pdata
->clkout
[num
].clkout_src
=
1233 SI5351_CLKOUT_SRC_XTAL
;
1236 if (variant
!= SI5351_VARIANT_C
) {
1237 dev_err(&client
->dev
,
1238 "invalid parent %d for clkout %d\n",
1242 pdata
->clkout
[num
].clkout_src
=
1243 SI5351_CLKOUT_SRC_CLKIN
;
1246 dev_err(&client
->dev
,
1247 "invalid parent %d for clkout %d\n",
1253 if (!of_property_read_u32(child
, "silabs,drive-strength",
1256 case SI5351_DRIVE_2MA
:
1257 case SI5351_DRIVE_4MA
:
1258 case SI5351_DRIVE_6MA
:
1259 case SI5351_DRIVE_8MA
:
1260 pdata
->clkout
[num
].drive
= val
;
1263 dev_err(&client
->dev
,
1264 "invalid drive strength %d for clkout %d\n",
1270 if (!of_property_read_u32(child
, "silabs,disable-state",
1274 pdata
->clkout
[num
].disable_state
=
1278 pdata
->clkout
[num
].disable_state
=
1279 SI5351_DISABLE_HIGH
;
1282 pdata
->clkout
[num
].disable_state
=
1283 SI5351_DISABLE_FLOATING
;
1286 pdata
->clkout
[num
].disable_state
=
1287 SI5351_DISABLE_NEVER
;
1290 dev_err(&client
->dev
,
1291 "invalid disable state %d for clkout %d\n",
1297 if (!of_property_read_u32(child
, "clock-frequency", &val
))
1298 pdata
->clkout
[num
].rate
= val
;
1300 pdata
->clkout
[num
].pll_master
=
1301 of_property_read_bool(child
, "silabs,pll-master");
1303 client
->dev
.platform_data
= pdata
;
1311 static struct clk_hw
*
1312 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1314 struct si5351_driver_data
*drvdata
= data
;
1315 unsigned int idx
= clkspec
->args
[0];
1317 if (idx
>= drvdata
->num_clkout
) {
1318 pr_err("%s: invalid index %u\n", __func__
, idx
);
1319 return ERR_PTR(-EINVAL
);
1322 return &drvdata
->clkout
[idx
].hw
;
1325 static int si5351_dt_parse(struct i2c_client
*client
, enum si5351_variant variant
)
1330 static struct clk_hw
*
1331 si53351_of_clk_get(struct of_phandle_args
*clkspec
, void *data
)
1335 #endif /* CONFIG_OF */
1337 static int si5351_i2c_probe(struct i2c_client
*client
,
1338 const struct i2c_device_id
*id
)
1340 enum si5351_variant variant
= (enum si5351_variant
)id
->driver_data
;
1341 struct si5351_platform_data
*pdata
;
1342 struct si5351_driver_data
*drvdata
;
1343 struct clk_init_data init
;
1344 const char *parent_names
[4];
1345 u8 num_parents
, num_clocks
;
1348 ret
= si5351_dt_parse(client
, variant
);
1352 pdata
= client
->dev
.platform_data
;
1356 drvdata
= devm_kzalloc(&client
->dev
, sizeof(*drvdata
), GFP_KERNEL
);
1357 if (drvdata
== NULL
) {
1358 dev_err(&client
->dev
, "unable to allocate driver data\n");
1362 i2c_set_clientdata(client
, drvdata
);
1363 drvdata
->client
= client
;
1364 drvdata
->variant
= variant
;
1365 drvdata
->pxtal
= devm_clk_get(&client
->dev
, "xtal");
1366 drvdata
->pclkin
= devm_clk_get(&client
->dev
, "clkin");
1368 if (PTR_ERR(drvdata
->pxtal
) == -EPROBE_DEFER
||
1369 PTR_ERR(drvdata
->pclkin
) == -EPROBE_DEFER
)
1370 return -EPROBE_DEFER
;
1373 * Check for valid parent clock: VARIANT_A and VARIANT_B need XTAL,
1374 * VARIANT_C can have CLKIN instead.
1376 if (IS_ERR(drvdata
->pxtal
) &&
1377 (drvdata
->variant
!= SI5351_VARIANT_C
|| IS_ERR(drvdata
->pclkin
))) {
1378 dev_err(&client
->dev
, "missing parent clock\n");
1382 drvdata
->regmap
= devm_regmap_init_i2c(client
, &si5351_regmap_config
);
1383 if (IS_ERR(drvdata
->regmap
)) {
1384 dev_err(&client
->dev
, "failed to allocate register map\n");
1385 return PTR_ERR(drvdata
->regmap
);
1388 /* Disable interrupts */
1389 si5351_reg_write(drvdata
, SI5351_INTERRUPT_MASK
, 0xf0);
1390 /* Ensure pll select is on XTAL for Si5351A/B */
1391 if (drvdata
->variant
!= SI5351_VARIANT_C
)
1392 si5351_set_bits(drvdata
, SI5351_PLL_INPUT_SOURCE
,
1393 SI5351_PLLA_SOURCE
| SI5351_PLLB_SOURCE
, 0);
1395 /* setup clock configuration */
1396 for (n
= 0; n
< 2; n
++) {
1397 ret
= _si5351_pll_reparent(drvdata
, n
, pdata
->pll_src
[n
]);
1399 dev_err(&client
->dev
,
1400 "failed to reparent pll %d to %d\n",
1401 n
, pdata
->pll_src
[n
]);
1406 for (n
= 0; n
< 8; n
++) {
1407 ret
= _si5351_msynth_reparent(drvdata
, n
,
1408 pdata
->clkout
[n
].multisynth_src
);
1410 dev_err(&client
->dev
,
1411 "failed to reparent multisynth %d to %d\n",
1412 n
, pdata
->clkout
[n
].multisynth_src
);
1416 ret
= _si5351_clkout_reparent(drvdata
, n
,
1417 pdata
->clkout
[n
].clkout_src
);
1419 dev_err(&client
->dev
,
1420 "failed to reparent clkout %d to %d\n",
1421 n
, pdata
->clkout
[n
].clkout_src
);
1425 ret
= _si5351_clkout_set_drive_strength(drvdata
, n
,
1426 pdata
->clkout
[n
].drive
);
1428 dev_err(&client
->dev
,
1429 "failed set drive strength of clkout%d to %d\n",
1430 n
, pdata
->clkout
[n
].drive
);
1434 ret
= _si5351_clkout_set_disable_state(drvdata
, n
,
1435 pdata
->clkout
[n
].disable_state
);
1437 dev_err(&client
->dev
,
1438 "failed set disable state of clkout%d to %d\n",
1439 n
, pdata
->clkout
[n
].disable_state
);
1444 if (!IS_ERR(drvdata
->pxtal
))
1445 clk_prepare_enable(drvdata
->pxtal
);
1446 if (!IS_ERR(drvdata
->pclkin
))
1447 clk_prepare_enable(drvdata
->pclkin
);
1449 /* register xtal input clock gate */
1450 memset(&init
, 0, sizeof(init
));
1451 init
.name
= si5351_input_names
[0];
1452 init
.ops
= &si5351_xtal_ops
;
1454 if (!IS_ERR(drvdata
->pxtal
)) {
1455 drvdata
->pxtal_name
= __clk_get_name(drvdata
->pxtal
);
1456 init
.parent_names
= &drvdata
->pxtal_name
;
1457 init
.num_parents
= 1;
1459 drvdata
->xtal
.init
= &init
;
1460 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->xtal
);
1462 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1466 /* register clkin input clock gate */
1467 if (drvdata
->variant
== SI5351_VARIANT_C
) {
1468 memset(&init
, 0, sizeof(init
));
1469 init
.name
= si5351_input_names
[1];
1470 init
.ops
= &si5351_clkin_ops
;
1471 if (!IS_ERR(drvdata
->pclkin
)) {
1472 drvdata
->pclkin_name
= __clk_get_name(drvdata
->pclkin
);
1473 init
.parent_names
= &drvdata
->pclkin_name
;
1474 init
.num_parents
= 1;
1476 drvdata
->clkin
.init
= &init
;
1477 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->clkin
);
1479 dev_err(&client
->dev
, "unable to register %s\n",
1485 /* Si5351C allows to mux either xtal or clkin to PLL input */
1486 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 2 : 1;
1487 parent_names
[0] = si5351_input_names
[0];
1488 parent_names
[1] = si5351_input_names
[1];
1491 drvdata
->pll
[0].num
= 0;
1492 drvdata
->pll
[0].drvdata
= drvdata
;
1493 drvdata
->pll
[0].hw
.init
= &init
;
1494 memset(&init
, 0, sizeof(init
));
1495 init
.name
= si5351_pll_names
[0];
1496 init
.ops
= &si5351_pll_ops
;
1498 init
.parent_names
= parent_names
;
1499 init
.num_parents
= num_parents
;
1500 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[0].hw
);
1502 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1506 /* register PLLB or VXCO (Si5351B) */
1507 drvdata
->pll
[1].num
= 1;
1508 drvdata
->pll
[1].drvdata
= drvdata
;
1509 drvdata
->pll
[1].hw
.init
= &init
;
1510 memset(&init
, 0, sizeof(init
));
1511 if (drvdata
->variant
== SI5351_VARIANT_B
) {
1512 init
.name
= si5351_pll_names
[2];
1513 init
.ops
= &si5351_vxco_ops
;
1515 init
.parent_names
= NULL
;
1516 init
.num_parents
= 0;
1518 init
.name
= si5351_pll_names
[1];
1519 init
.ops
= &si5351_pll_ops
;
1521 init
.parent_names
= parent_names
;
1522 init
.num_parents
= num_parents
;
1524 ret
= devm_clk_hw_register(&client
->dev
, &drvdata
->pll
[1].hw
);
1526 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
1530 /* register clk multisync and clk out divider */
1531 num_clocks
= (drvdata
->variant
== SI5351_VARIANT_A3
) ? 3 : 8;
1532 parent_names
[0] = si5351_pll_names
[0];
1533 if (drvdata
->variant
== SI5351_VARIANT_B
)
1534 parent_names
[1] = si5351_pll_names
[2];
1536 parent_names
[1] = si5351_pll_names
[1];
1538 drvdata
->msynth
= devm_kzalloc(&client
->dev
, num_clocks
*
1539 sizeof(*drvdata
->msynth
), GFP_KERNEL
);
1540 drvdata
->clkout
= devm_kzalloc(&client
->dev
, num_clocks
*
1541 sizeof(*drvdata
->clkout
), GFP_KERNEL
);
1542 drvdata
->num_clkout
= num_clocks
;
1544 if (WARN_ON(!drvdata
->msynth
|| !drvdata
->clkout
)) {
1549 for (n
= 0; n
< num_clocks
; n
++) {
1550 drvdata
->msynth
[n
].num
= n
;
1551 drvdata
->msynth
[n
].drvdata
= drvdata
;
1552 drvdata
->msynth
[n
].hw
.init
= &init
;
1553 memset(&init
, 0, sizeof(init
));
1554 init
.name
= si5351_msynth_names
[n
];
1555 init
.ops
= &si5351_msynth_ops
;
1557 if (pdata
->clkout
[n
].pll_master
)
1558 init
.flags
|= CLK_SET_RATE_PARENT
;
1559 init
.parent_names
= parent_names
;
1560 init
.num_parents
= 2;
1561 ret
= devm_clk_hw_register(&client
->dev
,
1562 &drvdata
->msynth
[n
].hw
);
1564 dev_err(&client
->dev
, "unable to register %s\n",
1570 num_parents
= (drvdata
->variant
== SI5351_VARIANT_C
) ? 4 : 3;
1571 parent_names
[2] = si5351_input_names
[0];
1572 parent_names
[3] = si5351_input_names
[1];
1573 for (n
= 0; n
< num_clocks
; n
++) {
1574 parent_names
[0] = si5351_msynth_names
[n
];
1575 parent_names
[1] = (n
< 4) ? si5351_msynth_names
[0] :
1576 si5351_msynth_names
[4];
1578 drvdata
->clkout
[n
].num
= n
;
1579 drvdata
->clkout
[n
].drvdata
= drvdata
;
1580 drvdata
->clkout
[n
].hw
.init
= &init
;
1581 memset(&init
, 0, sizeof(init
));
1582 init
.name
= si5351_clkout_names
[n
];
1583 init
.ops
= &si5351_clkout_ops
;
1585 if (pdata
->clkout
[n
].clkout_src
== SI5351_CLKOUT_SRC_MSYNTH_N
)
1586 init
.flags
|= CLK_SET_RATE_PARENT
;
1587 init
.parent_names
= parent_names
;
1588 init
.num_parents
= num_parents
;
1589 ret
= devm_clk_hw_register(&client
->dev
,
1590 &drvdata
->clkout
[n
].hw
);
1592 dev_err(&client
->dev
, "unable to register %s\n",
1597 /* set initial clkout rate */
1598 if (pdata
->clkout
[n
].rate
!= 0) {
1600 ret
= clk_set_rate(drvdata
->clkout
[n
].hw
.clk
,
1601 pdata
->clkout
[n
].rate
);
1603 dev_err(&client
->dev
, "Cannot set rate : %d\n",
1609 ret
= of_clk_add_hw_provider(client
->dev
.of_node
, si53351_of_clk_get
,
1612 dev_err(&client
->dev
, "unable to add clk provider\n");
1619 if (!IS_ERR(drvdata
->pxtal
))
1620 clk_disable_unprepare(drvdata
->pxtal
);
1621 if (!IS_ERR(drvdata
->pclkin
))
1622 clk_disable_unprepare(drvdata
->pclkin
);
1626 static const struct i2c_device_id si5351_i2c_ids
[] = {
1627 { "si5351a", SI5351_VARIANT_A
},
1628 { "si5351a-msop", SI5351_VARIANT_A3
},
1629 { "si5351b", SI5351_VARIANT_B
},
1630 { "si5351c", SI5351_VARIANT_C
},
1633 MODULE_DEVICE_TABLE(i2c
, si5351_i2c_ids
);
1635 static struct i2c_driver si5351_driver
= {
1638 .of_match_table
= of_match_ptr(si5351_dt_ids
),
1640 .probe
= si5351_i2c_probe
,
1641 .id_table
= si5351_i2c_ids
,
1643 module_i2c_driver(si5351_driver
);
1645 MODULE_AUTHOR("Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com");
1646 MODULE_DESCRIPTION("Silicon Labs Si5351A/B/C clock generator driver");
1647 MODULE_LICENSE("GPL");