scc.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: scc.h,v 1.29 1997/04/02 14:56:45 jreuter Exp jreuter $ */
  2. #ifndef _SCC_H
  3. #define _SCC_H
  4. #include <linux/config.h>
  5. /* selection of hardware types */
  6. #define PA0HZP 0x00 /* hardware type for PA0HZP SCC card and compatible */
  7. #define EAGLE 0x01    /* hardware type for EAGLE card */
  8. #define PC100 0x02 /* hardware type for PC100 card */
  9. #define PRIMUS 0x04 /* hardware type for PRIMUS-PC (DG9BL) card */
  10. #define DRSI 0x08 /* hardware type for DRSI PC*Packet card */
  11. #define BAYCOM 0x10 /* hardware type for BayCom (U)SCC */
  12. /* DEV ioctl() commands */
  13. enum SCC_ioctl_cmds {
  14. SIOCSCCRESERVED = SIOCDEVPRIVATE,
  15. SIOCSCCCFG,
  16. SIOCSCCINI,
  17. SIOCSCCCHANINI,
  18. SIOCSCCSMEM,
  19. SIOCSCCGKISS,
  20. SIOCSCCSKISS,
  21. SIOCSCCGSTAT,
  22. SIOCSCCCAL
  23. };
  24. /* Device parameter control (from WAMPES) */
  25. enum L1_params {
  26. PARAM_DATA,
  27. PARAM_TXDELAY,
  28. PARAM_PERSIST,
  29. PARAM_SLOTTIME,
  30. PARAM_TXTAIL,
  31. PARAM_FULLDUP,
  32. PARAM_SOFTDCD, /* was: PARAM_HW */
  33. PARAM_MUTE, /* ??? */
  34. PARAM_DTR,
  35. PARAM_RTS,
  36. PARAM_SPEED,
  37. PARAM_ENDDELAY, /* ??? */
  38. PARAM_GROUP,
  39. PARAM_IDLE,
  40. PARAM_MIN,
  41. PARAM_MAXKEY,
  42. PARAM_WAIT,
  43. PARAM_MAXDEFER,
  44. PARAM_TX,
  45. PARAM_HWEVENT = 31,
  46. PARAM_RETURN = 255 /* reset kiss mode */
  47. };
  48. /* fulldup parameter */
  49. enum FULLDUP_modes {
  50. KISS_DUPLEX_HALF, /* normal CSMA operation */
  51. KISS_DUPLEX_FULL, /* fullduplex, key down trx after transmission */
  52. KISS_DUPLEX_LINK, /* fullduplex, key down trx after 'idletime' sec */
  53. KISS_DUPLEX_OPTIMA /* fullduplex, let the protocol layer control the hw */
  54. };
  55. /* misc. parameters */
  56. #define TIMER_OFF 65535U /* to switch off timers */
  57. #define NO_SUCH_PARAM 65534U /* param not implemented */
  58. /* HWEVENT parameter */
  59. enum HWEVENT_opts {
  60. HWEV_DCD_ON,
  61. HWEV_DCD_OFF,
  62. HWEV_ALL_SENT
  63. };
  64. /* channel grouping */
  65. #define RXGROUP 0100 /* if set, only tx when all channels clear */
  66. #define TXGROUP 0200 /* if set, don't transmit simultaneously */
  67. /* Tx/Rx clock sources */
  68. enum CLOCK_sources {
  69. CLK_DPLL, /* normal halfduplex operation */
  70. CLK_EXTERNAL, /* external clocking (G3RUH/DF9IC modems) */
  71. CLK_DIVIDER, /* Rx = DPLL, Tx = divider (fullduplex with */
  72. /* modems without clock regeneration */
  73. CLK_BRG /* experimental fullduplex mode with DPLL/BRG for */
  74. /* MODEMs without clock recovery */
  75. };
  76. /* Tx state */
  77. enum TX_state {
  78. TXS_IDLE, /* Transmitter off, no data pending */
  79. TXS_BUSY, /* waiting for permission to send / tailtime */
  80. TXS_ACTIVE, /* Transmitter on, sending data */
  81. TXS_NEWFRAME, /* reset CRC and send (next) frame */
  82. TXS_IDLE2, /* Transmitter on, no data pending */
  83. TXS_WAIT, /* Waiting for Mintime to expire */
  84. TXS_TIMEOUT /* We had a transmission timeout */
  85. };
  86. typedef unsigned long io_port; /* type definition for an 'io port address' */
  87. /* SCC statistical information */
  88. struct scc_stat {
  89.         long rxints;            /* Receiver interrupts */
  90.         long txints;            /* Transmitter interrupts */
  91.         long exints;            /* External/status interrupts */
  92.         long spints;            /* Special receiver interrupts */
  93.         long txframes;          /* Packets sent */
  94.         long rxframes;          /* Number of Frames Actually Received */
  95.         long rxerrs;            /* CRC Errors */
  96.         long txerrs; /* KISS errors */
  97.         
  98. unsigned int nospace; /* "Out of buffers" */
  99. unsigned int rx_over; /* Receiver Overruns */
  100. unsigned int tx_under; /* Transmitter Underruns */
  101. unsigned int tx_state; /* Transmitter state */
  102. int tx_queued; /* tx frames enqueued */
  103. unsigned int maxqueue; /* allocated tx_buffers */
  104. unsigned int bufsize; /* used buffersize */
  105. };
  106. struct scc_modem {
  107. long speed; /* Line speed, bps */
  108. char clocksrc; /* 0 = DPLL, 1 = external, 2 = divider */
  109. char nrz; /* NRZ instead of NRZI */
  110. };
  111. struct scc_kiss_cmd {
  112. int    command; /* one of the KISS-Commands defined above */
  113. unsigned param; /* KISS-Param */
  114. };
  115. struct scc_hw_config {
  116. io_port data_a; /* data port channel A */
  117. io_port ctrl_a; /* control port channel A */
  118. io_port data_b; /* data port channel B */
  119. io_port ctrl_b; /* control port channel B */
  120. io_port vector_latch; /* INTACK-Latch (#) */
  121. io_port special; /* special function port */
  122. int irq; /* irq */
  123. long clock; /* clock */
  124. char option; /* command for function port */
  125. char brand; /* hardware type */
  126. char escc; /* use ext. features of a 8580/85180/85280 */
  127. };
  128. /* (#) only one INTACK latch allowed. */
  129. struct scc_mem_config {
  130. unsigned int dummy;
  131. unsigned int bufsize;
  132. };
  133. struct scc_calibrate {
  134. unsigned int time;
  135. unsigned char pattern;
  136. };
  137. #ifdef __KERNEL__
  138. enum {TX_OFF, TX_ON}; /* command for scc_key_trx() */
  139. /* Vector masks in RR2B */
  140. #define VECTOR_MASK 0x06
  141. #define TXINT 0x00
  142. #define EXINT 0x02
  143. #define RXINT 0x04
  144. #define SPINT 0x06
  145. #ifdef CONFIG_SCC_DELAY
  146. #define Inb(port) inb_p(port)
  147. #define Outb(port, val) outb_p(val, port)
  148. #else
  149. #define Inb(port) inb(port)
  150. #define Outb(port, val) outb(val, port)
  151. #endif
  152. /* SCC channel control structure for KISS */
  153. struct scc_kiss {
  154. unsigned char txdelay; /* Transmit Delay 10 ms/cnt */
  155. unsigned char persist; /* Persistence (0-255) as a % */
  156. unsigned char slottime; /* Delay to wait on persistence hit */
  157. unsigned char tailtime; /* Delay after last byte written */
  158. unsigned char fulldup; /* Full Duplex mode 0=CSMA 1=DUP 2=ALWAYS KEYED */
  159. unsigned char waittime; /* Waittime before any transmit attempt */
  160. unsigned int  maxkeyup; /* Maximum time to transmit (seconds) */
  161. unsigned int  mintime; /* Minimal offtime after MAXKEYUP timeout (seconds) */
  162. unsigned int  idletime; /* Maximum idle time in ALWAYS KEYED mode (seconds) */
  163. unsigned int  maxdefer; /* Timer for CSMA channel busy limit */
  164. unsigned char tx_inhibit; /* Transmit is not allowed when set */
  165. unsigned char group; /* Group ID for AX.25 TX interlocking */
  166. unsigned char mode; /* 'normal' or 'hwctrl' mode (unused) */
  167. unsigned char softdcd; /* Use DPLL instead of DCD pin for carrier detect */
  168. };
  169. /* SCC channel structure */
  170. struct scc_channel {
  171. int init; /* channel exists? */
  172. struct net_device *dev; /* link to device control structure */
  173. struct net_device_stats dev_stat;/* device statistics */
  174. char brand; /* manufacturer of the board */
  175. long clock; /* used clock */
  176. io_port ctrl; /* I/O address of CONTROL register */
  177. io_port data; /* I/O address of DATA register */
  178. io_port special; /* I/O address of special function port */
  179. int irq; /* Number of Interrupt */
  180. char option;
  181. char enhanced; /* Enhanced SCC support */
  182. unsigned char wreg[16];  /* Copy of last written value in WRx */
  183. unsigned char status; /* Copy of R0 at last external interrupt */
  184. unsigned char dcd; /* DCD status */
  185.         struct scc_kiss kiss; /* control structure for KISS params */
  186.         struct scc_stat stat; /* statistical information */
  187.         struct scc_modem modem;  /* modem information */
  188.         struct sk_buff_head tx_queue; /* next tx buffer */
  189.         struct sk_buff *rx_buff; /* pointer to frame currently received */
  190.         struct sk_buff *tx_buff; /* pointer to frame currently transmitted */
  191. /* Timer */
  192. struct timer_list tx_t; /* tx timer for this channel */
  193. struct timer_list tx_wdog; /* tx watchdogs */
  194. /* Channel lock */
  195. spinlock_t lock; /* Channel guard lock */
  196. };
  197. #endif /* defined(__KERNEL__) */
  198. #endif /* defined(_SCC_H) */