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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. ** -----------------------------------------------------------------------------
  3. **
  4. **  Perle Specialix driver for Linux
  5. **  Ported from existing RIO Driver for SCO sources.
  6.  *
  7.  *  (C) 1990 - 2000 Specialix International Ltd., Byfleet, Surrey, UK.
  8.  *
  9.  *      This program is free software; you can redistribute it and/or modify
  10.  *      it under the terms of the GNU General Public License as published by
  11.  *      the Free Software Foundation; either version 2 of the License, or
  12.  *      (at your option) any later version.
  13.  *
  14.  *      This program is distributed in the hope that it will be useful,
  15.  *      but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *      GNU General Public License for more details.
  18.  *
  19.  *      You should have received a copy of the GNU General Public License
  20.  *      along with this program; if not, write to the Free Software
  21.  *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  22. **
  23. ** Module : rioioctl.h
  24. ** SID : 1.2
  25. ** Last Modified : 11/6/98 11:34:13
  26. ** Retrieved : 11/6/98 11:34:22
  27. **
  28. **  ident @(#)rioioctl.h 1.2
  29. **
  30. ** -----------------------------------------------------------------------------
  31. */
  32. #ifndef __rioioctl_h__
  33. #define __rioioctl_h__
  34. #ifdef SCCS_LABELS
  35. static char *_rioioctl_h_sccs_ = "@(#)rioioctl.h 1.2";
  36. #endif
  37. /*
  38. ** RIO device driver - user ioctls and associated structures.
  39. */
  40. struct portStats {
  41. int port;
  42. int gather;
  43. ulong txchars;
  44. ulong rxchars;
  45. ulong opens;
  46. ulong closes;
  47. ulong ioctls;
  48. }; 
  49. #define rIOC ('r'<<8)
  50. #define TCRIOSTATE (rIOC | 1)
  51. #define TCRIOXPON (rIOC | 2)
  52. #define TCRIOXPOFF (rIOC | 3)
  53. #define TCRIOXPCPS (rIOC | 4)
  54. #define TCRIOXPRINT (rIOC | 5)
  55. #define TCRIOIXANYON (rIOC | 6)
  56. #define TCRIOIXANYOFF (rIOC | 7)
  57. #define TCRIOIXONON (rIOC | 8)
  58. #define TCRIOIXONOFF (rIOC | 9)
  59. #define TCRIOMBIS (rIOC | 10)
  60. #define TCRIOMBIC (rIOC | 11)
  61. #define TCRIOTRIAD (rIOC | 12)
  62. #define TCRIOTSTATE (rIOC | 13)
  63. /*
  64. ** 15.10.1998 ARG - ESIL 0761 part fix
  65. ** Add RIO ioctls for manipulating RTS and CTS flow control, (as LynxOS
  66. ** appears to not support hardware flow control).
  67. */
  68. #define TCRIOCTSFLOWEN (rIOC | 14) /* enable CTS flow control */
  69. #define TCRIOCTSFLOWDIS (rIOC | 15) /* disable CTS flow control */
  70. #define TCRIORTSFLOWEN (rIOC | 16) /* enable RTS flow control */
  71. #define TCRIORTSFLOWDIS (rIOC | 17) /* disable RTS flow control */
  72. /*
  73. ** 09.12.1998 ARG - ESIL 0776 part fix
  74. ** Definition for 'RIOC' also appears in daemon.h, so we'd better do a
  75. ** #ifndef here first.
  76. ** 'RIO_QUICK_CHECK' also #define'd here as this ioctl is now
  77. ** allowed to be used by customers.
  78. **
  79. ** 05.02.1999 ARG -
  80. ** This is what I've decied to do with ioctls etc., which are intended to be
  81. ** invoked from users applications :
  82. ** Anything that needs to be defined here will be removed from daemon.h, that
  83. ** way it won't end up having to be defined/maintained in two places. The only
  84. ** consequence of this is that this file should now be #include'd by daemon.h
  85. **
  86. ** 'stats' ioctls now #define'd here as they are to be used by customers.
  87. */
  88. #define RIOC ('R'<<8)|('i'<<16)|('o'<<24)
  89. #define RIO_QUICK_CHECK    (RIOC | 105)
  90. #define RIO_GATHER_PORT_STATS (RIOC | 193)
  91. #define RIO_RESET_PORT_STATS (RIOC | 194)
  92. #define RIO_GET_PORT_STATS (RIOC | 195)
  93. #endif /* __rioioctl_h__ */