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

嵌入式Linux

开发平台:

Unix_Linux

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