Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
s5pv210-cpufreq.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Samsung Electronics Co., Ltd.
3  * http://www.samsung.com
4  *
5  * CPU frequency scaling for S5PC110/S5PV210
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 
12 #include <linux/types.h>
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/err.h>
16 #include <linux/clk.h>
17 #include <linux/io.h>
18 #include <linux/cpufreq.h>
19 #include <linux/reboot.h>
21 #include <linux/suspend.h>
22 
23 #include <mach/map.h>
24 #include <mach/regs-clock.h>
25 
26 static struct clk *cpu_clk;
27 static struct clk *dmc0_clk;
28 static struct clk *dmc1_clk;
29 static struct cpufreq_freqs freqs;
30 static DEFINE_MUTEX(set_freq_lock);
31 
32 /* APLL M,P,S values for 1G/800Mhz */
33 #define APLL_VAL_1000 ((1 << 31) | (125 << 16) | (3 << 8) | 1)
34 #define APLL_VAL_800 ((1 << 31) | (100 << 16) | (3 << 8) | 1)
35 
36 /* Use 800MHz when entering sleep mode */
37 #define SLEEP_FREQ (800 * 1000)
38 
39 /*
40  * relation has an additional symantics other than the standard of cpufreq
41  * DISALBE_FURTHER_CPUFREQ: disable further access to target
42  * ENABLE_FURTUER_CPUFREQ: enable access to target
43  */
47 };
48 
49 static bool no_cpufreq_access;
50 
51 /*
52  * DRAM configurations to calculate refresh counter for changing
53  * frequency of memory.
54  */
55 struct dram_conf {
56  unsigned long freq; /* HZ */
57  unsigned long refresh; /* DRAM refresh counter * 1000 */
58 };
59 
60 /* DRAM configuration (DMC0 and DMC1) */
61 static struct dram_conf s5pv210_dram_conf[2];
62 
63 enum perf_level {
64  L0, L1, L2, L3, L4,
65 };
66 
68  LPDDR = 0x1,
69  LPDDR2 = 0x2,
70  DDR2 = 0x4,
71 };
72 
74  DMC0 = 0,
76 };
77 
78 static struct cpufreq_frequency_table s5pv210_freq_table[] = {
79  {L0, 1000*1000},
80  {L1, 800*1000},
81  {L2, 400*1000},
82  {L3, 200*1000},
83  {L4, 100*1000},
84  {0, CPUFREQ_TABLE_END},
85 };
86 
87 static struct regulator *arm_regulator;
88 static struct regulator *int_regulator;
89 
91  int arm_volt; /* uV */
92  int int_volt; /* uV */
93 };
94 
95 static const int arm_volt_max = 1350000;
96 static const int int_volt_max = 1250000;
97 
98 static struct s5pv210_dvs_conf dvs_conf[] = {
99  [L0] = {
100  .arm_volt = 1250000,
101  .int_volt = 1100000,
102  },
103  [L1] = {
104  .arm_volt = 1200000,
105  .int_volt = 1100000,
106  },
107  [L2] = {
108  .arm_volt = 1050000,
109  .int_volt = 1100000,
110  },
111  [L3] = {
112  .arm_volt = 950000,
113  .int_volt = 1100000,
114  },
115  [L4] = {
116  .arm_volt = 950000,
117  .int_volt = 1000000,
118  },
119 };
120 
121 static u32 clkdiv_val[5][11] = {
122  /*
123  * Clock divider value for following
124  * { APLL, A2M, HCLK_MSYS, PCLK_MSYS,
125  * HCLK_DSYS, PCLK_DSYS, HCLK_PSYS, PCLK_PSYS,
126  * ONEDRAM, MFC, G3D }
127  */
128 
129  /* L0 : [1000/200/100][166/83][133/66][200/200] */
130  {0, 4, 4, 1, 3, 1, 4, 1, 3, 0, 0},
131 
132  /* L1 : [800/200/100][166/83][133/66][200/200] */
133  {0, 3, 3, 1, 3, 1, 4, 1, 3, 0, 0},
134 
135  /* L2 : [400/200/100][166/83][133/66][200/200] */
136  {1, 3, 1, 1, 3, 1, 4, 1, 3, 0, 0},
137 
138  /* L3 : [200/200/100][166/83][133/66][200/200] */
139  {3, 3, 1, 1, 3, 1, 4, 1, 3, 0, 0},
140 
141  /* L4 : [100/100/100][83/83][66/66][100/100] */
142  {7, 7, 0, 0, 7, 0, 9, 0, 7, 0, 0},
143 };
144 
145 /*
146  * This function set DRAM refresh counter
147  * accoriding to operating frequency of DRAM
148  * ch: DMC port number 0 or 1
149  * freq: Operating frequency of DRAM(KHz)
150  */
151 static void s5pv210_set_refresh(enum s5pv210_dmc_port ch, unsigned long freq)
152 {
153  unsigned long tmp, tmp1;
154  void __iomem *reg = NULL;
155 
156  if (ch == DMC0) {
157  reg = (S5P_VA_DMC0 + 0x30);
158  } else if (ch == DMC1) {
159  reg = (S5P_VA_DMC1 + 0x30);
160  } else {
161  printk(KERN_ERR "Cannot find DMC port\n");
162  return;
163  }
164 
165  /* Find current DRAM frequency */
166  tmp = s5pv210_dram_conf[ch].freq;
167 
168  do_div(tmp, freq);
169 
170  tmp1 = s5pv210_dram_conf[ch].refresh;
171 
172  do_div(tmp1, tmp);
173 
174  __raw_writel(tmp1, reg);
175 }
176 
177 static int s5pv210_verify_speed(struct cpufreq_policy *policy)
178 {
179  if (policy->cpu)
180  return -EINVAL;
181 
182  return cpufreq_frequency_table_verify(policy, s5pv210_freq_table);
183 }
184 
185 static unsigned int s5pv210_getspeed(unsigned int cpu)
186 {
187  if (cpu)
188  return 0;
189 
190  return clk_get_rate(cpu_clk) / 1000;
191 }
192 
193 static int s5pv210_target(struct cpufreq_policy *policy,
194  unsigned int target_freq,
195  unsigned int relation)
196 {
197  unsigned long reg;
198  unsigned int index, priv_index;
199  unsigned int pll_changing = 0;
200  unsigned int bus_speed_changing = 0;
201  int arm_volt, int_volt;
202  int ret = 0;
203 
204  mutex_lock(&set_freq_lock);
205 
206  if (relation & ENABLE_FURTHER_CPUFREQ)
207  no_cpufreq_access = false;
208 
209  if (no_cpufreq_access) {
210 #ifdef CONFIG_PM_VERBOSE
211  pr_err("%s:%d denied access to %s as it is disabled"
212  "temporarily\n", __FILE__, __LINE__, __func__);
213 #endif
214  ret = -EINVAL;
215  goto exit;
216  }
217 
218  if (relation & DISABLE_FURTHER_CPUFREQ)
219  no_cpufreq_access = true;
220 
221  relation &= ~(ENABLE_FURTHER_CPUFREQ | DISABLE_FURTHER_CPUFREQ);
222 
223  freqs.old = s5pv210_getspeed(0);
224 
225  if (cpufreq_frequency_table_target(policy, s5pv210_freq_table,
226  target_freq, relation, &index)) {
227  ret = -EINVAL;
228  goto exit;
229  }
230 
231  freqs.new = s5pv210_freq_table[index].frequency;
232  freqs.cpu = 0;
233 
234  if (freqs.new == freqs.old)
235  goto exit;
236 
237  /* Finding current running level index */
238  if (cpufreq_frequency_table_target(policy, s5pv210_freq_table,
239  freqs.old, relation, &priv_index)) {
240  ret = -EINVAL;
241  goto exit;
242  }
243 
244  arm_volt = dvs_conf[index].arm_volt;
245  int_volt = dvs_conf[index].int_volt;
246 
247  if (freqs.new > freqs.old) {
248  ret = regulator_set_voltage(arm_regulator,
249  arm_volt, arm_volt_max);
250  if (ret)
251  goto exit;
252 
253  ret = regulator_set_voltage(int_regulator,
254  int_volt, int_volt_max);
255  if (ret)
256  goto exit;
257  }
258 
260 
261  /* Check if there need to change PLL */
262  if ((index == L0) || (priv_index == L0))
263  pll_changing = 1;
264 
265  /* Check if there need to change System bus clock */
266  if ((index == L4) || (priv_index == L4))
267  bus_speed_changing = 1;
268 
269  if (bus_speed_changing) {
270  /*
271  * Reconfigure DRAM refresh counter value for minimum
272  * temporary clock while changing divider.
273  * expected clock is 83Mhz : 7.8usec/(1/83Mhz) = 0x287
274  */
275  if (pll_changing)
276  s5pv210_set_refresh(DMC1, 83000);
277  else
278  s5pv210_set_refresh(DMC1, 100000);
279 
280  s5pv210_set_refresh(DMC0, 83000);
281  }
282 
283  /*
284  * APLL should be changed in this level
285  * APLL -> MPLL(for stable transition) -> APLL
286  * Some clock source's clock API are not prepared.
287  * Do not use clock API in below code.
288  */
289  if (pll_changing) {
290  /*
291  * 1. Temporary Change divider for MFC and G3D
292  * SCLKA2M(200/1=200)->(200/4=50)Mhz
293  */
294  reg = __raw_readl(S5P_CLK_DIV2);
296  reg |= (3 << S5P_CLKDIV2_G3D_SHIFT) |
297  (3 << S5P_CLKDIV2_MFC_SHIFT);
299 
300  /* For MFC, G3D dividing */
301  do {
303  } while (reg & ((1 << 16) | (1 << 17)));
304 
305  /*
306  * 2. Change SCLKA2M(200Mhz)to SCLKMPLL in MFC_MUX, G3D MUX
307  * (200/4=50)->(667/4=166)Mhz
308  */
309  reg = __raw_readl(S5P_CLK_SRC2);
311  reg |= (1 << S5P_CLKSRC2_G3D_SHIFT) |
312  (1 << S5P_CLKSRC2_MFC_SHIFT);
314 
315  do {
317  } while (reg & ((1 << 7) | (1 << 3)));
318 
319  /*
320  * 3. DMC1 refresh count for 133Mhz if (index == L4) is
321  * true refresh counter is already programed in upper
322  * code. 0x287@83Mhz
323  */
324  if (!bus_speed_changing)
325  s5pv210_set_refresh(DMC1, 133000);
326 
327  /* 4. SCLKAPLL -> SCLKMPLL */
328  reg = __raw_readl(S5P_CLK_SRC0);
329  reg &= ~(S5P_CLKSRC0_MUX200_MASK);
330  reg |= (0x1 << S5P_CLKSRC0_MUX200_SHIFT);
332 
333  do {
335  } while (reg & (0x1 << 18));
336 
337  }
338 
339  /* Change divider */
340  reg = __raw_readl(S5P_CLK_DIV0);
341 
346 
347  reg |= ((clkdiv_val[index][0] << S5P_CLKDIV0_APLL_SHIFT) |
348  (clkdiv_val[index][1] << S5P_CLKDIV0_A2M_SHIFT) |
349  (clkdiv_val[index][2] << S5P_CLKDIV0_HCLK200_SHIFT) |
350  (clkdiv_val[index][3] << S5P_CLKDIV0_PCLK100_SHIFT) |
351  (clkdiv_val[index][4] << S5P_CLKDIV0_HCLK166_SHIFT) |
352  (clkdiv_val[index][5] << S5P_CLKDIV0_PCLK83_SHIFT) |
353  (clkdiv_val[index][6] << S5P_CLKDIV0_HCLK133_SHIFT) |
354  (clkdiv_val[index][7] << S5P_CLKDIV0_PCLK66_SHIFT));
355 
357 
358  do {
360  } while (reg & 0xff);
361 
362  /* ARM MCS value changed */
364  reg &= ~0x3;
365  if (index >= L3)
366  reg |= 0x3;
367  else
368  reg |= 0x1;
369 
371 
372  if (pll_changing) {
373  /* 5. Set Lock time = 30us*24Mhz = 0x2cf */
374  __raw_writel(0x2cf, S5P_APLL_LOCK);
375 
376  /*
377  * 6. Turn on APLL
378  * 6-1. Set PMS values
379  * 6-2. Wait untile the PLL is locked
380  */
381  if (index == L0)
383  else
385 
386  do {
387  reg = __raw_readl(S5P_APLL_CON);
388  } while (!(reg & (0x1 << 29)));
389 
390  /*
391  * 7. Change souce clock from SCLKMPLL(667Mhz)
392  * to SCLKA2M(200Mhz) in MFC_MUX and G3D MUX
393  * (667/4=166)->(200/4=50)Mhz
394  */
395  reg = __raw_readl(S5P_CLK_SRC2);
397  reg |= (0 << S5P_CLKSRC2_G3D_SHIFT) |
398  (0 << S5P_CLKSRC2_MFC_SHIFT);
400 
401  do {
403  } while (reg & ((1 << 7) | (1 << 3)));
404 
405  /*
406  * 8. Change divider for MFC and G3D
407  * (200/4=50)->(200/1=200)Mhz
408  */
409  reg = __raw_readl(S5P_CLK_DIV2);
411  reg |= (clkdiv_val[index][10] << S5P_CLKDIV2_G3D_SHIFT) |
412  (clkdiv_val[index][9] << S5P_CLKDIV2_MFC_SHIFT);
414 
415  /* For MFC, G3D dividing */
416  do {
418  } while (reg & ((1 << 16) | (1 << 17)));
419 
420  /* 9. Change MPLL to APLL in MSYS_MUX */
421  reg = __raw_readl(S5P_CLK_SRC0);
422  reg &= ~(S5P_CLKSRC0_MUX200_MASK);
423  reg |= (0x0 << S5P_CLKSRC0_MUX200_SHIFT);
425 
426  do {
428  } while (reg & (0x1 << 18));
429 
430  /*
431  * 10. DMC1 refresh counter
432  * L4 : DMC1 = 100Mhz 7.8us/(1/100) = 0x30c
433  * Others : DMC1 = 200Mhz 7.8us/(1/200) = 0x618
434  */
435  if (!bus_speed_changing)
436  s5pv210_set_refresh(DMC1, 200000);
437  }
438 
439  /*
440  * L4 level need to change memory bus speed, hence onedram clock divier
441  * and memory refresh parameter should be changed
442  */
443  if (bus_speed_changing) {
444  reg = __raw_readl(S5P_CLK_DIV6);
445  reg &= ~S5P_CLKDIV6_ONEDRAM_MASK;
446  reg |= (clkdiv_val[index][8] << S5P_CLKDIV6_ONEDRAM_SHIFT);
448 
449  do {
451  } while (reg & (1 << 15));
452 
453  /* Reconfigure DRAM refresh counter value */
454  if (index != L4) {
455  /*
456  * DMC0 : 166Mhz
457  * DMC1 : 200Mhz
458  */
459  s5pv210_set_refresh(DMC0, 166000);
460  s5pv210_set_refresh(DMC1, 200000);
461  } else {
462  /*
463  * DMC0 : 83Mhz
464  * DMC1 : 100Mhz
465  */
466  s5pv210_set_refresh(DMC0, 83000);
467  s5pv210_set_refresh(DMC1, 100000);
468  }
469  }
470 
472 
473  if (freqs.new < freqs.old) {
474  regulator_set_voltage(int_regulator,
475  int_volt, int_volt_max);
476 
477  regulator_set_voltage(arm_regulator,
478  arm_volt, arm_volt_max);
479  }
480 
481  printk(KERN_DEBUG "Perf changed[L%d]\n", index);
482 
483 exit:
484  mutex_unlock(&set_freq_lock);
485  return ret;
486 }
487 
488 #ifdef CONFIG_PM
489 static int s5pv210_cpufreq_suspend(struct cpufreq_policy *policy)
490 {
491  return 0;
492 }
493 
494 static int s5pv210_cpufreq_resume(struct cpufreq_policy *policy)
495 {
496  return 0;
497 }
498 #endif
499 
500 static int check_mem_type(void __iomem *dmc_reg)
501 {
502  unsigned long val;
503 
504  val = __raw_readl(dmc_reg + 0x4);
505  val = (val & (0xf << 8));
506 
507  return val >> 8;
508 }
509 
510 static int __init s5pv210_cpu_init(struct cpufreq_policy *policy)
511 {
512  unsigned long mem_type;
513  int ret;
514 
515  cpu_clk = clk_get(NULL, "armclk");
516  if (IS_ERR(cpu_clk))
517  return PTR_ERR(cpu_clk);
518 
519  dmc0_clk = clk_get(NULL, "sclk_dmc0");
520  if (IS_ERR(dmc0_clk)) {
521  ret = PTR_ERR(dmc0_clk);
522  goto out_dmc0;
523  }
524 
525  dmc1_clk = clk_get(NULL, "hclk_msys");
526  if (IS_ERR(dmc1_clk)) {
527  ret = PTR_ERR(dmc1_clk);
528  goto out_dmc1;
529  }
530 
531  if (policy->cpu != 0) {
532  ret = -EINVAL;
533  goto out_dmc1;
534  }
535 
536  /*
537  * check_mem_type : This driver only support LPDDR & LPDDR2.
538  * other memory type is not supported.
539  */
540  mem_type = check_mem_type(S5P_VA_DMC0);
541 
542  if ((mem_type != LPDDR) && (mem_type != LPDDR2)) {
543  printk(KERN_ERR "CPUFreq doesn't support this memory type\n");
544  ret = -EINVAL;
545  goto out_dmc1;
546  }
547 
548  /* Find current refresh counter and frequency each DMC */
549  s5pv210_dram_conf[0].refresh = (__raw_readl(S5P_VA_DMC0 + 0x30) * 1000);
550  s5pv210_dram_conf[0].freq = clk_get_rate(dmc0_clk);
551 
552  s5pv210_dram_conf[1].refresh = (__raw_readl(S5P_VA_DMC1 + 0x30) * 1000);
553  s5pv210_dram_conf[1].freq = clk_get_rate(dmc1_clk);
554 
555  policy->cur = policy->min = policy->max = s5pv210_getspeed(0);
556 
557  cpufreq_frequency_table_get_attr(s5pv210_freq_table, policy->cpu);
558 
559  policy->cpuinfo.transition_latency = 40000;
560 
561  return cpufreq_frequency_table_cpuinfo(policy, s5pv210_freq_table);
562 
563 out_dmc1:
564  clk_put(dmc0_clk);
565 out_dmc0:
566  clk_put(cpu_clk);
567  return ret;
568 }
569 
570 static int s5pv210_cpufreq_notifier_event(struct notifier_block *this,
571  unsigned long event, void *ptr)
572 {
573  int ret;
574 
575  switch (event) {
576  case PM_SUSPEND_PREPARE:
578  DISABLE_FURTHER_CPUFREQ);
579  if (ret < 0)
580  return NOTIFY_BAD;
581 
582  return NOTIFY_OK;
583  case PM_POST_RESTORE:
584  case PM_POST_SUSPEND:
586  ENABLE_FURTHER_CPUFREQ);
587 
588  return NOTIFY_OK;
589  }
590 
591  return NOTIFY_DONE;
592 }
593 
594 static int s5pv210_cpufreq_reboot_notifier_event(struct notifier_block *this,
595  unsigned long event, void *ptr)
596 {
597  int ret;
598 
600  DISABLE_FURTHER_CPUFREQ);
601  if (ret < 0)
602  return NOTIFY_BAD;
603 
604  return NOTIFY_DONE;
605 }
606 
607 static struct cpufreq_driver s5pv210_driver = {
608  .flags = CPUFREQ_STICKY,
609  .verify = s5pv210_verify_speed,
610  .target = s5pv210_target,
611  .get = s5pv210_getspeed,
612  .init = s5pv210_cpu_init,
613  .name = "s5pv210",
614 #ifdef CONFIG_PM
615  .suspend = s5pv210_cpufreq_suspend,
616  .resume = s5pv210_cpufreq_resume,
617 #endif
618 };
619 
620 static struct notifier_block s5pv210_cpufreq_notifier = {
621  .notifier_call = s5pv210_cpufreq_notifier_event,
622 };
623 
624 static struct notifier_block s5pv210_cpufreq_reboot_notifier = {
625  .notifier_call = s5pv210_cpufreq_reboot_notifier_event,
626 };
627 
628 static int __init s5pv210_cpufreq_init(void)
629 {
630  arm_regulator = regulator_get(NULL, "vddarm");
631  if (IS_ERR(arm_regulator)) {
632  pr_err("failed to get regulator vddarm");
633  return PTR_ERR(arm_regulator);
634  }
635 
636  int_regulator = regulator_get(NULL, "vddint");
637  if (IS_ERR(int_regulator)) {
638  pr_err("failed to get regulator vddint");
639  regulator_put(arm_regulator);
640  return PTR_ERR(int_regulator);
641  }
642 
643  register_pm_notifier(&s5pv210_cpufreq_notifier);
644  register_reboot_notifier(&s5pv210_cpufreq_reboot_notifier);
645 
646  return cpufreq_register_driver(&s5pv210_driver);
647 }
648 
649 late_initcall(s5pv210_cpufreq_init);