telephony.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. /* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
  2. /******************************************************************************
  3. *
  4. * telephony.h
  5. *
  6. * Basic Linux Telephony Interface
  7. *
  8. * (c) Copyright 1999-2001 Quicknet Technologies, Inc.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License
  12. * as published by the Free Software Foundation; either version
  13. * 2 of the License, or (at your option) any later version.
  14. *
  15. * Authors: Ed Okerson, <eokerson@quicknet.net>
  16. * Greg Herlein, <gherlein@quicknet.net>
  17. *
  18. * Contributors: Alan Cox, <alan@lxorguk.ukuu.org.uk>
  19. * David W. Erhart, <derhart@quicknet.net>
  20. *
  21. * IN NO EVENT SHALL QUICKNET TECHNOLOGIES, INC. BE LIABLE TO ANY PARTY FOR
  22. * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
  23. * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF QUICKNET
  24. * TECHNOLOGIES, INC. HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. *
  26. * QUICKNET TECHNOLOGIES, INC. SPECIFICALLY DISCLAIMS ANY WARRANTIES,
  27. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
  28. * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
  29. * ON AN "AS IS" BASIS, AND QUICKNET TECHNOLOGIES, INC. HAS NO OBLIGATION
  30. * TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
  31. *
  32. *****************************************************************************/
  33. #ifndef TELEPHONY_H
  34. #define TELEPHONY_H
  35. #define TELEPHONY_VERSION 3013
  36. #define PHONE_VENDOR_IXJ 1
  37. #define PHONE_VENDOR_QUICKNET PHONE_VENDOR_IXJ
  38. #define PHONE_VENDOR_VOICETRONIX 2
  39. #define PHONE_VENDOR_ACULAB 3
  40. #define PHONE_VENDOR_DIGI 4
  41. #define PHONE_VENDOR_FRANKLIN 5
  42. /******************************************************************************
  43. * Vendor Summary Information Area
  44. *
  45. * Quicknet Technologies, Inc. - makes low density analog telephony cards
  46. * with audio compression, POTS and PSTN interfaces (www.quicknet.net)
  47. *
  48. * (other vendors following this API shuld add a short description of
  49. * the telephony products they support under Linux)
  50. *
  51. *****************************************************************************/
  52. #define QTI_PHONEJACK 100
  53. #define QTI_LINEJACK 300
  54. #define QTI_PHONEJACK_LITE 400
  55. #define QTI_PHONEJACK_PCI 500
  56. #define QTI_PHONECARD 600
  57. /******************************************************************************
  58. *
  59. * The capabilities ioctls can inform you of the capabilities of each phone
  60. * device installed in your system. The PHONECTL_CAPABILITIES ioctl
  61. * returns an integer value indicating the number of capabilities the
  62. * device has. The PHONECTL_CAPABILITIES_LIST will fill an array of
  63. * capability structs with all of its capabilities. The
  64. * PHONECTL_CAPABILITIES_CHECK takes a single capability struct and returns
  65. * a TRUE if the device has that capability, otherwise it returns false.
  66. *
  67. ******************************************************************************/
  68. typedef enum {
  69. vendor = 0,
  70. device,
  71. port,
  72. codec,
  73. dsp
  74. } phone_cap;
  75. struct phone_capability {
  76. char desc[80];
  77. phone_cap captype;
  78. int cap;
  79. int handle;
  80. };
  81. typedef enum {
  82. pots = 0,
  83. pstn,
  84. handset,
  85. speaker
  86. } phone_ports;
  87. #define PHONE_CAPABILITIES _IO ('q', 0x80)
  88. #define PHONE_CAPABILITIES_LIST _IOR ('q', 0x81, struct phone_capability *)
  89. #define PHONE_CAPABILITIES_CHECK _IOW ('q', 0x82, struct phone_capability *)
  90. typedef struct {
  91. char month[3];
  92. char day[3];
  93. char hour[3];
  94. char min[3];
  95. int numlen;
  96. char number[11];
  97. int namelen;
  98. char name[80];
  99. } PHONE_CID;
  100. #define PHONE_RING _IO ('q', 0x83)
  101. #define PHONE_HOOKSTATE _IO ('q', 0x84)
  102. #define PHONE_MAXRINGS _IOW ('q', 0x85, char)
  103. #define PHONE_RING_CADENCE _IOW ('q', 0x86, short)
  104. #define OLD_PHONE_RING_START _IO ('q', 0x87)
  105. #define PHONE_RING_START _IOW ('q', 0x87, PHONE_CID *)
  106. #define PHONE_RING_STOP _IO ('q', 0x88)
  107. #define USA_RING_CADENCE 0xC0C0
  108. #define PHONE_REC_CODEC _IOW ('q', 0x89, int)
  109. #define PHONE_REC_START _IO ('q', 0x8A)
  110. #define PHONE_REC_STOP _IO ('q', 0x8B)
  111. #define PHONE_REC_DEPTH _IOW ('q', 0x8C, int)
  112. #define PHONE_FRAME _IOW ('q', 0x8D, int)
  113. #define PHONE_REC_VOLUME _IOW ('q', 0x8E, int)
  114. #define PHONE_REC_VOLUME_LINEAR _IOW ('q', 0xDB, int)
  115. #define PHONE_REC_LEVEL _IO ('q', 0x8F)
  116. #define PHONE_PLAY_CODEC _IOW ('q', 0x90, int)
  117. #define PHONE_PLAY_START _IO ('q', 0x91)
  118. #define PHONE_PLAY_STOP _IO ('q', 0x92)
  119. #define PHONE_PLAY_DEPTH _IOW ('q', 0x93, int)
  120. #define PHONE_PLAY_VOLUME _IOW ('q', 0x94, int)
  121. #define PHONE_PLAY_VOLUME_LINEAR _IOW ('q', 0xDC, int)
  122. #define PHONE_PLAY_LEVEL _IO ('q', 0x95)
  123. #define PHONE_DTMF_READY _IOR ('q', 0x96, int)
  124. #define PHONE_GET_DTMF _IOR ('q', 0x97, int)
  125. #define PHONE_GET_DTMF_ASCII _IOR ('q', 0x98, int)
  126. #define PHONE_DTMF_OOB _IOW ('q', 0x99, int)
  127. #define PHONE_EXCEPTION _IOR ('q', 0x9A, int)
  128. #define PHONE_PLAY_TONE _IOW ('q', 0x9B, char)
  129. #define PHONE_SET_TONE_ON_TIME _IOW ('q', 0x9C, int)
  130. #define PHONE_SET_TONE_OFF_TIME _IOW ('q', 0x9D, int)
  131. #define PHONE_GET_TONE_ON_TIME _IO ('q', 0x9E)
  132. #define PHONE_GET_TONE_OFF_TIME _IO ('q', 0x9F)
  133. #define PHONE_GET_TONE_STATE _IO ('q', 0xA0)
  134. #define PHONE_BUSY _IO ('q', 0xA1)
  135. #define PHONE_RINGBACK _IO ('q', 0xA2)
  136. #define PHONE_DIALTONE _IO ('q', 0xA3)
  137. #define PHONE_CPT_STOP _IO ('q', 0xA4)
  138. #define PHONE_PSTN_SET_STATE _IOW ('q', 0xA4, int)
  139. #define PHONE_PSTN_GET_STATE _IO ('q', 0xA5)
  140. #define PSTN_ON_HOOK 0
  141. #define PSTN_RINGING 1
  142. #define PSTN_OFF_HOOK 2
  143. #define PSTN_PULSE_DIAL 3
  144. /******************************************************************************
  145. *
  146. * The wink duration is tunable with this ioctl. The default wink duration
  147. * is 320ms. You do not need to use this ioctl if you do not require a
  148. * different wink duration.
  149. *
  150. ******************************************************************************/
  151. #define PHONE_WINK_DURATION _IOW ('q', 0xA6, int)
  152. #define PHONE_WINK _IOW ('q', 0xAA, int)
  153. /******************************************************************************
  154. *
  155. * Codec Definitions
  156. *
  157. ******************************************************************************/
  158. typedef enum {
  159. G723_63 = 1,
  160. G723_53 = 2,
  161. TS85 = 3,
  162. TS48 = 4,
  163. TS41 = 5,
  164. G728 = 6,
  165. G729 = 7,
  166. ULAW = 8,
  167. ALAW = 9,
  168. LINEAR16 = 10,
  169. LINEAR8 = 11,
  170. WSS = 12,
  171. G729B = 13
  172. } phone_codec;
  173. struct phone_codec_data
  174. {
  175. phone_codec type;
  176. unsigned short buf_min, buf_opt, buf_max;
  177. };
  178. #define PHONE_QUERY_CODEC _IOWR ('q', 0xA7, struct phone_codec_data *)
  179. #define PHONE_PSTN_LINETEST _IO ('q', 0xA8)
  180. /******************************************************************************
  181. *
  182. * This controls the VAD/CNG functionality of G.723.1. The driver will
  183. * always pass full size frames, any unused bytes will be padded with zeros,
  184. * and frames passed to the driver should also be padded with zeros. The
  185. * frame type is encoded in the least significant two bits of the first
  186. * WORD of the frame as follows:
  187. *
  188. * bits 1-0 Frame Type Data Rate Significant Words
  189. * 00 0 G.723.1 6.3 12
  190. * 01 1 G.723.1 5.3 10
  191. * 10 2 VAD/CNG 2
  192. * 11 3 Repeat last CNG 2 bits
  193. *
  194. ******************************************************************************/
  195. #define PHONE_VAD _IOW ('q', 0xA9, int)
  196. /******************************************************************************
  197. *
  198. * The exception structure allows us to multiplex multiple events onto the
  199. * select() exception set. If any of these flags are set select() will
  200. * return with a positive indication on the exception set. The dtmf_ready
  201. * bit indicates if there is data waiting in the DTMF buffer. The
  202. * hookstate bit is set if there is a change in hookstate status, it does not
  203. * indicate the current state of the hookswitch. The pstn_ring bit
  204. * indicates that the DAA on a LineJACK card has detected ring voltage on
  205. * the PSTN port. The caller_id bit indicates that caller_id data has been
  206. * received and is available. The pstn_wink bit indicates that the DAA on
  207. * the LineJACK has received a wink from the telco switch. The f0, f1, f2
  208. * and f3 bits indicate that the filter has been triggered by detecting the
  209. * frequency programmed into that filter.
  210. *
  211. * The remaining bits should be set to zero. They will become defined over time
  212. * for other interface cards and their needs.
  213. *
  214. ******************************************************************************/
  215. struct phone_except
  216. {
  217. unsigned int dtmf_ready:1;
  218. unsigned int hookstate:1;
  219. unsigned int pstn_ring:1;
  220. unsigned int caller_id:1;
  221. unsigned int pstn_wink:1;
  222. unsigned int f0:1;
  223. unsigned int f1:1;
  224. unsigned int f2:1;
  225. unsigned int f3:1;
  226. unsigned int flash:1;
  227. unsigned int fc0:1;
  228. unsigned int fc1:1;
  229. unsigned int fc2:1;
  230. unsigned int fc3:1;
  231. unsigned int reserved:18;
  232. };
  233. union telephony_exception {
  234. struct phone_except bits;
  235. unsigned int bytes;
  236. };
  237. #endif /* TELEPHONY_H */