HomeSort by: relevance | last modified time | path
    Searched refs:delay_divisor (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/arch/hp300/hp300/
clock.c 109 extern int delay_divisor;
119 * We adjust delay_divisor until we get the result we want.
122 for (delay_divisor = 140; delay_divisor > 1; delay_divisor--) {
172 * Sanity check the delay_divisor value. If we totally lost,
175 if (delay_divisor == 0)
176 delay_divisor = 2048 / 50;
179 cpuspeed = 2048 / delay_divisor;
machdep.c 159 * Note that the value of delay_divisor is roughly
165 int delay_divisor; /* delay constant */ variable in typeref:typename:int
483 printf("cpu: delay divisor %d", delay_divisor);
locore.s 1003 * This routine depends on the variable: delay_divisor
1009 | %d1 = delay_divisor
1010 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/sun3/sun3/
locore2.c 95 * Note that the value of delay_divisor is roughly
98 int delay_divisor = 82; /* assume the fastest (3/260) */ variable in typeref:typename:int
249 delay_divisor = 128; /* 16 MHz */
255 delay_divisor = 102; /* 20 MHz */
261 delay_divisor = 120; /* 17 MHz */
268 delay_divisor = 120; /* 17 MHz */
275 delay_divisor = 82; /* 25 MHz */
285 delay_divisor = 102; /* 20 MHz XXX: Correct? */
locore.s 562 * This routine depends on the variable: delay_divisor
570 | %d1 = delay_divisor;
571 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/x68k/dev/
mfp.c 151 extern int delay_divisor;
162 * Our slowest clock is 20MHz (?). Its delay_divisor value
165 for (delay_divisor = 140; delay_divisor > 0; delay_divisor--) {
  /src/sys/arch/mvme68k/mvme68k/
clock.c 80 extern int delay_divisor; /* from machdep.c */
91 printf(": delay_divisor %d\n", delay_divisor);
machdep.c 175 * On the 68020/68030 (mvme14x), the value of delay_divisor is roughly
182 int delay_divisor = 512; /* assume some reasonable value to start */ variable in typeref:typename:int
294 * we adjust the delay_divisor until we get the result we want.
300 for (delay_divisor = 512; delay_divisor > 0; delay_divisor--) {
313 if (delay_divisor == 0) {
314 delay_divisor = 1;
320 cpuspeed = 8192 / delay_divisor;
346 for (delay_divisor = (cputype == CPU_68060) ? 20 : 154
    [all...]
  /src/sys/arch/sun2/sun2/
locore2.c 91 * Note that the value of delay_divisor is roughly
94 int delay_divisor = 82; /* assume the fastest (3/260) */ variable in typeref:typename:int
229 delay_divisor = 205; /* 10 MHz */
236 delay_divisor = 205; /* 10 MHz */
  /src/sys/arch/cesfic/cesfic/
machdep.c 128 int delay_divisor; /* delay constant */ variable in typeref:typename:int
141 delay_divisor = 30; /* XXX */
273 printf("delay constant: %d\n", delay_divisor);
locore.s 785 * This routine depends on the variable: delay_divisor
791 | d1 = delay_divisor
792 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/sun3/sun3x/
machdep.c 253 * Note that the value of delay_divisor is roughly
256 int delay_divisor = 62; /* assume the fastest (33 MHz) */ variable in typeref:typename:int
274 delay_divisor = 102; /* 20 MHz */
280 delay_divisor = 62; /* 33 MHz */
locore.s 566 * This routine depends on the variable: delay_divisor
574 | %d1 = delay_divisor;
575 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/luna68k/luna68k/
machdep.c 142 * On the 68020/68030, the value of delay_divisor is roughly
145 * On the 68040/68060(?), the value of delay_divisor is roughly
150 int delay_divisor = 30; /* for delay() loop count */ variable in typeref:typename:int
378 delay_divisor = 102;
390 delay_divisor = 30;
locore.s 699 * This routine depends on the variable: delay_divisor
705 | %d1 = delay_divisor
706 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/next68k/next68k/
machdep.c 171 * On the 68020/68030, the value of delay_divisor is roughly
174 * On the 68040/68060(?), the value of delay_divisor is roughly
179 int delay_divisor = 759 / 33; /* delay constant; assume fastest 33 MHz */ variable in typeref:typename:int
333 delay_divisor = 759 / cpuspeed;
338 delay_divisor = 2048 / cpuspeed;
locore.s 754 * This routine depends on the variable: delay_divisor
760 | %d1 = delay_divisor
761 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/x68k/x68k/
machdep.c 161 * On the 68020/68030, the value of delay_divisor is roughly
164 * On the 68040, the value of delay_divisor is roughly
167 * On the 68060, the value of delay_divisor is reported to be
170 int delay_divisor = 140; /* assume some reasonable value to start */ variable in typeref:typename:int
378 * This delay_divisor method cannot get accurate cpuspeed
386 cpuspeed = 759 / delay_divisor;
393 cpuspeed = 2048 / delay_divisor;
399 cpuspeed = 2048 / delay_divisor;
locore.s 808 * This routine depends on the variable: delay_divisor
815 | %d1 = delay_divisor
816 movl _C_LABEL(delay_divisor),%d1
  /src/sys/arch/news68k/news68k/
machdep.c 148 * Note that the value of delay_divisor is roughly
153 int delay_divisor = 82; /* delay constant */ variable in typeref:typename:int
258 delay_divisor = (20480 / cpuspeed + 5) / 10; /* XXX */
locore.s 798 * This routine depends on the variable: delay_divisor
804 | %d1 = delay_divisor
805 movl _C_LABEL(delay_divisor),%d1

Completed in 22 milliseconds