2 * Driver for IDT Versaclock 5
4 * Copyright (C) 2017 Marek Vasut <marek.vasut@gmail.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
18 * Possible optimizations:
19 * - Use spread spectrum
20 * - Use integer divider in FOD if applicable
23 #include <linux/clk.h>
24 #include <linux/clk-provider.h>
25 #include <linux/delay.h>
26 #include <linux/i2c.h>
27 #include <linux/interrupt.h>
28 #include <linux/mod_devicetable.h>
29 #include <linux/module.h>
31 #include <linux/of_platform.h>
32 #include <linux/rational.h>
33 #include <linux/regmap.h>
34 #include <linux/slab.h>
36 /* VersaClock5 registers */
37 #define VC5_OTP_CONTROL 0x00
39 /* Factory-reserved register block */
40 #define VC5_RSVD_DEVICE_ID 0x01
41 #define VC5_RSVD_ADC_GAIN_7_0 0x02
42 #define VC5_RSVD_ADC_GAIN_15_8 0x03
43 #define VC5_RSVD_ADC_OFFSET_7_0 0x04
44 #define VC5_RSVD_ADC_OFFSET_15_8 0x05
45 #define VC5_RSVD_TEMPY 0x06
46 #define VC5_RSVD_OFFSET_TBIN 0x07
47 #define VC5_RSVD_GAIN 0x08
48 #define VC5_RSVD_TEST_NP 0x09
49 #define VC5_RSVD_UNUSED 0x0a
50 #define VC5_RSVD_BANDGAP_TRIM_UP 0x0b
51 #define VC5_RSVD_BANDGAP_TRIM_DN 0x0c
52 #define VC5_RSVD_CLK_R_12_CLK_AMP_4 0x0d
53 #define VC5_RSVD_CLK_R_34_CLK_AMP_4 0x0e
54 #define VC5_RSVD_CLK_AMP_123 0x0f
56 /* Configuration register block */
57 #define VC5_PRIM_SRC_SHDN 0x10
58 #define VC5_PRIM_SRC_SHDN_EN_XTAL BIT(7)
59 #define VC5_PRIM_SRC_SHDN_EN_CLKIN BIT(6)
60 #define VC5_PRIM_SRC_SHDN_EN_DOUBLE_XTAL_FREQ BIT(3)
61 #define VC5_PRIM_SRC_SHDN_SP BIT(1)
62 #define VC5_PRIM_SRC_SHDN_EN_GBL_SHDN BIT(0)
64 #define VC5_VCO_BAND 0x11
65 #define VC5_XTAL_X1_LOAD_CAP 0x12
66 #define VC5_XTAL_X2_LOAD_CAP 0x13
67 #define VC5_REF_DIVIDER 0x15
68 #define VC5_REF_DIVIDER_SEL_PREDIV2 BIT(7)
69 #define VC5_REF_DIVIDER_REF_DIV(n) ((n) & 0x3f)
71 #define VC5_VCO_CTRL_AND_PREDIV 0x16
72 #define VC5_VCO_CTRL_AND_PREDIV_BYPASS_PREDIV BIT(7)
74 #define VC5_FEEDBACK_INT_DIV 0x17
75 #define VC5_FEEDBACK_INT_DIV_BITS 0x18
76 #define VC5_FEEDBACK_FRAC_DIV(n) (0x19 + (n))
77 #define VC5_RC_CONTROL0 0x1e
78 #define VC5_RC_CONTROL1 0x1f
79 /* Register 0x20 is factory reserved */
81 /* Output divider control for divider 1,2,3,4 */
82 #define VC5_OUT_DIV_CONTROL(idx) (0x21 + ((idx) * 0x10))
83 #define VC5_OUT_DIV_CONTROL_RESET BIT(7)
84 #define VC5_OUT_DIV_CONTROL_SELB_NORM BIT(3)
85 #define VC5_OUT_DIV_CONTROL_SEL_EXT BIT(2)
86 #define VC5_OUT_DIV_CONTROL_INT_MODE BIT(1)
87 #define VC5_OUT_DIV_CONTROL_EN_FOD BIT(0)
89 #define VC5_OUT_DIV_FRAC(idx, n) (0x22 + ((idx) * 0x10) + (n))
90 #define VC5_OUT_DIV_FRAC4_OD_SCEE BIT(1)
92 #define VC5_OUT_DIV_STEP_SPREAD(idx, n) (0x26 + ((idx) * 0x10) + (n))
93 #define VC5_OUT_DIV_SPREAD_MOD(idx, n) (0x29 + ((idx) * 0x10) + (n))
94 #define VC5_OUT_DIV_SKEW_INT(idx, n) (0x2b + ((idx) * 0x10) + (n))
95 #define VC5_OUT_DIV_INT(idx, n) (0x2d + ((idx) * 0x10) + (n))
96 #define VC5_OUT_DIV_SKEW_FRAC(idx) (0x2f + ((idx) * 0x10))
97 /* Registers 0x30, 0x40, 0x50 are factory reserved */
99 /* Clock control register for clock 1,2 */
100 #define VC5_CLK_OUTPUT_CFG(idx, n) (0x60 + ((idx) * 0x2) + (n))
101 #define VC5_CLK_OUTPUT_CFG1_EN_CLKBUF BIT(0)
103 #define VC5_CLK_OE_SHDN 0x68
104 #define VC5_CLK_OS_SHDN 0x69
106 #define VC5_GLOBAL_REGISTER 0x76
107 #define VC5_GLOBAL_REGISTER_GLOBAL_RESET BIT(5)
109 /* PLL/VCO runs between 2.5 GHz and 3.0 GHz */
110 #define VC5_PLL_VCO_MIN 2500000000UL
111 #define VC5_PLL_VCO_MAX 3000000000UL
113 /* VC5 Input mux settings */
114 #define VC5_MUX_IN_XIN BIT(0)
115 #define VC5_MUX_IN_CLKIN BIT(1)
117 /* Maximum number of clk_out supported by this driver */
118 #define VC5_MAX_CLK_OUT_NUM 5
120 /* Maximum number of FODs supported by this driver */
121 #define VC5_MAX_FOD_NUM 4
123 /* flags to describe chip features */
124 /* chip has built-in oscilator */
125 #define VC5_HAS_INTERNAL_XTAL BIT(0)
126 /* chip has PFD requency doubler */
127 #define VC5_HAS_PFD_FREQ_DBL BIT(1)
129 /* Supported IDT VC5 models. */
138 /* Structure to describe features of a particular VC5 model */
139 struct vc5_chip_info
{
140 const enum vc5_model model
;
141 const unsigned int clk_fod_cnt
;
142 const unsigned int clk_out_cnt
;
146 struct vc5_driver_data
;
150 struct vc5_driver_data
*vc5
;
156 struct vc5_driver_data
{
157 struct i2c_client
*client
;
158 struct regmap
*regmap
;
159 const struct vc5_chip_info
*chip_info
;
162 struct clk
*pin_clkin
;
163 unsigned char clk_mux_ins
;
164 struct clk_hw clk_mux
;
165 struct clk_hw clk_mul
;
166 struct clk_hw clk_pfd
;
167 struct vc5_hw_data clk_pll
;
168 struct vc5_hw_data clk_fod
[VC5_MAX_FOD_NUM
];
169 struct vc5_hw_data clk_out
[VC5_MAX_CLK_OUT_NUM
];
172 static const char * const vc5_mux_names
[] = {
176 static const char * const vc5_dbl_names
[] = {
180 static const char * const vc5_pfd_names
[] = {
184 static const char * const vc5_pll_names
[] = {
188 static const char * const vc5_fod_names
[] = {
189 "fod0", "fod1", "fod2", "fod3",
192 static const char * const vc5_clk_out_names
[] = {
193 "out0_sel_i2cb", "out1", "out2", "out3", "out4",
197 * VersaClock5 i2c regmap
199 static bool vc5_regmap_is_writeable(struct device
*dev
, unsigned int reg
)
201 /* Factory reserved regs, make them read-only */
205 /* Factory reserved regs, make them read-only */
206 if (reg
== 0x14 || reg
== 0x1c || reg
== 0x1d)
212 static const struct regmap_config vc5_regmap_config
= {
215 .cache_type
= REGCACHE_RBTREE
,
216 .max_register
= 0x76,
217 .writeable_reg
= vc5_regmap_is_writeable
,
221 * VersaClock5 input multiplexer between XTAL and CLKIN divider
223 static unsigned char vc5_mux_get_parent(struct clk_hw
*hw
)
225 struct vc5_driver_data
*vc5
=
226 container_of(hw
, struct vc5_driver_data
, clk_mux
);
227 const u8 mask
= VC5_PRIM_SRC_SHDN_EN_XTAL
| VC5_PRIM_SRC_SHDN_EN_CLKIN
;
230 regmap_read(vc5
->regmap
, VC5_PRIM_SRC_SHDN
, &src
);
233 if (src
== VC5_PRIM_SRC_SHDN_EN_XTAL
)
236 if (src
== VC5_PRIM_SRC_SHDN_EN_CLKIN
)
239 dev_warn(&vc5
->client
->dev
,
240 "Invalid clock input configuration (%02x)\n", src
);
244 static int vc5_mux_set_parent(struct clk_hw
*hw
, u8 index
)
246 struct vc5_driver_data
*vc5
=
247 container_of(hw
, struct vc5_driver_data
, clk_mux
);
248 const u8 mask
= VC5_PRIM_SRC_SHDN_EN_XTAL
| VC5_PRIM_SRC_SHDN_EN_CLKIN
;
251 if ((index
> 1) || !vc5
->clk_mux_ins
)
254 if (vc5
->clk_mux_ins
== (VC5_MUX_IN_CLKIN
| VC5_MUX_IN_XIN
)) {
256 src
= VC5_PRIM_SRC_SHDN_EN_XTAL
;
258 src
= VC5_PRIM_SRC_SHDN_EN_CLKIN
;
263 if (vc5
->clk_mux_ins
== VC5_MUX_IN_XIN
)
264 src
= VC5_PRIM_SRC_SHDN_EN_XTAL
;
265 else if (vc5
->clk_mux_ins
== VC5_MUX_IN_CLKIN
)
266 src
= VC5_PRIM_SRC_SHDN_EN_CLKIN
;
267 else /* Invalid; should have been caught by vc5_probe() */
271 return regmap_update_bits(vc5
->regmap
, VC5_PRIM_SRC_SHDN
, mask
, src
);
274 static const struct clk_ops vc5_mux_ops
= {
275 .set_parent
= vc5_mux_set_parent
,
276 .get_parent
= vc5_mux_get_parent
,
279 static unsigned long vc5_dbl_recalc_rate(struct clk_hw
*hw
,
280 unsigned long parent_rate
)
282 struct vc5_driver_data
*vc5
=
283 container_of(hw
, struct vc5_driver_data
, clk_mul
);
286 regmap_read(vc5
->regmap
, VC5_PRIM_SRC_SHDN
, &premul
);
287 if (premul
& VC5_PRIM_SRC_SHDN_EN_DOUBLE_XTAL_FREQ
)
293 static long vc5_dbl_round_rate(struct clk_hw
*hw
, unsigned long rate
,
294 unsigned long *parent_rate
)
296 if ((*parent_rate
== rate
) || ((*parent_rate
* 2) == rate
))
302 static int vc5_dbl_set_rate(struct clk_hw
*hw
, unsigned long rate
,
303 unsigned long parent_rate
)
305 struct vc5_driver_data
*vc5
=
306 container_of(hw
, struct vc5_driver_data
, clk_mul
);
309 if ((parent_rate
* 2) == rate
)
310 mask
= VC5_PRIM_SRC_SHDN_EN_DOUBLE_XTAL_FREQ
;
314 regmap_update_bits(vc5
->regmap
, VC5_PRIM_SRC_SHDN
,
315 VC5_PRIM_SRC_SHDN_EN_DOUBLE_XTAL_FREQ
,
321 static const struct clk_ops vc5_dbl_ops
= {
322 .recalc_rate
= vc5_dbl_recalc_rate
,
323 .round_rate
= vc5_dbl_round_rate
,
324 .set_rate
= vc5_dbl_set_rate
,
327 static unsigned long vc5_pfd_recalc_rate(struct clk_hw
*hw
,
328 unsigned long parent_rate
)
330 struct vc5_driver_data
*vc5
=
331 container_of(hw
, struct vc5_driver_data
, clk_pfd
);
332 unsigned int prediv
, div
;
334 regmap_read(vc5
->regmap
, VC5_VCO_CTRL_AND_PREDIV
, &prediv
);
336 /* The bypass_prediv is set, PLL fed from Ref_in directly. */
337 if (prediv
& VC5_VCO_CTRL_AND_PREDIV_BYPASS_PREDIV
)
340 regmap_read(vc5
->regmap
, VC5_REF_DIVIDER
, &div
);
342 /* The Sel_prediv2 is set, PLL fed from prediv2 (Ref_in / 2) */
343 if (div
& VC5_REF_DIVIDER_SEL_PREDIV2
)
344 return parent_rate
/ 2;
346 return parent_rate
/ VC5_REF_DIVIDER_REF_DIV(div
);
349 static long vc5_pfd_round_rate(struct clk_hw
*hw
, unsigned long rate
,
350 unsigned long *parent_rate
)
354 /* PLL cannot operate with input clock above 50 MHz. */
358 /* CLKIN within range of PLL input, feed directly to PLL. */
359 if (*parent_rate
<= 50000000)
362 idiv
= DIV_ROUND_UP(*parent_rate
, rate
);
366 return *parent_rate
/ idiv
;
369 static int vc5_pfd_set_rate(struct clk_hw
*hw
, unsigned long rate
,
370 unsigned long parent_rate
)
372 struct vc5_driver_data
*vc5
=
373 container_of(hw
, struct vc5_driver_data
, clk_pfd
);
377 /* CLKIN within range of PLL input, feed directly to PLL. */
378 if (parent_rate
<= 50000000) {
379 regmap_update_bits(vc5
->regmap
, VC5_VCO_CTRL_AND_PREDIV
,
380 VC5_VCO_CTRL_AND_PREDIV_BYPASS_PREDIV
,
381 VC5_VCO_CTRL_AND_PREDIV_BYPASS_PREDIV
);
382 regmap_update_bits(vc5
->regmap
, VC5_REF_DIVIDER
, 0xff, 0x00);
386 idiv
= DIV_ROUND_UP(parent_rate
, rate
);
388 /* We have dedicated div-2 predivider. */
390 div
= VC5_REF_DIVIDER_SEL_PREDIV2
;
392 div
= VC5_REF_DIVIDER_REF_DIV(idiv
);
394 regmap_update_bits(vc5
->regmap
, VC5_REF_DIVIDER
, 0xff, div
);
395 regmap_update_bits(vc5
->regmap
, VC5_VCO_CTRL_AND_PREDIV
,
396 VC5_VCO_CTRL_AND_PREDIV_BYPASS_PREDIV
, 0);
401 static const struct clk_ops vc5_pfd_ops
= {
402 .recalc_rate
= vc5_pfd_recalc_rate
,
403 .round_rate
= vc5_pfd_round_rate
,
404 .set_rate
= vc5_pfd_set_rate
,
408 * VersaClock5 PLL/VCO
410 static unsigned long vc5_pll_recalc_rate(struct clk_hw
*hw
,
411 unsigned long parent_rate
)
413 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
414 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
415 u32 div_int
, div_frc
;
418 regmap_bulk_read(vc5
->regmap
, VC5_FEEDBACK_INT_DIV
, fb
, 5);
420 div_int
= (fb
[0] << 4) | (fb
[1] >> 4);
421 div_frc
= (fb
[2] << 16) | (fb
[3] << 8) | fb
[4];
423 /* The PLL divider has 12 integer bits and 24 fractional bits */
424 return (parent_rate
* div_int
) + ((parent_rate
* div_frc
) >> 24);
427 static long vc5_pll_round_rate(struct clk_hw
*hw
, unsigned long rate
,
428 unsigned long *parent_rate
)
430 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
434 if (rate
< VC5_PLL_VCO_MIN
)
435 rate
= VC5_PLL_VCO_MIN
;
436 if (rate
> VC5_PLL_VCO_MAX
)
437 rate
= VC5_PLL_VCO_MAX
;
439 /* Determine integer part, which is 12 bit wide */
440 div_int
= rate
/ *parent_rate
;
442 rate
= *parent_rate
* 0xfff;
444 /* Determine best fractional part, which is 24 bit wide */
445 div_frc
= rate
% *parent_rate
;
446 div_frc
*= BIT(24) - 1;
447 do_div(div_frc
, *parent_rate
);
449 hwdata
->div_int
= div_int
;
450 hwdata
->div_frc
= (u32
)div_frc
;
452 return (*parent_rate
* div_int
) + ((*parent_rate
* div_frc
) >> 24);
455 static int vc5_pll_set_rate(struct clk_hw
*hw
, unsigned long rate
,
456 unsigned long parent_rate
)
458 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
459 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
462 fb
[0] = hwdata
->div_int
>> 4;
463 fb
[1] = hwdata
->div_int
<< 4;
464 fb
[2] = hwdata
->div_frc
>> 16;
465 fb
[3] = hwdata
->div_frc
>> 8;
466 fb
[4] = hwdata
->div_frc
;
468 return regmap_bulk_write(vc5
->regmap
, VC5_FEEDBACK_INT_DIV
, fb
, 5);
471 static const struct clk_ops vc5_pll_ops
= {
472 .recalc_rate
= vc5_pll_recalc_rate
,
473 .round_rate
= vc5_pll_round_rate
,
474 .set_rate
= vc5_pll_set_rate
,
477 static unsigned long vc5_fod_recalc_rate(struct clk_hw
*hw
,
478 unsigned long parent_rate
)
480 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
481 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
482 /* VCO frequency is divided by two before entering FOD */
483 u32 f_in
= parent_rate
/ 2;
484 u32 div_int
, div_frc
;
488 regmap_bulk_read(vc5
->regmap
, VC5_OUT_DIV_INT(hwdata
->num
, 0),
490 regmap_bulk_read(vc5
->regmap
, VC5_OUT_DIV_FRAC(hwdata
->num
, 0),
493 div_int
= (od_int
[0] << 4) | (od_int
[1] >> 4);
494 div_frc
= (od_frc
[0] << 22) | (od_frc
[1] << 14) |
495 (od_frc
[2] << 6) | (od_frc
[3] >> 2);
497 /* Avoid division by zero if the output is not configured. */
498 if (div_int
== 0 && div_frc
== 0)
501 /* The PLL divider has 12 integer bits and 30 fractional bits */
502 return div64_u64((u64
)f_in
<< 24ULL, ((u64
)div_int
<< 24ULL) + div_frc
);
505 static long vc5_fod_round_rate(struct clk_hw
*hw
, unsigned long rate
,
506 unsigned long *parent_rate
)
508 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
509 /* VCO frequency is divided by two before entering FOD */
510 u32 f_in
= *parent_rate
/ 2;
514 /* Determine integer part, which is 12 bit wide */
515 div_int
= f_in
/ rate
;
517 * WARNING: The clock chip does not output signal if the integer part
518 * of the divider is 0xfff and fractional part is non-zero.
519 * Clamp the divider at 0xffe to keep the code simple.
521 if (div_int
> 0xffe) {
523 rate
= f_in
/ div_int
;
526 /* Determine best fractional part, which is 30 bit wide */
527 div_frc
= f_in
% rate
;
529 do_div(div_frc
, rate
);
531 hwdata
->div_int
= div_int
;
532 hwdata
->div_frc
= (u32
)div_frc
;
534 return div64_u64((u64
)f_in
<< 24ULL, ((u64
)div_int
<< 24ULL) + div_frc
);
537 static int vc5_fod_set_rate(struct clk_hw
*hw
, unsigned long rate
,
538 unsigned long parent_rate
)
540 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
541 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
543 hwdata
->div_frc
>> 22, hwdata
->div_frc
>> 14,
544 hwdata
->div_frc
>> 6, hwdata
->div_frc
<< 2,
547 hwdata
->div_int
>> 4, hwdata
->div_int
<< 4,
551 regmap_bulk_write(vc5
->regmap
, VC5_OUT_DIV_FRAC(hwdata
->num
, 0),
555 * Toggle magic bit in undocumented register for unknown reason.
556 * This is what the IDT timing commander tool does and the chip
557 * datasheet somewhat implies this is needed, but the register
558 * and the bit is not documented.
560 regmap_update_bits(vc5
->regmap
, VC5_GLOBAL_REGISTER
,
561 VC5_GLOBAL_REGISTER_GLOBAL_RESET
, 0);
562 regmap_update_bits(vc5
->regmap
, VC5_GLOBAL_REGISTER
,
563 VC5_GLOBAL_REGISTER_GLOBAL_RESET
,
564 VC5_GLOBAL_REGISTER_GLOBAL_RESET
);
568 static const struct clk_ops vc5_fod_ops
= {
569 .recalc_rate
= vc5_fod_recalc_rate
,
570 .round_rate
= vc5_fod_round_rate
,
571 .set_rate
= vc5_fod_set_rate
,
574 static int vc5_clk_out_prepare(struct clk_hw
*hw
)
576 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
577 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
578 const u8 mask
= VC5_OUT_DIV_CONTROL_SELB_NORM
|
579 VC5_OUT_DIV_CONTROL_SEL_EXT
|
580 VC5_OUT_DIV_CONTROL_EN_FOD
;
585 * If the input mux is disabled, enable it first and
586 * select source from matching FOD.
588 regmap_read(vc5
->regmap
, VC5_OUT_DIV_CONTROL(hwdata
->num
), &src
);
589 if ((src
& mask
) == 0) {
590 src
= VC5_OUT_DIV_CONTROL_RESET
| VC5_OUT_DIV_CONTROL_EN_FOD
;
591 ret
= regmap_update_bits(vc5
->regmap
,
592 VC5_OUT_DIV_CONTROL(hwdata
->num
),
593 mask
| VC5_OUT_DIV_CONTROL_RESET
, src
);
598 /* Enable the clock buffer */
599 regmap_update_bits(vc5
->regmap
, VC5_CLK_OUTPUT_CFG(hwdata
->num
, 1),
600 VC5_CLK_OUTPUT_CFG1_EN_CLKBUF
,
601 VC5_CLK_OUTPUT_CFG1_EN_CLKBUF
);
605 static void vc5_clk_out_unprepare(struct clk_hw
*hw
)
607 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
608 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
610 /* Disable the clock buffer */
611 regmap_update_bits(vc5
->regmap
, VC5_CLK_OUTPUT_CFG(hwdata
->num
, 1),
612 VC5_CLK_OUTPUT_CFG1_EN_CLKBUF
, 0);
615 static unsigned char vc5_clk_out_get_parent(struct clk_hw
*hw
)
617 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
618 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
619 const u8 mask
= VC5_OUT_DIV_CONTROL_SELB_NORM
|
620 VC5_OUT_DIV_CONTROL_SEL_EXT
|
621 VC5_OUT_DIV_CONTROL_EN_FOD
;
622 const u8 fodclkmask
= VC5_OUT_DIV_CONTROL_SELB_NORM
|
623 VC5_OUT_DIV_CONTROL_EN_FOD
;
624 const u8 extclk
= VC5_OUT_DIV_CONTROL_SELB_NORM
|
625 VC5_OUT_DIV_CONTROL_SEL_EXT
;
628 regmap_read(vc5
->regmap
, VC5_OUT_DIV_CONTROL(hwdata
->num
), &src
);
631 if (src
== 0) /* Input mux set to DISABLED */
634 if ((src
& fodclkmask
) == VC5_OUT_DIV_CONTROL_EN_FOD
)
640 dev_warn(&vc5
->client
->dev
,
641 "Invalid clock output configuration (%02x)\n", src
);
645 static int vc5_clk_out_set_parent(struct clk_hw
*hw
, u8 index
)
647 struct vc5_hw_data
*hwdata
= container_of(hw
, struct vc5_hw_data
, hw
);
648 struct vc5_driver_data
*vc5
= hwdata
->vc5
;
649 const u8 mask
= VC5_OUT_DIV_CONTROL_RESET
|
650 VC5_OUT_DIV_CONTROL_SELB_NORM
|
651 VC5_OUT_DIV_CONTROL_SEL_EXT
|
652 VC5_OUT_DIV_CONTROL_EN_FOD
;
653 const u8 extclk
= VC5_OUT_DIV_CONTROL_SELB_NORM
|
654 VC5_OUT_DIV_CONTROL_SEL_EXT
;
655 u8 src
= VC5_OUT_DIV_CONTROL_RESET
;
658 src
|= VC5_OUT_DIV_CONTROL_EN_FOD
;
662 return regmap_update_bits(vc5
->regmap
, VC5_OUT_DIV_CONTROL(hwdata
->num
),
666 static const struct clk_ops vc5_clk_out_ops
= {
667 .prepare
= vc5_clk_out_prepare
,
668 .unprepare
= vc5_clk_out_unprepare
,
669 .set_parent
= vc5_clk_out_set_parent
,
670 .get_parent
= vc5_clk_out_get_parent
,
673 static struct clk_hw
*vc5_of_clk_get(struct of_phandle_args
*clkspec
,
676 struct vc5_driver_data
*vc5
= data
;
677 unsigned int idx
= clkspec
->args
[0];
679 if (idx
>= vc5
->chip_info
->clk_out_cnt
)
680 return ERR_PTR(-EINVAL
);
682 return &vc5
->clk_out
[idx
].hw
;
685 static int vc5_map_index_to_output(const enum vc5_model model
,
686 const unsigned int n
)
689 case IDT_VC5_5P49V5933
:
690 return (n
== 0) ? 0 : 3;
691 case IDT_VC5_5P49V5923
:
692 case IDT_VC5_5P49V5925
:
693 case IDT_VC5_5P49V5935
:
694 case IDT_VC6_5P49V6901
:
700 static const struct of_device_id clk_vc5_of_match
[];
702 static int vc5_probe(struct i2c_client
*client
,
703 const struct i2c_device_id
*id
)
705 struct vc5_driver_data
*vc5
;
706 struct clk_init_data init
;
707 const char *parent_names
[2];
708 unsigned int n
, idx
= 0;
711 vc5
= devm_kzalloc(&client
->dev
, sizeof(*vc5
), GFP_KERNEL
);
715 i2c_set_clientdata(client
, vc5
);
716 vc5
->client
= client
;
717 vc5
->chip_info
= of_device_get_match_data(&client
->dev
);
719 vc5
->pin_xin
= devm_clk_get(&client
->dev
, "xin");
720 if (PTR_ERR(vc5
->pin_xin
) == -EPROBE_DEFER
)
721 return -EPROBE_DEFER
;
723 vc5
->pin_clkin
= devm_clk_get(&client
->dev
, "clkin");
724 if (PTR_ERR(vc5
->pin_clkin
) == -EPROBE_DEFER
)
725 return -EPROBE_DEFER
;
727 vc5
->regmap
= devm_regmap_init_i2c(client
, &vc5_regmap_config
);
728 if (IS_ERR(vc5
->regmap
)) {
729 dev_err(&client
->dev
, "failed to allocate register map\n");
730 return PTR_ERR(vc5
->regmap
);
733 /* Register clock input mux */
734 memset(&init
, 0, sizeof(init
));
736 if (!IS_ERR(vc5
->pin_xin
)) {
737 vc5
->clk_mux_ins
|= VC5_MUX_IN_XIN
;
738 parent_names
[init
.num_parents
++] = __clk_get_name(vc5
->pin_xin
);
739 } else if (vc5
->chip_info
->flags
& VC5_HAS_INTERNAL_XTAL
) {
740 vc5
->pin_xin
= clk_register_fixed_rate(&client
->dev
,
741 "internal-xtal", NULL
,
743 if (IS_ERR(vc5
->pin_xin
))
744 return PTR_ERR(vc5
->pin_xin
);
745 vc5
->clk_mux_ins
|= VC5_MUX_IN_XIN
;
746 parent_names
[init
.num_parents
++] = __clk_get_name(vc5
->pin_xin
);
749 if (!IS_ERR(vc5
->pin_clkin
)) {
750 vc5
->clk_mux_ins
|= VC5_MUX_IN_CLKIN
;
751 parent_names
[init
.num_parents
++] =
752 __clk_get_name(vc5
->pin_clkin
);
755 if (!init
.num_parents
) {
756 dev_err(&client
->dev
, "no input clock specified!\n");
760 init
.name
= vc5_mux_names
[0];
761 init
.ops
= &vc5_mux_ops
;
763 init
.parent_names
= parent_names
;
764 vc5
->clk_mux
.init
= &init
;
765 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_mux
);
767 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
771 if (vc5
->chip_info
->flags
& VC5_HAS_PFD_FREQ_DBL
) {
772 /* Register frequency doubler */
773 memset(&init
, 0, sizeof(init
));
774 init
.name
= vc5_dbl_names
[0];
775 init
.ops
= &vc5_dbl_ops
;
776 init
.flags
= CLK_SET_RATE_PARENT
;
777 init
.parent_names
= vc5_mux_names
;
778 init
.num_parents
= 1;
779 vc5
->clk_mul
.init
= &init
;
780 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_mul
);
782 dev_err(&client
->dev
, "unable to register %s\n",
789 memset(&init
, 0, sizeof(init
));
790 init
.name
= vc5_pfd_names
[0];
791 init
.ops
= &vc5_pfd_ops
;
792 init
.flags
= CLK_SET_RATE_PARENT
;
793 if (vc5
->chip_info
->flags
& VC5_HAS_PFD_FREQ_DBL
)
794 init
.parent_names
= vc5_dbl_names
;
796 init
.parent_names
= vc5_mux_names
;
797 init
.num_parents
= 1;
798 vc5
->clk_pfd
.init
= &init
;
799 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_pfd
);
801 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
806 memset(&init
, 0, sizeof(init
));
807 init
.name
= vc5_pll_names
[0];
808 init
.ops
= &vc5_pll_ops
;
809 init
.flags
= CLK_SET_RATE_PARENT
;
810 init
.parent_names
= vc5_pfd_names
;
811 init
.num_parents
= 1;
812 vc5
->clk_pll
.num
= 0;
813 vc5
->clk_pll
.vc5
= vc5
;
814 vc5
->clk_pll
.hw
.init
= &init
;
815 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_pll
.hw
);
817 dev_err(&client
->dev
, "unable to register %s\n", init
.name
);
822 for (n
= 0; n
< vc5
->chip_info
->clk_fod_cnt
; n
++) {
823 idx
= vc5_map_index_to_output(vc5
->chip_info
->model
, n
);
824 memset(&init
, 0, sizeof(init
));
825 init
.name
= vc5_fod_names
[idx
];
826 init
.ops
= &vc5_fod_ops
;
827 init
.flags
= CLK_SET_RATE_PARENT
;
828 init
.parent_names
= vc5_pll_names
;
829 init
.num_parents
= 1;
830 vc5
->clk_fod
[n
].num
= idx
;
831 vc5
->clk_fod
[n
].vc5
= vc5
;
832 vc5
->clk_fod
[n
].hw
.init
= &init
;
833 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_fod
[n
].hw
);
835 dev_err(&client
->dev
, "unable to register %s\n",
841 /* Register MUX-connected OUT0_I2C_SELB output */
842 memset(&init
, 0, sizeof(init
));
843 init
.name
= vc5_clk_out_names
[0];
844 init
.ops
= &vc5_clk_out_ops
;
845 init
.flags
= CLK_SET_RATE_PARENT
;
846 init
.parent_names
= vc5_mux_names
;
847 init
.num_parents
= 1;
848 vc5
->clk_out
[0].num
= idx
;
849 vc5
->clk_out
[0].vc5
= vc5
;
850 vc5
->clk_out
[0].hw
.init
= &init
;
851 ret
= devm_clk_hw_register(&client
->dev
, &vc5
->clk_out
[0].hw
);
853 dev_err(&client
->dev
, "unable to register %s\n",
858 /* Register FOD-connected OUTx outputs */
859 for (n
= 1; n
< vc5
->chip_info
->clk_out_cnt
; n
++) {
860 idx
= vc5_map_index_to_output(vc5
->chip_info
->model
, n
- 1);
861 parent_names
[0] = vc5_fod_names
[idx
];
863 parent_names
[1] = vc5_mux_names
[0];
865 parent_names
[1] = vc5_clk_out_names
[n
- 1];
867 memset(&init
, 0, sizeof(init
));
868 init
.name
= vc5_clk_out_names
[idx
+ 1];
869 init
.ops
= &vc5_clk_out_ops
;
870 init
.flags
= CLK_SET_RATE_PARENT
;
871 init
.parent_names
= parent_names
;
872 init
.num_parents
= 2;
873 vc5
->clk_out
[n
].num
= idx
;
874 vc5
->clk_out
[n
].vc5
= vc5
;
875 vc5
->clk_out
[n
].hw
.init
= &init
;
876 ret
= devm_clk_hw_register(&client
->dev
,
877 &vc5
->clk_out
[n
].hw
);
879 dev_err(&client
->dev
, "unable to register %s\n",
885 ret
= of_clk_add_hw_provider(client
->dev
.of_node
, vc5_of_clk_get
, vc5
);
887 dev_err(&client
->dev
, "unable to add clk provider\n");
894 if (vc5
->chip_info
->flags
& VC5_HAS_INTERNAL_XTAL
)
895 clk_unregister_fixed_rate(vc5
->pin_xin
);
899 static int vc5_remove(struct i2c_client
*client
)
901 struct vc5_driver_data
*vc5
= i2c_get_clientdata(client
);
903 of_clk_del_provider(client
->dev
.of_node
);
905 if (vc5
->chip_info
->flags
& VC5_HAS_INTERNAL_XTAL
)
906 clk_unregister_fixed_rate(vc5
->pin_xin
);
911 static const struct vc5_chip_info idt_5p49v5923_info
= {
912 .model
= IDT_VC5_5P49V5923
,
918 static const struct vc5_chip_info idt_5p49v5925_info
= {
919 .model
= IDT_VC5_5P49V5925
,
925 static const struct vc5_chip_info idt_5p49v5933_info
= {
926 .model
= IDT_VC5_5P49V5933
,
929 .flags
= VC5_HAS_INTERNAL_XTAL
,
932 static const struct vc5_chip_info idt_5p49v5935_info
= {
933 .model
= IDT_VC5_5P49V5935
,
936 .flags
= VC5_HAS_INTERNAL_XTAL
,
939 static const struct vc5_chip_info idt_5p49v6901_info
= {
940 .model
= IDT_VC6_5P49V6901
,
943 .flags
= VC5_HAS_PFD_FREQ_DBL
,
946 static const struct i2c_device_id vc5_id
[] = {
947 { "5p49v5923", .driver_data
= IDT_VC5_5P49V5923
},
948 { "5p49v5925", .driver_data
= IDT_VC5_5P49V5925
},
949 { "5p49v5933", .driver_data
= IDT_VC5_5P49V5933
},
950 { "5p49v5935", .driver_data
= IDT_VC5_5P49V5935
},
951 { "5p49v6901", .driver_data
= IDT_VC6_5P49V6901
},
954 MODULE_DEVICE_TABLE(i2c
, vc5_id
);
956 static const struct of_device_id clk_vc5_of_match
[] = {
957 { .compatible
= "idt,5p49v5923", .data
= &idt_5p49v5923_info
},
958 { .compatible
= "idt,5p49v5925", .data
= &idt_5p49v5925_info
},
959 { .compatible
= "idt,5p49v5933", .data
= &idt_5p49v5933_info
},
960 { .compatible
= "idt,5p49v5935", .data
= &idt_5p49v5935_info
},
961 { .compatible
= "idt,5p49v6901", .data
= &idt_5p49v6901_info
},
964 MODULE_DEVICE_TABLE(of
, clk_vc5_of_match
);
966 static struct i2c_driver vc5_driver
= {
969 .of_match_table
= clk_vc5_of_match
,
972 .remove
= vc5_remove
,
975 module_i2c_driver(vc5_driver
);
977 MODULE_AUTHOR("Marek Vasut <marek.vasut@gmail.com>");
978 MODULE_DESCRIPTION("IDT VersaClock 5 driver");
979 MODULE_LICENSE("GPL");