ppdev.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/drivers/char/ppdev.h
  3.  *
  4.  * User-space parallel port device driver (header file).
  5.  *
  6.  * Copyright (C) 1998-9 Tim Waugh <tim@cyberelk.demon.co.uk>
  7.  *
  8.  * This program is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU General Public License
  10.  * as published by the Free Software Foundation; either version
  11.  * 2 of the License, or (at your option) any later version.
  12.  *
  13.  * Added PPGETTIME/PPSETTIME, Fred Barnes, 1999
  14.  * Added PPGETMODES/PPGETMODE/PPGETPHASE, Fred Barnes <frmb2@ukc.ac.uk>, 03/01/2001
  15.  */
  16. #define PP_MAJOR 99
  17. #define PP_IOCTL 'p'
  18. /* Set mode for read/write (e.g. IEEE1284_MODE_EPP) */
  19. #define PPSETMODE _IOW(PP_IOCTL, 0x80, int)
  20. /* Read status */
  21. #define PPRSTATUS _IOR(PP_IOCTL, 0x81, unsigned char)
  22. #define PPWSTATUS OBSOLETE__IOW(PP_IOCTL, 0x82, unsigned char)
  23. /* Read/write control */
  24. #define PPRCONTROL _IOR(PP_IOCTL, 0x83, unsigned char)
  25. #define PPWCONTROL _IOW(PP_IOCTL, 0x84, unsigned char)
  26. struct ppdev_frob_struct {
  27. unsigned char mask;
  28. unsigned char val;
  29. };
  30. #define PPFCONTROL      _IOW(PP_IOCTL, 0x8e, struct ppdev_frob_struct)
  31. /* Read/write data */
  32. #define PPRDATA _IOR(PP_IOCTL, 0x85, unsigned char)
  33. #define PPWDATA _IOW(PP_IOCTL, 0x86, unsigned char)
  34. /* Read/write econtrol (not used) */
  35. #define PPRECONTROL OBSOLETE__IOR(PP_IOCTL, 0x87, unsigned char)
  36. #define PPWECONTROL OBSOLETE__IOW(PP_IOCTL, 0x88, unsigned char)
  37. /* Read/write FIFO (not used) */
  38. #define PPRFIFO OBSOLETE__IOR(PP_IOCTL, 0x89, unsigned char)
  39. #define PPWFIFO OBSOLETE__IOW(PP_IOCTL, 0x8a, unsigned char)
  40. /* Claim the port to start using it */
  41. #define PPCLAIM _IO(PP_IOCTL, 0x8b)
  42. /* Release the port when you aren't using it */
  43. #define PPRELEASE _IO(PP_IOCTL, 0x8c)
  44. /* Yield the port (release it if another driver is waiting,
  45.  * then reclaim) */
  46. #define PPYIELD _IO(PP_IOCTL, 0x8d)
  47. /* Register device exclusively (must be before PPCLAIM). */
  48. #define PPEXCL _IO(PP_IOCTL, 0x8f)
  49. /* Data line direction: non-zero for input mode. */
  50. #define PPDATADIR _IOW(PP_IOCTL, 0x90, int)
  51. /* Negotiate a particular IEEE 1284 mode. */
  52. #define PPNEGOT _IOW(PP_IOCTL, 0x91, int)
  53. /* Set control lines when an interrupt occurs. */
  54. #define PPWCTLONIRQ _IOW(PP_IOCTL, 0x92, unsigned char)
  55. /* Clear (and return) interrupt count. */
  56. #define PPCLRIRQ _IOR(PP_IOCTL, 0x93, int)
  57. /* Set the IEEE 1284 phase that we're in (e.g. IEEE1284_PH_FWD_IDLE) */
  58. #define PPSETPHASE _IOW(PP_IOCTL, 0x94, int)
  59. /* Set and get port timeout (struct timeval's) */
  60. #define PPGETTIME _IOR(PP_IOCTL, 0x95, struct timeval)
  61. #define PPSETTIME _IOW(PP_IOCTL, 0x96, struct timeval)
  62. /* Get available modes (what the hardware can do) */
  63. #define PPGETMODES _IOR(PP_IOCTL, 0x97, unsigned int)
  64. /* Get the current mode and phaze */
  65. #define PPGETMODE _IOR(PP_IOCTL, 0x98, int)
  66. #define PPGETPHASE _IOR(PP_IOCTL, 0x99, int)
  67. /* get/set flags */
  68. #define PPGETFLAGS _IOR(PP_IOCTL, 0x9a, int)
  69. #define PPSETFLAGS _IOW(PP_IOCTL, 0x9b, int)
  70. /* flags visible to the world */
  71. #define PP_FASTWRITE (1<<2)
  72. #define PP_FASTREAD (1<<3)
  73. #define PP_W91284PIC (1<<4)
  74. /* only masks user-visible flags */
  75. #define PP_FLAGMASK (PP_FASTWRITE | PP_FASTREAD | PP_W91284PIC)