]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/cpufreq/exynos4210-cpufreq.c
mtd: nand: remove unused function input parameter
[mirror_ubuntu-bionic-kernel.git] / drivers / cpufreq / exynos4210-cpufreq.c
CommitLineData
f7d77079 1/*
7d30e8b3 2 * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
f40f91fe
SK
3 * http://www.samsung.com
4 *
a125a17f 5 * EXYNOS4210 - CPU frequency scaling support
f40f91fe
SK
6 *
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.
10*/
11
6c523c61 12#include <linux/module.h>
f40f91fe
SK
13#include <linux/kernel.h>
14#include <linux/err.h>
15#include <linux/clk.h>
16#include <linux/io.h>
17#include <linux/slab.h>
f40f91fe
SK
18#include <linux/cpufreq.h>
19
c4aaa295 20#include "exynos-cpufreq.h"
f40f91fe 21
f40f91fe
SK
22static struct clk *cpu_clk;
23static struct clk *moutcore;
24static struct clk *mout_mpll;
25static struct clk *mout_apll;
26
9d0554ff 27static unsigned int exynos4210_volt_table[] = {
a125a17f 28 1250000, 1150000, 1050000, 975000, 950000,
f40f91fe
SK
29};
30
a125a17f 31static struct cpufreq_frequency_table exynos4210_freq_table[] = {
9d0554ff
JC
32 {L0, 1200 * 1000},
33 {L1, 1000 * 1000},
34 {L2, 800 * 1000},
35 {L3, 500 * 1000},
36 {L4, 200 * 1000},
f40f91fe
SK
37 {0, CPUFREQ_TABLE_END},
38};
39
9d0554ff 40static struct apll_freq apll_freq_4210[] = {
f40f91fe 41 /*
9d0554ff
JC
42 * values:
43 * freq
44 * clock divider for CORE, COREM0, COREM1, PERIPH, ATB, PCLK_DBG, APLL, RESERVED
45 * clock divider for COPY, HPM, RESERVED
46 * PLL M, P, S
f40f91fe 47 */
9d0554ff
JC
48 APLL_FREQ(1200, 0, 3, 7, 3, 4, 1, 7, 0, 5, 0, 0, 150, 3, 1),
49 APLL_FREQ(1000, 0, 3, 7, 3, 4, 1, 7, 0, 4, 0, 0, 250, 6, 1),
50 APLL_FREQ(800, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 200, 6, 1),
51 APLL_FREQ(500, 0, 3, 7, 3, 3, 1, 7, 0, 3, 0, 0, 250, 6, 2),
52 APLL_FREQ(200, 0, 1, 3, 1, 3, 1, 0, 0, 3, 0, 0, 200, 6, 3),
bf5ce054
SJ
53};
54
a125a17f 55static void exynos4210_set_clkdiv(unsigned int div_index)
f40f91fe
SK
56{
57 unsigned int tmp;
58
59 /* Change Divider - CPU0 */
60
9d0554ff 61 tmp = apll_freq_4210[div_index].clk_div_cpu0;
f40f91fe 62
09cee1ab 63 __raw_writel(tmp, EXYNOS4_CLKDIV_CPU);
f40f91fe
SK
64
65 do {
09cee1ab 66 tmp = __raw_readl(EXYNOS4_CLKDIV_STATCPU);
f40f91fe
SK
67 } while (tmp & 0x1111111);
68
bf5ce054
SJ
69 /* Change Divider - CPU1 */
70
9d0554ff 71 tmp = apll_freq_4210[div_index].clk_div_cpu1;
bf5ce054 72
09cee1ab 73 __raw_writel(tmp, EXYNOS4_CLKDIV_CPU1);
bf5ce054
SJ
74
75 do {
09cee1ab 76 tmp = __raw_readl(EXYNOS4_CLKDIV_STATCPU1);
bf5ce054 77 } while (tmp & 0x11);
f40f91fe
SK
78}
79
a125a17f 80static void exynos4210_set_apll(unsigned int index)
bf5ce054 81{
7ad65d59 82 unsigned int tmp, freq = apll_freq_4210[index].freq;
bf5ce054 83
7ad65d59 84 /* MUX_CORE_SEL = MPLL, ARMCLK uses MPLL for lock time */
bf5ce054
SJ
85 clk_set_parent(moutcore, mout_mpll);
86
87 do {
09cee1ab
KK
88 tmp = (__raw_readl(EXYNOS4_CLKMUX_STATCPU)
89 >> EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT);
bf5ce054
SJ
90 tmp &= 0x7;
91 } while (tmp != 0x2);
92
7ad65d59 93 clk_set_rate(mout_apll, freq * 1000);
bf5ce054 94
7ad65d59 95 /* MUX_CORE_SEL = APLL */
bf5ce054
SJ
96 clk_set_parent(moutcore, mout_apll);
97
98 do {
09cee1ab
KK
99 tmp = __raw_readl(EXYNOS4_CLKMUX_STATCPU);
100 tmp &= EXYNOS4_CLKMUX_STATCPU_MUXCORE_MASK;
101 } while (tmp != (0x1 << EXYNOS4_CLKSRC_CPU_MUXCORE_SHIFT));
bf5ce054
SJ
102}
103
a125a17f
JL
104static void exynos4210_set_frequency(unsigned int old_index,
105 unsigned int new_index)
bf5ce054 106{
bf5ce054 107 if (old_index > new_index) {
7ad65d59
LM
108 exynos4210_set_clkdiv(new_index);
109 exynos4210_set_apll(new_index);
27f805dc 110 } else if (old_index < new_index) {
7ad65d59
LM
111 exynos4210_set_apll(new_index);
112 exynos4210_set_clkdiv(new_index);
bf5ce054
SJ
113 }
114}
115
a125a17f 116int exynos4210_cpufreq_init(struct exynos_dvfs_info *info)
f40f91fe 117{
a125a17f 118 unsigned long rate;
27f805dc 119
f40f91fe
SK
120 cpu_clk = clk_get(NULL, "armclk");
121 if (IS_ERR(cpu_clk))
122 return PTR_ERR(cpu_clk);
123
124 moutcore = clk_get(NULL, "moutcore");
125 if (IS_ERR(moutcore))
a125a17f 126 goto err_moutcore;
f40f91fe
SK
127
128 mout_mpll = clk_get(NULL, "mout_mpll");
129 if (IS_ERR(mout_mpll))
a125a17f
JL
130 goto err_mout_mpll;
131
132 rate = clk_get_rate(mout_mpll) / 1000;
f40f91fe
SK
133
134 mout_apll = clk_get(NULL, "mout_apll");
135 if (IS_ERR(mout_apll))
a125a17f 136 goto err_mout_apll;
0073f538 137
a125a17f 138 info->mpll_freq_khz = rate;
9d0554ff 139 /* 800Mhz */
a125a17f 140 info->pll_safe_idx = L2;
a125a17f
JL
141 info->cpu_clk = cpu_clk;
142 info->volt_table = exynos4210_volt_table;
143 info->freq_table = exynos4210_freq_table;
144 info->set_freq = exynos4210_set_frequency;
f40f91fe 145
a125a17f 146 return 0;
f40f91fe 147
a125a17f 148err_mout_apll:
184cddd1 149 clk_put(mout_mpll);
a125a17f 150err_mout_mpll:
184cddd1 151 clk_put(moutcore);
a125a17f 152err_moutcore:
184cddd1 153 clk_put(cpu_clk);
f40f91fe 154
a125a17f 155 pr_debug("%s: failed initialization\n", __func__);
f40f91fe
SK
156 return -EINVAL;
157}