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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: timer.c,v 1.1.4.1 2001/11/20 14:19:37 kai Exp $
  2.  *
  3.  * Copyright (C) 1996  SpellCaster Telecommunications Inc.
  4.  *
  5.  * This software may be used and distributed according to the terms
  6.  * of the GNU General Public License, incorporated herein by reference.
  7.  *
  8.  * For more information, please contact gpl-info@spellcast.com or write:
  9.  *
  10.  *     SpellCaster Telecommunications Inc.
  11.  *     5621 Finch Avenue East, Unit #3
  12.  *     Scarborough, Ontario  Canada
  13.  *     M1B 2T9
  14.  *     +1 (416) 297-8565
  15.  *     +1 (416) 297-6433 Facsimile
  16.  */
  17. #define __NO_VERSION__
  18. #include "includes.h"
  19. #include "hardware.h"
  20. #include "message.h"
  21. #include "card.h"
  22. extern board *adapter[];
  23. extern void flushreadfifo(int);
  24. extern int  startproc(int);
  25. extern int  indicate_status(int, int, unsigned long, char *);
  26. extern int  sendmessage(int, unsigned int, unsigned int, unsigned int,
  27.         unsigned int, unsigned int, unsigned int, unsigned int *);
  28. /*
  29.  * Write the proper values into the I/O ports following a reset
  30.  */
  31. void setup_ports(int card)
  32. {
  33. outb((adapter[card]->rambase >> 12), adapter[card]->ioport[EXP_BASE]);
  34. /* And the IRQ */
  35. outb((adapter[card]->interrupt | 0x80), 
  36. adapter[card]->ioport[IRQ_SELECT]);
  37. }
  38. /*
  39.  * Timed function to check the status of a previous reset
  40.  * Must be very fast as this function runs in the context of
  41.  * an interrupt handler.
  42.  *
  43.  * Setup the ioports for the board that were cleared by the reset.
  44.  * Then, check to see if the signate has been set. Next, set the
  45.  * signature to a known value and issue a startproc if needed.
  46.  */
  47. void check_reset(unsigned long data)
  48. {
  49. unsigned long flags;
  50. unsigned long sig;
  51. int card = (unsigned int) data;
  52. pr_debug("%s: check_timer timer calledn", adapter[card]->devicename);
  53. /* Setup the io ports */
  54. setup_ports(card);
  55.    save_flags(flags);
  56. cli();
  57. outb(adapter[card]->ioport[adapter[card]->shmem_pgport],
  58. (adapter[card]->shmem_magic>>14) | 0x80);
  59. sig = (unsigned long) *((unsigned long *)(adapter[card]->rambase + SIG_OFFSET));
  60. /* check the signature */
  61. if(sig == SIGNATURE) {
  62. flushreadfifo(card);
  63. restore_flags(flags);
  64. /* See if we need to do a startproc */
  65. if (adapter[card]->StartOnReset)
  66. startproc(card);
  67. }
  68. else  {
  69. pr_debug("%s: No signature yet, waiting another %d jiffies.n", 
  70. adapter[card]->devicename, CHECKRESET_TIME);
  71. mod_timer(&adapter[card]->reset_timer, jiffies+CHECKRESET_TIME);
  72. }
  73. restore_flags(flags);
  74. }
  75. /*
  76.  * Timed function to check the status of a previous reset
  77.  * Must be very fast as this function runs in the context of
  78.  * an interrupt handler.
  79.  *
  80.  * Send check adapter->phystat to see if the channels are up
  81.  * If they are, tell ISDN4Linux that the board is up. If not,
  82.  * tell IADN4Linux that it is up. Always reset the timer to
  83.  * fire again (endless loop).
  84.  */
  85. void check_phystat(unsigned long data)
  86. {
  87. unsigned long flags;
  88. int card = (unsigned int) data;
  89. pr_debug("%s: Checking status...n", adapter[card]->devicename);
  90. /* 
  91.  * check the results of the last PhyStat and change only if
  92.  * has changed drastically
  93.  */
  94. if (adapter[card]->nphystat && !adapter[card]->phystat) {   /* All is well */
  95. pr_debug("PhyStat transition to RUNn");
  96. pr_info("%s: Switch contacted, transmitter enabledn", 
  97. adapter[card]->devicename);
  98. indicate_status(card, ISDN_STAT_RUN, 0, NULL);
  99. }
  100. else if (!adapter[card]->nphystat && adapter[card]->phystat) {   /* All is not well */
  101. pr_debug("PhyStat transition to STOPn");
  102. pr_info("%s: Switch connection lost, transmitter disabledn", 
  103. adapter[card]->devicename);
  104. indicate_status(card, ISDN_STAT_STOP, 0, NULL);
  105. }
  106. adapter[card]->phystat = adapter[card]->nphystat;
  107. /* Reinitialize the timer */
  108. save_flags(flags);
  109. cli();
  110. mod_timer(&adapter[card]->stat_timer, jiffies+CHECKSTAT_TIME);
  111. restore_flags(flags);
  112. /* Send a new cePhyStatus message */
  113. sendmessage(card, CEPID,ceReqTypePhy,ceReqClass2,
  114. ceReqPhyStatus,0,0,NULL);
  115. }
  116. /*
  117.  * When in trace mode, this callback is used to swap the working shared
  118.  * RAM page to the trace page(s) and process all received messages. It
  119.  * must be called often enough to get all of the messages out of RAM before
  120.  * it loops around.
  121.  * Trace messages are n terminated strings.
  122.  * We output the messages in 64 byte chunks through readstat. Each chunk
  123.  * is scanned for a n followed by a time stamp. If the timerstamp is older
  124.  * than the current time, scanning stops and the page and offset are recorded
  125.  * as the starting point the next time the trace timer is called. The final
  126.  * step is to restore the working page and reset the timer.
  127.  */
  128. void trace_timer(unsigned long data)
  129. {
  130. unsigned long flags;
  131. /*
  132.  * Disable interrupts and swap the first page
  133.  */
  134. save_flags(flags);
  135. cli();
  136. }