n_r3964.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /* SPDX-License-Identifier: GPL-1.0+ WITH Linux-syscall-note */
  2. /* r3964 linediscipline for linux
  3. *
  4. * -----------------------------------------------------------
  5. * Copyright by
  6. * Philips Automation Projects
  7. * Kassel (Germany)
  8. * -----------------------------------------------------------
  9. * This software may be used and distributed according to the terms of
  10. * the GNU General Public License, incorporated herein by reference.
  11. *
  12. * Author:
  13. * L. Haag
  14. *
  15. * $Log: r3964.h,v $
  16. * Revision 1.4 2005/12/21 19:54:24 Kurt Huwig <kurt huwig de>
  17. * Fixed HZ usage on 2.6 kernels
  18. * Removed unnecessary include
  19. *
  20. * Revision 1.3 2001/03/18 13:02:24 dwmw2
  21. * Fix timer usage, use spinlocks properly.
  22. *
  23. * Revision 1.2 2001/03/18 12:53:15 dwmw2
  24. * Merge changes in 2.4.2
  25. *
  26. * Revision 1.1.1.1 1998/10/13 16:43:14 dwmw2
  27. * This'll screw the version control
  28. *
  29. * Revision 1.6 1998/09/30 00:40:38 dwmw2
  30. * Updated to use kernel's N_R3964 if available
  31. *
  32. * Revision 1.4 1998/04/02 20:29:44 lhaag
  33. * select, blocking, ...
  34. *
  35. * Revision 1.3 1998/02/12 18:58:43 root
  36. * fixed some memory leaks
  37. * calculation of checksum characters
  38. *
  39. * Revision 1.2 1998/02/07 13:03:17 root
  40. * ioctl read_telegram
  41. *
  42. * Revision 1.1 1998/02/06 19:19:43 root
  43. * Initial revision
  44. *
  45. *
  46. */
  47. #ifndef _UAPI__LINUX_N_R3964_H__
  48. #define _UAPI__LINUX_N_R3964_H__
  49. /* line disciplines for r3964 protocol */
  50. /*
  51. * Ioctl-commands
  52. */
  53. #define R3964_ENABLE_SIGNALS 0x5301
  54. #define R3964_SETPRIORITY 0x5302
  55. #define R3964_USE_BCC 0x5303
  56. #define R3964_READ_TELEGRAM 0x5304
  57. /* Options for R3964_SETPRIORITY */
  58. #define R3964_MASTER 0
  59. #define R3964_SLAVE 1
  60. /* Options for R3964_ENABLE_SIGNALS */
  61. #define R3964_SIG_ACK 0x0001
  62. #define R3964_SIG_DATA 0x0002
  63. #define R3964_SIG_ALL 0x000f
  64. #define R3964_SIG_NONE 0x0000
  65. #define R3964_USE_SIGIO 0x1000
  66. /*
  67. * r3964 operation states:
  68. */
  69. /* types for msg_id: */
  70. enum {R3964_MSG_ACK=1, R3964_MSG_DATA };
  71. #define R3964_MAX_MSG_COUNT 32
  72. /* error codes for client messages */
  73. #define R3964_OK 0 /* no error. */
  74. #define R3964_TX_FAIL -1 /* transmission error, block NOT sent */
  75. #define R3964_OVERFLOW -2 /* msg queue overflow */
  76. /* the client gets this struct when calling read(fd,...): */
  77. struct r3964_client_message {
  78. int msg_id;
  79. int arg;
  80. int error_code;
  81. };
  82. #define R3964_MTU 256
  83. #endif /* _UAPI__LINUX_N_R3964_H__ */