bcu.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * FILE NAME
  3.  * arch/mips/vr41xx/common/bcu.c
  4.  *
  5.  * BRIEF MODULE DESCRIPTION
  6.  * Bus Control Unit routines for the NEC VR4100 series.
  7.  *
  8.  * Author: Yoichi Yuasa
  9.  *         yyuasa@mvista.com or source@mvista.com
  10.  *
  11.  * Copyright 2002 MontaVista Software Inc.
  12.  *
  13.  *  This program is free software; you can redistribute it and/or modify it
  14.  *  under the terms of the GNU General Public License as published by the
  15.  *  Free Software Foundation; either version 2 of the License, or (at your
  16.  *  option) any later version.
  17.  *
  18.  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  19.  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  20.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21.  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23.  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24.  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25.  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  26.  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  27.  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  *
  29.  *  You should have received a copy of the GNU General Public License along
  30.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  31.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  32.  */
  33. /*
  34.  * Changes:
  35.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  36.  *  - Added support for NEC VR4111 and VR4121.
  37.  *
  38.  *  Paul Mundt <lethal@chaoticdreams.org>
  39.  *  - Calculate mips_counter_frequency properly on VR4131.
  40.  *
  41.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  42.  *  - New creation, NEC VR4122 and VR4131 are supported.
  43.  */
  44. #include <linux/init.h>
  45. #include <linux/types.h>
  46. #include <asm/addrspace.h>
  47. #include <asm/cpu.h>
  48. #include <asm/io.h>
  49. #include <asm/time.h>
  50. #include <asm/vr41xx/vr41xx.h>
  51. #define VR4111_CLKSPEEDREG KSEG1ADDR(0x0b000014)
  52. #define VR4122_CLKSPEEDREG KSEG1ADDR(0x0f000014)
  53. #define VR4131_CLKSPEEDREG VR4122_CLKSPEEDREG
  54.  #define CLKSP(x) ((x) & 0x001f)
  55.  #define DIV2B 0x8000
  56.  #define DIV3B 0x4000
  57.  #define DIV4B 0x2000
  58.  #define DIVT(x) (((x) & 0xf000) >> 12)
  59.  #define DIVVT(x) (((x) & 0x0f00) >> 8)
  60.  #define TDIVMODE(x) (2 << (((x) & 0x1000) >> 12))
  61.  #define VTDIVMODE(x) (((x) & 0x0700) >> 8)
  62. unsigned long vr41xx_vtclock = 0;
  63. static inline u16 read_clkspeed(void)
  64. {
  65. switch (mips_cpu.cputype) {
  66. case CPU_VR4111:
  67. case CPU_VR4121: return readw(VR4111_CLKSPEEDREG);
  68. case CPU_VR4122: return readw(VR4122_CLKSPEEDREG);
  69. case CPU_VR4131: return readw(VR4131_CLKSPEEDREG);
  70. default:
  71. printk(KERN_INFO "Unexpected CPU of NEC VR4100 seriesn");
  72. break;
  73. }
  74. return 0;
  75. }
  76. static inline unsigned long calculate_pclock(u16 clkspeed)
  77. {
  78. unsigned long pclock = 0;
  79. switch (mips_cpu.cputype) {
  80. case CPU_VR4111:
  81. case CPU_VR4121:
  82. pclock = 18432000 * 64;
  83. break;
  84. case CPU_VR4122:
  85. pclock = 18432000 * 98;
  86. break;
  87. case CPU_VR4131:
  88. pclock = 18432000 * 108;
  89. break;
  90. default:
  91. printk(KERN_INFO "Unexpected CPU of NEC VR4100 seriesn");
  92. break;
  93. }
  94. pclock /= CLKSP(clkspeed);
  95. printk(KERN_INFO "PClock: %ldHzn", pclock);
  96. return pclock;
  97. }
  98. static inline unsigned long calculate_vtclock(u16 clkspeed, unsigned long pclock)
  99. {
  100. switch (mips_cpu.cputype) {
  101. case CPU_VR4111:
  102. /* The NEC VR4111 doesn't have the VTClock. */
  103. break;
  104. case CPU_VR4121:
  105. vr41xx_vtclock = pclock;
  106. /* DIVVT == 9 Divide by 1.5 . VTClock = (PClock * 6) / 9 */
  107. if (DIVVT(clkspeed) == 9)
  108. vr41xx_vtclock = pclock * 6;
  109. /* DIVVT == 10 Divide by 2.5 . VTClock = (PClock * 4) / 10 */
  110. else if (DIVVT(clkspeed) == 10)
  111. vr41xx_vtclock = pclock * 4;
  112. vr41xx_vtclock /= DIVVT(clkspeed);
  113. printk(KERN_INFO "VTClock: %ldHzn", vr41xx_vtclock);
  114. break;
  115. case CPU_VR4122:
  116. if(VTDIVMODE(clkspeed) == 7)
  117. vr41xx_vtclock = pclock / 1;
  118. else if(VTDIVMODE(clkspeed) == 1)
  119. vr41xx_vtclock = pclock / 2;
  120. else
  121. vr41xx_vtclock = pclock / VTDIVMODE(clkspeed);
  122. printk(KERN_INFO "VTClock: %ldHzn", vr41xx_vtclock);
  123. break;
  124. case CPU_VR4131:
  125. vr41xx_vtclock = pclock / VTDIVMODE(clkspeed);
  126. printk(KERN_INFO "VTClock: %ldHzn", vr41xx_vtclock);
  127. break;
  128. default:
  129. printk(KERN_INFO "Unexpected CPU of NEC VR4100 seriesn");
  130. break;
  131. }
  132. return vr41xx_vtclock;
  133. }
  134. static inline unsigned long calculate_tclock(u16 clkspeed, unsigned long pclock,
  135.                                              unsigned long vtclock)
  136. {
  137. unsigned long tclock = 0;
  138. switch (mips_cpu.cputype) {
  139. case CPU_VR4111:
  140. if (!(clkspeed & DIV2B))
  141.          tclock = pclock / 2;
  142. else if (!(clkspeed & DIV3B))
  143.          tclock = pclock / 3;
  144. else if (!(clkspeed & DIV4B))
  145.          tclock = pclock / 4;
  146. break;
  147. case CPU_VR4121:
  148. tclock = pclock / DIVT(clkspeed);
  149. break;
  150. case CPU_VR4122:
  151. case CPU_VR4131:
  152. tclock = vtclock / TDIVMODE(clkspeed);
  153. break;
  154. default:
  155. printk(KERN_INFO "Unexpected CPU of NEC VR4100 seriesn");
  156. break;
  157. }
  158. printk(KERN_INFO "TClock: %ldHzn", tclock);
  159. return tclock;
  160. }
  161. static inline unsigned long calculate_mips_counter_frequency(unsigned long tclock)
  162. {
  163. /*
  164.  * VR4131 Revision 2.0 and 2.1 use a value of (tclock / 2).
  165.  */
  166. if ((mips_cpu.processor_id == PRID_VR4131_REV2_0) ||
  167.     (mips_cpu.processor_id == PRID_VR4131_REV2_1))
  168. tclock /= 2;
  169. else
  170. tclock /= 4;
  171. return tclock;
  172. }
  173. void __init vr41xx_bcu_init(void)
  174. {
  175. unsigned long pclock, vtclock, tclock;
  176. u16 clkspeed;
  177. clkspeed = read_clkspeed();
  178. pclock = calculate_pclock(clkspeed);
  179. vtclock = calculate_vtclock(clkspeed, pclock);
  180. tclock = calculate_tclock(clkspeed, pclock, vtclock);
  181. mips_counter_frequency = calculate_mips_counter_frequency(tclock);
  182. }