Release 4.7 drivers/clk/imx/clk-pllv1.c
  
  
#include <linux/clk-provider.h>
#include <linux/io.h>
#include <linux/slab.h>
#include <linux/kernel.h>
#include <linux/err.h>
#include "clk.h"
/**
 * pll v1
 *
 * @clk_hw      clock source
 * @parent      the parent clock name
 * @base        base address of pll registers
 *
 * PLL clock version 1, found on i.MX1/21/25/27/31/35
 */
#define MFN_BITS	(10)
#define MFN_SIGN	(BIT(MFN_BITS - 1))
#define MFN_MASK	(MFN_SIGN - 1)
struct clk_pllv1 {
	
struct clk_hw	hw;
	
void __iomem	*base;
	
enum imx_pllv1_type type;
};
#define to_clk_pllv1(clk) (container_of(clk, struct clk_pllv1, clk))
static inline bool is_imx1_pllv1(struct clk_pllv1 *pll)
{
	return pll->type == IMX_PLLV1_IMX1;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| shawn guo | shawn guo | 19 | 100.00% | 1 | 100.00% | 
 | Total | 19 | 100.00% | 1 | 100.00% | 
static inline bool is_imx21_pllv1(struct clk_pllv1 *pll)
{
	return pll->type == IMX_PLLV1_IMX21;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| shawn guo | shawn guo | 19 | 100.00% | 1 | 100.00% | 
 | Total | 19 | 100.00% | 1 | 100.00% | 
static inline bool is_imx27_pllv1(struct clk_pllv1 *pll)
{
	return pll->type == IMX_PLLV1_IMX27;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| shawn guo | shawn guo | 19 | 100.00% | 1 | 100.00% | 
 | Total | 19 | 100.00% | 1 | 100.00% | 
static inline bool mfn_is_negative(struct clk_pllv1 *pll, unsigned int mfn)
{
	return !is_imx1_pllv1(pll) && !is_imx21_pllv1(pll) && (mfn & MFN_SIGN);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| alexander shiyan | alexander shiyan | 22 | 62.86% | 1 | 50.00% | 
| shawn guo | shawn guo | 13 | 37.14% | 1 | 50.00% | 
 | Total | 35 | 100.00% | 2 | 100.00% | 
static unsigned long clk_pllv1_recalc_rate(struct clk_hw *hw,
		unsigned long parent_rate)
{
	struct clk_pllv1 *pll = to_clk_pllv1(hw);
	unsigned long long ull;
	int mfn_abs;
	unsigned int mfi, mfn, mfd, pd;
	u32 reg;
	unsigned long rate;
	reg = readl(pll->base);
	/*
         * Get the resulting clock rate from a PLL register value and the input
         * frequency. PLLs with this register layout can be found on i.MX1,
         * i.MX21, i.MX27 and i,MX31
         *
         *                  mfi + mfn / (mfd + 1)
         *  f = 2 * f_ref * --------------------
         *                        pd + 1
         */
	mfi = (reg >> 10) & 0xf;
	mfn = reg & 0x3ff;
	mfd = (reg >> 16) & 0x3ff;
	pd =  (reg >> 26) & 0xf;
	mfi = mfi <= 5 ? 5 : mfi;
	mfn_abs = mfn;
	/*
         * On all i.MXs except i.MX1 and i.MX21 mfn is a 10bit
         * 2's complements number.
         * On i.MX27 the bit 9 is the sign bit.
         */
	if (mfn_is_negative(pll, mfn)) {
		if (is_imx27_pllv1(pll))
			mfn_abs = mfn & MFN_MASK;
		else
			mfn_abs = BIT(MFN_BITS) - mfn;
	}
	rate = parent_rate * 2;
	rate /= pd + 1;
	ull = (unsigned long long)rate * mfn_abs;
	do_div(ull, mfd + 1);
	if (mfn_is_negative(pll, mfn))
		ull = (rate * mfi) - ull;
	else
		ull = (rate * mfi) + ull;
	return ull;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sascha hauer | sascha hauer | 165 | 78.20% | 2 | 40.00% | 
| alexander shiyan | alexander shiyan | 23 | 10.90% | 1 | 20.00% | 
| nicolas pitre | nicolas pitre | 15 | 7.11% | 1 | 20.00% | 
| shawn guo | shawn guo | 8 | 3.79% | 1 | 20.00% | 
 | Total | 211 | 100.00% | 5 | 100.00% | 
static struct clk_ops clk_pllv1_ops = {
	.recalc_rate = clk_pllv1_recalc_rate,
};
struct clk *imx_clk_pllv1(enum imx_pllv1_type type, const char *name,
		const char *parent, void __iomem *base)
{
	struct clk_pllv1 *pll;
	struct clk *clk;
	struct clk_init_data init;
	pll = kmalloc(sizeof(*pll), GFP_KERNEL);
	if (!pll)
		return ERR_PTR(-ENOMEM);
	pll->base = base;
	pll->type = type;
	init.name = name;
	init.ops = &clk_pllv1_ops;
	init.flags = 0;
	init.parent_names = &parent;
	init.num_parents = 1;
	pll->hw.init = &init;
	clk = clk_register(NULL, &pll->hw);
	if (IS_ERR(clk))
		kfree(pll);
	return clk;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sascha hauer | sascha hauer | 135 | 93.10% | 1 | 50.00% | 
| shawn guo | shawn guo | 10 | 6.90% | 1 | 50.00% | 
 | Total | 145 | 100.00% | 2 | 100.00% | 
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| sascha hauer | sascha hauer | 350 | 67.83% | 2 | 28.57% | 
| shawn guo | shawn guo | 93 | 18.02% | 2 | 28.57% | 
| alexander shiyan | alexander shiyan | 57 | 11.05% | 1 | 14.29% | 
| nicolas pitre | nicolas pitre | 15 | 2.91% | 1 | 14.29% | 
| fabio estevam | fabio estevam | 1 | 0.19% | 1 | 14.29% | 
 | Total | 516 | 100.00% | 7 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.