ip6gre: Add support for basic offloads offloads excluding GSO
[linux-2.6/btrfs-unstable.git] / drivers / clk / clk-fractional-divider.c
blob1abcd76b4993805f2b135b92e5bc285b10de5c95
1 /*
2 * Copyright (C) 2014 Intel Corporation
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Adjustable fractional divider clock implementation.
9 * Output rate = (m / n) * parent_rate.
10 * Uses rational best approximation algorithm.
13 #include <linux/clk-provider.h>
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/slab.h>
17 #include <linux/rational.h>
19 static unsigned long clk_fd_recalc_rate(struct clk_hw *hw,
20 unsigned long parent_rate)
22 struct clk_fractional_divider *fd = to_clk_fd(hw);
23 unsigned long flags = 0;
24 unsigned long m, n;
25 u32 val;
26 u64 ret;
28 if (fd->lock)
29 spin_lock_irqsave(fd->lock, flags);
30 else
31 __acquire(fd->lock);
33 val = clk_readl(fd->reg);
35 if (fd->lock)
36 spin_unlock_irqrestore(fd->lock, flags);
37 else
38 __release(fd->lock);
40 m = (val & fd->mmask) >> fd->mshift;
41 n = (val & fd->nmask) >> fd->nshift;
43 if (!n || !m)
44 return parent_rate;
46 ret = (u64)parent_rate * m;
47 do_div(ret, n);
49 return ret;
52 static long clk_fd_round_rate(struct clk_hw *hw, unsigned long rate,
53 unsigned long *parent_rate)
55 struct clk_fractional_divider *fd = to_clk_fd(hw);
56 unsigned long scale;
57 unsigned long m, n;
58 u64 ret;
60 if (!rate || rate >= *parent_rate)
61 return *parent_rate;
64 * Get rate closer to *parent_rate to guarantee there is no overflow
65 * for m and n. In the result it will be the nearest rate left shifted
66 * by (scale - fd->nwidth) bits.
68 scale = fls_long(*parent_rate / rate - 1);
69 if (scale > fd->nwidth)
70 rate <<= scale - fd->nwidth;
72 rational_best_approximation(rate, *parent_rate,
73 GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
74 &m, &n);
76 ret = (u64)*parent_rate * m;
77 do_div(ret, n);
79 return ret;
82 static int clk_fd_set_rate(struct clk_hw *hw, unsigned long rate,
83 unsigned long parent_rate)
85 struct clk_fractional_divider *fd = to_clk_fd(hw);
86 unsigned long flags = 0;
87 unsigned long m, n;
88 u32 val;
90 rational_best_approximation(rate, parent_rate,
91 GENMASK(fd->mwidth - 1, 0), GENMASK(fd->nwidth - 1, 0),
92 &m, &n);
94 if (fd->lock)
95 spin_lock_irqsave(fd->lock, flags);
96 else
97 __acquire(fd->lock);
99 val = clk_readl(fd->reg);
100 val &= ~(fd->mmask | fd->nmask);
101 val |= (m << fd->mshift) | (n << fd->nshift);
102 clk_writel(val, fd->reg);
104 if (fd->lock)
105 spin_unlock_irqrestore(fd->lock, flags);
106 else
107 __release(fd->lock);
109 return 0;
112 const struct clk_ops clk_fractional_divider_ops = {
113 .recalc_rate = clk_fd_recalc_rate,
114 .round_rate = clk_fd_round_rate,
115 .set_rate = clk_fd_set_rate,
117 EXPORT_SYMBOL_GPL(clk_fractional_divider_ops);
119 struct clk *clk_register_fractional_divider(struct device *dev,
120 const char *name, const char *parent_name, unsigned long flags,
121 void __iomem *reg, u8 mshift, u8 mwidth, u8 nshift, u8 nwidth,
122 u8 clk_divider_flags, spinlock_t *lock)
124 struct clk_fractional_divider *fd;
125 struct clk_init_data init;
126 struct clk *clk;
128 fd = kzalloc(sizeof(*fd), GFP_KERNEL);
129 if (!fd)
130 return ERR_PTR(-ENOMEM);
132 init.name = name;
133 init.ops = &clk_fractional_divider_ops;
134 init.flags = flags | CLK_IS_BASIC;
135 init.parent_names = parent_name ? &parent_name : NULL;
136 init.num_parents = parent_name ? 1 : 0;
138 fd->reg = reg;
139 fd->mshift = mshift;
140 fd->mwidth = mwidth;
141 fd->mmask = GENMASK(mwidth - 1, 0) << mshift;
142 fd->nshift = nshift;
143 fd->nwidth = nwidth;
144 fd->nmask = GENMASK(nwidth - 1, 0) << nshift;
145 fd->flags = clk_divider_flags;
146 fd->lock = lock;
147 fd->hw.init = &init;
149 clk = clk_register(dev, &fd->hw);
150 if (IS_ERR(clk))
151 kfree(fd);
153 return clk;
155 EXPORT_SYMBOL_GPL(clk_register_fractional_divider);