1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/*
* Copyright (c) 2013 Samsung Electronics Co., Ltd.
* Copyright (c) 2013 Linaro Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* Common Clock Framework support for all PLL's in Samsung platforms
*/
#ifndef __SAMSUNG_CLK_PLL_H
#define __SAMSUNG_CLK_PLL_H
enum pll45xx_type {
pll_4500,
pll_4502,
pll_4508
};
enum pll46xx_type {
pll_4600,
pll_4600x, /* For exynos3250 EPLL */
pll_4650,
pll_4650c,
};
struct pll_pms {
unsigned int f_out;
int p;
int m;
int s;
int k;
int afc;
int mfr;
int mrr;
};
#define F_OUT_INVAL ~0
extern struct clk * __init samsung_clk_register_pll35xx(const char *name,
const char *pname, const void __iomem *base_reg,
struct pll_pms *pms);
extern struct clk * __init samsung_clk_register_pll36xx(const char *name,
const char *pname, void __iomem *base,
struct pll_pms *pms);
extern struct clk * __init samsung_clk_register_pll45xx(const char *name,
const char *pname, void __iomem *base_reg,
enum pll45xx_type type, struct pll_pms *pms);
extern struct clk * __init samsung_clk_register_pll46xx(const char *name,
const char *pname, void __iomem *base,
enum pll46xx_type type, struct pll_pms *pms);
extern struct clk * __init samsung_clk_register_pll2550x(const char *name,
const char *pname, const void __iomem *reg_base,
const unsigned long offset);
#endif /* __SAMSUNG_CLK_PLL_H */
|