timer.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /*********************************************************************
  2. *
  3. * Filename: timer.h
  4. * Version:
  5. * Description:
  6. * Status: Experimental.
  7. * Author: Dag Brattli <dagb@cs.uit.no>
  8. * Created at: Sat Aug 16 00:59:29 1997
  9. * Modified at: Thu Oct 7 12:25:24 1999
  10. * Modified by: Dag Brattli <dagb@cs.uit.no>
  11. *
  12. * Copyright (c) 1997, 1998-1999 Dag Brattli <dagb@cs.uit.no>,
  13. * All Rights Reserved.
  14. * Copyright (c) 2000-2002 Jean Tourrilhes <jt@hpl.hp.com>
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * Neither Dag Brattli nor University of Tromsø admit liability nor
  22. * provide warranty for any of this software. This material is
  23. * provided "AS-IS" and at no charge.
  24. *
  25. ********************************************************************/
  26. #ifndef TIMER_H
  27. #define TIMER_H
  28. #include <linux/timer.h>
  29. #include <linux/jiffies.h>
  30. #include <asm/param.h> /* for HZ */
  31. #include <net/irda/irda.h>
  32. /* A few forward declarations (to make compiler happy) */
  33. struct irlmp_cb;
  34. struct irlap_cb;
  35. struct lsap_cb;
  36. struct lap_cb;
  37. /*
  38. * Timeout definitions, some defined in IrLAP 6.13.5 - p. 92
  39. */
  40. #define POLL_TIMEOUT (450*HZ/1000) /* Must never exceed 500 ms */
  41. #define FINAL_TIMEOUT (500*HZ/1000) /* Must never exceed 500 ms */
  42. /*
  43. * Normally twice of p-timer. Note 3, IrLAP 6.3.11.2 - p. 60 suggests
  44. * at least twice duration of the P-timer.
  45. */
  46. #define WD_TIMEOUT (POLL_TIMEOUT*2)
  47. #define MEDIABUSY_TIMEOUT (500*HZ/1000) /* 500 msec */
  48. #define SMALLBUSY_TIMEOUT (100*HZ/1000) /* 100 msec - IrLAP 6.13.4 */
  49. /*
  50. * Slot timer must never exceed 85 ms, and must always be at least 25 ms,
  51. * suggested to 75-85 msec by IrDA lite. This doesn't work with a lot of
  52. * devices, and other stackes uses a lot more, so it's best we do it as well
  53. * (Note : this is the default value and sysctl overides it - Jean II)
  54. */
  55. #define SLOT_TIMEOUT (90*HZ/1000)
  56. /*
  57. * The latest discovery frame (XID) is longer due to the extra discovery
  58. * information (hints, device name...). This is its extra length.
  59. * We use that when setting the query timeout. Jean II
  60. */
  61. #define XIDEXTRA_TIMEOUT (34*HZ/1000) /* 34 msec */
  62. #define WATCHDOG_TIMEOUT (20*HZ) /* 20 sec */
  63. typedef void (*TIMER_CALLBACK)(void *);
  64. static inline void irda_start_timer(struct timer_list *ptimer, int timeout,
  65. void* data, TIMER_CALLBACK callback)
  66. {
  67. ptimer->function = (void (*)(unsigned long)) callback;
  68. ptimer->data = (unsigned long) data;
  69. /* Set new value for timer (update or add timer).
  70. * We use mod_timer() because it's more efficient and also
  71. * safer with respect to race conditions - Jean II */
  72. mod_timer(ptimer, jiffies + timeout);
  73. }
  74. void irlap_start_slot_timer(struct irlap_cb *self, int timeout);
  75. void irlap_start_query_timer(struct irlap_cb *self, int S, int s);
  76. void irlap_start_final_timer(struct irlap_cb *self, int timeout);
  77. void irlap_start_wd_timer(struct irlap_cb *self, int timeout);
  78. void irlap_start_backoff_timer(struct irlap_cb *self, int timeout);
  79. void irlap_start_mbusy_timer(struct irlap_cb *self, int timeout);
  80. void irlap_stop_mbusy_timer(struct irlap_cb *);
  81. void irlmp_start_watchdog_timer(struct lsap_cb *, int timeout);
  82. void irlmp_start_discovery_timer(struct irlmp_cb *, int timeout);
  83. void irlmp_start_idle_timer(struct lap_cb *, int timeout);
  84. void irlmp_stop_idle_timer(struct lap_cb *self);
  85. #endif