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

嵌入式Linux

开发平台:

Unix_Linux

  1. The SA1100 serial port had its major/minor numbers officially assigned:
  2. > Date: Sun, 24 Sep 2000 21:40:27 -0700
  3. > From: H. Peter Anvin <hpa@transmeta.com>
  4. > To: Nicolas Pitre <nico@CAM.ORG>
  5. > Cc: Device List Maintainer <device@lanana.org>
  6. > Subject: Re: device
  7. > Okay.  Note that device numbers 204 and 205 are used for "low density
  8. > serial devices", so you will have a range of minors on those majors (the
  9. > tty device layer handles this just fine, so you don't have to worry about
  10. > doing anything special.)
  11. > So your assignments are:
  12. > 204 char        Low-density serial ports
  13. >                   5 = /dev/ttySA0               SA1100 builtin serial port 0
  14. >                   6 = /dev/ttySA1               SA1100 builtin serial port 1
  15. >                   7 = /dev/ttySA2               SA1100 builtin serial port 2
  16. > 205 char        Low-density serial ports (alternate device)
  17. >                   5 = /dev/cusa0                Callout device for ttySA0
  18. >                   6 = /dev/cusa1                Callout device for ttySA1
  19. >                   7 = /dev/cusa2                Callout device for ttySA2
  20. >
  21. If you're not using devfs, you must create those inodes in /dev
  22. on the root filesystem used by your SA1100-based device:
  23. mknod ttySA0 c 204 5
  24. mknod ttySA1 c 204 6
  25. mknod ttySA2 c 204 7
  26. mknod cusa0 c 205 5
  27. mknod cusa1 c 205 6
  28. mknod cusa2 c 205 7
  29. In addition to the creation of the appropriate device nodes above, you
  30. must ensure your user space applications make use of the correct device
  31. name. The classic example is the content of the /etc/inittab file where
  32. you might have a getty process started on ttyS0.  In this case:
  33. - replace occurences of ttyS0 with ttySA0, ttyS1 with ttySA1, etc.
  34. - don't forget to add 'ttySA0', 'console', or the appropriate tty name
  35.   in /etc/securetty for root to be allowed to login as well.