RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / arch / cris / arch-v32 / kernel / fasttimer.c
blobe6e44caf438f06b0b8d6e851b6677d85870c4efc
1 /*
2 * linux/arch/cris/kernel/fasttimer.c
4 * Fast timers for ETRAX FS
6 * Copyright (C) 2000-2006 Axis Communications AB, Lund, Sweden
7 */
9 #include <linux/errno.h>
10 #include <linux/sched.h>
11 #include <linux/kernel.h>
12 #include <linux/param.h>
13 #include <linux/string.h>
14 #include <linux/vmalloc.h>
15 #include <linux/interrupt.h>
16 #include <linux/time.h>
17 #include <linux/delay.h>
19 #include <asm/irq.h>
20 #include <asm/system.h>
22 #include <hwregs/reg_map.h>
23 #include <hwregs/reg_rdwr.h>
24 #include <hwregs/timer_defs.h>
25 #include <asm/fasttimer.h>
26 #include <linux/proc_fs.h>
29 * timer0 is running at 100MHz and generating jiffies timer ticks
30 * at 100 or 1000 HZ.
31 * fasttimer gives an API that gives timers that expire "between" the jiffies
32 * giving microsecond resolution (10 ns).
33 * fasttimer uses reg_timer_rw_trig register to get interrupt when
34 * r_time reaches a certain value.
38 #define DEBUG_LOG_INCLUDED
39 #define FAST_TIMER_LOG
40 /* #define FAST_TIMER_TEST */
42 #define FAST_TIMER_SANITY_CHECKS
44 #ifdef FAST_TIMER_SANITY_CHECKS
45 static int sanity_failed;
46 #endif
48 #define D1(x)
49 #define D2(x)
50 #define DP(x)
52 static unsigned int fast_timer_running;
53 static unsigned int fast_timers_added;
54 static unsigned int fast_timers_started;
55 static unsigned int fast_timers_expired;
56 static unsigned int fast_timers_deleted;
57 static unsigned int fast_timer_is_init;
58 static unsigned int fast_timer_ints;
60 struct fast_timer *fast_timer_list = NULL;
62 #ifdef DEBUG_LOG_INCLUDED
63 #define DEBUG_LOG_MAX 128
64 static const char * debug_log_string[DEBUG_LOG_MAX];
65 static unsigned long debug_log_value[DEBUG_LOG_MAX];
66 static unsigned int debug_log_cnt;
67 static unsigned int debug_log_cnt_wrapped;
69 #define DEBUG_LOG(string, value) \
70 { \
71 unsigned long log_flags; \
72 local_irq_save(log_flags); \
73 debug_log_string[debug_log_cnt] = (string); \
74 debug_log_value[debug_log_cnt] = (unsigned long)(value); \
75 if (++debug_log_cnt >= DEBUG_LOG_MAX) \
76 { \
77 debug_log_cnt = debug_log_cnt % DEBUG_LOG_MAX; \
78 debug_log_cnt_wrapped = 1; \
79 } \
80 local_irq_restore(log_flags); \
82 #else
83 #define DEBUG_LOG(string, value)
84 #endif
87 #define NUM_TIMER_STATS 16
88 #ifdef FAST_TIMER_LOG
89 struct fast_timer timer_added_log[NUM_TIMER_STATS];
90 struct fast_timer timer_started_log[NUM_TIMER_STATS];
91 struct fast_timer timer_expired_log[NUM_TIMER_STATS];
92 #endif
94 int timer_div_settings[NUM_TIMER_STATS];
95 int timer_delay_settings[NUM_TIMER_STATS];
97 struct work_struct fast_work;
99 static void
100 timer_trig_handler(struct work_struct *work);
104 /* Not true gettimeofday, only checks the jiffies (uptime) + useconds */
105 inline void do_gettimeofday_fast(struct fasttime_t *tv)
107 tv->tv_jiff = jiffies;
108 tv->tv_usec = GET_JIFFIES_USEC();
111 inline int fasttime_cmp(struct fasttime_t *t0, struct fasttime_t *t1)
113 /* Compare jiffies. Takes care of wrapping */
114 if (time_before(t0->tv_jiff, t1->tv_jiff))
115 return -1;
116 else if (time_after(t0->tv_jiff, t1->tv_jiff))
117 return 1;
119 /* Compare us */
120 if (t0->tv_usec < t1->tv_usec)
121 return -1;
122 else if (t0->tv_usec > t1->tv_usec)
123 return 1;
124 return 0;
127 /* Called with ints off */
128 inline void start_timer_trig(unsigned long delay_us)
130 reg_timer_rw_ack_intr ack_intr = { 0 };
131 reg_timer_rw_intr_mask intr_mask;
132 reg_timer_rw_trig trig;
133 reg_timer_rw_trig_cfg trig_cfg = { 0 };
134 reg_timer_r_time r_time0;
135 reg_timer_r_time r_time1;
136 unsigned char trig_wrap;
137 unsigned char time_wrap;
139 r_time0 = REG_RD(timer, regi_timer0, r_time);
141 D1(printk("start_timer_trig : %d us freq: %i div: %i\n",
142 delay_us, freq_index, div));
143 /* Clear trig irq */
144 intr_mask = REG_RD(timer, regi_timer0, rw_intr_mask);
145 intr_mask.trig = 0;
146 REG_WR(timer, regi_timer0, rw_intr_mask, intr_mask);
148 /* Set timer values and check if trigger wraps. */
149 /* r_time is 100MHz (10 ns resolution) */
150 trig_wrap = (trig = r_time0 + delay_us*(1000/10)) < r_time0;
152 timer_div_settings[fast_timers_started % NUM_TIMER_STATS] = trig;
153 timer_delay_settings[fast_timers_started % NUM_TIMER_STATS] = delay_us;
155 /* Ack interrupt */
156 ack_intr.trig = 1;
157 REG_WR(timer, regi_timer0, rw_ack_intr, ack_intr);
159 /* Start timer */
160 REG_WR(timer, regi_timer0, rw_trig, trig);
161 trig_cfg.tmr = regk_timer_time;
162 REG_WR(timer, regi_timer0, rw_trig_cfg, trig_cfg);
164 /* Check if we have already passed the trig time */
165 r_time1 = REG_RD(timer, regi_timer0, r_time);
166 time_wrap = r_time1 < r_time0;
168 if ((trig_wrap && !time_wrap) || (r_time1 < trig)) {
169 /* No, Enable trig irq */
170 intr_mask = REG_RD(timer, regi_timer0, rw_intr_mask);
171 intr_mask.trig = 1;
172 REG_WR(timer, regi_timer0, rw_intr_mask, intr_mask);
173 fast_timers_started++;
174 fast_timer_running = 1;
175 } else {
176 /* We have passed the time, disable trig point, ack intr */
177 trig_cfg.tmr = regk_timer_off;
178 REG_WR(timer, regi_timer0, rw_trig_cfg, trig_cfg);
179 REG_WR(timer, regi_timer0, rw_ack_intr, ack_intr);
180 /* call the int routine */
181 INIT_WORK(&fast_work, timer_trig_handler);
182 schedule_work(&fast_work);
187 /* In version 1.4 this function takes 27 - 50 us */
188 void start_one_shot_timer(struct fast_timer *t,
189 fast_timer_function_type *function,
190 unsigned long data,
191 unsigned long delay_us,
192 const char *name)
194 unsigned long flags;
195 struct fast_timer *tmp;
197 D1(printk("sft %s %d us\n", name, delay_us));
199 local_irq_save(flags);
201 do_gettimeofday_fast(&t->tv_set);
202 tmp = fast_timer_list;
204 #ifdef FAST_TIMER_SANITY_CHECKS
205 /* Check so this is not in the list already... */
206 while (tmp != NULL) {
207 if (tmp == t) {
208 printk(KERN_DEBUG
209 "timer name: %s data: 0x%08lX already "
210 "in list!\n", name, data);
211 sanity_failed++;
212 goto done;
213 } else
214 tmp = tmp->next;
216 tmp = fast_timer_list;
217 #endif
219 t->delay_us = delay_us;
220 t->function = function;
221 t->data = data;
222 t->name = name;
224 t->tv_expires.tv_usec = t->tv_set.tv_usec + delay_us % 1000000;
225 t->tv_expires.tv_jiff = t->tv_set.tv_jiff + delay_us / 1000000 / HZ;
226 if (t->tv_expires.tv_usec > 1000000) {
227 t->tv_expires.tv_usec -= 1000000;
228 t->tv_expires.tv_jiff += HZ;
230 #ifdef FAST_TIMER_LOG
231 timer_added_log[fast_timers_added % NUM_TIMER_STATS] = *t;
232 #endif
233 fast_timers_added++;
235 /* Check if this should timeout before anything else */
236 if (tmp == NULL || fasttime_cmp(&t->tv_expires, &tmp->tv_expires) < 0) {
237 /* Put first in list and modify the timer value */
238 t->prev = NULL;
239 t->next = fast_timer_list;
240 if (fast_timer_list)
241 fast_timer_list->prev = t;
242 fast_timer_list = t;
243 #ifdef FAST_TIMER_LOG
244 timer_started_log[fast_timers_started % NUM_TIMER_STATS] = *t;
245 #endif
246 start_timer_trig(delay_us);
247 } else {
248 /* Put in correct place in list */
249 while (tmp->next &&
250 fasttime_cmp(&t->tv_expires, &tmp->next->tv_expires) > 0)
251 tmp = tmp->next;
252 /* Insert t after tmp */
253 t->prev = tmp;
254 t->next = tmp->next;
255 if (tmp->next)
257 tmp->next->prev = t;
259 tmp->next = t;
262 D2(printk("start_one_shot_timer: %d us done\n", delay_us));
264 done:
265 local_irq_restore(flags);
266 } /* start_one_shot_timer */
268 static inline int fast_timer_pending (const struct fast_timer * t)
270 return (t->next != NULL) || (t->prev != NULL) || (t == fast_timer_list);
273 static inline int detach_fast_timer (struct fast_timer *t)
275 struct fast_timer *next, *prev;
276 if (!fast_timer_pending(t))
277 return 0;
278 next = t->next;
279 prev = t->prev;
280 if (next)
281 next->prev = prev;
282 if (prev)
283 prev->next = next;
284 else
285 fast_timer_list = next;
286 fast_timers_deleted++;
287 return 1;
290 int del_fast_timer(struct fast_timer * t)
292 unsigned long flags;
293 int ret;
295 local_irq_save(flags);
296 ret = detach_fast_timer(t);
297 t->next = t->prev = NULL;
298 local_irq_restore(flags);
299 return ret;
300 } /* del_fast_timer */
303 /* Interrupt routines or functions called in interrupt context */
305 /* Timer interrupt handler for trig interrupts */
307 static irqreturn_t
308 timer_trig_interrupt(int irq, void *dev_id)
310 reg_timer_r_masked_intr masked_intr;
311 /* Check if the timer interrupt is for us (a trig int) */
312 masked_intr = REG_RD(timer, regi_timer0, r_masked_intr);
313 if (!masked_intr.trig)
314 return IRQ_NONE;
315 timer_trig_handler(NULL);
316 return IRQ_HANDLED;
319 static void timer_trig_handler(struct work_struct *work)
321 reg_timer_rw_ack_intr ack_intr = { 0 };
322 reg_timer_rw_intr_mask intr_mask;
323 reg_timer_rw_trig_cfg trig_cfg = { 0 };
324 struct fast_timer *t;
325 unsigned long flags;
327 /* We keep interrupts disabled not only when we modify the
328 * fast timer list, but any time we hold a reference to a
329 * timer in the list, since del_fast_timer may be called
330 * from (another) interrupt context. Thus, the only time
331 * when interrupts are enabled is when calling the timer
332 * callback function.
334 local_irq_save(flags);
336 /* Clear timer trig interrupt */
337 intr_mask = REG_RD(timer, regi_timer0, rw_intr_mask);
338 intr_mask.trig = 0;
339 REG_WR(timer, regi_timer0, rw_intr_mask, intr_mask);
341 /* First stop timer, then ack interrupt */
342 /* Stop timer */
343 trig_cfg.tmr = regk_timer_off;
344 REG_WR(timer, regi_timer0, rw_trig_cfg, trig_cfg);
346 /* Ack interrupt */
347 ack_intr.trig = 1;
348 REG_WR(timer, regi_timer0, rw_ack_intr, ack_intr);
350 fast_timer_running = 0;
351 fast_timer_ints++;
353 fast_timer_function_type *f;
354 unsigned long d;
356 t = fast_timer_list;
357 while (t) {
358 struct fasttime_t tv;
360 /* Has it really expired? */
361 do_gettimeofday_fast(&tv);
362 D1(printk(KERN_DEBUG
363 "t: %is %06ius\n", tv.tv_jiff, tv.tv_usec));
365 if (fasttime_cmp(&t->tv_expires, &tv) <= 0) {
366 /* Yes it has expired */
367 #ifdef FAST_TIMER_LOG
368 timer_expired_log[fast_timers_expired % NUM_TIMER_STATS] = *t;
369 #endif
370 fast_timers_expired++;
372 /* Remove this timer before call, since it may reuse the timer */
373 if (t->prev)
374 t->prev->next = t->next;
375 else
376 fast_timer_list = t->next;
377 if (t->next)
378 t->next->prev = t->prev;
379 t->prev = NULL;
380 t->next = NULL;
382 /* Save function callback data before enabling
383 * interrupts, since the timer may be removed and we
384 * don't know how it was allocated (e.g. ->function
385 * and ->data may become overwritten after deletion
386 * if the timer was stack-allocated).
388 f = t->function;
389 d = t->data;
391 if (f != NULL) {
392 /* Run the callback function with interrupts
393 * enabled. */
394 local_irq_restore(flags);
395 f(d);
396 local_irq_save(flags);
397 } else
398 DEBUG_LOG("!trimertrig %i function==NULL!\n", fast_timer_ints);
399 } else {
400 /* Timer is to early, let's set it again using the normal routines */
401 D1(printk(".\n"));
404 t = fast_timer_list;
405 if (t != NULL) {
406 /* Start next timer.. */
407 long us = 0;
408 struct fasttime_t tv;
410 do_gettimeofday_fast(&tv);
412 /* time_after_eq takes care of wrapping */
413 if (time_after_eq(t->tv_expires.tv_jiff, tv.tv_jiff))
414 us = ((t->tv_expires.tv_jiff - tv.tv_jiff) *
415 1000000 / HZ + t->tv_expires.tv_usec -
416 tv.tv_usec);
418 if (us > 0) {
419 if (!fast_timer_running) {
420 #ifdef FAST_TIMER_LOG
421 timer_started_log[fast_timers_started % NUM_TIMER_STATS] = *t;
422 #endif
423 start_timer_trig(us);
425 break;
426 } else {
427 /* Timer already expired, let's handle it better late than never.
428 * The normal loop handles it
430 D1(printk("e! %d\n", us));
435 local_irq_restore(flags);
437 if (!t)
438 D1(printk("ttrig stop!\n"));
441 static void wake_up_func(unsigned long data)
443 wait_queue_head_t *sleep_wait_p = (wait_queue_head_t*)data;
444 wake_up(sleep_wait_p);
448 /* Useful API */
450 void schedule_usleep(unsigned long us)
452 struct fast_timer t;
453 wait_queue_head_t sleep_wait;
454 init_waitqueue_head(&sleep_wait);
456 D1(printk("schedule_usleep(%d)\n", us));
457 start_one_shot_timer(&t, wake_up_func, (unsigned long)&sleep_wait, us,
458 "usleep");
459 /* Uninterruptible sleep on the fast timer. (The condition is
460 * somewhat redundant since the timer is what wakes us up.) */
461 wait_event(sleep_wait, !fast_timer_pending(&t));
463 D1(printk("done schedule_usleep(%d)\n", us));
466 #ifdef CONFIG_PROC_FS
467 static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len
468 ,int *eof, void *data_unused);
469 static struct proc_dir_entry *fasttimer_proc_entry;
470 #endif /* CONFIG_PROC_FS */
472 #ifdef CONFIG_PROC_FS
474 /* This value is very much based on testing */
475 #define BIG_BUF_SIZE (500 + NUM_TIMER_STATS * 300)
477 static int proc_fasttimer_read(char *buf, char **start, off_t offset, int len
478 ,int *eof, void *data_unused)
480 unsigned long flags;
481 int i = 0;
482 int num_to_show;
483 struct fasttime_t tv;
484 struct fast_timer *t, *nextt;
485 static char *bigbuf = NULL;
486 static unsigned long used;
488 if (!bigbuf) {
489 bigbuf = vmalloc(BIG_BUF_SIZE);
490 if (!bigbuf) {
491 used = 0;
492 if (buf)
493 buf[0] = '\0';
494 return 0;
498 if (!offset || !used) {
499 do_gettimeofday_fast(&tv);
501 used = 0;
502 used += sprintf(bigbuf + used, "Fast timers added: %i\n",
503 fast_timers_added);
504 used += sprintf(bigbuf + used, "Fast timers started: %i\n",
505 fast_timers_started);
506 used += sprintf(bigbuf + used, "Fast timer interrupts: %i\n",
507 fast_timer_ints);
508 used += sprintf(bigbuf + used, "Fast timers expired: %i\n",
509 fast_timers_expired);
510 used += sprintf(bigbuf + used, "Fast timers deleted: %i\n",
511 fast_timers_deleted);
512 used += sprintf(bigbuf + used, "Fast timer running: %s\n",
513 fast_timer_running ? "yes" : "no");
514 used += sprintf(bigbuf + used, "Current time: %lu.%06lu\n",
515 (unsigned long)tv.tv_jiff,
516 (unsigned long)tv.tv_usec);
517 #ifdef FAST_TIMER_SANITY_CHECKS
518 used += sprintf(bigbuf + used, "Sanity failed: %i\n",
519 sanity_failed);
520 #endif
521 used += sprintf(bigbuf + used, "\n");
523 #ifdef DEBUG_LOG_INCLUDED
525 int end_i = debug_log_cnt;
526 i = 0;
528 if (debug_log_cnt_wrapped)
529 i = debug_log_cnt;
531 while ((i != end_i || (debug_log_cnt_wrapped && !used)) &&
532 used+100 < BIG_BUF_SIZE)
534 used += sprintf(bigbuf + used, debug_log_string[i],
535 debug_log_value[i]);
536 i = (i+1) % DEBUG_LOG_MAX;
539 used += sprintf(bigbuf + used, "\n");
540 #endif
542 num_to_show = (fast_timers_started < NUM_TIMER_STATS ? fast_timers_started:
543 NUM_TIMER_STATS);
544 used += sprintf(bigbuf + used, "Timers started: %i\n", fast_timers_started);
545 for (i = 0; i < num_to_show && (used+100 < BIG_BUF_SIZE) ; i++)
547 int cur = (fast_timers_started - i - 1) % NUM_TIMER_STATS;
549 used += sprintf(bigbuf + used, "div: %i delay: %i"
550 "\n",
551 timer_div_settings[cur],
552 timer_delay_settings[cur]
554 #ifdef FAST_TIMER_LOG
555 t = &timer_started_log[cur];
556 used += sprintf(bigbuf + used, "%-14s s: %6lu.%06lu e: %6lu.%06lu "
557 "d: %6li us data: 0x%08lX"
558 "\n",
559 t->name,
560 (unsigned long)t->tv_set.tv_jiff,
561 (unsigned long)t->tv_set.tv_usec,
562 (unsigned long)t->tv_expires.tv_jiff,
563 (unsigned long)t->tv_expires.tv_usec,
564 t->delay_us,
565 t->data
567 #endif
569 used += sprintf(bigbuf + used, "\n");
571 #ifdef FAST_TIMER_LOG
572 num_to_show = (fast_timers_added < NUM_TIMER_STATS ? fast_timers_added:
573 NUM_TIMER_STATS);
574 used += sprintf(bigbuf + used, "Timers added: %i\n", fast_timers_added);
575 for (i = 0; i < num_to_show && (used+100 < BIG_BUF_SIZE); i++)
577 t = &timer_added_log[(fast_timers_added - i - 1) % NUM_TIMER_STATS];
578 used += sprintf(bigbuf + used, "%-14s s: %6lu.%06lu e: %6lu.%06lu "
579 "d: %6li us data: 0x%08lX"
580 "\n",
581 t->name,
582 (unsigned long)t->tv_set.tv_jiff,
583 (unsigned long)t->tv_set.tv_usec,
584 (unsigned long)t->tv_expires.tv_jiff,
585 (unsigned long)t->tv_expires.tv_usec,
586 t->delay_us,
587 t->data
590 used += sprintf(bigbuf + used, "\n");
592 num_to_show = (fast_timers_expired < NUM_TIMER_STATS ? fast_timers_expired:
593 NUM_TIMER_STATS);
594 used += sprintf(bigbuf + used, "Timers expired: %i\n", fast_timers_expired);
595 for (i = 0; i < num_to_show && (used+100 < BIG_BUF_SIZE); i++)
597 t = &timer_expired_log[(fast_timers_expired - i - 1) % NUM_TIMER_STATS];
598 used += sprintf(bigbuf + used, "%-14s s: %6lu.%06lu e: %6lu.%06lu "
599 "d: %6li us data: 0x%08lX"
600 "\n",
601 t->name,
602 (unsigned long)t->tv_set.tv_jiff,
603 (unsigned long)t->tv_set.tv_usec,
604 (unsigned long)t->tv_expires.tv_jiff,
605 (unsigned long)t->tv_expires.tv_usec,
606 t->delay_us,
607 t->data
610 used += sprintf(bigbuf + used, "\n");
611 #endif
613 used += sprintf(bigbuf + used, "Active timers:\n");
614 local_irq_save(flags);
615 t = fast_timer_list;
616 while (t != NULL && (used+100 < BIG_BUF_SIZE))
618 nextt = t->next;
619 local_irq_restore(flags);
620 used += sprintf(bigbuf + used, "%-14s s: %6lu.%06lu e: %6lu.%06lu "
621 "d: %6li us data: 0x%08lX"
622 /* " func: 0x%08lX" */
623 "\n",
624 t->name,
625 (unsigned long)t->tv_set.tv_jiff,
626 (unsigned long)t->tv_set.tv_usec,
627 (unsigned long)t->tv_expires.tv_jiff,
628 (unsigned long)t->tv_expires.tv_usec,
629 t->delay_us,
630 t->data
631 /* , t->function */
633 local_irq_save(flags);
634 if (t->next != nextt)
636 printk("timer removed!\n");
638 t = nextt;
640 local_irq_restore(flags);
643 if (used - offset < len)
645 len = used - offset;
648 memcpy(buf, bigbuf + offset, len);
649 *start = buf;
650 *eof = 1;
652 return len;
654 #endif /* PROC_FS */
656 #ifdef FAST_TIMER_TEST
657 static volatile unsigned long i = 0;
658 static volatile int num_test_timeout = 0;
659 static struct fast_timer tr[10];
660 static int exp_num[10];
662 static struct fasttime_t tv_exp[100];
664 static void test_timeout(unsigned long data)
666 do_gettimeofday_fast(&tv_exp[data]);
667 exp_num[data] = num_test_timeout;
669 num_test_timeout++;
672 static void test_timeout1(unsigned long data)
674 do_gettimeofday_fast(&tv_exp[data]);
675 exp_num[data] = num_test_timeout;
676 if (data < 7)
678 start_one_shot_timer(&tr[i], test_timeout1, i, 1000, "timeout1");
679 i++;
681 num_test_timeout++;
685 static char buf0[2000];
686 static char buf1[2000];
687 static char buf2[2000];
688 static char buf3[2000];
689 static char buf4[2000];
692 static char buf5[6000];
693 static int j_u[1000];
695 static void fast_timer_test(void)
697 int prev_num;
698 int j;
700 struct fasttime_t tv, tv0, tv1, tv2;
702 printk("fast_timer_test() start\n");
703 do_gettimeofday_fast(&tv);
705 for (j = 0; j < 1000; j++)
707 j_u[j] = GET_JIFFIES_USEC();
709 for (j = 0; j < 100; j++)
711 do_gettimeofday_fast(&tv_exp[j]);
713 printk(KERN_DEBUG "fast_timer_test() %is %06i\n", tv.tv_jiff, tv.tv_usec);
715 for (j = 0; j < 1000; j++)
717 printk(KERN_DEBUG "%i %i %i %i %i\n",
718 j_u[j], j_u[j+1], j_u[j+2], j_u[j+3], j_u[j+4]);
719 j += 4;
721 for (j = 0; j < 100; j++)
723 printk(KERN_DEBUG "%i.%i %i.%i %i.%i %i.%i %i.%i\n",
724 tv_exp[j].tv_jiff, tv_exp[j].tv_usec,
725 tv_exp[j+1].tv_jiff, tv_exp[j+1].tv_usec,
726 tv_exp[j+2].tv_jiff, tv_exp[j+2].tv_usec,
727 tv_exp[j+3].tv_jiff, tv_exp[j+3].tv_usec,
728 tv_exp[j+4].tv_jiff, tv_exp[j+4].tv_usec);
729 j += 4;
731 do_gettimeofday_fast(&tv0);
732 start_one_shot_timer(&tr[i], test_timeout, i, 50000, "test0");
733 DP(proc_fasttimer_read(buf0, NULL, 0, 0, 0));
734 i++;
735 start_one_shot_timer(&tr[i], test_timeout, i, 70000, "test1");
736 DP(proc_fasttimer_read(buf1, NULL, 0, 0, 0));
737 i++;
738 start_one_shot_timer(&tr[i], test_timeout, i, 40000, "test2");
739 DP(proc_fasttimer_read(buf2, NULL, 0, 0, 0));
740 i++;
741 start_one_shot_timer(&tr[i], test_timeout, i, 60000, "test3");
742 DP(proc_fasttimer_read(buf3, NULL, 0, 0, 0));
743 i++;
744 start_one_shot_timer(&tr[i], test_timeout1, i, 55000, "test4xx");
745 DP(proc_fasttimer_read(buf4, NULL, 0, 0, 0));
746 i++;
747 do_gettimeofday_fast(&tv1);
749 proc_fasttimer_read(buf5, NULL, 0, 0, 0);
751 prev_num = num_test_timeout;
752 while (num_test_timeout < i)
754 if (num_test_timeout != prev_num)
755 prev_num = num_test_timeout;
757 do_gettimeofday_fast(&tv2);
758 printk(KERN_INFO "Timers started %is %06i\n",
759 tv0.tv_jiff, tv0.tv_usec);
760 printk(KERN_INFO "Timers started at %is %06i\n",
761 tv1.tv_jiff, tv1.tv_usec);
762 printk(KERN_INFO "Timers done %is %06i\n",
763 tv2.tv_jiff, tv2.tv_usec);
764 DP(printk("buf0:\n");
765 printk(buf0);
766 printk("buf1:\n");
767 printk(buf1);
768 printk("buf2:\n");
769 printk(buf2);
770 printk("buf3:\n");
771 printk(buf3);
772 printk("buf4:\n");
773 printk(buf4);
775 printk("buf5:\n");
776 printk(buf5);
778 printk("timers set:\n");
779 for(j = 0; j<i; j++)
781 struct fast_timer *t = &tr[j];
782 printk("%-10s set: %6is %06ius exp: %6is %06ius "
783 "data: 0x%08X func: 0x%08X\n",
784 t->name,
785 t->tv_set.tv_jiff,
786 t->tv_set.tv_usec,
787 t->tv_expires.tv_jiff,
788 t->tv_expires.tv_usec,
789 t->data,
790 t->function
793 printk(" del: %6ius did exp: %6is %06ius as #%i error: %6li\n",
794 t->delay_us,
795 tv_exp[j].tv_jiff,
796 tv_exp[j].tv_usec,
797 exp_num[j],
798 (tv_exp[j].tv_jiff - t->tv_expires.tv_jiff) *
799 1000000 + tv_exp[j].tv_usec -
800 t->tv_expires.tv_usec);
802 proc_fasttimer_read(buf5, NULL, 0, 0, 0);
803 printk("buf5 after all done:\n");
804 printk(buf5);
805 printk("fast_timer_test() done\n");
807 #endif
810 int fast_timer_init(void)
812 /* For some reason, request_irq() hangs when called froom time_init() */
813 if (!fast_timer_is_init)
815 printk("fast_timer_init()\n");
817 #ifdef CONFIG_PROC_FS
818 fasttimer_proc_entry = create_proc_entry("fasttimer", 0, 0);
819 if (fasttimer_proc_entry)
820 fasttimer_proc_entry->read_proc = proc_fasttimer_read;
821 #endif /* PROC_FS */
822 if (request_irq(TIMER0_INTR_VECT, timer_trig_interrupt,
823 IRQF_SHARED | IRQF_DISABLED,
824 "fast timer int", &fast_timer_list))
825 printk(KERN_ERR "err: fasttimer irq\n");
826 fast_timer_is_init = 1;
827 #ifdef FAST_TIMER_TEST
828 printk("do test\n");
829 fast_timer_test();
830 #endif
832 return 0;
834 __initcall(fast_timer_init);