qmi-enums.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /*
  3. * uqmi -- tiny QMI support implementation
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the
  17. * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  18. * Boston, MA 02110-1301 USA.
  19. *
  20. * Copyright (C) 2012 Google, Inc.
  21. * Copyright (C) 2012-2017 Aleksander Morgado <aleksander@aleksander.es>
  22. */
  23. #ifndef _LIBQMI_GLIB_QMI_ENUMS_H_
  24. #define _LIBQMI_GLIB_QMI_ENUMS_H_
  25. /**
  26. * SECTION: qmi-enums
  27. *
  28. * This section defines common enumerations and flags used in the interface.
  29. */
  30. /**
  31. * QmiService:
  32. * @QMI_SERVICE_UNKNOWN: Unknown service.
  33. * @QMI_SERVICE_CTL: Control service.
  34. * @QMI_SERVICE_WDS: Wireless Data Service.
  35. * @QMI_SERVICE_DMS: Device Management Service.
  36. * @QMI_SERVICE_NAS: Network Access Service.
  37. * @QMI_SERVICE_QOS: Quality Of Service service.
  38. * @QMI_SERVICE_WMS: Wireless Messaging Service.
  39. * @QMI_SERVICE_PDS: Position Determination Service.
  40. * @QMI_SERVICE_AUTH: Authentication service.
  41. * @QMI_SERVICE_AT: AT service.
  42. * @QMI_SERVICE_VOICE: Voice service.
  43. * @QMI_SERVICE_CAT2: Card Application Toolkit service (v2).
  44. * @QMI_SERVICE_UIM: User Identity Module service.
  45. * @QMI_SERVICE_PBM: Phonebook Management service.
  46. * @QMI_SERVICE_QCHAT: QCHAT service. Since: 1.8.
  47. * @QMI_SERVICE_RMTFS: Remote file system service.
  48. * @QMI_SERVICE_TEST: Test service. Since: 1.8.
  49. * @QMI_SERVICE_LOC: Location service (~ PDS v2).
  50. * @QMI_SERVICE_SAR: Service access proxy service.
  51. * @QMI_SERVICE_IMS: IMS settings service. Since: 1.8.
  52. * @QMI_SERVICE_ADC: Analog to digital converter driver service. Since: 1.8.
  53. * @QMI_SERVICE_CSD: Core sound driver service. Since: 1.8.
  54. * @QMI_SERVICE_MFS: Modem embedded file system service. Since: 1.8.
  55. * @QMI_SERVICE_TIME: Time service. Since: 1.8.
  56. * @QMI_SERVICE_TS: Thermal sensors service. Since: 1.8.
  57. * @QMI_SERVICE_TMD: Thermal mitigation device service. Since: 1.8.
  58. * @QMI_SERVICE_SAP: Service access proxy service. Since: 1.8.
  59. * @QMI_SERVICE_WDA: Wireless data administrative service. Since: 1.8.
  60. * @QMI_SERVICE_TSYNC: TSYNC control service. Since: 1.8.
  61. * @QMI_SERVICE_RFSA: Remote file system access service. Since: 1.8.
  62. * @QMI_SERVICE_CSVT: Circuit switched videotelephony service. Since: 1.8.
  63. * @QMI_SERVICE_QCMAP: Qualcomm mobile access point service. Since: 1.8.
  64. * @QMI_SERVICE_IMSP: IMS presence service. Since: 1.8.
  65. * @QMI_SERVICE_IMSVT: IMS videotelephony service. Since: 1.8.
  66. * @QMI_SERVICE_IMSA: IMS application service. Since: 1.8.
  67. * @QMI_SERVICE_COEX: Coexistence service. Since: 1.8.
  68. * @QMI_SERVICE_PDC: Persistent device configuration service. Since: 1.8.
  69. * @QMI_SERVICE_STX: Simultaneous transmit service. Since: 1.8.
  70. * @QMI_SERVICE_BIT: Bearer independent transport service. Since: 1.8.
  71. * @QMI_SERVICE_IMSRTP: IMS RTP service. Since: 1.8.
  72. * @QMI_SERVICE_RFRPE: RF radiated performance enhancement service. Since: 1.8.
  73. * @QMI_SERVICE_DSD: Data system determination service. Since: 1.8.
  74. * @QMI_SERVICE_SSCTL: Subsystem control service. Since: 1.8.
  75. * @QMI_SERVICE_DPM: Data Port Mapper service. Since: 1.30.
  76. * @QMI_SERVICE_CAT: Card Application Toolkit service (v1).
  77. * @QMI_SERVICE_RMS: Remote Management Service.
  78. * @QMI_SERVICE_OMA: Open Mobile Alliance device management service.
  79. * @QMI_SERVICE_FOTA: Firmware Over The Air service. Since: 1.24.
  80. * @QMI_SERVICE_GMS: Telit General Modem Service. Since: 1.24.
  81. * @QMI_SERVICE_GAS: Telit General Application Service. Since: 1.24.
  82. *
  83. * QMI services.
  84. *
  85. * Since: 1.0
  86. */
  87. typedef enum { /*< since=1.0 >*/
  88. QMI_SERVICE_UNKNOWN = -1,
  89. QMI_SERVICE_CTL = 0x00,
  90. QMI_SERVICE_WDS = 0x01,
  91. QMI_SERVICE_DMS = 0x02,
  92. QMI_SERVICE_NAS = 0x03,
  93. QMI_SERVICE_QOS = 0x04,
  94. QMI_SERVICE_WMS = 0x05,
  95. QMI_SERVICE_PDS = 0x06,
  96. QMI_SERVICE_AUTH = 0x07,
  97. QMI_SERVICE_AT = 0x08,
  98. QMI_SERVICE_VOICE = 0x09,
  99. QMI_SERVICE_CAT2 = 0x0A,
  100. QMI_SERVICE_UIM = 0x0B,
  101. QMI_SERVICE_PBM = 0x0C,
  102. QMI_SERVICE_QCHAT = 0x0D,
  103. QMI_SERVICE_RMTFS = 0x0E,
  104. QMI_SERVICE_TEST = 0x0F,
  105. QMI_SERVICE_LOC = 0x10,
  106. QMI_SERVICE_SAR = 0x11,
  107. QMI_SERVICE_IMS = 0x12,
  108. QMI_SERVICE_ADC = 0x13,
  109. QMI_SERVICE_CSD = 0x14,
  110. QMI_SERVICE_MFS = 0x15,
  111. QMI_SERVICE_TIME = 0x16,
  112. QMI_SERVICE_TS = 0x17,
  113. QMI_SERVICE_TMD = 0x18,
  114. QMI_SERVICE_SAP = 0x19,
  115. QMI_SERVICE_WDA = 0x1A,
  116. QMI_SERVICE_TSYNC = 0x1B,
  117. QMI_SERVICE_RFSA = 0x1C,
  118. QMI_SERVICE_CSVT = 0x1D,
  119. QMI_SERVICE_QCMAP = 0x1E,
  120. QMI_SERVICE_IMSP = 0x1F,
  121. QMI_SERVICE_IMSVT = 0x20,
  122. QMI_SERVICE_IMSA = 0x21,
  123. QMI_SERVICE_COEX = 0x22,
  124. /* 0x23, reserved */
  125. QMI_SERVICE_PDC = 0x24,
  126. /* 0x25, reserved */
  127. QMI_SERVICE_STX = 0x26,
  128. QMI_SERVICE_BIT = 0x27,
  129. QMI_SERVICE_IMSRTP = 0x28,
  130. QMI_SERVICE_RFRPE = 0x29,
  131. QMI_SERVICE_DSD = 0x2A,
  132. QMI_SERVICE_SSCTL = 0x2B,
  133. QMI_SERVICE_DPM = 0x2F,
  134. QMI_SERVICE_CAT = 0xE0,
  135. QMI_SERVICE_RMS = 0xE1,
  136. QMI_SERVICE_OMA = 0xE2,
  137. QMI_SERVICE_FOTA = 0xE6,
  138. QMI_SERVICE_GMS = 0xE7,
  139. QMI_SERVICE_GAS = 0xE8,
  140. } QmiService;
  141. /**
  142. * QmiEndian:
  143. * @QMI_ENDIAN_LITTLE: Little endian.
  144. * @QMI_ENDIAN_BIG: Big endian.
  145. *
  146. * Type of endianness.
  147. *
  148. * Since: 1.0
  149. */
  150. typedef enum { /*< since=1.28 >*/ /* the get_string() helper and QmiEndian type added in 1.28 */
  151. QMI_ENDIAN_LITTLE = 0,
  152. QMI_ENDIAN_BIG = 1
  153. } QmiEndian;
  154. /**
  155. * QmiDataEndpointType:
  156. * @QMI_DATA_ENDPOINT_TYPE_UNKNOWN: Unknown. Since 1.30.
  157. * @QMI_DATA_ENDPOINT_TYPE_HSIC: High-speed inter-chip interface. Since 1.30.
  158. * @QMI_DATA_ENDPOINT_TYPE_HSUSB: High-speed USB.
  159. * @QMI_DATA_ENDPOINT_TYPE_PCIE: PCIe. Since: 1.28.
  160. * @QMI_DATA_ENDPOINT_TYPE_EMBEDDED: Embedded. Since 1.28.
  161. * @QMI_DATA_ENDPOINT_TYPE_BAM_DMUX: BAM/DMUX. Since 1.30.
  162. * @QMI_DATA_ENDPOINT_TYPE_UNDEFINED: Undefined.
  163. *
  164. * Data Endpoint Type.
  165. *
  166. * Since: 1.18
  167. */
  168. typedef enum { /*< since=1.18 >*/
  169. QMI_DATA_ENDPOINT_TYPE_UNKNOWN = 0x00,
  170. QMI_DATA_ENDPOINT_TYPE_HSIC = 0x01,
  171. QMI_DATA_ENDPOINT_TYPE_HSUSB = 0x02,
  172. QMI_DATA_ENDPOINT_TYPE_PCIE = 0x03,
  173. QMI_DATA_ENDPOINT_TYPE_EMBEDDED = 0x04,
  174. QMI_DATA_ENDPOINT_TYPE_BAM_DMUX = 0x05,
  175. QMI_DATA_ENDPOINT_TYPE_UNDEFINED = 0xFF,
  176. } QmiDataEndpointType;
  177. /**
  178. * QmiSioPort:
  179. * @QMI_SIO_PORT_NONE: Invalid port number.
  180. * @QMI_SIO_PORT_A2_MUX_RMNET0: A2 MUX (BAM-DMUX) port for rmnet0.
  181. * @QMI_SIO_PORT_A2_MUX_RMNET1: A2 MUX (BAM-DMUX) port for rmnet1.
  182. * @QMI_SIO_PORT_A2_MUX_RMNET2: A2 MUX (BAM-DMUX) port for rmnet2.
  183. * @QMI_SIO_PORT_A2_MUX_RMNET3: A2 MUX (BAM-DMUX) port for rmnet3.
  184. * @QMI_SIO_PORT_A2_MUX_RMNET4: A2 MUX (BAM-DMUX) port for rmnet4.
  185. * @QMI_SIO_PORT_A2_MUX_RMNET5: A2 MUX (BAM-DMUX) port for rmnet5.
  186. * @QMI_SIO_PORT_A2_MUX_RMNET6: A2 MUX (BAM-DMUX) port for rmnet6.
  187. * @QMI_SIO_PORT_A2_MUX_RMNET7: A2 MUX (BAM-DMUX) port for rmnet7.
  188. *
  189. * SIO (serial I/O) port numbers. All ports available in the modem have a SIO
  190. * port number. This enum is incomplete, only few port numbers are publicly
  191. * known.
  192. *
  193. * Since: 1.28
  194. */
  195. typedef enum { /*< since=1.28 >*/
  196. QMI_SIO_PORT_NONE = 0x0000,
  197. QMI_SIO_PORT_A2_MUX_RMNET0 = 0x0e04,
  198. QMI_SIO_PORT_A2_MUX_RMNET1 = 0x0e05,
  199. QMI_SIO_PORT_A2_MUX_RMNET2 = 0x0e06,
  200. QMI_SIO_PORT_A2_MUX_RMNET3 = 0x0e07,
  201. QMI_SIO_PORT_A2_MUX_RMNET4 = 0x0e08,
  202. QMI_SIO_PORT_A2_MUX_RMNET5 = 0x0e09,
  203. QMI_SIO_PORT_A2_MUX_RMNET6 = 0x0e0a,
  204. QMI_SIO_PORT_A2_MUX_RMNET7 = 0x0e0b,
  205. } QmiSioPort;
  206. #endif /* _LIBQMI_GLIB_QMI_ENUMS_H_ */