Add toolchain and mbtk source
Change-Id: Ie12546301367ea59240bf23d5e184ad7e36e40b3
diff --git a/mbtk/include/ql/ql_mcm_sms.h b/mbtk/include/ql/ql_mcm_sms.h
new file mode 100755
index 0000000..1055325
--- /dev/null
+++ b/mbtk/include/ql/ql_mcm_sms.h
@@ -0,0 +1,282 @@
+/**
+ *@file ql_sms.h
+ *@date 2017-05-02
+ *@author
+ *@brief
+ */
+
+#ifndef __QL_SMS_H__
+#define __QL_SMS_H__
+
+#include "mbtk_type.h"
+
+typedef uint32 sms_client_handle_type;
+
+/** Maximum length of an SMS. */
+#define QL_SMS_MAX_MT_MSG_LENGTH 1440
+
+/** Maximum string length. */
+#define QL_SMS_MAX_ADDR_LENGTH 252
+
+/** Maximum string length. */
+#define QL_SMS_MAX_SCA_TYPE_LENGTH 3
+
+
+typedef enum
+{
+ E_QL_SMS_FORMAT_GSM_7BIT = 0,
+ E_QL_SMS_FORMAT_BINARY_DATA = 1,
+ E_QL_SMS_FORMAT_UCS2 = 2,
+ //<2017/12/28-QCM9XOL00004C001-P01-Vicent.Gao, <[SMS] Segment 1==> CharSet to Alpha implementation.>
+ E_QL_SMS_FORMAT_IRA = 3,
+ //>2017/12/28-QCM9XOL00004C001-P01-Vicent.Gao
+
+}E_QL_SMS_FORMAT_T;
+
+typedef enum
+{
+ E_QL_SMS_TYPE_RX = 0, ///< SMS mobile terminated message.
+ E_QL_SMS_TYPE_TX = 1, ///< SMS mobile originated message.
+ E_QL_SMS_TYPE_BROADCAST_RX = 2 ///< SMS Cell Broadcast message.
+}E_QL_SMS_TYPE_T;
+
+typedef enum
+{
+ E_QL_SMS_STORAGE_TYPE_NONE = -1, /**< Message no need to store. */
+ E_QL_SMS_STORAGE_TYPE_UIM = 0, /**< Message store to UIM. */
+ E_QL_SMS_STORAGE_TYPE_NV = 1, /**< Message store to NV. */
+}E_QL_SMS_STORAGE_TYPE_T;
+
+typedef enum
+{
+ E_QL_SMS_MESSAGE_MODE_UNKNOWN = -1, /**< Message type CDMA */
+ E_QL_SMS_MESSAGE_MODE_CDMA = 0, /**< Message type CDMA */
+ E_QL_SMS_MESSAGE_MODE_GW = 1, /**< Message type GW. */
+}E_QL_SMS_MODE_TYPE_T;
+
+typedef struct
+ {
+ uint8_t total_segments; /**< The number of long short message*/
+ uint8_t seg_number; /**< Current number.*/
+ uint8_t reference_number; /**< reference_number.*/
+}ql_sms_user_data_head_t;
+
+typedef struct
+{
+ /* If sms is stored, it won't parse, you need read it by yourself */
+ E_QL_SMS_STORAGE_TYPE_T e_storage; ///specify where stored this msg
+
+ E_QL_SMS_FORMAT_T format;
+ E_QL_SMS_TYPE_T type;
+ char sms_number_addr[QL_SMS_MAX_ADDR_LENGTH]; ///Telephone number string
+ char sca_number_addr[QL_SMS_MAX_ADDR_LENGTH]; //.SMS Center Number
+ int sms_data_len;
+ char sms_data[QL_SMS_MAX_MT_MSG_LENGTH]; ///SMS content, data format depends on format
+ char timestamp[21]; ///Message time stamp (in text mode). string format: "yy/MM/dd,hh:mm:ss+/-TimeZone"
+ uint8_t user_data_head_valid; //indicate whether long sms. TRUE-long sms; FALSE-short message;
+ ql_sms_user_data_head_t user_data_head; //long sms user data head info.
+ E_QL_SMS_MODE_TYPE_T e_mode; ///specify where stored this msg cdma or gw area
+ uint32_t storage_index; ///storage index, -1 means not store
+} ql_sms_info_t;
+
+
+typedef struct
+{
+ E_QL_SMS_STORAGE_TYPE_T e_storage;
+ E_QL_SMS_MODE_TYPE_T e_mode;
+ uint32_t storage_idx;
+} ql_sms_storage_info_t;
+
+/* 0 = "REC UNREAD" */
+/* 1 = "REC READ" */
+/* 2 = "STO UNSENT" */
+/* 3 = "STO SENT" */
+typedef enum _ql_SMS_SIM_STATUS
+{
+ REC_UNREAD = 0,
+ REC_READ = 1,
+ STO_UNSENT = 2,
+ STO_SENT = 3
+}ql_SMS_SIM_STATUS;
+
+typedef enum
+{
+ E_QL_SMS_MESSAGE_CLASS_0 = 0x00, //display only
+ E_QL_SMS_MESSAGE_CLASS_1 = 0x01, //store in ME
+ E_QL_SMS_MESSAGE_CLASS_2 = 0x02, //store in SIM
+ E_QL_SMS_MESSAGE_CLASS_3 = 0x03, //
+ E_QL_SMS_MESSAGE_CLASS_NONE = 0x04,
+ E_QL_SMS_MESSAGE_CLASS_CDMA = 0x05,
+ E_QL_SMS_MESSAGE_CLASS_MAX = 0x06,
+}E_QL_SMS_MESSAGE_CLASS_TYPE_T;
+
+typedef enum
+{
+ E_QL_SMS_UNKNOWN = -1,
+ E_QL_SMS_DISCARD = 0x00, /* Incoming messages for this route are discarded by the WMS service without
+ notifying QMI_WMS clients */
+ E_QL_SMS_STORE_AND_NOTIFY = 0x01, /* Incoming messages for this route are stored to the specified device
+ memory, and new message notifications */
+ E_QL_SMS_TRANSFER_ONLY = 0x02, /* Incoming messages for this route are transferred to the client, and the
+ client is expected to send ACK to the network */
+ E_QL_SMS_TRANSFER_AND_ACK = 0x03, /* Incoming messages for this route are transferred to the client, and ACK is
+ sent to the network */
+}E_QL_SMS_RECEPTION_ACTION_TYPE_T;
+
+typedef struct
+{
+ E_QL_SMS_MESSAGE_CLASS_TYPE_T message_class;
+ E_QL_SMS_STORAGE_TYPE_T route_storage;
+ E_QL_SMS_RECEPTION_ACTION_TYPE_T receipt_action;
+}ql_sms_route_info_t; /* Type */
+
+typedef struct
+{
+ ql_sms_route_info_t route_list[E_QL_SMS_MESSAGE_CLASS_MAX];
+}ql_sms_route_info_list_t; /* Message */
+
+#define QL_WMS_MESSAGE_LENGTH_MAX 255
+
+typedef enum
+ {
+ E_QL_WMS_MESSAGE_FORMAT_CDMA = 0x00, //- 0x00 -- MESSAGE_FORMAT_CDMA -- CDMA \n
+ E_QL_WMS_MESSAGE_FORMAT_GW_PP = 0x06, //- 0x06 -- MESSAGE_FORMAT_GW_PP -- GW_PP
+}E_QL_WMS_MESSAGE_FORMAT_TYPE;
+
+
+typedef struct
+ {
+ E_QL_WMS_MESSAGE_FORMAT_TYPE format;
+ uint32_t raw_message_len; /**< Must be set to # of elements in raw_message */
+ uint8_t raw_message[QL_WMS_MESSAGE_LENGTH_MAX]; /**< Raw message data*/
+}ql_wms_send_raw_message_data_t;
+
+
+typedef enum
+{
+ E_QL_WMS_TL_CAUSE_CODE_ADDR_VACANT = 0x00,
+ E_QL_WMS_TL_CAUSE_CODE_ADDR_TRANSLATION_FAILURE = 0x01,
+ E_QL_WMS_TL_CAUSE_CODE_NETWORK_RESOURCE_SHORTAGE = 0x02,
+ E_QL_WMS_TL_CAUSE_CODE_NETWORK_FAILURE = 0x03,
+ E_QL_WMS_TL_CAUSE_CODE_INVALID_TELESERVICE_ID = 0x04,
+ E_QL_WMS_TL_CAUSE_CODE_NETWORK_OTHER = 0x05,
+ E_QL_WMS_TL_CAUSE_CODE_NO_PAGE_RESPONSE = 0x20,
+ E_QL_WMS_TL_CAUSE_CODE_DEST_BUSY = 0x21,
+ E_QL_WMS_TL_CAUSE_CODE_NO_ACK = 0x22,
+ E_QL_WMS_TL_CAUSE_CODE_DEST_RESOURCE_SHORTAGE = 0x23,
+ E_QL_WMS_TL_CAUSE_CODE_SMS_DELIVERY_POSTPONED = 0x24,
+ E_QL_WMS_TL_CAUSE_CODE_DEST_OUT_OF_SERV = 0x25,
+ E_QL_WMS_TL_CAUSE_CODE_DEST_NOT_AT_ADDR = 0x26,
+ E_QL_WMS_TL_CAUSE_CODE_DEST_OTHER = 0x27,
+ E_QL_WMS_TL_CAUSE_CODE_RADIO_IF_RESOURCE_SHORTAGE = 0x40,
+ E_QL_WMS_TL_CAUSE_CODE_RADIO_IF_INCOMPATABILITY = 0x41,
+ E_QL_WMS_TL_CAUSE_CODE_RADIO_IF_OTHER = 0x42,
+ E_QL_WMS_TL_CAUSE_CODE_ENCODING = 0x60,
+ E_QL_WMS_TL_CAUSE_CODE_SMS_ORIG_DENIED = 0x61,
+ E_QL_WMS_TL_CAUSE_CODE_SMS_TERM_DENIED = 0x62,
+ E_QL_WMS_TL_CAUSE_CODE_SUPP_SERV_NOT_SUPP = 0x63,
+ E_QL_WMS_TL_CAUSE_CODE_SMS_NOT_SUPP = 0x64,
+ E_QL_WMS_TL_CAUSE_CODE_MISSING_EXPECTED_PARAM = 0x65,
+ E_QL_WMS_TL_CAUSE_CODE_MISSING_MAND_PARAM = 0x66,
+ E_QL_WMS_TL_CAUSE_CODE_UNRECOGNIZED_PARAM_VAL = 0x67,
+ E_QL_WMS_TL_CAUSE_CODE_UNEXPECTED_PARAM_VAL = 0x68,
+ E_QL_WMS_TL_CAUSE_CODE_USER_DATA_SIZE_ERR = 0x69,
+ E_QL_WMS_TL_CAUSE_CODE_GENERAL_OTHER = 0x6A,
+}E_QL_WMS_TL_CAUSE_CODE_TYPE;
+
+typedef struct
+ {
+ uint16_t message_id; /* Message ID */
+ uint8_t cause_code_valid; /**< Must be set to true if cause_code is being passed */
+ E_QL_WMS_TL_CAUSE_CODE_TYPE cause_code;
+}ql_wms_raw_send_resp_t;
+
+typedef struct
+ {
+ char service_center_addr[QL_SMS_MAX_ADDR_LENGTH + 1]; /**< Address of the service center.*/
+ uint8_t service_center_addr_type_valid;
+ char service_center_addr_type[QL_SMS_MAX_SCA_TYPE_LENGTH + 1]; /**< 129 if the SMSC address does not start with a "+" characte;
+ 145 if the SMSC address starts with a "+" character*/
+}ql_sms_service_center_cfg_t;
+
+typedef ql_sms_info_t QL_SMS_Msg_t;
+typedef ql_sms_info_t* QL_SMS_MsgRef;
+
+/* Callback function registered to QL_SMS_AddRxMsgHandler, msgRef contains the detail msg infor */
+typedef void (*QL_SMS_RxMsgHandlerFunc_t)
+(
+ QL_SMS_MsgRef msgRef,
+ void* contextPtr
+);
+
+/* Init SMS module and return h_sms, this should be called before any othe ones */
+int QL_SMS_Client_Init(sms_client_handle_type *ph_sms);
+
+/* Add callback function, if any new msg arrived, it will notify app */
+int QL_SMS_AddRxMsgHandler(QL_SMS_RxMsgHandlerFunc_t handlerPtr, void* contextPtr);
+
+/* Send sms, you just need to fill format/src_addr/sms_data_len/sms_data,
+ if format is UCS2, the data should be Unicode-BE format.
+*/
+int QL_SMS_Send_Sms(sms_client_handle_type h_sms, ql_sms_info_t *pt_sms_info);
+
+/* DeInit SMS module and release resource, this should be called in the last one. */
+int QL_SMS_Client_Deinit(sms_client_handle_type h_sms);
+
+/* Delete the SMS specified in the pt_sms_storage */
+int QL_SMS_DeleteFromStorage(sms_client_handle_type h_sms, ql_sms_storage_info_t *pt_sms_storage);
+
+/* Set route list, normally, sms won't be stored, the route set to transfer_and_ack by default.
+ If you want to save to storage, you can specify it with this api.
+*/
+int QL_SMS_SetRouteList(sms_client_handle_type h_sms, ql_sms_route_info_list_t *pt_route_list);
+
+/* Send sms PDU.
+*/
+int QL_SMS_Send_SmsPdu( sms_client_handle_type h_sms,
+ ql_wms_send_raw_message_data_t *raw_message_data,
+ ql_wms_raw_send_resp_t *rawresp);
+
+int QL_SMS_Get_By_id(ql_sms_storage_info_t *pt_sms_storage);
+
+/* Get sms center address.
+*/
+int QL_SMS_GetSmsCenterAddress( sms_client_handle_type h_sms,
+ ql_sms_service_center_cfg_t *set_sca_cfg);
+
+/* Set sms center address.
+*/
+int QL_SMS_SetSmsCenterAddress( sms_client_handle_type h_sms,
+ ql_sms_service_center_cfg_t *get_sca_cfg);
+
+int QL_SMS_Get_Storage(sms_client_handle_type *ph_sms);
+
+int QL_SMS_Save_Sms(sms_client_handle_type h_sms, ql_sms_info_t *pt_sms_info);
+
+int QL_SMS_Delete_Sms(sms_client_handle_type h_sms, ql_sms_info_t *pt_sms_info);
+/*
+Usage 1 (register callback and wait for new sms arrive):
+1, QL_SMS_Client_Init
+2, QL_SMS_AddRxMsgHandler(pf_cb)
+3, wait for sms arrive, pf_cb will pass the detail sms info to app.
+4, QL_SMS_Client_Deinit
+
+
+Usage 2 (Send sms):
+1, QL_SMS_Client_Init
+2, QL_SMS_AddRxMsgHandler(pf_cb)
+3, QL_SMS_Send_Sms
+4, QL_SMS_Client_Deinit
+
+
+Usage 3 (store sms):
+1, QL_SMS_Client_Init
+2, QL_SMS_AddRxMsgHandler(pf_cb)
+3, QL_SMS_SetRouteList (Notice: class-0 not allowed to store, class-2 must be stored to UIM)
+4, pf_cb will be called when new sms arrived, and tell you where the sms stored
+5, you can call QL_SMS_DeleteFromStorage to delete specified sms, the location can be got from pf_cb.
+6, QL_SMS_Client_Deinit
+*/
+
+#endif // __QL_SMS_H__
+