2 * Copyright 2012 Freescale Semiconductor, Inc.
4 * The code contained herein is licensed under the GNU General Public
5 * License. You may obtain a copy of the GNU General Public License
6 * Version 2 or later at the following locations:
8 * http://www.opensource.org/licenses/gpl-license.html
9 * http://www.gnu.org/copyleft/gpl.html
12 #include <linux/clk-provider.h>
13 #include <linux/err.h>
15 #include <linux/slab.h>
19 * struct clk_frac - mxs fractional divider clock
20 * @hw: clk_hw for the fractional divider clock
21 * @reg: register address
22 * @shift: the divider bit shift
23 * @width: the divider bit width
24 * @busy: busy bit shift
26 * The clock is an adjustable fractional divider with a busy bit to wait
27 * when the divider is adjusted.
37 #define to_clk_frac(_hw) container_of(_hw, struct clk_frac, hw)
39 static unsigned long clk_frac_recalc_rate(struct clk_hw
*hw
,
40 unsigned long parent_rate
)
42 struct clk_frac
*frac
= to_clk_frac(hw
);
46 div
= readl_relaxed(frac
->reg
) >> frac
->shift
;
47 div
&= (1 << frac
->width
) - 1;
49 tmp_rate
= (u64
)parent_rate
* div
;
50 return tmp_rate
>> frac
->width
;
53 static long clk_frac_round_rate(struct clk_hw
*hw
, unsigned long rate
,
56 struct clk_frac
*frac
= to_clk_frac(hw
);
57 unsigned long parent_rate
= *prate
;
59 u64 tmp
, tmp_rate
, result
;
61 if (rate
> parent_rate
)
66 do_div(tmp
, parent_rate
);
72 tmp_rate
= (u64
)parent_rate
* div
;
73 result
= tmp_rate
>> frac
->width
;
74 if ((result
<< frac
->width
) < tmp_rate
)
79 static int clk_frac_set_rate(struct clk_hw
*hw
, unsigned long rate
,
80 unsigned long parent_rate
)
82 struct clk_frac
*frac
= to_clk_frac(hw
);
87 if (rate
> parent_rate
)
92 do_div(tmp
, parent_rate
);
98 spin_lock_irqsave(&mxs_lock
, flags
);
100 val
= readl_relaxed(frac
->reg
);
101 val
&= ~(((1 << frac
->width
) - 1) << frac
->shift
);
102 val
|= div
<< frac
->shift
;
103 writel_relaxed(val
, frac
->reg
);
105 spin_unlock_irqrestore(&mxs_lock
, flags
);
107 return mxs_clk_wait(frac
->reg
, frac
->busy
);
110 static const struct clk_ops clk_frac_ops
= {
111 .recalc_rate
= clk_frac_recalc_rate
,
112 .round_rate
= clk_frac_round_rate
,
113 .set_rate
= clk_frac_set_rate
,
116 struct clk
*mxs_clk_frac(const char *name
, const char *parent_name
,
117 void __iomem
*reg
, u8 shift
, u8 width
, u8 busy
)
119 struct clk_frac
*frac
;
121 struct clk_init_data init
;
123 frac
= kzalloc(sizeof(*frac
), GFP_KERNEL
);
125 return ERR_PTR(-ENOMEM
);
128 init
.ops
= &clk_frac_ops
;
129 init
.flags
= CLK_SET_RATE_PARENT
;
130 init
.parent_names
= (parent_name
? &parent_name
: NULL
);
131 init
.num_parents
= (parent_name
? 1 : 0);
137 frac
->hw
.init
= &init
;
139 clk
= clk_register(NULL
, &frac
->hw
);