lp.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * usr/include/linux/lp.h c.1991-1992 James Wiegand
  4. * many modifications copyright (C) 1992 Michael K. Johnson
  5. * Interrupt support added 1993 Nigel Gamble
  6. * Removed 8255 status defines from inside __KERNEL__ Marcelo Tosatti
  7. */
  8. #ifndef _UAPI_LINUX_LP_H
  9. #define _UAPI_LINUX_LP_H
  10. #include <linux/types.h>
  11. #include <linux/ioctl.h>
  12. /*
  13. * Per POSIX guidelines, this module reserves the LP and lp prefixes
  14. * These are the lp_table[minor].flags flags...
  15. */
  16. #define LP_EXIST 0x0001
  17. #define LP_SELEC 0x0002
  18. #define LP_BUSY 0x0004
  19. #define LP_BUSY_BIT_POS 2
  20. #define LP_OFFL 0x0008
  21. #define LP_NOPA 0x0010
  22. #define LP_ERR 0x0020
  23. #define LP_ABORT 0x0040
  24. #define LP_CAREFUL 0x0080 /* obsoleted -arca */
  25. #define LP_ABORTOPEN 0x0100
  26. #define LP_TRUST_IRQ_ 0x0200 /* obsolete */
  27. #define LP_NO_REVERSE 0x0400 /* No reverse mode available. */
  28. #define LP_DATA_AVAIL 0x0800 /* Data is available. */
  29. /*
  30. * bit defines for 8255 status port
  31. * base + 1
  32. * accessed with LP_S(minor), which gets the byte...
  33. */
  34. #define LP_PBUSY 0x80 /* inverted input, active high */
  35. #define LP_PACK 0x40 /* unchanged input, active low */
  36. #define LP_POUTPA 0x20 /* unchanged input, active high */
  37. #define LP_PSELECD 0x10 /* unchanged input, active high */
  38. #define LP_PERRORP 0x08 /* unchanged input, active low */
  39. /* timeout for each character. This is relative to bus cycles -- it
  40. * is the count in a busy loop. THIS IS THE VALUE TO CHANGE if you
  41. * have extremely slow printing, or if the machine seems to slow down
  42. * a lot when you print. If you have slow printing, increase this
  43. * number and recompile, and if your system gets bogged down, decrease
  44. * this number. This can be changed with the tunelp(8) command as well.
  45. */
  46. #define LP_INIT_CHAR 1000
  47. /* The parallel port specs apparently say that there needs to be
  48. * a .5usec wait before and after the strobe.
  49. */
  50. #define LP_INIT_WAIT 1
  51. /* This is the amount of time that the driver waits for the printer to
  52. * catch up when the printer's buffer appears to be filled. If you
  53. * want to tune this and have a fast printer (i.e. HPIIIP), decrease
  54. * this number, and if you have a slow printer, increase this number.
  55. * This is in hundredths of a second, the default 2 being .05 second.
  56. * Or use the tunelp(8) command, which is especially nice if you want
  57. * change back and forth between character and graphics printing, which
  58. * are wildly different...
  59. */
  60. #define LP_INIT_TIME 2
  61. /* IOCTL numbers */
  62. #define LPCHAR 0x0601 /* corresponds to LP_INIT_CHAR */
  63. #define LPTIME 0x0602 /* corresponds to LP_INIT_TIME */
  64. #define LPABORT 0x0604 /* call with TRUE arg to abort on error,
  65. FALSE to retry. Default is retry. */
  66. #define LPSETIRQ 0x0605 /* call with new IRQ number,
  67. or 0 for polling (no IRQ) */
  68. #define LPGETIRQ 0x0606 /* get the current IRQ number */
  69. #define LPWAIT 0x0608 /* corresponds to LP_INIT_WAIT */
  70. /* NOTE: LPCAREFUL is obsoleted and it' s always the default right now -arca */
  71. #define LPCAREFUL 0x0609 /* call with TRUE arg to require out-of-paper, off-
  72. line, and error indicators good on all writes,
  73. FALSE to ignore them. Default is ignore. */
  74. #define LPABORTOPEN 0x060a /* call with TRUE arg to abort open() on error,
  75. FALSE to ignore error. Default is ignore. */
  76. #define LPGETSTATUS 0x060b /* return LP_S(minor) */
  77. #define LPRESET 0x060c /* reset printer */
  78. #ifdef LP_STATS
  79. #define LPGETSTATS 0x060d /* get statistics (struct lp_stats) */
  80. #endif
  81. #define LPGETFLAGS 0x060e /* get status flags */
  82. #define LPSETTIMEOUT_OLD 0x060f /* set parport timeout */
  83. #define LPSETTIMEOUT_NEW \
  84. _IOW(0x6, 0xf, __s64[2]) /* set parport timeout */
  85. #if __BITS_PER_LONG == 64
  86. #define LPSETTIMEOUT LPSETTIMEOUT_OLD
  87. #else
  88. #define LPSETTIMEOUT (sizeof(time_t) > sizeof(__kernel_long_t) ? \
  89. LPSETTIMEOUT_NEW : LPSETTIMEOUT_OLD)
  90. #endif
  91. /* timeout for printk'ing a timeout, in jiffies (100ths of a second).
  92. This is also used for re-checking error conditions if LP_ABORT is
  93. not set. This is the default behavior. */
  94. #define LP_TIMEOUT_INTERRUPT (60 * HZ)
  95. #define LP_TIMEOUT_POLLED (10 * HZ)
  96. #endif /* _UAPI_LINUX_LP_H */