8253xioc.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* -*- linux-c -*- */
  2. /* 
  3.  * Copyright (C) 2001 By Joachim Martillo, Telford Tools, Inc.
  4.  *
  5.  * This program is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU General Public License
  7.  * as published by the Free Software Foundation; either version
  8.  * 2 of the License, or (at your option) any later version.
  9.  *
  10.  **/
  11. #ifndef _SABIOCTL_H_
  12. #define _SABIOCTL_H_
  13. #include <linux/tty.h>
  14. #include <asm/ioctl.h>
  15. #include <linux/sockios.h>
  16. #include "ring.h"
  17. #include "Reg9050.h"
  18. /* Channel Configuration Register 0 (CCR0) */
  19. #define SAB82532_CCR0_PU 0x80
  20. #define SAB82532_CCR0_MCE 0x40
  21. #define SAB82532_CCR0_SC_NRZ 0x00
  22. #define SAB82532_CCR0_SC_NRZI 0x08
  23. #define SAB82532_CCR0_SC_FM0 0x10
  24. #define SAB82532_CCR0_SC_FM1 0x14
  25. #define SAB82532_CCR0_SC_MANCH 0x18
  26. #define SAB82532_CCR0_SM_HDLC 0x00
  27. #define SAB82532_CCR0_SM_SDLC_LOOP 0x01
  28. #define SAB82532_CCR0_SM_BISYNC 0x02
  29. #define SAB82532_CCR0_SM_ASYNC 0x03
  30. /* Channel Configuration Register 1 (CCR1) */
  31. #define SAB82532_CCR1_SFLG 0x80
  32. #define SAB82532_CCR1_ODS 0x10
  33. #define SAB82532_CCR1_BCR 0x08
  34. #define SAB82532_CCR1_IFF 0x08
  35. #define SAB82532_CCR1_ITF 0x00
  36. #define SAB82532_CCR1_CM_MASK 0x07
  37. /* Channel Configuration Register 2 (CCR2) */
  38. #define SAB82532_CCR2_SOC1 0x80
  39. #define SAB82532_CCR2_SOC0 0x40
  40. #define SAB82532_CCR2_BR9 0x80
  41. #define SAB82532_CCR2_BR8 0x40
  42. #define SAB82532_CCR2_BDF 0x20
  43. #define SAB82532_CCR2_SSEL 0x10
  44. #define SAB82532_CCR2_XCS0 0x20
  45. #define SAB82532_CCR2_RCS0 0x10
  46. #define SAB82532_CCR2_TOE 0x08
  47. #define SAB82532_CCR2_RWX 0x04
  48. #define SAB82532_CCR2_C32 0x02
  49. #define SAB82532_CCR2_DIV 0x01
  50. /* Channel Configuration Register 3 (CCR3) */
  51. #define SAB82532_CCR3_PSD 0x01
  52. #define SAB82532_CCR3_RCRC 0x04
  53. /* Channel Configuration Register 4 (CCR4) */
  54. #define SAB82532_CCR4_MCK4 0x80
  55. #define SAB82532_CCR4_EBRG 0x40
  56. #define SAB82532_CCR4_TST1 0x20
  57. #define SAB82532_CCR4_ICD 0x10
  58. #define SAB82532_CCR4_RF32 0x00
  59. #define SAB82532_CCR4_RF16 0x01
  60. #define SAB82532_CCR4_RF04 0x02
  61. #define SAB82532_CCR4_RF02 0x03
  62. /* Mode Register (MODE) */
  63. #define SAB82532_MODE_TM0 0x80
  64. #define SAB82532_MODE_FRTS 0x40
  65. #define SAB82532_MODE_FCTS 0x20
  66. #define SAB82532_MODE_FLON 0x10
  67. #define SAB82532_MODE_TCPU 0x10
  68. #define SAB82532_MODE_RAC 0x08
  69. #define SAB82532_MODE_RTS 0x04
  70. #define SAB82532_MODE_TRS 0x02
  71. #define SAB82532_MODE_TLP 0x01
  72. struct channelcontrol
  73. {
  74. unsigned char ccr0;
  75. unsigned char ccr1;
  76. unsigned char ccr2;
  77. unsigned char ccr3;
  78. unsigned char ccr4;
  79. unsigned char mode;
  80. unsigned char rlcr;
  81. };
  82. struct sep9050
  83. {
  84. unsigned short values[EPROM9050_SIZE];
  85. };
  86. /* EXTERNAL-CLOCKING */
  87. #define DEFAULT_CCR0 (SAB82532_CCR0_MCE | SAB82532_CCR0_SC_NRZ | SAB82532_CCR0_SM_HDLC)
  88. #define DEFAULT_CCR1 (SAB82532_CCR1_SFLG | SAB82532_CCR1_ODS | SAB82532_CCR1_IFF) /* clock mode 0 */
  89. #define DEFAULT_CCR2 0 /*SAB82532_CCR2_SOC1*/ /* 0a -- RTS high*/
  90. #define DEFAULT_CCR3 SAB82532_CCR3_RCRC
  91. #define DEFAULT_CCR4 0
  92. #define DEFAULT_MODE (SAB82532_MODE_TM0 | SAB82532_MODE_RTS | SAB82532_MODE_RAC)
  93. #define DEFAULT_RLCR ((RXSIZE/32) - 1)
  94. #define DEFAULT_RLCR_NET ((RXSIZE/32) - 1)
  95. /* Internal-Clocking */
  96. #define DCE_CCR0 (SAB82532_CCR0_MCE | SAB82532_CCR0_SC_NRZ | SAB82532_CCR0_SM_HDLC)
  97. #define DCE_CCR1 (SAB82532_CCR1_SFLG | SAB82532_CCR1_ODS | SAB82532_CCR1_IFF | 6) /* clock mode 6 */
  98. #define DCE_CCR2 (SAB82532_CCR2_BDF | SAB82532_CCR2_SSEL | SAB82532_CCR2_TOE) /* 6b */
  99. #define DCE_CCR3 (SAB82532_CCR3_RCRC)
  100. #define DCE_CCR4 (SAB82532_CCR4_MCK4|SAB82532_CCR4_EBRG)
  101. #define DCE_MODE SAB82532_MODE_TM0 | SAB82532_MODE_RTS | SAB82532_MODE_RAC
  102. #define DCE_RLCR ((RXSIZE/32) - 1)
  103. #define ATIS_MAGIC_IOC 'A'
  104. #define ATIS_IOCSPARAMS _IOW(ATIS_MAGIC_IOC,0,struct channelcontrol)
  105. #define ATIS_IOCGPARAMS _IOR(ATIS_MAGIC_IOC,1,struct channelcontrol)
  106. #define ATIS_IOCSSPEED _IOW(ATIS_MAGIC_IOC,2,unsigned long)
  107. #define ATIS_IOCGSPEED _IOR(ATIS_MAGIC_IOC,3,unsigned long)
  108. #define ATIS_IOCSSEP9050 _IOW(ATIS_MAGIC_IOC,4,struct sep9050)
  109. #define ATIS_IOCGSEP9050 _IOR(ATIS_MAGIC_IOC,5,struct sep9050)
  110. #define ATIS_IOCSSIGMODE _IOW(ATIS_MAGIC_IOC,6,unsigned int)
  111. #define ATIS_IOCGSIGMODE _IOW(ATIS_MAGIC_IOC,7,unsigned int)
  112. /* same order as the bytes in sp502.h and as the names in 8253xtty.c */
  113. #define SP502_OFF_MODE 0
  114. #define SP502_RS232_MODE 1
  115. #define SP502_V28_MODE SP502_RS232_MODE
  116. #define SP502_RS422_MODE 2
  117. #define SP502_V11_MODE SP502_RS422_MODE
  118. #define SP502_X27_MODE SP502_RS422_MODE
  119. #define SP502_RS485_MODE 3
  120. #define SP502_RS449_MODE 4
  121. #define SP502_EIA530_MODE 5
  122. #define SP502_V35_MODE 6
  123. #define SAB8253XCLEARCOUNTERS  (SIOCDEVPRIVATE + 5 + 1)
  124. #endif