hl7800.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /** @file
  2. * @brief HL7800 modem public API header file.
  3. *
  4. * Allows an application to control the HL7800 modem.
  5. *
  6. * Copyright (c) 2020 Laird Connectivity
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_MODEM_HL7800_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_MODEM_HL7800_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <zephyr/types.h>
  16. #ifdef CONFIG_NEWLIB_LIBC
  17. #include <time.h>
  18. #endif
  19. /* The size includes the NUL character, the strlen doesn't */
  20. #define MDM_HL7800_REVISION_MAX_SIZE 29
  21. #define MDM_HL7800_REVISION_MAX_STRLEN (MDM_HL7800_REVISION_MAX_SIZE - 1)
  22. #define MDM_HL7800_IMEI_SIZE 16
  23. #define MDM_HL7800_IMEI_STRLEN (MDM_HL7800_IMEI_SIZE - 1)
  24. #define MDM_HL7800_ICCID_SIZE 21
  25. #define MDM_HL7800_ICCID_STRLEN (MDM_HL7800_ICCID_SIZE - 1)
  26. #define MDM_HL7800_SERIAL_NUMBER_SIZE 15
  27. #define MDM_HL7800_SERIAL_NUMBER_STRLEN (MDM_HL7800_SERIAL_NUMBER_SIZE - 1)
  28. #define MDM_HL7800_APN_MAX_SIZE 64
  29. #define MDM_HL7800_APN_USERNAME_MAX_SIZE 65
  30. #define MDM_HL7800_APN_PASSWORD_MAX_SIZE 65
  31. #define MDM_HL7800_APN_MAX_STRLEN (MDM_HL7800_APN_MAX_SIZE - 1)
  32. #define MDM_HL7800_APN_USERNAME_MAX_STRLEN \
  33. (MDM_HL7800_APN_USERNAME_MAX_SIZE - 1)
  34. #define MDM_HL7800_APN_PASSWORD_MAX_STRLEN \
  35. (MDM_HL7800_APN_PASSWORD_MAX_SIZE - 1)
  36. #define MDM_HL7800_APN_CMD_MAX_SIZE \
  37. (32 + MDM_HL7800_APN_USERNAME_MAX_STRLEN + \
  38. MDM_HL7800_APN_PASSWORD_MAX_STRLEN)
  39. #define MDM_HL7800_APN_CMD_MAX_STRLEN (MDM_HL7800_APN_CMD_MAX_SIZE - 1)
  40. struct mdm_hl7800_apn {
  41. char value[MDM_HL7800_APN_MAX_SIZE];
  42. char username[MDM_HL7800_APN_USERNAME_MAX_SIZE];
  43. char password[MDM_HL7800_APN_PASSWORD_MAX_SIZE];
  44. };
  45. #define MDM_HL7800_LTE_BAND_STR_SIZE 21
  46. #define MDM_HL7800_LTE_BAND_STRLEN (MDM_HL7800_LTE_BAND_STR_SIZE - 1)
  47. #define MDM_HL7800_OPERATOR_INDEX_SIZE 3
  48. #define MDM_HL7800_OPERATOR_INDEX_STRLEN (MDM_HL7800_OPERATOR_INDEX_SIZE - 1)
  49. #define MDM_HL7800_IMSI_MIN_STR_SIZE 15
  50. #define MDM_HL7800_IMSI_MAX_STR_SIZE 16
  51. #define MDM_HL7800_IMSI_MAX_STRLEN (MDM_HL7800_IMSI_MAX_STR_SIZE - 1)
  52. #define MDM_HL7800_MODEM_FUNCTIONALITY_SIZE 2
  53. #define MDM_HL7800_MODEM_FUNCTIONALITY_STRLEN \
  54. (MDM_HL7800_MODEM_FUNCTIONALITY_SIZE - 1)
  55. #define MDM_HL7800_MAX_GPS_STR_SIZE 33
  56. #define MDM_HL7800_MAX_POLTE_USER_ID_SIZE 16
  57. #define MDM_HL7800_MAX_POLTE_PASSWORD_SIZE 16
  58. #define MDM_HL7800_MAX_POLTE_LOCATION_STR_SIZE 33
  59. /* Assign the server error code (location response) to a value
  60. * that isn't used by locate response so that a single status
  61. * callback can be used.
  62. */
  63. #define MDM_HL7800_POLTE_SERVER_ERROR 10
  64. #define MDM_HL7800_SET_POLTE_USER_AND_PASSWORD_FMT_STR "AT%%POLTECMD=\"SERVERAUTH\",\"%s\",\"%s\""
  65. struct mdm_hl7800_site_survey {
  66. uint32_t earfcn; /* EUTRA Absolute Radio Frequency Channel Number */
  67. uint32_t cell_id;
  68. int rsrp;
  69. int rsrq;
  70. };
  71. enum mdm_hl7800_radio_mode { MDM_RAT_CAT_M1 = 0, MDM_RAT_CAT_NB1 };
  72. enum mdm_hl7800_event {
  73. HL7800_EVENT_RESERVED = 0,
  74. HL7800_EVENT_NETWORK_STATE_CHANGE,
  75. HL7800_EVENT_APN_UPDATE,
  76. HL7800_EVENT_RSSI,
  77. HL7800_EVENT_SINR,
  78. HL7800_EVENT_STARTUP_STATE_CHANGE,
  79. HL7800_EVENT_SLEEP_STATE_CHANGE,
  80. HL7800_EVENT_RAT,
  81. HL7800_EVENT_BANDS,
  82. HL7800_EVENT_ACTIVE_BANDS,
  83. HL7800_EVENT_FOTA_STATE,
  84. HL7800_EVENT_FOTA_COUNT,
  85. HL7800_EVENT_REVISION,
  86. HL7800_EVENT_GPS,
  87. HL7800_EVENT_GPS_POSITION_STATUS,
  88. HL7800_EVENT_POLTE_REGISTRATION,
  89. HL7800_EVENT_POLTE_LOCATE_STATUS,
  90. HL7800_EVENT_POLTE,
  91. HL7800_EVENT_SITE_SURVEY,
  92. };
  93. enum mdm_hl7800_startup_state {
  94. HL7800_STARTUP_STATE_READY = 0,
  95. HL7800_STARTUP_STATE_WAITING_FOR_ACCESS_CODE,
  96. HL7800_STARTUP_STATE_SIM_NOT_PRESENT,
  97. HL7800_STARTUP_STATE_SIMLOCK,
  98. HL7800_STARTUP_STATE_UNRECOVERABLE_ERROR,
  99. HL7800_STARTUP_STATE_UNKNOWN,
  100. HL7800_STARTUP_STATE_INACTIVE_SIM
  101. };
  102. enum mdm_hl7800_network_state {
  103. HL7800_NOT_REGISTERED = 0,
  104. HL7800_HOME_NETWORK,
  105. HL7800_SEARCHING,
  106. HL7800_REGISTRATION_DENIED,
  107. HL7800_OUT_OF_COVERAGE,
  108. HL7800_ROAMING,
  109. HL7800_EMERGENCY = 8,
  110. /* Laird defined states */
  111. HL7800_UNABLE_TO_CONFIGURE = 0xf0
  112. };
  113. enum mdm_hl7800_sleep_state {
  114. HL7800_SLEEP_STATE_UNINITIALIZED = 0,
  115. HL7800_SLEEP_STATE_ASLEEP,
  116. HL7800_SLEEP_STATE_AWAKE
  117. };
  118. enum mdm_hl7800_fota_state {
  119. HL7800_FOTA_IDLE,
  120. HL7800_FOTA_START,
  121. HL7800_FOTA_WIP,
  122. HL7800_FOTA_PAD,
  123. HL7800_FOTA_SEND_EOT,
  124. HL7800_FOTA_FILE_ERROR,
  125. HL7800_FOTA_INSTALL,
  126. HL7800_FOTA_REBOOT_AND_RECONFIGURE,
  127. HL7800_FOTA_COMPLETE,
  128. };
  129. enum mdm_hl7800_functionality {
  130. HL7800_FUNCTIONALITY_MINIMUM = 0,
  131. HL7800_FUNCTIONALITY_FULL = 1,
  132. HL7800_FUNCTIONALITY_AIRPLANE = 4
  133. };
  134. /* The modem reports state values as an enumeration and a string.
  135. * GPS values are reported with a type of value and string.
  136. */
  137. struct mdm_hl7800_compound_event {
  138. uint8_t code;
  139. char *string;
  140. };
  141. enum mdm_hl7800_gnss_event {
  142. HL7800_GNSS_EVENT_INVALID = -1,
  143. HL7800_GNSS_EVENT_INIT,
  144. HL7800_GNSS_EVENT_START,
  145. HL7800_GNSS_EVENT_STOP,
  146. HL7800_GNSS_EVENT_POSITION,
  147. };
  148. enum mdm_hl7800_gnss_status {
  149. HL7800_GNSS_STATUS_INVALID = -1,
  150. HL7800_GNSS_STATUS_FAILURE,
  151. HL7800_GNSS_STATUS_SUCCESS,
  152. };
  153. enum mdm_hl7800_gnss_position_event {
  154. HL7800_GNSS_POSITION_EVENT_INVALID = -1,
  155. HL7800_GNSS_POSITION_EVENT_LOST_OR_NOT_AVAILABLE_YET,
  156. HL7800_GNSS_POSITION_EVENT_PREDICTION_AVAILABLE,
  157. HL7800_GNSS_POSITION_EVENT_2D_AVAILABLE,
  158. HL7800_GNSS_POSITION_EVENT_3D_AVAILABLE,
  159. HL7800_GNSS_POSITION_EVENT_FIXED_TO_INVALID,
  160. };
  161. enum mdm_hl7800_gps_string_types {
  162. HL7800_GPS_STR_LATITUDE,
  163. HL7800_GPS_STR_LONGITUDE,
  164. HL7800_GPS_STR_GPS_TIME,
  165. HL7800_GPS_STR_FIX_TYPE,
  166. HL7800_GPS_STR_HEPE,
  167. HL7800_GPS_STR_ALTITUDE,
  168. HL7800_GPS_STR_ALT_UNC,
  169. HL7800_GPS_STR_DIRECTION,
  170. HL7800_GPS_STR_HOR_SPEED,
  171. HL7800_GPS_STR_VER_SPEED
  172. };
  173. /* status: negative errno, 0 on success
  174. * user and password aren't valid if status is non-zero.
  175. */
  176. struct mdm_hl7800_polte_registration_event_data {
  177. int status;
  178. char *user;
  179. char *password;
  180. };
  181. /* status: negative errno, 0 on success, non-zero error code
  182. * Data is not valid if status is non-zero.
  183. */
  184. struct mdm_hl7800_polte_location_data {
  185. uint32_t timestamp;
  186. int status;
  187. char latitude[MDM_HL7800_MAX_POLTE_LOCATION_STR_SIZE];
  188. char longitude[MDM_HL7800_MAX_POLTE_LOCATION_STR_SIZE];
  189. char confidence_in_meters[MDM_HL7800_MAX_POLTE_LOCATION_STR_SIZE];
  190. };
  191. /**
  192. * event - The type of event
  193. * event_data - Pointer to event specific data structure
  194. * HL7800_EVENT_NETWORK_STATE_CHANGE - compound event
  195. * HL7800_EVENT_APN_UPDATE - struct mdm_hl7800_apn
  196. * HL7800_EVENT_RSSI - int
  197. * HL7800_EVENT_SINR - int
  198. * HL7800_EVENT_STARTUP_STATE_CHANGE - compound event
  199. * HL7800_EVENT_SLEEP_STATE_CHANGE - compound event
  200. * HL7800_EVENT_RAT - int
  201. * HL7800_EVENT_BANDS - string
  202. * HL7800_EVENT_ACTIVE_BANDS - string
  203. * HL7800_EVENT_FOTA_STATE - compound event
  204. * HL7800_EVENT_FOTA_COUNT - uint32_t
  205. * HL7800_EVENT_REVISION - string
  206. * HL7800_EVENT_GPS - compound event
  207. * HL7800_EVENT_GPS_POSITION_STATUS int
  208. * HL7800_EVENT_POLTE_REGISTRATION mdm_hl7800_polte_registration_event_data
  209. * HL7800_EVENT_POLTE mdm_hl7800_polte_location_data
  210. * HL7800_EVENT_POLTE_LOCATE_STATUS int
  211. * HL7800_EVENT_SITE_SURVEY mdm_hl7800_site_survey
  212. */
  213. typedef void (*mdm_hl7800_event_callback_t)(enum mdm_hl7800_event event,
  214. void *event_data);
  215. /**
  216. * @brief Power off the HL7800
  217. *
  218. * @return int32_t 0 for success
  219. */
  220. int32_t mdm_hl7800_power_off(void);
  221. /**
  222. * @brief Reset the HL7800 (and allow it to reconfigure).
  223. *
  224. * @return int32_t 0 for success
  225. */
  226. int32_t mdm_hl7800_reset(void);
  227. /**
  228. * @brief Control the wake signals to the HL7800.
  229. * @note this API should only be used for debug purposes.
  230. *
  231. * @param awake True to keep the HL7800 awake, False to allow sleep
  232. */
  233. void mdm_hl7800_wakeup(bool awake);
  234. /**
  235. * @brief Send an AT command to the HL7800.
  236. * @note this API should only be used for debug purposes.
  237. *
  238. * @param data AT command string
  239. * @return int32_t 0 for success
  240. */
  241. int32_t mdm_hl7800_send_at_cmd(const uint8_t *data);
  242. /**
  243. * @brief Get the signal quality of the HL7800
  244. *
  245. * @param rsrp Reference Signals Received Power (dBm)
  246. * Range = -140 dBm to -44 dBm
  247. * @param sinr Signal to Interference plus Noise Ratio (dBm)
  248. * Range = -128 dBm to 40dBm
  249. */
  250. void mdm_hl7800_get_signal_quality(int *rsrp, int *sinr);
  251. /**
  252. * @brief Get the SIM card ICCID
  253. *
  254. */
  255. char *mdm_hl7800_get_iccid(void);
  256. /**
  257. * @brief Get the HL7800 serial number
  258. *
  259. */
  260. char *mdm_hl7800_get_sn(void);
  261. /**
  262. * @brief Get the HL7800 IMEI
  263. *
  264. */
  265. char *mdm_hl7800_get_imei(void);
  266. /**
  267. * @brief Get the HL7800 firmware version
  268. *
  269. */
  270. char *mdm_hl7800_get_fw_version(void);
  271. /**
  272. * @brief Get the IMSI
  273. *
  274. */
  275. char *mdm_hl7800_get_imsi(void);
  276. /**
  277. * @brief Update the Access Point Name in the modem.
  278. *
  279. * @retval 0 on success, negative on failure.
  280. */
  281. int32_t mdm_hl7800_update_apn(char *access_point_name);
  282. /**
  283. * @brief Update the Radio Access Technology (mode).
  284. *
  285. * @retval 0 on success, negative on failure.
  286. */
  287. int32_t mdm_hl7800_update_rat(enum mdm_hl7800_radio_mode value);
  288. /**
  289. * @retval true if RAT value is valid
  290. */
  291. bool mdm_hl7800_valid_rat(uint8_t value);
  292. /**
  293. * @brief Register a function that is called when a modem event occurs.
  294. *
  295. * @param cb event callback
  296. */
  297. void mdm_hl7800_register_event_callback(mdm_hl7800_event_callback_t cb);
  298. /**
  299. * @brief Force modem module to generate status events.
  300. *
  301. * @note This can be used to get the current state when a module initializes
  302. * later than the modem.
  303. */
  304. void mdm_hl7800_generate_status_events(void);
  305. #ifdef CONFIG_NEWLIB_LIBC
  306. /**
  307. * @brief Get the local time from the modem's real time clock.
  308. *
  309. * @param tm time structure
  310. * @param offset The amount the local time is offset from GMT/UTC in seconds.
  311. *
  312. * @param 0 if successful
  313. */
  314. int32_t mdm_hl7800_get_local_time(struct tm *tm, int32_t *offset);
  315. #endif
  316. #ifdef CONFIG_MODEM_HL7800_FW_UPDATE
  317. /**
  318. * @brief Update the HL7800 via XMODEM protocol. During the firmware update
  319. * no other modem fuctions will be available.
  320. *
  321. * @param file_path Absolute path of the update file
  322. *
  323. * @param 0 if successful
  324. */
  325. int32_t mdm_hl7800_update_fw(char *file_path);
  326. #endif
  327. /**
  328. * @brief Read the operator index from the modem.
  329. *
  330. * @retval negative error code, 0 on success
  331. */
  332. int32_t mdm_hl7800_get_operator_index(void);
  333. /**
  334. * @brief Get modem functionality
  335. *
  336. * @return int32_t negative errno on failure, else mdm_hl7800_functionality
  337. */
  338. int32_t mdm_hl7800_get_functionality(void);
  339. /**
  340. * @brief Set airplane, normal, or reduced functionality mode.
  341. * Airplane mode persists when reset.
  342. *
  343. * @note Boot functionality is also controlled by Kconfig
  344. * MODEM_HL7800_BOOT_IN_AIRPLANE_MODE.
  345. *
  346. * @param mode
  347. * @return int32_t negative errno, 0 on success
  348. */
  349. int32_t mdm_hl7800_set_functionality(enum mdm_hl7800_functionality mode);
  350. /**
  351. * @brief When rate is non-zero: Put modem into Airplane mode. Enable GPS and
  352. * generate HL7800_EVENT_GPS events.
  353. * When zero: Disable GPS and put modem into normal mode.
  354. *
  355. * @note Airplane mode isn't cleared when the modem is reset.
  356. *
  357. * @param rate in seconds to query location
  358. * @return int32_t negative errno, 0 on success
  359. */
  360. int32_t mdm_hl7800_set_gps_rate(uint32_t rate);
  361. /**
  362. * @brief Register modem/SIM with polte.io
  363. *
  364. * @note It takes around 30 seconds for HL7800_EVENT_POLTE_REGISTRATION to
  365. * be generated. If the applications saves the user and password
  366. * information into non-volatile memory, then this command
  367. * only needs to be run once.
  368. *
  369. * @return int32_t negative errno, 0 on success
  370. */
  371. int32_t mdm_hl7800_polte_register(void);
  372. /**
  373. * @brief Enable PoLTE.
  374. *
  375. * @param user from polte.io or register command callback
  376. * @param password from polte.io register command callback
  377. * @return int32_t negative errno, 0 on success
  378. */
  379. int32_t mdm_hl7800_polte_enable(char *user, char *password);
  380. /**
  381. * @brief Locate device using PoLTE.
  382. *
  383. * @note The first HL7800_EVENT_POLTE_LOCATE_STATUS event indicates
  384. * the status of issuing the locate command. The second event
  385. * requires 20-120 seconds to be generated and it contains the
  386. * location information (or indicates server failure).
  387. *
  388. * @return int32_t negative errno, 0 on success
  389. */
  390. int32_t mdm_hl7800_polte_locate(void);
  391. /**
  392. * @brief Perform a site survey. This command may return different values
  393. * each time it is run (depending on what is in range).
  394. *
  395. * HL7800_EVENT_SITE_SURVEY is generated for each response received from modem.
  396. *
  397. * @retval negative error code, 0 on success
  398. */
  399. int32_t mdm_hl7800_perform_site_survey(void);
  400. #ifdef __cplusplus
  401. }
  402. #endif
  403. #endif /* ZEPHYR_INCLUDE_DRIVERS_MODEM_HL7800_H_ */