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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*****************************************************************************/
  2. /*
  3.  * stallion.h  -- stallion multiport serial driver.
  4.  *
  5.  * Copyright (C) 1996-1998  Stallion Technologies
  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. #include <linux/version.h>
  23. /*****************************************************************************/
  24. #ifndef _STALLION_H
  25. #define _STALLION_H
  26. /*****************************************************************************/
  27. /*
  28.  * Define important driver constants here.
  29.  */
  30. #define STL_MAXBRDS 4
  31. #define STL_MAXPANELS 4
  32. #define STL_MAXBANKS 8
  33. #define STL_PORTSPERPANEL 16
  34. #define STL_MAXPORTS 64
  35. #define STL_MAXDEVS (STL_MAXBRDS * STL_MAXPORTS)
  36. /*
  37.  * Define a set of structures to hold all the board/panel/port info
  38.  * for our ports. These will be dynamically allocated as required.
  39.  */
  40. /*
  41.  * Define a ring queue structure for each port. This will hold the
  42.  * TX data waiting to be output. Characters are fed into this buffer
  43.  * from the line discipline (or even direct from user space!) and
  44.  * then fed into the UARTs during interrupts. Will use a classic ring
  45.  * queue here for this. The good thing about this type of ring queue
  46.  * is that the head and tail pointers can be updated without interrupt
  47.  * protection - since "write" code only needs to change the head, and
  48.  * interrupt code only needs to change the tail.
  49.  */
  50. typedef struct {
  51. char *buf;
  52. char *head;
  53. char *tail;
  54. } stlrq_t;
  55. /*
  56.  * Port, panel and board structures to hold status info about each.
  57.  * The board structure contains pointers to structures for each panel
  58.  * connected to it, and in turn each panel structure contains pointers
  59.  * for each port structure for each port on that panel. Note that
  60.  * the port structure also contains the board and panel number that it
  61.  * is associated with, this makes it (fairly) easy to get back to the
  62.  * board/panel info for a port.
  63.  */
  64. typedef struct stlport {
  65. unsigned long magic;
  66. int portnr;
  67. int panelnr;
  68. int brdnr;
  69. int ioaddr;
  70. int uartaddr;
  71. int pagenr;
  72. long istate;
  73. int flags;
  74. int baud_base;
  75. int custom_divisor;
  76. int close_delay;
  77. int closing_wait;
  78. int refcount;
  79. int openwaitcnt;
  80. int brklen;
  81. unsigned int sigs;
  82. unsigned int rxignoremsk;
  83. unsigned int rxmarkmsk;
  84. unsigned int imr;
  85. unsigned int crenable;
  86. unsigned long clk;
  87. unsigned long hwid;
  88. void *uartp;
  89. struct tty_struct *tty;
  90. wait_queue_head_t open_wait;
  91. wait_queue_head_t close_wait;
  92. struct work_struct tqueue;
  93. comstats_t stats;
  94. stlrq_t tx;
  95. } stlport_t;
  96. typedef struct stlpanel {
  97. unsigned long magic;
  98. int panelnr;
  99. int brdnr;
  100. int pagenr;
  101. int nrports;
  102. int iobase;
  103. void *uartp;
  104. void (*isr)(struct stlpanel *panelp, unsigned int iobase);
  105. unsigned int hwid;
  106. unsigned int ackmask;
  107. stlport_t *ports[STL_PORTSPERPANEL];
  108. } stlpanel_t;
  109. typedef struct stlbrd {
  110. unsigned long magic;
  111. int brdnr;
  112. int brdtype;
  113. int state;
  114. int nrpanels;
  115. int nrports;
  116. int nrbnks;
  117. int irq;
  118. int irqtype;
  119. int (*isr)(struct stlbrd *brdp);
  120. unsigned int ioaddr1;
  121. unsigned int ioaddr2;
  122. unsigned int iosize1;
  123. unsigned int iosize2;
  124. unsigned int iostatus;
  125. unsigned int ioctrl;
  126. unsigned int ioctrlval;
  127. unsigned int hwid;
  128. unsigned long clk;
  129. unsigned int bnkpageaddr[STL_MAXBANKS];
  130. unsigned int bnkstataddr[STL_MAXBANKS];
  131. stlpanel_t *bnk2panel[STL_MAXBANKS];
  132. stlpanel_t *panels[STL_MAXPANELS];
  133. } stlbrd_t;
  134. /*
  135.  * Define MAGIC numbers used for above structures.
  136.  */
  137. #define STL_PORTMAGIC 0x5a7182c9
  138. #define STL_PANELMAGIC 0x7ef621a1
  139. #define STL_BOARDMAGIC 0xa2267f52
  140. /*****************************************************************************/
  141. #endif