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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. usa28msg.h
  3. Copyright (c) 1998-2000 InnoSys Incorporated.  All Rights Reserved
  4. This file is available under a BSD-style copyright
  5. Keyspan USB Async Firmware to run on Anchor EZ-USB
  6. Redistribution and use in source and binary forms, with or without
  7. modification, are permitted provided that the following conditions are
  8. met:
  9. 1. Redistributions of source code must retain this licence text
  10.     without modification, this list of conditions, and the following
  11.     disclaimer.  The following copyright notice must appear immediately at
  12.     the beginning of all source files:
  13.          Copyright (c) 1998-2000 InnoSys Incorporated.  All Rights Reserved
  14.          This file is available under a BSD-style copyright
  15. 2. Redistributions in binary form must reproduce the above copyright
  16.     notice, this list of conditions and the following disclaimer in the
  17.     documentation and/or other materials provided with the distribution.
  18. 3. The name of InnoSys Incorprated may not be used to endorse or promote
  19.     products derived from this software without specific prior written
  20.     permission.
  21. THIS SOFTWARE IS PROVIDED BY INNOSYS CORP. ``AS IS'' AND ANY EXPRESS OR
  22. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  23. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  24. NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  25. INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  26. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  27. SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  28. CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. SUCH DAMAGE.    
  32. Note: these message formats are common to USA18, USA19, and USA28;
  33. (for USA28X, see usa26msg.h)
  34. Buffer formats for RX/TX data messages are not defined by
  35. a structure, but are described here:
  36. USB OUT (host -> USA28, transmit) messages contain a 
  37. REQUEST_ACK indicator (set to 0xff to request an ACK at the 
  38. completion of transmit; 0x00 otherwise), followed by data.
  39. If the port is configured for parity, the data will be an 
  40. alternating string of parity and data bytes, so the message
  41. format will be:
  42. RQSTACK PAR DAT PAR DAT ...
  43. so the maximum length is 63 bytes (1 + 62, or 31 data bytes);
  44. always an odd number for the total message length.
  45. If there is no parity, the format is simply:
  46. RQSTACK DAT DAT DAT ...
  47. with a total data length of 63.
  48. USB IN (USA28 -> host, receive) messages contain data and parity
  49. if parity is configred, thusly:
  50. DAT PAR DAT PAR DAT PAR ...
  51. for a total of 32 data bytes;
  52. If parity is not configured, the format is:
  53. DAT DAT DAT ...
  54. for a total of 64 data bytes.
  55. In the TX messages (USB OUT), the 0x01 bit of the PARity byte is 
  56. the parity bit.  In the RX messages (USB IN), the PARity byte is 
  57. the content of the 8051's status register; the parity bit 
  58. (RX_PARITY_BIT) is the 0x04 bit.
  59. revision history:
  60. 1999may06 add resetDataToggle to control message
  61. 2000mar21 add rs232invalid to status response message
  62. 2000apr04 add 230.4Kb definition to setBaudRate
  63. 2000apr13 add/remove loopbackMode switch
  64. 2000apr13 change definition of setBaudRate to cover 115.2Kb, too
  65. 2000jun01 add extended BSD-style copyright text
  66. */
  67. #ifndef __USA28MSG__
  68. #define __USA28MSG__
  69. typedef struct keyspan_usa28_portControlMessage
  70. {
  71. /*
  72. there are four types of "commands" sent in the control message:
  73. 1. configuration changes which must be requested by setting
  74. the corresponding "set" flag (and should only be requested
  75. when necessary, to reduce overhead on the USA28):
  76. */
  77. u8 setBaudRate, // 0=don't set, 1=baudLo/Hi, 2=115.2K, 3=230.4K
  78. baudLo, // host does baud divisor calculation
  79. baudHi; // baudHi is only used for first port (gives lower rates)
  80. /*
  81. 2. configuration changes which are done every time (because it's
  82. hardly more trouble to do them than to check whether to do them):
  83. */
  84. u8 parity, // 1=use parity, 0=don't
  85. ctsFlowControl,         // all except 19Q: 1=use CTS flow control, 0=don't
  86. // 19Q: 0x08:CTSflowControl 0x10:DSRflowControl
  87. xonFlowControl, // 1=use XON/XOFF flow control, 0=don't
  88. rts, // 1=on, 0=off
  89. dtr; // 1=on, 0=off
  90. /*
  91. 3. configuration data which is simply used as is (no overhead,
  92. but must be correct in every host message).
  93. */
  94. u8 forwardingLength,  // forward when this number of chars available
  95. forwardMs, // forward this many ms after last rx data
  96. breakThreshold, // specified in ms, 1-255 (see note below)
  97. xonChar, // specified in current character format
  98. xoffChar; // specified in current character format
  99. /*
  100. 4. commands which are flags only; these are processed in order
  101. (so that, e.g., if both _txOn and _txOff flags are set, the
  102. port ends in a TX_OFF state); any non-zero value is respected
  103. */
  104. u8 _txOn, // enable transmitting (and continue if there's data)
  105. _txOff, // stop transmitting
  106. txFlush, // toss outbound data
  107. txForceXoff, // pretend we've received XOFF
  108. txBreak, // turn on break (leave on until txOn clears it)
  109. rxOn, // turn on receiver
  110. rxOff, // turn off receiver
  111. rxFlush, // toss inbound data
  112. rxForward, // forward all inbound data, NOW
  113. returnStatus, // return current status n times (1 or 2)
  114. resetDataToggle;// reset data toggle state to DATA0
  115. } keyspan_usa28_portControlMessage;
  116. typedef struct keyspan_usa28_portStatusMessage
  117. {
  118. u8 port, // 0=first, 1=second, 2=global (see below)
  119. cts,
  120. dsr, // (not used in all products)
  121. dcd,
  122. ri, // (not used in all products)
  123. _txOff, // port has been disabled (by host)
  124. _txXoff, // port is in XOFF state (either host or RX XOFF)
  125. dataLost, // count of lost chars; wraps; not guaranteed exact
  126. rxEnabled, // as configured by rxOn/rxOff 1=on, 0=off
  127. rxBreak, // 1=we're in break state
  128. rs232invalid, // 1=no valid signals on rs-232 inputs
  129. controlResponse;// 1=a control messages has been processed
  130. } keyspan_usa28_portStatusMessage;
  131. // bit defines in txState
  132. #define TX_OFF 0x01 // requested by host txOff command
  133. #define TX_XOFF 0x02 // either real, or simulated by host
  134. typedef struct keyspan_usa28_globalControlMessage
  135. {
  136. u8 sendGlobalStatus, // 2=request for two status responses
  137. resetStatusToggle, // 1=reset global status toggle
  138. resetStatusCount; // a cycling value
  139. } keyspan_usa28_globalControlMessage;
  140. typedef struct keyspan_usa28_globalStatusMessage
  141. {
  142. u8 port, // 3
  143. sendGlobalStatus, // from request, decremented
  144. resetStatusCount; // as in request
  145. } keyspan_usa28_globalStatusMessage;
  146. typedef struct keyspan_usa28_globalDebugMessage
  147. {
  148. u8 port, // 2
  149. n, // typically a count/status byte
  150. b; // typically a data byte
  151. } keyspan_usa28_globalDebugMessage;
  152. // ie: the maximum length of an EZUSB endpoint buffer
  153. #define MAX_DATA_LEN 64
  154. // the parity bytes have only one significant bit
  155. #define RX_PARITY_BIT 0x04
  156. #define TX_PARITY_BIT 0x01
  157. // update status approx. 60 times a second (16.6666 ms)
  158. #define STATUS_UPDATE_INTERVAL 16
  159. #endif