2 * CS2000 -- CIRRUS LOGIC Fractional-N Clock Synthesizer & Clock Multiplier
4 * Copyright (C) 2015 Renesas Electronics Corporation
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #include <linux/clk-provider.h>
12 #include <linux/delay.h>
13 #include <linux/clk.h>
14 #include <linux/i2c.h>
15 #include <linux/of_device.h>
16 #include <linux/module.h>
19 #define RATIO_REG_SIZE 4
22 #define DEVICE_CTRL 0x2
23 #define DEVICE_CFG1 0x3
24 #define DEVICE_CFG2 0x4
25 #define GLOBAL_CFG 0x5
26 #define Ratio_Add(x, nth) (6 + (x * 4) + (nth))
27 #define Ratio_Val(x, nth) ((x >> (24 - (8 * nth))) & 0xFF)
28 #define Val_Ratio(x, nth) ((x & 0xFF) << (24 - (8 * nth)))
29 #define FUNC_CFG1 0x16
30 #define FUNC_CFG2 0x17
33 #define REVISION_MASK (0x7)
34 #define REVISION_B2_B3 (0x4)
35 #define REVISION_C1 (0x6)
38 #define PLL_UNLOCK (1 << 7)
41 #define RSEL(x) (((x) & 0x3) << 3)
42 #define RSEL_MASK RSEL(0x3)
48 #define CH_SIZE_ERR(ch) ((ch < 0) || (ch >= CH_MAX))
49 #define hw_to_priv(_hw) container_of(_hw, struct cs2000_priv, hw)
50 #define priv_to_client(priv) (priv->client)
51 #define priv_to_dev(priv) (&(priv_to_client(priv)->dev))
59 struct i2c_client
*client
;
65 static const struct of_device_id cs2000_of_match
[] = {
66 { .compatible
= "cirrus,cs2000-cp", },
69 MODULE_DEVICE_TABLE(of
, cs2000_of_match
);
71 static const struct i2c_device_id cs2000_id
[] = {
75 MODULE_DEVICE_TABLE(i2c
, cs2000_id
);
77 #define cs2000_read(priv, addr) \
78 i2c_smbus_read_byte_data(priv_to_client(priv), addr)
79 #define cs2000_write(priv, addr, val) \
80 i2c_smbus_write_byte_data(priv_to_client(priv), addr, val)
82 static int cs2000_bset(struct cs2000_priv
*priv
, u8 addr
, u8 mask
, u8 val
)
86 data
= cs2000_read(priv
, addr
);
93 return cs2000_write(priv
, addr
, data
);
96 static int cs2000_enable_dev_config(struct cs2000_priv
*priv
, bool enable
)
100 ret
= cs2000_bset(priv
, DEVICE_CFG1
, ENDEV1
,
101 enable
? ENDEV1
: 0);
105 ret
= cs2000_bset(priv
, GLOBAL_CFG
, ENDEV2
,
106 enable
? ENDEV2
: 0);
113 static int cs2000_clk_in_bound_rate(struct cs2000_priv
*priv
,
118 if (rate_in
>= 32000000 && rate_in
< 56000000)
120 else if (rate_in
>= 16000000 && rate_in
< 28000000)
122 else if (rate_in
>= 8000000 && rate_in
< 14000000)
127 return cs2000_bset(priv
, FUNC_CFG1
, 0x3 << 3, val
<< 3);
130 static int cs2000_wait_pll_lock(struct cs2000_priv
*priv
)
132 struct device
*dev
= priv_to_dev(priv
);
136 for (i
= 0; i
< 256; i
++) {
137 val
= cs2000_read(priv
, DEVICE_CTRL
);
140 if (!(val
& PLL_UNLOCK
))
145 dev_err(dev
, "pll lock failed\n");
150 static int cs2000_clk_out_enable(struct cs2000_priv
*priv
, bool enable
)
152 /* enable both AUX_OUT, CLK_OUT */
153 return cs2000_write(priv
, DEVICE_CTRL
, enable
? 0 : 0x3);
156 static u32
cs2000_rate_to_ratio(u32 rate_in
, u32 rate_out
)
161 * ratio = rate_out / rate_in * 2^20
163 * To avoid over flow, rate_out is u64.
164 * The result should be u32.
166 ratio
= (u64
)rate_out
<< 20;
167 do_div(ratio
, rate_in
);
172 static unsigned long cs2000_ratio_to_rate(u32 ratio
, u32 rate_in
)
177 * ratio = rate_out / rate_in * 2^20
179 * To avoid over flow, rate_out is u64.
180 * The result should be u32 or unsigned long.
183 rate_out
= (u64
)ratio
* rate_in
;
184 return rate_out
>> 20;
187 static int cs2000_ratio_set(struct cs2000_priv
*priv
,
188 int ch
, u32 rate_in
, u32 rate_out
)
197 val
= cs2000_rate_to_ratio(rate_in
, rate_out
);
198 for (i
= 0; i
< RATIO_REG_SIZE
; i
++) {
199 ret
= cs2000_write(priv
,
209 static u32
cs2000_ratio_get(struct cs2000_priv
*priv
, int ch
)
216 for (i
= 0; i
< RATIO_REG_SIZE
; i
++) {
217 tmp
= cs2000_read(priv
, Ratio_Add(ch
, i
));
221 val
|= Val_Ratio(tmp
, i
);
227 static int cs2000_ratio_select(struct cs2000_priv
*priv
, int ch
)
237 * this driver supports static ratio mode only at this point.
239 ret
= cs2000_bset(priv
, DEVICE_CFG1
, RSEL_MASK
, RSEL(ch
));
243 ret
= cs2000_write(priv
, DEVICE_CFG2
, 0x0);
250 static unsigned long cs2000_recalc_rate(struct clk_hw
*hw
,
251 unsigned long parent_rate
)
253 struct cs2000_priv
*priv
= hw_to_priv(hw
);
254 int ch
= 0; /* it uses ch0 only at this point */
257 ratio
= cs2000_ratio_get(priv
, ch
);
259 return cs2000_ratio_to_rate(ratio
, parent_rate
);
262 static long cs2000_round_rate(struct clk_hw
*hw
, unsigned long rate
,
263 unsigned long *parent_rate
)
267 ratio
= cs2000_rate_to_ratio(*parent_rate
, rate
);
269 return cs2000_ratio_to_rate(ratio
, *parent_rate
);
272 static int __cs2000_set_rate(struct cs2000_priv
*priv
, int ch
,
273 unsigned long rate
, unsigned long parent_rate
)
278 ret
= cs2000_clk_in_bound_rate(priv
, parent_rate
);
282 ret
= cs2000_ratio_set(priv
, ch
, parent_rate
, rate
);
286 ret
= cs2000_ratio_select(priv
, ch
);
293 static int cs2000_set_rate(struct clk_hw
*hw
,
294 unsigned long rate
, unsigned long parent_rate
)
296 struct cs2000_priv
*priv
= hw_to_priv(hw
);
297 int ch
= 0; /* it uses ch0 only at this point */
299 return __cs2000_set_rate(priv
, ch
, rate
, parent_rate
);
302 static int cs2000_enable(struct clk_hw
*hw
)
304 struct cs2000_priv
*priv
= hw_to_priv(hw
);
307 ret
= cs2000_enable_dev_config(priv
, true);
311 ret
= cs2000_clk_out_enable(priv
, true);
315 ret
= cs2000_wait_pll_lock(priv
);
322 static void cs2000_disable(struct clk_hw
*hw
)
324 struct cs2000_priv
*priv
= hw_to_priv(hw
);
326 cs2000_enable_dev_config(priv
, false);
328 cs2000_clk_out_enable(priv
, false);
331 static u8
cs2000_get_parent(struct clk_hw
*hw
)
333 /* always return REF_CLK */
337 static const struct clk_ops cs2000_ops
= {
338 .get_parent
= cs2000_get_parent
,
339 .recalc_rate
= cs2000_recalc_rate
,
340 .round_rate
= cs2000_round_rate
,
341 .set_rate
= cs2000_set_rate
,
342 .prepare
= cs2000_enable
,
343 .unprepare
= cs2000_disable
,
346 static int cs2000_clk_get(struct cs2000_priv
*priv
)
348 struct i2c_client
*client
= priv_to_client(priv
);
349 struct device
*dev
= &client
->dev
;
350 struct clk
*clk_in
, *ref_clk
;
352 clk_in
= devm_clk_get(dev
, "clk_in");
353 /* not yet provided */
355 return -EPROBE_DEFER
;
357 ref_clk
= devm_clk_get(dev
, "ref_clk");
358 /* not yet provided */
360 return -EPROBE_DEFER
;
362 priv
->clk_in
= clk_in
;
363 priv
->ref_clk
= ref_clk
;
368 static int cs2000_clk_register(struct cs2000_priv
*priv
)
370 struct device
*dev
= priv_to_dev(priv
);
371 struct device_node
*np
= dev
->of_node
;
372 struct clk_init_data init
;
373 const char *name
= np
->name
;
375 static const char *parent_names
[CLK_MAX
];
376 int ch
= 0; /* it uses ch0 only at this point */
380 of_property_read_string(np
, "clock-output-names", &name
);
383 * set default rate as 1/1.
384 * otherwise .set_rate which setup ratio
385 * is never called if user requests 1/1 rate
387 rate
= clk_get_rate(priv
->ref_clk
);
388 ret
= __cs2000_set_rate(priv
, ch
, rate
, rate
);
392 parent_names
[CLK_IN
] = __clk_get_name(priv
->clk_in
);
393 parent_names
[REF_CLK
] = __clk_get_name(priv
->ref_clk
);
396 init
.ops
= &cs2000_ops
;
397 init
.flags
= CLK_SET_RATE_GATE
;
398 init
.parent_names
= parent_names
;
399 init
.num_parents
= ARRAY_SIZE(parent_names
);
401 priv
->hw
.init
= &init
;
403 clk
= clk_register(dev
, &priv
->hw
);
407 ret
= of_clk_add_provider(np
, of_clk_src_simple_get
, clk
);
418 static int cs2000_version_print(struct cs2000_priv
*priv
)
420 struct i2c_client
*client
= priv_to_client(priv
);
421 struct device
*dev
= &client
->dev
;
423 const char *revision
;
425 val
= cs2000_read(priv
, DEVICE_ID
);
429 /* CS2000 should be 0x0 */
433 switch (val
& REVISION_MASK
) {
435 revision
= "B2 / B3";
444 dev_info(dev
, "revision - %s\n", revision
);
449 static int cs2000_remove(struct i2c_client
*client
)
451 struct cs2000_priv
*priv
= i2c_get_clientdata(client
);
452 struct device
*dev
= &client
->dev
;
453 struct device_node
*np
= dev
->of_node
;
455 of_clk_del_provider(np
);
457 clk_unregister(priv
->clk_out
);
462 static int cs2000_probe(struct i2c_client
*client
,
463 const struct i2c_device_id
*id
)
465 struct cs2000_priv
*priv
;
466 struct device
*dev
= &client
->dev
;
469 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
473 priv
->client
= client
;
474 i2c_set_clientdata(client
, priv
);
476 ret
= cs2000_clk_get(priv
);
480 ret
= cs2000_clk_register(priv
);
484 ret
= cs2000_version_print(priv
);
491 cs2000_remove(client
);
496 static struct i2c_driver cs2000_driver
= {
499 .of_match_table
= cs2000_of_match
,
501 .probe
= cs2000_probe
,
502 .remove
= cs2000_remove
,
503 .id_table
= cs2000_id
,
506 module_i2c_driver(cs2000_driver
);
508 MODULE_DESCRIPTION("CS2000-CP driver");
509 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");
510 MODULE_LICENSE("GPL v2");