cpu.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-s3c2410/cpu.c
  3.  *
  4.  * Copyright (C) 2002 MIZI Research, Inc.
  5.  *
  6.  * Author: Janghoon Lyu <nandy@mizi.com>
  7.  * Date  : $Date: 2002/05/22 07:10:08 $
  8.  *
  9.  * $Revision: 1.1.2.13 $
  10.  *
  11.  *
  12.  * This program is free software; you can redistribute it and/or modify
  13.  * it under the terms of the GNU General Public License as published by
  14.  * the Free Software Foundation; either version 2 of the License, or
  15.  * (at your option) any later version.
  16.  *
  17.  * This program is distributed in the hope that it will be useful,
  18.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  * GNU General Public License for more details.
  21.  *
  22.  * You should have received a copy of the GNU General Public License
  23.  * along with this program; if not, write to the Free Software
  24.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  25.  *
  26.  *
  27.  * $Id: proc.c,v 1.3 2002/08/10 07:47:07 nandy Exp $
  28.  */
  29. #include <linux/config.h>
  30. #include <linux/kernel.h>
  31. #include <linux/init.h>
  32. #include <linux/module.h>
  33. #include <asm/errno.h>
  34. #include <asm/arch/cpu_s3c2410.h>
  35. static inline unsigned long
  36. cal_bus_clk(unsigned long cpu_clk, unsigned long ratio, int who)
  37. {
  38. if (!who) { /* PCLK */
  39. switch (ratio) {
  40. case 0:
  41. return (cpu_clk);
  42. case 1:
  43. case 2:
  44. return (cpu_clk/2);
  45. case 3:
  46. return (cpu_clk/4);
  47. default:
  48. return 0;
  49. }
  50. } else { /* HCLK */
  51. switch (ratio) {
  52. case 0:
  53. case 1:
  54. return (cpu_clk);
  55. case 2:
  56. case 3:
  57. return (cpu_clk/2);
  58. default:
  59. return 0;
  60. }
  61. }
  62. }
  63. /*
  64.  * cpu clock = (((mdiv + 8) * FIN) / ((pdiv + 2) * (1 << sdiv)))
  65.  *  FIN = Input Frequency (to CPU)
  66.  */
  67. unsigned long
  68. s3c2410_get_cpu_clk(void)
  69. {
  70. unsigned long val = MPLLCON;
  71. return (((GET_MDIV(val) + 8) * FIN) / 
  72. ((GET_PDIV(val) + 2) * (1 << GET_SDIV(val))));
  73. }
  74. EXPORT_SYMBOL(s3c2410_get_cpu_clk);
  75. unsigned long
  76. s3c2410_get_bus_clk(int who)
  77. {
  78. unsigned long cpu_clk = s3c2410_get_cpu_clk();
  79. unsigned long ratio = CLKDIVN;
  80. return (cal_bus_clk(cpu_clk, ratio, who));
  81. }
  82. EXPORT_SYMBOL(s3c2410_get_bus_clk);
  83. #define MEGA (1000 * 1000)
  84. static int __init s3c2410_cpu_init(void)
  85. {
  86. unsigned long freq, hclk, pclk;
  87. freq = s3c2410_get_cpu_clk();
  88. hclk = s3c2410_get_bus_clk(GET_HCLK);
  89. pclk = s3c2410_get_bus_clk(GET_PCLK);
  90. printk(KERN_INFO "CPU clock = %ld.%03ld Mhz,", freq / MEGA, freq % MEGA);
  91. printk(" HCLK = %ld.%03ld Mhz, PCLK = %ld.%03ld Mhzn",
  92.  hclk / MEGA, hclk % MEGA, pclk / MEGA, pclk % MEGA);
  93. return 0;
  94. }
  95. __initcall(s3c2410_cpu_init);