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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* drivers/char/ser_a2232.h */
  2. /* $Id: ser_a2232.h,v 0.4 2000/01/25 12:00:00 ehaase Exp $ */
  3. /* Linux serial driver for the Amiga A2232 board */
  4. /* This driver is MAINTAINED. Before applying any changes, please contact
  5.  * the author.
  6.  */
  7.    
  8. /* Copyright (c) 2000-2001 Enver Haase    <ehaase@inf.fu-berlin.de>
  9.  *                   alias The A2232 driver project <A2232@gmx.net>
  10.  * All rights reserved.
  11.  *
  12.  *   This program is free software; you can redistribute it and/or modify
  13.  *   it under the terms of the GNU General Public License as published by
  14.  *   the Free Software Foundation; either version 2 of the License, or
  15.  *   (at your option) any later version.
  16.  *
  17.  *   This program is distributed in the hope that it will be useful,
  18.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  19.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20.  *   GNU General Public License for more details.
  21.  *
  22.  *   You should have received a copy of the GNU General Public License
  23.  *   along with this program; if not, write to the Free Software
  24.  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  *  
  26.  */
  27. #ifndef _SER_A2232_H_
  28. #define _SER_A2232_H_
  29. /*
  30. How many boards are to be supported at maximum;
  31. "up to five A2232 Multiport Serial Cards may be installed in a
  32. single Amiga 2000" states the A2232 User's Guide. If you have
  33. more slots available, you might want to change the value below.
  34. */
  35. #define MAX_A2232_BOARDS 5
  36. #ifndef A2232_NORMAL_MAJOR
  37. /* This allows overriding on the compiler commandline, or in a "major.h" 
  38.    include or something like that */
  39. #define A2232_NORMAL_MAJOR  224 /* /dev/ttyY* */
  40. #define A2232_CALLOUT_MAJOR 225 /* /dev/cuy*  */
  41. #endif
  42. /* Some magic is always good - Who knows :) */
  43. #define A2232_MAGIC 0x000a2232
  44. /* for the tty_struct subtype field */
  45. #define A2232_TTY_SUBTYPE_NORMAL 1
  46. #define A2232_TTY_SUBTYPE_CALLOUT 2
  47. /* A2232 port structure to keep track of the
  48.    status of every single line used */
  49. struct a2232_port{
  50. struct gs_port gs;
  51. unsigned int which_a2232;
  52. unsigned int which_port_on_a2232;
  53. short disable_rx;
  54. short throttle_input;
  55. short cd_status;
  56. };
  57. #define NUMLINES 7 /* number of lines per board */
  58. #define A2232_IOBUFLEN 256 /* number of bytes per buffer */
  59. #define A2232_IOBUFLENMASK 0xff /* mask for maximum number of bytes */
  60. #define A2232_UNKNOWN 0 /* crystal not known */
  61. #define A2232_NORMAL 1 /* normal A2232 (1.8432 MHz oscillator) */
  62. #define A2232_TURBO 2 /* turbo A2232 (3.6864 MHz oscillator) */
  63. struct a2232common {
  64. char   Crystal; /* normal (1) or turbo (2) board? */
  65. u_char Pad_a;
  66. u_char TimerH; /* timer value after speed check */
  67. u_char TimerL;
  68. u_char CDHead; /* head pointer for CD message queue */
  69. u_char CDTail; /* tail pointer for CD message queue */
  70. u_char CDStatus;
  71. u_char Pad_b;
  72. };
  73. struct a2232status {
  74. u_char InHead; /* input queue head */
  75. u_char InTail; /* input queue tail */
  76. u_char OutDisable; /* disables output */
  77. u_char OutHead; /* output queue head */
  78. u_char OutTail; /* output queue tail */
  79. u_char OutCtrl; /* soft flow control character to send */
  80. u_char OutFlush; /* flushes output buffer */
  81. u_char Setup; /* causes reconfiguration */
  82. u_char Param; /* parameter byte - see A2232PARAM */
  83. u_char Command; /* command byte - see A2232CMD */
  84. u_char SoftFlow; /* enables xon/xoff flow control */
  85. /* private 65EC02 fields: */
  86. u_char XonOff; /* stores XON/XOFF enable/disable */
  87. };
  88. #define A2232_MEMPAD1
  89. (0x0200 - NUMLINES * sizeof(struct a2232status) -
  90. sizeof(struct a2232common))
  91. #define A2232_MEMPAD2 (0x2000 - NUMLINES * A2232_IOBUFLEN - A2232_IOBUFLEN)
  92. struct a2232memory {
  93. struct a2232status Status[NUMLINES]; /* 0x0000-0x006f status areas */
  94. struct a2232common Common; /* 0x0070-0x0077 common flags */
  95. u_char Dummy1[A2232_MEMPAD1]; /* 0x00XX-0x01ff */
  96. u_char OutBuf[NUMLINES][A2232_IOBUFLEN];/* 0x0200-0x08ff output bufs */
  97. u_char InBuf[NUMLINES][A2232_IOBUFLEN]; /* 0x0900-0x0fff input bufs */
  98. u_char InCtl[NUMLINES][A2232_IOBUFLEN]; /* 0x1000-0x16ff control data */
  99. u_char CDBuf[A2232_IOBUFLEN]; /* 0x1700-0x17ff CD event buffer */
  100. u_char Dummy2[A2232_MEMPAD2]; /* 0x1800-0x2fff */
  101. u_char Code[0x1000]; /* 0x3000-0x3fff code area */
  102. u_short InterruptAck; /* 0x4000        intr ack */
  103. u_char Dummy3[0x3ffe]; /* 0x4002-0x7fff */
  104. u_short Enable6502Reset; /* 0x8000 Stop board, */
  105. /*  6502 RESET line held low */
  106. u_char Dummy4[0x3ffe]; /* 0x8002-0xbfff */
  107. u_short ResetBoard; /* 0xc000 reset board & run, */
  108. /*  6502 RESET line held high */
  109. };
  110. #undef A2232_MEMPAD1
  111. #undef A2232_MEMPAD2
  112. #define A2232INCTL_CHAR 0 /* corresponding byte in InBuf is a character */
  113. #define A2232INCTL_EVENT 1 /* corresponding byte in InBuf is an event */
  114. #define A2232EVENT_Break 1 /* break set */
  115. #define A2232EVENT_CarrierOn 2 /* carrier raised */
  116. #define A2232EVENT_CarrierOff 3 /* carrier dropped */
  117. #define A2232EVENT_Sync 4 /* don't know, defined in 2232.ax */
  118. #define A2232CMD_Enable 0x1 /* enable/DTR bit */
  119. #define A2232CMD_Close 0x2 /* close the device */
  120. #define A2232CMD_Open 0xb /* open the device */
  121. #define A2232CMD_CMask 0xf /* command mask */
  122. #define A2232CMD_RTSOff 0x0   /* turn off RTS */
  123. #define A2232CMD_RTSOn 0x8 /* turn on RTS */
  124. #define A2232CMD_Break 0xd /* transmit a break */
  125. #define A2232CMD_RTSMask 0xc /* mask for RTS stuff */
  126. #define A2232CMD_NoParity 0x00 /* don't use parity */
  127. #define A2232CMD_OddParity 0x20 /* odd parity */
  128. #define A2232CMD_EvenParity 0x60 /* even parity */
  129. #define A2232CMD_ParityMask 0xe0 /* parity mask */
  130. #define A2232PARAM_B115200 0x0 /* baud rates */
  131. #define A2232PARAM_B50 0x1
  132. #define A2232PARAM_B75 0x2
  133. #define A2232PARAM_B110 0x3
  134. #define A2232PARAM_B134 0x4
  135. #define A2232PARAM_B150 0x5
  136. #define A2232PARAM_B300 0x6
  137. #define A2232PARAM_B600 0x7
  138. #define A2232PARAM_B1200 0x8
  139. #define A2232PARAM_B1800 0x9
  140. #define A2232PARAM_B2400 0xa
  141. #define A2232PARAM_B3600 0xb
  142. #define A2232PARAM_B4800 0xc
  143. #define A2232PARAM_B7200 0xd
  144. #define A2232PARAM_B9600 0xe
  145. #define A2232PARAM_B19200 0xf
  146. #define A2232PARAM_BaudMask 0xf /* baud rate mask */
  147. #define A2232PARAM_RcvBaud 0x10 /* enable receive baud rate */
  148. #define A2232PARAM_8Bit 0x00 /* numbers of bits */
  149. #define A2232PARAM_7Bit 0x20
  150. #define A2232PARAM_6Bit 0x40
  151. #define A2232PARAM_5Bit 0x60
  152. #define A2232PARAM_BitMask 0x60 /* numbers of bits mask */
  153. /* Standard speeds tables, -1 means unavailable, -2 means 0 baud: switch off line */
  154. #define A2232_BAUD_TABLE_NOAVAIL -1
  155. #define A2232_BAUD_TABLE_NUM_RATES (18)
  156. static int a2232_baud_table[A2232_BAUD_TABLE_NUM_RATES*3] = {
  157. //Baud //Normal //Turbo
  158. 50, A2232PARAM_B50, A2232_BAUD_TABLE_NOAVAIL,
  159. 75, A2232PARAM_B75, A2232_BAUD_TABLE_NOAVAIL,
  160. 110, A2232PARAM_B110, A2232_BAUD_TABLE_NOAVAIL,
  161. 134, A2232PARAM_B134, A2232_BAUD_TABLE_NOAVAIL,
  162. 150, A2232PARAM_B150, A2232PARAM_B75,
  163. 200, A2232_BAUD_TABLE_NOAVAIL, A2232_BAUD_TABLE_NOAVAIL,
  164. 300, A2232PARAM_B300, A2232PARAM_B150,
  165. 600, A2232PARAM_B600, A2232PARAM_B300,
  166. 1200, A2232PARAM_B1200, A2232PARAM_B600,
  167. 1800, A2232PARAM_B1800, A2232_BAUD_TABLE_NOAVAIL,
  168. 2400, A2232PARAM_B2400, A2232PARAM_B1200,
  169. 4800, A2232PARAM_B4800, A2232PARAM_B2400,
  170. 9600, A2232PARAM_B9600, A2232PARAM_B4800,
  171. 19200, A2232PARAM_B19200, A2232PARAM_B9600,
  172. 38400, A2232_BAUD_TABLE_NOAVAIL, A2232PARAM_B19200,
  173. 57600, A2232_BAUD_TABLE_NOAVAIL, A2232_BAUD_TABLE_NOAVAIL,
  174. #ifdef A2232_SPEEDHACK
  175. 115200, A2232PARAM_B115200, A2232_BAUD_TABLE_NOAVAIL,
  176. 230400, A2232_BAUD_TABLE_NOAVAIL, A2232PARAM_B115200
  177. #else
  178. 115200, A2232_BAUD_TABLE_NOAVAIL, A2232_BAUD_TABLE_NOAVAIL,
  179. 230400, A2232_BAUD_TABLE_NOAVAIL, A2232_BAUD_TABLE_NOAVAIL
  180. #endif
  181. };
  182. #endif