The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/Documentation/riscom8.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1         This is the README for RISCom/8 multi-port serial driver
    2         (C) 1994-1996 D.Gorodchanin (pgmdsg@ibi.com)
    3         See file LICENSE for terms and conditions.
    4 
    5 NOTE: English is not my native language. 
    6       I'm sorry for any mistakes in this text.
    7 
    8 Misc. notes for RISCom/8 serial driver, in no particular order :)
    9 
   10 1) This driver can support up to 4 boards at time.
   11    Use string "riscom8=0xXXX,0xXXX,0xXXX,0xXXX" at LILO prompt, for
   12    setting I/O base addresses for boards. If you compile driver
   13    as module use insmod options "iobase=0xXXX iobase1=0xXXX iobase2=..."
   14 
   15 2) The driver partially supports famous 'setserial' program, you can use almost
   16    any of its options, excluding port & irq settings.
   17 
   18 3) There are some misc. defines at the beginning of riscom8.c, please read the 
   19    comments and try to change some of them in case of problems.
   20         
   21 4) I consider the current state of the driver as BETA.
   22    If you REALLY think you found a bug, send me e-mail, I hope I'll
   23    fix it. For any other problems please ask support@sdlcomm.com.
   24 
   25 5) SDL Communications WWW page is http://www.sdlcomm.com.
   26 
   27 6) You can use the script at the end of this file to create RISCom/8 devices.
   28 
   29 7) Minor numbers for first board are 0-7, for second 8-15, etc.
   30 
   31 22 Apr 1996.
   32 
   33 -------------------------------cut here-------------------------------------
   34 #!/bin/bash
   35 NORMAL_DEVICE=/dev/ttyL
   36 CALLOUT_DEVICE=/dev/cuL
   37 NORMAL_MAJOR=48
   38 CALLOUT_MAJOR=49
   39 
   40 echo "Creating devices... "
   41 for i in 0 1 2 3; do
   42         echo "Board No $[$i+1]"
   43         for j in 0 1 2 3 4 5 6 7; do
   44                 k=$[ 8 * $i + $j]
   45                 rm -f $NORMAL_DEVICE$k 
   46                 mknod $NORMAL_DEVICE$k c $NORMAL_MAJOR $k
   47                 chmod a+rw $NORMAL_DEVICE$k
   48                 echo -n $NORMAL_DEVICE$k" "
   49                 rm -f $CALLOUT_DEVICE$k 
   50                 mknod $CALLOUT_DEVICE$k c $CALLOUT_MAJOR $k
   51                 chmod a+rw $CALLOUT_DEVICE$k
   52                 echo $CALLOUT_DEVICE$k
   53         done
   54 done
   55 echo "done."
   56 -------------------------------cut here-------------------------------------

Cache object: 773deea6536acd86b68e5a909afc45e8


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.