1
2
3
4
5
6
7
8
9#include <linux/init.h>
10#include <linux/module.h>
11#include <linux/interrupt.h>
12#include <linux/ioport.h>
13#include <linux/cpufreq.h>
14#include <linux/seq_file.h>
15#include <linux/device.h>
16#include <linux/delay.h>
17#include <linux/clk.h>
18#include <linux/err.h>
19#include <linux/slab.h>
20
21#include <linux/amba/pl093.h>
22
23#include <asm/mach/arch.h>
24#include <asm/mach/map.h>
25
26#include <plat/cpu.h>
27#include <plat/cpu-freq-core.h>
28
29#include <mach/s3c2412.h>
30
31#define print_ns(x) ((x) / 10), ((x) % 10)
32
33
34
35
36
37
38static void s3c2412_print_timing(const char *pfx, struct s3c_iotimings *iot)
39{
40 struct s3c2412_iobank_timing *bt;
41 unsigned int bank;
42
43 for (bank = 0; bank < MAX_BANKS; bank++) {
44 bt = iot->bank[bank].io_2412;
45 if (!bt)
46 continue;
47
48 printk(KERN_DEBUG "%s: %d: idcy=%d.%d wstrd=%d.%d wstwr=%d,%d"
49 "wstoen=%d.%d wstwen=%d.%d wstbrd=%d.%d\n", pfx, bank,
50 print_ns(bt->idcy),
51 print_ns(bt->wstrd),
52 print_ns(bt->wstwr),
53 print_ns(bt->wstoen),
54 print_ns(bt->wstwen),
55 print_ns(bt->wstbrd));
56 }
57}
58
59
60
61
62
63
64static inline unsigned int to_div(unsigned int cyc_tns, unsigned int clk_tns)
65{
66 return cyc_tns ? DIV_ROUND_UP(cyc_tns, clk_tns) : 0;
67}
68
69
70
71
72
73
74
75static unsigned int calc_timing(unsigned int hwtm, unsigned int clk_tns,
76 unsigned int *err)
77{
78 unsigned int ret = to_div(hwtm, clk_tns);
79
80 if (ret > 0xf)
81 *err = -EINVAL;
82
83 return ret;
84}
85
86
87
88
89
90
91static int s3c2412_calc_bank(struct s3c_cpufreq_config *cfg,
92 struct s3c2412_iobank_timing *bt)
93{
94 unsigned int hclk = cfg->freq.hclk_tns;
95 int err = 0;
96
97 bt->smbidcyr = calc_timing(bt->idcy, hclk, &err);
98 bt->smbwstrd = calc_timing(bt->wstrd, hclk, &err);
99 bt->smbwstwr = calc_timing(bt->wstwr, hclk, &err);
100 bt->smbwstoen = calc_timing(bt->wstoen, hclk, &err);
101 bt->smbwstwen = calc_timing(bt->wstwen, hclk, &err);
102 bt->smbwstbrd = calc_timing(bt->wstbrd, hclk, &err);
103
104 return err;
105}
106
107
108
109
110
111
112
113void s3c2412_iotiming_debugfs(struct seq_file *seq,
114 struct s3c_cpufreq_config *cfg,
115 union s3c_iobank *iob)
116{
117 struct s3c2412_iobank_timing *bt = iob->io_2412;
118
119 seq_printf(seq,
120 "\tRead: idcy=%d.%d wstrd=%d.%d wstwr=%d,%d"
121 "wstoen=%d.%d wstwen=%d.%d wstbrd=%d.%d\n",
122 print_ns(bt->idcy),
123 print_ns(bt->wstrd),
124 print_ns(bt->wstwr),
125 print_ns(bt->wstoen),
126 print_ns(bt->wstwen),
127 print_ns(bt->wstbrd));
128}
129
130
131
132
133
134
135
136
137
138int s3c2412_iotiming_calc(struct s3c_cpufreq_config *cfg,
139 struct s3c_iotimings *iot)
140{
141 struct s3c2412_iobank_timing *bt;
142 int bank;
143 int ret;
144
145 for (bank = 0; bank < MAX_BANKS; bank++) {
146 bt = iot->bank[bank].io_2412;
147 if (!bt)
148 continue;
149
150 ret = s3c2412_calc_bank(cfg, bt);
151 if (ret) {
152 printk(KERN_ERR "%s: cannot calculate bank %d io\n",
153 __func__, bank);
154 goto err;
155 }
156 }
157
158 return 0;
159 err:
160 return ret;
161}
162
163
164
165
166
167
168
169
170
171void s3c2412_iotiming_set(struct s3c_cpufreq_config *cfg,
172 struct s3c_iotimings *iot)
173{
174 struct s3c2412_iobank_timing *bt;
175 void __iomem *regs;
176 int bank;
177
178
179
180 for (bank = 0; bank < MAX_BANKS; bank++) {
181 bt = iot->bank[bank].io_2412;
182 if (!bt)
183 continue;
184
185 regs = S3C2412_SSMC_BANK(bank);
186
187 __raw_writel(bt->smbidcyr, regs + SMBIDCYR);
188 __raw_writel(bt->smbwstrd, regs + SMBWSTRDR);
189 __raw_writel(bt->smbwstwr, regs + SMBWSTWRR);
190 __raw_writel(bt->smbwstoen, regs + SMBWSTOENR);
191 __raw_writel(bt->smbwstwen, regs + SMBWSTWENR);
192 __raw_writel(bt->smbwstbrd, regs + SMBWSTBRDR);
193 }
194}
195
196static inline unsigned int s3c2412_decode_timing(unsigned int clock, u32 reg)
197{
198 return (reg & 0xf) * clock;
199}
200
201static void s3c2412_iotiming_getbank(struct s3c_cpufreq_config *cfg,
202 struct s3c2412_iobank_timing *bt,
203 unsigned int bank)
204{
205 unsigned long clk = cfg->freq.hclk_tns;
206 void __iomem *regs = S3C2412_SSMC_BANK(bank);
207
208 bt->idcy = s3c2412_decode_timing(clk, __raw_readl(regs + SMBIDCYR));
209 bt->wstrd = s3c2412_decode_timing(clk, __raw_readl(regs + SMBWSTRDR));
210 bt->wstoen = s3c2412_decode_timing(clk, __raw_readl(regs + SMBWSTOENR));
211 bt->wstwen = s3c2412_decode_timing(clk, __raw_readl(regs + SMBWSTWENR));
212 bt->wstbrd = s3c2412_decode_timing(clk, __raw_readl(regs + SMBWSTBRDR));
213}
214
215
216
217
218
219
220static inline bool bank_is_io(unsigned int bank, u32 bankcfg)
221{
222 if (bank < 2)
223 return true;
224
225 return !(bankcfg & (1 << bank));
226}
227
228int s3c2412_iotiming_get(struct s3c_cpufreq_config *cfg,
229 struct s3c_iotimings *timings)
230{
231 struct s3c2412_iobank_timing *bt;
232 u32 bankcfg = __raw_readl(S3C2412_EBI_BANKCFG);
233 unsigned int bank;
234
235
236
237 for (bank = 0; bank < MAX_BANKS; bank++) {
238 if (!bank_is_io(bank, bankcfg))
239 continue;
240
241 bt = kzalloc(sizeof(*bt), GFP_KERNEL);
242 if (!bt)
243 return -ENOMEM;
244
245 timings->bank[bank].io_2412 = bt;
246 s3c2412_iotiming_getbank(cfg, bt, bank);
247 }
248
249 s3c2412_print_timing("get", timings);
250 return 0;
251}
252
253
254
255
256
257void s3c2412_cpufreq_setrefresh(struct s3c_cpufreq_config *cfg)
258{
259 struct s3c_cpufreq_board *board = cfg->board;
260 u32 refresh;
261
262 WARN_ON(board == NULL);
263
264
265
266
267
268
269
270
271 refresh = (cfg->freq.hclk / 100) * (board->refresh / 10);
272 refresh = DIV_ROUND_UP(refresh, (1000 * 1000));
273 refresh &= ((1 << 16) - 1);
274
275 s3c_freq_dbg("%s: refresh value %u\n", __func__, (unsigned int)refresh);
276
277 __raw_writel(refresh, S3C2412_REFRESH);
278}
279