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

嵌入式Linux

开发平台:

Unix_Linux

  1. Stallion Multiport Serial Driver Readme
  2. ---------------------------------------
  3. Copyright (C) 1994-1999,  Stallion Technologies (support@stallion.com).
  4. Version:   5.5.1
  5. Date:      28MAR99
  6. 1. INTRODUCTION
  7. There are two drivers that work with the different families of Stallion
  8. multiport serial boards. One is for the Stallion smart boards - that is
  9. EasyIO, EasyConnection 8/32 and EasyConnection 8/64-PCI, the other for
  10. the true Stallion intelligent multiport boards - EasyConnection 8/64
  11. (ISA, EISA, MCA), EasyConnection/RA-PCI, ONboard and Brumby.
  12. If you are using any of the Stallion intelligent multiport boards (Brumby,
  13. ONboard, EasyConnection 8/64 (ISA, EISA, MCA), EasyConnection/RA-PCI) with
  14. Linux you will need to get the driver utility package. This package is
  15. available at most of the Linux archive sites (and on CD-ROMs that contain
  16. these archives). The file will be called stallion-X.X.X.tar.gz where X.X.X
  17. will be the version number. In particular this package contains the board
  18. embedded executable images that are required for these boards. It also
  19. contains the downloader program. These boards cannot be used without this.
  20. The Stallion Technologies ftp site, ftp.stallion.com, will always have
  21. the latest version of the driver utility package. Other sites that usually
  22. have the latest version are tsx-11.mit.edu, sunsite.unc.edu and their
  23. mirrors.
  24. ftp.stallion.com:/drivers/ata5/Linux/v550.tar.gz
  25. tsx-11.mit.edu:/pub/linux/packages/stallion/stallion-5.5.0.tar.gz
  26. sunsite.unc.edu:/pub/Linux/kernel/patches/serial/stallion-5.5.0.tar.gz
  27. As of the printing of this document the latest version of the driver
  28. utility package is 5.5.0. If a later version is now available then you
  29. should use the latest version.
  30. If you are using the EasyIO, EasyConnection 8/32 or EasyConnection 8/64-PCI
  31. boards then you don't need this package. Although it does have a handy
  32. script to create the /dev device nodes for these boards, and a serial stats
  33. display program.
  34. If you require DIP switch settings, EISA or MCA configuration files, or any
  35. other information related to Stallion boards then have a look at Stallion's
  36. web pages at http://www.stallion.com.
  37. 2. INSTALLATION
  38. The drivers can be used as loadable modules or compiled into the kernel.
  39. You can choose which when doing a "config" on the kernel.
  40. All ISA, EISA and MCA boards that you want to use need to be configured into
  41. the driver(s). All PCI boards will be automatically detected when you load
  42. the driver - so they do not need to be entered into the driver(s)
  43. configuration structure. Note that kernel PCI support is required to use PCI
  44. boards.
  45. There are two methods of configuring ISA, EISA and MCA boards into the drivers.
  46. If using the driver as a loadable module then the simplest method is to pass
  47. the driver configuration as module arguments. The other method is to modify
  48. the driver source to add configuration lines for each board in use.
  49. If you have pre-built Stallion driver modules then the module argument
  50. configuration method should be used. A lot of Linux distributions come with
  51. pre-built driver modules in /lib/modules/X.Y.Z/misc for the kernel in use.
  52. That makes things pretty simple to get going.
  53. 2.1 MODULE DRIVER CONFIGURATION:
  54. The simplest configuration for modules is to use the module load arguments
  55. to configure any ISA, EISA or MCA boards. PCI boards are automatically
  56. detected, so do not need any additional configuration at all.
  57. If using EasyIO, EasyConnection 8/32 ISA or MCA, or EasyConnection 8/63-PCI
  58. boards then use the "stallion" driver module, Otherwise if you are using
  59. an EasyConnection 8/64 ISA, EISA or MCA, EasyConnection/RA-PCI, ONboard,
  60. Brumby or original Stallion board then use the "istallion" driver module.
  61. Typically to load up the smart board driver use:
  62.     insmod stallion.o
  63. This will load the EasyIO and EasyConnection 8/32 driver. It will output a
  64. message to say that it loaded and print the driver version number. It will
  65. also print out whether it found the configured boards or not. These messages
  66. may not appear on the console, but typically are always logged to
  67. /var/adm/messages or /var/log/syslog files - depending on how the klogd and
  68. syslogd daemons are setup on your system.
  69. To load the intelligent board driver use:
  70.     insmod istallion.o
  71. It will output similar messages to the smart board driver.
  72. If not using an auto-detectable board type (that is a PCI board) then you
  73. will also need to supply command line arguments to the "insmod" command
  74. when loading the driver. The general form of the configuration argument is
  75.     board?=<name>[,<ioaddr>[,<addr>][,<irq>]]
  76. where:
  77.     board?  -- specifies the arbitrary board number of this board,
  78.                can be in the range 0 to 3.
  79.     name    -- textual name of this board. The board name is the comman
  80.                board name, or any "shortened" version of that. The board
  81.                type number may also be used here.
  82.     ioaddr  -- specifies the I/O address of this board. This argument is
  83.                optional, but should generally be specified.
  84.     addr    -- optional second address argument. Some board types require
  85.                a second I/O address, some require a memory address. The
  86.                exact meaning of this argument depends on the board type.
  87.     irq     -- optional IRQ line used by this board.
  88. Up to 4 board configuration arguments can be specified on the load line.
  89. Here is some examples:
  90.     insmod stallion.o board0=easyio,0x2a0,5
  91. This configures an EasyIO board as board 0 at I/O address 0x2a0 and IRQ 5.
  92.     insmod istallion.o board3=ec8/64,0x2c0,0xcc000
  93. This configures an EasyConnection 8/64 ISA as board 3 at I/O address 0x2c0 at
  94. memory address 0xcc000.
  95.     insmod stallion.o board1=ec8/32-at,0x2a0,0x280,10
  96. This configures an EasyConnection 8/32 ISA board at primary I/O address 0x2a0,
  97. secondary address 0x280 and IRQ 10.
  98. You will probably want to enter this module load and configuration information
  99. into your system startup scripts so that the drivers are loaded and configured
  100. on each system boot. Typically the start up script would be something line
  101. /etc/rc.d/rc.modules.
  102. 2.2 STATIC DRIVER CONFIGURATION:
  103. For static driver configuration you need to modify the driver source code.
  104. Entering ISA, EISA and MCA boards into the driver(s) configuration structure
  105. involves editing the driver(s) source file. It's pretty easy if you follow
  106. the instructions below. Both drivers can support up to 4 boards. The smart
  107. card driver (the stallion.c driver) supports any combination of EasyIO and
  108. EasyConnection 8/32 boards (up to a total of 4). The intelligent driver
  109. supports any combination of ONboards, Brumbys, Stallions and EasyConnection
  110. 8/64 (ISA and EISA) boards (up to a total of 4).
  111. To set up the driver(s) for the boards that you want to use you need to
  112. edit the appropriate driver file and add configuration entries.
  113. If using EasyIO or EasyConnection 8/32 ISA or MCA boards, do:
  114.    vi /usr/src/linux/drivers/char/stallion.c
  115.       - find the definition of the stl_brdconf array (of structures)
  116.         near the top of the file
  117.       - modify this to match the boards you are going to install
  118. (the comments before this structure should help)
  119.       - save and exit
  120. If using ONboard, Brumby, Stallion or EasyConnection 8/64 (ISA or EISA)
  121. boards then do:
  122.    vi /usr/src/linux/drivers/char/istallion.c
  123.       - find the definition of the stli_brdconf array (of structures)
  124.         near the top of the file
  125.       - modify this to match the boards you are going to install
  126. (the comments before this structure should help)
  127.       - save and exit
  128. Once you have set up the board configurations then you are ready to build
  129. the kernel or modules.
  130. When the new kernel is booted, or the loadable module loaded then the
  131. driver will emit some kernel trace messages about whether the configured
  132. boards were detected or not. Depending on how your system logger is set
  133. up these may come out on the console, or just be logged to
  134. /var/adm/messages or /var/log/syslog. You should check the messages to
  135. confirm that all is well.
  136. 2.3 SHARING INTERRUPTS
  137. It is possible to share interrupts between multiple EasyIO and
  138. EasyConnection 8/32 boards in an EISA system. To do this you must be using
  139. static driver configuration, modifying the driver source code to add driver
  140. configuration. Then a couple of extra things are required:
  141. 1. When entering the board resources into the stallion.c file you need to
  142.    mark the boards as using level triggered interrupts. Do this by replacing
  143.    the "0" entry at field position 6 (the last field) in the board
  144.    configuration structure with a "1". (This is the structure that defines
  145.    the board type, I/O locations, etc. for each board). All boards that are
  146.    sharing an interrupt must be set this way, and each board should have the
  147.    same interrupt number specified here as well. Now build the module or
  148.    kernel as you would normally.
  149. 2. When physically installing the boards into the system you must enter
  150.    the system EISA configuration utility. You will need to install the EISA
  151.    configuration files for *all* the EasyIO and EasyConnection 8/32 boards
  152.    that are sharing interrupts. The Stallion EasyIO and EasyConnection 8/32
  153.    EISA configuration files required are supplied by Stallion Technologies
  154.    on the EASY Utilities floppy diskette (usually supplied in the box with
  155.    the board when purchased. If not, you can pick it up from Stallion's FTP
  156.    site, ftp.stallion.com). You will need to edit the board resources to
  157.    choose level triggered interrupts, and make sure to set each board's
  158.    interrupt to the same IRQ number.
  159. You must complete both the above steps for this to work. When you reboot
  160. or load the driver your EasyIO and EasyConnection 8/32 boards will be
  161. sharing interrupts.
  162. 2.4 USING HIGH SHARED MEMORY
  163. The EasyConnection 8/64-EI, ONboard and Stallion boards are capable of
  164. using shared memory addresses above the usual 640K - 1Mb range. The ONboard
  165. ISA and the Stallion boards can be programmed to use memory addresses up to
  166. 16Mb (the ISA bus addressing limit), and the EasyConnection 8/64-EI and
  167. ONboard/E can be programmed for memory addresses up to 4Gb (the EISA bus
  168. addressing limit).
  169. The higher than 1Mb memory addresses are fully supported by this driver.
  170. Just enter the address as you normally would for a lower than 1Mb address
  171. (in the driver's board configuration structure).
  172. 2.5 TROUBLE SHOOTING
  173. If a board is not found by the driver but is actually in the system then the
  174. most likely problem is that the I/O address is wrong. Change the module load
  175. argument for the loadable module form. Or change it in the driver stallion.c
  176. or istallion.c configuration structure and rebuild the kernel or modules, or
  177. change it on the board.
  178. On EasyIO and EasyConnection 8/32 boards the IRQ is software programmable, so
  179. if there is a conflict you may need to change the IRQ used for a board. There
  180. are no interrupts to worry about for ONboard, Brumby or EasyConnection 8/64
  181. (ISA, EISA and MCA) boards. The memory region on EasyConnection 8/64 and
  182. ONboard boards is software programmable, but not on the Brumby boards.
  183. 3. USING THE DRIVERS
  184. 3.1 INTELLIGENT DRIVER OPERATION
  185. The intelligent boards also need to have their "firmware" code downloaded
  186. to them. This is done via a user level application supplied in the driver
  187. utility package called "stlload". Compile this program wherever you dropped
  188. the package files, by typing "make". In its simplest form you can then type
  189.     ./stlload -i cdk.sys
  190. in this directory and that will download board 0 (assuming board 0 is an
  191. EasyConnection 8/64 or EasyConnection/RA board). To download to an
  192. ONboard, Brumby or Stallion do:
  193.     ./stlload -i 2681.sys
  194. Normally you would want all boards to be downloaded as part of the standard
  195. system startup. To achieve this, add one of the lines above into the
  196. /etc/rc.d/rc.S or /etc/rc.d/rc.serial file. To download each board just add
  197. the "-b <brd-number>" option to the line. You will need to download code for
  198. every board. You should probably move the stlload program into a system
  199. directory, such as /usr/sbin. Also, the default location of the cdk.sys image
  200. file in the stlload down-loader is /usr/lib/stallion. Create that directory
  201. and put the cdk.sys and 2681.sys files in it. (It's a convenient place to put
  202. them anyway). As an example your /etc/rc.d/rc.S file might have the
  203. following lines added to it (if you had 3 boards):
  204.     /usr/sbin/stlload -b 0 -i /usr/lib/stallion/cdk.sys
  205.     /usr/sbin/stlload -b 1 -i /usr/lib/stallion/2681.sys
  206.     /usr/sbin/stlload -b 2 -i /usr/lib/stallion/2681.sys
  207. The image files cdk.sys and 2681.sys are specific to the board types. The
  208. cdk.sys will only function correctly on an EasyConnection 8/64 board. Similarly
  209. the 2681.sys image fill only operate on ONboard, Brumby and Stallion boards.
  210. If you load the wrong image file into a board it will fail to start up, and
  211. of course the ports will not be operational!
  212. If you are using the modularized version of the driver you might want to put
  213. the insmod calls in the startup script as well (before the download lines
  214. obviously).
  215. 3.2 USING THE SERIAL PORTS
  216. Once the driver is installed you will need to setup some device nodes to
  217. access the serial ports. The simplest method is to use the stallion utility
  218. "mkdevnods" script. It will automatically create device entries for Stallion
  219. boards. This will create the normal serial port devices as /dev/ttyE# where
  220. # is the port number starting from 0. A bank of 64 minor device numbers is
  221. allocated to each board, so the first port on the second board is port 64,
  222. etc. A set of callout type devices is also created. They are created as the
  223. devices /dev/cue# where # is the same as for the ttyE devices.
  224. For the most part the Stallion driver tries to emulate the standard PC system
  225. COM ports and the standard Linux serial driver. The idea is that you should
  226. be able to use Stallion board ports and COM ports interchangeably without
  227. modifying anything but the device name. Anything that doesn't work like that
  228. should be considered a bug in this driver!
  229. If you look at the driver code you will notice that it is fairly closely
  230. based on the Linux serial driver (linux/drivers/char/serial.c). This is
  231. intentional, obviously this is the easiest way to emulate its behavior!
  232. Since this driver tries to emulate the standard serial ports as much as
  233. possible, most system utilities should work as they do for the standard
  234. COM ports. Most importantly "stty" works as expected and "setserial" can
  235. also be used (excepting the ability to auto-configure the I/O and IRQ
  236. addresses of boards). Higher baud rates are supported in the usual fashion
  237. through setserial or using the CBAUDEX extensions. Note that the EasyIO and
  238. EasyConnection (all types) support at least 57600 and 115200 baud. The newer
  239. EasyConnection XP modules and new EasyIO boards support 230400 and 460800
  240. baud as well. The older boards including ONboard and Brumby support a
  241. maximum baud rate of 38400.
  242. If you are unfamiliar with how to use serial ports, then get the Serial-HOWTO
  243. by Greg Hankins. It will explain everything you need to know!
  244. 4. NOTES
  245. You can use both drivers at once if you have a mix of board types installed
  246. in a system. However to do this you will need to change the major numbers
  247. used by one of the drivers. Currently both drivers use major numbers 24, 25
  248. and 28 for their devices. Change one driver to use some other major numbers,
  249. and then modify the mkdevnods script to make device nodes based on those new
  250. major numbers. For example, you could change the istallion.c driver to use
  251. major numbers 60, 61 and 62. You will also need to create device nodes with
  252. different names for the ports, for example ttyF# and cuf#.
  253. The original Stallion board is no longer supported by Stallion Technologies.
  254. Although it is known to work with the istallion driver.
  255. Finding a free physical memory address range can be a problem. The older
  256. boards like the Stallion and ONboard need large areas (64K or even 128K), so
  257. they can be very difficult to get into a system. If you have 16 Mb of RAM
  258. then you have no choice but to put them somewhere in the 640K -> 1Mb range.
  259. ONboards require 64K, so typically 0xd0000 is good, or 0xe0000 on some
  260. systems. If you have an original Stallion board, "V4.0" or Rev.O, then you
  261. need a 64K memory address space, so again 0xd0000 and 0xe0000 are good.
  262. Older Stallion boards are a much bigger problem. They need 128K of address
  263. space and must be on a 128K boundary. If you don't have a VGA card then
  264. 0xc0000 might be usable - there is really no other place you can put them
  265. below 1Mb.
  266. Both the ONboard and old Stallion boards can use higher memory addresses as
  267. well, but you must have less than 16Mb of RAM to be able to use them. Usual
  268. high memory addresses used include 0xec0000 and 0xf00000.
  269. The Brumby boards only require 16Kb of address space, so you can usually
  270. squeeze them in somewhere. Common addresses are 0xc8000, 0xcc000, or in
  271. the 0xd0000 range. EasyConnection 8/64 boards are even better, they only
  272. require 4Kb of address space, again usually 0xc8000, 0xcc000 or 0xd0000
  273. are good.
  274. If you are using an EasyConnection 8/64-EI or ONboard/E then usually the
  275. 0xd0000 or 0xe0000 ranges are the best options below 1Mb. If neither of
  276. them can be used then the high memory support to use the really high address
  277. ranges is the best option. Typically the 2Gb range is convenient for them,
  278. and gets them well out of the way.
  279. The ports of the EasyIO-8M board do not have DCD or DTR signals. So these
  280. ports cannot be used as real modem devices. Generally, when using these
  281. ports you should only use the cueX devices.
  282. The driver utility package contains a couple of very useful programs. One 
  283. is a serial port statistics collection and display program - very handy
  284. for solving serial port problems. The other is an extended option setting
  285. program that works with the intelligent boards.
  286. 5. DISCLAIMER
  287. The information contained in this document is believed to be accurate and
  288. reliable. However, no responsibility is assumed by Stallion Technologies
  289. Pty. Ltd. for its use, nor any infringements of patents or other rights
  290. of third parties resulting from its use. Stallion Technologies reserves
  291. the right to modify the design of its products and will endeavour to change
  292. the information in manuals and accompanying documentation accordingly.