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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *      Copyright (C) 1993-1996 Bas Laarhoven.
  3.  This program is free software; you can redistribute it and/or modify
  4.  it under the terms of the GNU General Public License as published by
  5.  the Free Software Foundation; either version 2, or (at your option)
  6.  any later version.
  7.  This program is distributed in the hope that it will be useful,
  8.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.  GNU General Public License for more details.
  11.  You should have received a copy of the GNU General Public License
  12.  along with this program; see the file COPYING.  If not, write to
  13.  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  14.  *
  15.  * $Source: /homes/cvs/ftape-stacked/ftape/lowlevel/ftape-calibr.c,v $
  16.  * $Revision: 1.2 $
  17.  * $Date: 1997/10/05 19:18:08 $
  18.  *
  19.  *      GP calibration routine for processor speed dependent
  20.  *      functions.
  21.  */
  22. #include <linux/config.h>
  23. #include <linux/errno.h>
  24. #include <linux/sched.h>
  25. #include <asm/system.h>
  26. #include <asm/io.h>
  27. #if defined(__alpha__)
  28. # include <asm/hwrpb.h>
  29. #elif defined(__i386__) || defined(__x86_64__)
  30. # include <linux/timex.h>
  31. #endif
  32. #include <linux/ftape.h>
  33. #include "../lowlevel/ftape-tracing.h"
  34. #include "../lowlevel/ftape-calibr.h"
  35. #include "../lowlevel/fdc-io.h"
  36. #undef DEBUG
  37. #if !defined(__alpha__) && !defined(__i386__) && !defined(__x86_64__)
  38. # error Ftape is not implemented for this architecture!
  39. #endif
  40. #if defined(__alpha__)
  41. static unsigned long ps_per_cycle = 0;
  42. #endif
  43. /*
  44.  * Note: On Intel PCs, the clock ticks at 100 Hz (HZ==100) which is
  45.  * too slow for certain timeouts (and that clock doesn't even tick
  46.  * when interrupts are disabled).  For that reason, the 8254 timer is
  47.  * used directly to implement fine-grained timeouts.  However, on
  48.  * Alpha PCs, the 8254 is *not* used to implement the clock tick
  49.  * (which is 1024 Hz, normally) and the 8254 timer runs at some
  50.  * "random" frequency (it seems to run at 18Hz, but its not safe to
  51.  * rely on this value).  Instead, we use the Alpha's "rpcc"
  52.  * instruction to read cycle counts.  As this is a 32 bit counter,
  53.  * it will overflow only once per 30 seconds (on a 200MHz machine),
  54.  * which is plenty.
  55.  */
  56. unsigned int ftape_timestamp(void)
  57. {
  58. #if defined(__alpha__)
  59. unsigned long r;
  60. asm volatile ("rpcc %0" : "=r" (r));
  61. return r;
  62. #elif defined(__i386__) || defined(__x86_64__)
  63. unsigned long flags;
  64. __u16 lo;
  65. __u16 hi;
  66. save_flags(flags);
  67. cli();
  68. outb_p(0x00, 0x43); /* latch the count ASAP */
  69. lo = inb_p(0x40); /* read the latched count */
  70. lo |= inb(0x40) << 8;
  71. hi = jiffies;
  72. restore_flags(flags);
  73. return ((hi + 1) * (unsigned int) LATCH) - lo;  /* downcounter ! */
  74. #endif
  75. }
  76. static unsigned int short_ftape_timestamp(void)
  77. {
  78. #if defined(__alpha__)
  79. return ftape_timestamp();
  80. #elif defined(__i386__) || defined(__x86_64__)
  81. unsigned int count;
  82.   unsigned long flags;
  83.  
  84.   save_flags(flags);
  85.   cli();
  86.   outb_p(0x00, 0x43); /* latch the count ASAP */
  87. count = inb_p(0x40); /* read the latched count */
  88. count |= inb(0x40) << 8;
  89.   restore_flags(flags);
  90. return (LATCH - count); /* normal: downcounter */
  91. #endif
  92. }
  93. static unsigned int diff(unsigned int t0, unsigned int t1)
  94. {
  95. #if defined(__alpha__)
  96. return (t1 <= t0) ? t1 + (1UL << 32) - t0 : t1 - t0;
  97. #elif defined(__i386__) || defined(__x86_64__)
  98. /*
  99.  * This is tricky: to work for both short and full ftape_timestamps
  100.  * we'll have to discriminate between these.
  101.  * If it _looks_ like short stamps with wrapping around we'll
  102.  * asume it are. This will generate a small error if it really
  103.  * was a (very large) delta from full ftape_timestamps.
  104.  */
  105. return (t1 <= t0 && t0 <= LATCH) ? t1 + LATCH - t0 : t1 - t0;
  106. #endif
  107. }
  108. static unsigned int usecs(unsigned int count)
  109. {
  110. #if defined(__alpha__)
  111. return (ps_per_cycle * count) / 1000000UL;
  112. #elif defined(__i386__) || defined(__x86_64__)
  113. return (10000 * count) / ((CLOCK_TICK_RATE + 50) / 100);
  114. #endif
  115. }
  116. unsigned int ftape_timediff(unsigned int t0, unsigned int t1)
  117. {
  118. /*
  119.  *  Calculate difference in usec for ftape_timestamp results t0 & t1.
  120.  *  Note that on the i386 platform with short time-stamps, the
  121.  *  maximum allowed timespan is 1/HZ or we'll lose ticks!
  122.  */
  123. return usecs(diff(t0, t1));
  124. }
  125. /*      To get an indication of the I/O performance,
  126.  *      measure the duration of the inb() function.
  127.  */
  128. static void time_inb(void)
  129. {
  130. int i;
  131. int t0, t1;
  132. unsigned long flags;
  133. int status;
  134. TRACE_FUN(ft_t_any);
  135. save_flags(flags);
  136. cli();
  137. t0 = short_ftape_timestamp();
  138. for (i = 0; i < 1000; ++i) {
  139. status = inb(fdc.msr);
  140. }
  141. t1 = short_ftape_timestamp();
  142. restore_flags(flags);
  143. TRACE(ft_t_info, "inb() duration: %d nsec", ftape_timediff(t0, t1));
  144. TRACE_EXIT;
  145. }
  146. static void init_clock(void)
  147. {
  148. #if defined(__i386__) || defined(__x86_64__)
  149. unsigned int t;
  150. int i;
  151. TRACE_FUN(ft_t_any);
  152. /*  Haven't studied on why, but there sometimes is a problem
  153.  *  with the tick timer readout. The two bytes get swapped.
  154.  *  This hack solves that problem by doing one extra input.
  155.  */
  156. for (i = 0; i < 1000; ++i) {
  157. t = short_ftape_timestamp();
  158. if (t > LATCH) {
  159. inb_p(0x40); /* get in sync again */
  160. TRACE(ft_t_warn, "clock counter fixed");
  161. break;
  162. }
  163. }
  164. #elif defined(__alpha__)
  165. #if CONFIG_FT_ALPHA_CLOCK == 0
  166. #error You must define and set CONFIG_FT_ALPHA_CLOCK in 'make config' !
  167. #endif
  168. extern struct hwrpb_struct *hwrpb;
  169. TRACE_FUN(ft_t_any);
  170. if (hwrpb->cycle_freq != 0) {
  171. ps_per_cycle = (1000*1000*1000*1000UL) / hwrpb->cycle_freq;
  172. } else {
  173. /*
  174.  * HELP:  Linux 2.0.x doesn't set cycle_freq on my noname !
  175.  */
  176. ps_per_cycle = (1000*1000*1000*1000UL) / CONFIG_FT_ALPHA_CLOCK;
  177. }
  178. #endif
  179. TRACE_EXIT;
  180. }
  181. /*
  182.  *      Input:  function taking int count as parameter.
  183.  *              pointers to calculated calibration variables.
  184.  */
  185. void ftape_calibrate(char *name,
  186.     void (*fun) (unsigned int), 
  187.     unsigned int *calibr_count, 
  188.     unsigned int *calibr_time)
  189. {
  190. static int first_time = 1;
  191. int i;
  192. unsigned int tc = 0;
  193. unsigned int count;
  194. unsigned int time;
  195. #if defined(__i386__) || defined(__x86_64__)
  196. unsigned int old_tc = 0;
  197. unsigned int old_count = 1;
  198. unsigned int old_time = 1;
  199. #endif
  200. TRACE_FUN(ft_t_flow);
  201. if (first_time) {             /* get idea of I/O performance */
  202. init_clock();
  203. time_inb();
  204. first_time = 0;
  205. }
  206. /*    value of timeout must be set so that on very slow systems
  207.  *    it will give a time less than one jiffy, and on
  208.  *    very fast systems it'll give reasonable precision.
  209.  */
  210. count = 40;
  211. for (i = 0; i < 15; ++i) {
  212. unsigned int t0;
  213. unsigned int t1;
  214. unsigned int once;
  215. unsigned int multiple;
  216. unsigned long flags;
  217. *calibr_count =
  218. *calibr_time = count; /* set TC to 1 */
  219. save_flags(flags);
  220. cli();
  221. fun(0); /* dummy, get code into cache */
  222. t0 = short_ftape_timestamp();
  223. fun(0); /* overhead + one test */
  224. t1 = short_ftape_timestamp();
  225. once = diff(t0, t1);
  226. t0 = short_ftape_timestamp();
  227. fun(count); /* overhead + count tests */
  228. t1 = short_ftape_timestamp();
  229. multiple = diff(t0, t1);
  230. restore_flags(flags);
  231. time = ftape_timediff(0, multiple - once);
  232. tc = (1000 * time) / (count - 1);
  233. TRACE(ft_t_any, "once:%3d us,%6d times:%6d us, TC:%5d ns",
  234. usecs(once), count - 1, usecs(multiple), tc);
  235. #if defined(__alpha__)
  236. /*
  237.  * Increase the calibration count exponentially until the
  238.  * calibration time exceeds 100 ms.
  239.  */
  240. if (time >= 100*1000) {
  241. break;
  242. }
  243. #elif defined(__i386__) || defined(__x86_64__)
  244. /*
  245.  * increase the count until the resulting time nears 2/HZ,
  246.  * then the tc will drop sharply because we lose LATCH counts.
  247.  */
  248. if (tc <= old_tc / 2) {
  249. time = old_time;
  250. count = old_count;
  251. break;
  252. }
  253. old_tc = tc;
  254. old_count = count;
  255. old_time = time;
  256. #endif
  257. count *= 2;
  258. }
  259. *calibr_count = count - 1;
  260. *calibr_time  = time;
  261. TRACE(ft_t_info, "TC for `%s()' = %d nsec (at %d counts)",
  262.      name, (1000 * *calibr_time) / *calibr_count, *calibr_count);
  263. TRACE_EXIT;
  264. }