istallion.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  * istallion.h  -- stallion intelligent multiport serial driver.
  4.  *
  5.  * Copyright (C) 1996-1998  Stallion Technologies (support@stallion.oz.au).
  6.  * Copyright (C) 1994-1996  Greg Ungerer.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  */
  22. /*****************************************************************************/
  23. #ifndef _ISTALLION_H
  24. #define _ISTALLION_H
  25. /*****************************************************************************/
  26. /*
  27.  * Define important driver constants here.
  28.  */
  29. #define STL_MAXBRDS 4
  30. #define STL_MAXPANELS 4
  31. #define STL_MAXPORTS 64
  32. #define STL_MAXCHANS (STL_MAXPORTS + 1)
  33. #define STL_MAXDEVS (STL_MAXBRDS * STL_MAXPORTS)
  34. /*
  35.  * Define a set of structures to hold all the board/panel/port info
  36.  * for our ports. These will be dynamically allocated as required at
  37.  * driver initialization time.
  38.  */
  39. /*
  40.  * Port and board structures to hold status info about each object.
  41.  * The board structure contains pointers to structures for each port
  42.  * connected to it. Panels are not distinguished here, since
  43.  * communication with the slave board will always be on a per port
  44.  * basis.
  45.  */
  46. typedef struct {
  47. unsigned long magic;
  48. int portnr;
  49. int panelnr;
  50. int brdnr;
  51. unsigned long state;
  52. int devnr;
  53. int flags;
  54. int baud_base;
  55. int custom_divisor;
  56. int close_delay;
  57. int closing_wait;
  58. int refcount;
  59. int openwaitcnt;
  60. int rc;
  61. int argsize;
  62. void *argp;
  63. long session;
  64. long pgrp;
  65. unsigned int rxmarkmsk;
  66. struct tty_struct *tty;
  67. #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,3,0))
  68. struct wait_queue *open_wait;
  69. struct wait_queue *close_wait;
  70. struct wait_queue *raw_wait;
  71. #else
  72. wait_queue_head_t open_wait;
  73. wait_queue_head_t close_wait;
  74. wait_queue_head_t raw_wait;
  75. #endif
  76. struct tq_struct tqhangup;
  77. struct termios normaltermios;
  78. struct termios callouttermios;
  79. asysigs_t asig;
  80. unsigned long addr;
  81. unsigned long rxoffset;
  82. unsigned long txoffset;
  83. unsigned long sigs;
  84. unsigned long pflag;
  85. unsigned int rxsize;
  86. unsigned int txsize;
  87. unsigned char reqbit;
  88. unsigned char portidx;
  89. unsigned char portbit;
  90. } stliport_t;
  91. /*
  92.  * Use a structure of function pointers to do board level operations.
  93.  * These include, enable/disable, paging shared memory, interrupting, etc.
  94.  */
  95. typedef struct stlibrd {
  96. unsigned long magic;
  97. int brdnr;
  98. int brdtype;
  99. int state;
  100. int nrpanels;
  101. int nrports;
  102. int nrdevs;
  103. unsigned int iobase;
  104. int iosize;
  105. unsigned long memaddr;
  106. void *membase;
  107. int memsize;
  108. int pagesize;
  109. int hostoffset;
  110. int slaveoffset;
  111. int bitsize;
  112. int enabval;
  113. int panels[STL_MAXPANELS];
  114. int panelids[STL_MAXPANELS];
  115. void (*init)(struct stlibrd *brdp);
  116. void (*enable)(struct stlibrd *brdp);
  117. void (*reenable)(struct stlibrd *brdp);
  118. void (*disable)(struct stlibrd *brdp);
  119. char *(*getmemptr)(struct stlibrd *brdp, unsigned long offset, int line);
  120. void (*intr)(struct stlibrd *brdp);
  121. void (*reset)(struct stlibrd *brdp);
  122. stliport_t *ports[STL_MAXPORTS];
  123. } stlibrd_t;
  124. /*
  125.  * Define MAGIC numbers used for above structures.
  126.  */
  127. #define STLI_PORTMAGIC 0xe671c7a1
  128. #define STLI_BOARDMAGIC 0x4bc6c825
  129. /*****************************************************************************/
  130. #endif