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

Linux/Unix编程

开发平台:

Unix_Linux

  1.       sx.txt  -- specialix SX/SI multiport serial driver readme.
  2.       Copyright (C) 1997  Roger Wolff (R.E.Wolff@BitWizard.nl)
  3.       Specialix pays for the development and support of this driver.
  4.       Please DO contact support@specialix.co.uk if you require
  5.       support.
  6.       This driver was developed in the BitWizard linux device
  7.       driver service. If you require a linux device driver for your
  8.       product, please contact devices@BitWizard.nl for a quote.
  9.       (History)
  10.       There used to be an SI driver by Simon Allan. This is a complete 
  11.       rewrite  from scratch. Just a few lines-of-code have been snatched.
  12.       (Sources)
  13.       Specialix document number 6210028: SX Host Card and Download Code
  14.       Software Functional Specification.
  15.       (Copying)
  16.       This program is free software; you can redistribute it and/or
  17.       modify it under the terms of the GNU General Public License as
  18.       published by the Free Software Foundation; either version 2 of
  19.       the License, or (at your option) any later version.
  20.       This program is distributed in the hope that it will be
  21.       useful, but WITHOUT ANY WARRANTY; without even the implied
  22.       warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  23.       PURPOSE.  See the GNU General Public License for more details.
  24.       You should have received a copy of the GNU General Public
  25.       License along with this program; if not, write to the Free
  26.       Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139,
  27.       USA.
  28.       
  29.       (Addendum)
  30.       I'd appreciate it that if you have fixes, that you send them
  31.       to me first. 
  32. Introduction
  33. ============
  34. This file contains some random information, that I like to have online
  35. instead of in a manual that can get lost. Ever misplace your Linux
  36. kernel sources?  And the manual of one of the boards in your computer?
  37. Theory of operation
  38. ===================
  39. An important thing to know is that the driver itself doesn't have the
  40. firmware for the card. This means that you need the separate package
  41. "sx_firmware". For now you can get the source at
  42. ftp://ftp.bitwizard.nl/specialix/sx_firmware_<version>.tgz
  43. The firmware load needs a "misc" device, so you'll need to enable the
  44. "Support for user misc device modules" in your kernel configuration.
  45. The misc device needs to be called "/dev/specialix_sxctl". It needs
  46. misc major 10, and minor number 167 (assigned by HPA). The section
  47. on creating device files below also creates this device. 
  48. After loading the sx.o module into your kernel, the driver will report
  49. the number of cards detected, but because it doesn't have any
  50. firmware, it will not be able to determine the number of ports. Only
  51. when you then run "sx_firmware" will the firmware be downloaded and
  52. the rest of the driver initialized. At that time the sx_firmware
  53. program will report the number of ports installed.
  54. In contrast with many other multi port serial cards, some of the data
  55. structures are only allocated when the card knows the number of ports
  56. that are connected. This means we won't waste memory for 120 port
  57. descriptor structures when you only have 8 ports. If you experience
  58. problems due to this, please report them: I haven't seen any.
  59. Interrupts
  60. ==========
  61. A multi port serial card, would generate a horrendous amount of
  62. interrupts if it would interrupt the CPU for every received
  63. character. Even more than 10 years ago, the trick not to use
  64. interrupts but to poll the serial cards was invented.
  65. The SX card allow us to do this two ways. First the card limits its
  66. own interrupt rate to a rate that won't overwhelm the CPU. Secondly,
  67. we could forget about the cards interrupt completely and use the
  68. internal timer for this purpose.
  69. Polling the card can take up to a few percent of your CPU. Using the
  70. interrupts would be better if you have most of the ports idle. Using
  71. timer-based polling is better if your card almost always has work to
  72. do. You save the separate interrupt in that case.
  73. In any case, it doesn't really matter all that much. 
  74. The most common problem with interrupts is that for ISA cards in a PCI
  75. system the BIOS has to be told to configure that interrupt as "legacy
  76. ISA". Otherwise the card can pull on the interrupt line all it wants
  77. but the CPU won't see this.
  78. If you can't get the interrupt to work, remember that polling mode is
  79. more efficient (provided you actually use the card intensively).
  80. Allowed Configurations
  81. ======================
  82. Some configurations are disallowed. Even though at a glance they might
  83. seem to work, they are known to lockup the bus between the host card
  84. and the device concentrators. You should respect the drivers decision
  85. not to support certain configurations. It's there for a reason.
  86. Warning: Seriously technical stuff ahead. Executive summary: Don't use
  87. SX cards except configured at a 64k boundary. Skip the next paragraph.
  88. The SX cards can theoretically be placed at a 32k boundary. So for
  89. instance you can put an SX card at 0xc8000-0xd7fff. This is not a
  90. "recommended configuration". ISA cards have to tell the bus controller
  91. how they like their timing. Due to timing issues they have to do this
  92. based on which 64k window the address falls into. This means that the
  93. 32k window below and above the SX card have to use exactly the same
  94. timing as the SX card. That reportedly works for other SX cards. But
  95. you're still left with two useless 32k windows that should not be used
  96. by anybody else.
  97. Configuring the driver
  98. ======================
  99. PCI cards are always detected. The driver auto-probes for ISA cards at
  100. some sensible addresses. Please report if the auto-probe causes trouble
  101. in your system, or when a card isn't detected.
  102. I'm afraid I haven't implemented "kernel command line parameters" yet.
  103. This means that if the default doesn't work for you, you shouldn't use
  104. the compiled-into-the-kernel version of the driver. Use a module
  105. instead.  If you convince me that you need this, I'll make it for
  106. you. Deal?
  107. I'm afraid that the module parameters are a bit clumsy. If you have a
  108. better idea, please tell me.
  109. You can specify several parameters:
  110. sx_poll: number of jiffies between timer-based polls.
  111. Set this to "0" to disable timer based polls. 
  112.                 Initialization of cards without a working interrupt
  113.                 will fail.
  114. Set this to "1" if you want a polling driver. 
  115. (on Intel: 100 polls per second). If you don't use
  116.                 fast baud rates, you might consider a value like "5". 
  117.                 (If you don't know how to do the math, use 1).
  118. sx_slowpoll: Number of jiffies between timer-based polls. 
  119.   Set this to "100" to poll once a second. 
  120. This should get the card out of a stall if the driver
  121.                 ever misses an interrupt. I've never seen this happen,
  122.                 and if it does, that's a bug. Tell me. 
  123. sx_maxints: Number of interrupts to request from the card. 
  124. The card normally limits interrupts to about 100 per
  125. second to offload the host CPU. You can increase this
  126. number to reduce latency on the card a little.
  127. Note that if you give a very high number you can overload
  128. your CPU as well as the CPU on the host card. This setting 
  129. is inaccurate and not recommended for SI cards (But it 
  130. works). 
  131. sx_irqmask: The mask of allowable IRQs to use. I suggest you set 
  132. this to 0 (disable IRQs all together) and use polling if 
  133. the assignment of IRQs becomes problematic. This is defined
  134. as the sum of (1 << irq) 's that you want to allow. So 
  135. sx_irqmask of 8 (1 << 3) specifies that only irq 3 may
  136. be used by the SX driver. If you want to specify to the 
  137. driver: "Either irq 11 or 12 is ok for you to use", then
  138. specify (1 << 11) | (1 << 12) = 0x1800 . 
  139. sx_debug: You can enable different sorts of debug traces with this. 
  140. At "-1" all debugging traces are active. You'll get several
  141. times more debugging output than you'll get characters 
  142. transmitted. 
  143. Baud rates
  144. ==========
  145. Theoretically new SXDCs should be capable of more than 460k
  146. baud. However the line drivers usually give up before that.  Also the
  147. CPU on the card may not be able to handle 8 channels going at full
  148. blast at that speed. Moreover, the buffers are not large enough to
  149. allow operation with 100 interrupts per second. You'll have to realize
  150. that the card has a 256 byte buffer, so you'll have to increase the
  151. number of interrupts per second if you have more than 256*100 bytes
  152. per second to transmit.  If you do any performance testing in this
  153. area, I'd be glad to hear from you...
  154. (Psst Linux users..... I think the Linux driver is more efficient than
  155. the driver for other OSes. If you can and want to benchmark them
  156. against each other, be my guest, and report your findings...... :-)
  157. Ports and devices
  158. =================
  159. Port 0 is the top connector on the module closest to the host
  160. card. Oh, the ports on the SXDCs and TAs are labelled from 1 to 8
  161. instead of from 0 to 7, as they are numbered by linux. I'm stubborn in
  162. this: I know for sure that I wouldn't be able to calculate which port
  163. is which anymore if I would change that....
  164. Devices:
  165. You should make the device files as follows:
  166. #!/bin/sh
  167. # (I recommend that you cut-and-paste this into a file and run that)
  168. cd /dev
  169. t=0
  170. mknod specialix_sxctl c 10 167
  171. while [ $t -lt 64 ]
  172.   do 
  173.   echo -n "$t "
  174.   mknod ttyX$t c 32 $t
  175.   mknod cux$t  c 33 $t
  176.   t=`expr $t + 1`
  177. done
  178. echo ""
  179. rm /etc/psdevtab
  180. ps > /dev/null
  181. This creates 64 devices. If you have more, increase the constant on
  182. the line with "while". The devices start at 0, as is customary on
  183. Linux. Specialix seems to like starting the numbering at 1. 
  184. If your system doesn't come with these devices pre-installed, bug your
  185. linux-vendor about this. They should have these devices
  186. "pre-installed" before the new millennium. The "ps" stuff at the end
  187. is to "tell" ps that the new devices exist.
  188. Officially the maximum number of cards per computer is 4. This driver
  189. however supports as many cards in one machine as you want. You'll run
  190. out of interrupts after a few, but you can switch to polled operation
  191. then. At about 256 ports (More than 8 cards), we run out of minor
  192. device numbers. Sorry. I suggest you buy a second computer.... (Or
  193. switch to RIO).
  194. ------------------------------------------------------------------------
  195.   Fixed bugs and restrictions:
  196. - Hangup processing.  
  197.   -- Done.
  198. - the write path in generic_serial (lockup / oops). 
  199.   -- Done (Ugly: not the way I want it. Copied from serial.c).
  200.         - write buffer isn't flushed at close.
  201.   -- Done. I still seem to loose a few chars at close. 
  202.      Sorry. I think that this is a firmware issue. (-> Specialix)
  203. - drain hardware before  changing termios
  204. - Change debug on the fly. 
  205. - ISA free irq -1. (no firmware loaded).
  206. - adding c8000 as a probe address. Added warning. 
  207. - Add a RAMtest for the RAM on the card.c
  208.         - Crash when opening a port "way" of the number of allowed ports. 
  209.           (for example opening port 60 when there are only 24 ports attached)
  210. - Sometimes the use-count strays a bit. After a few hours of
  211.           testing the use count is sometimes "3". If you are not like
  212.           me and can remember what you did to get it that way, I'd
  213.           appreciate an Email. Possibly fixed. Tell me if anyone still
  214.           sees this.
  215. - TAs don't work right if you don't connect all the modem control
  216.   signals. SXDCs do. T225 firmware problem -> Specialix. 
  217.   (Mostly fixed now, I think. Tell me if you encounter this!)
  218.   Bugs & restrictions:
  219. - Arbitrary baud rates. Requires firmware update. (-> Specialix)
  220. - Low latency (mostly firmware, -> Specialix)