quectel: store model id in private data

Some Quectel models supports different features such as GNSS or
different URC strings. Add a field in the quectel data structure to be
used when adding support for said features.
This commit is contained in:
Martin Hundebøll 2019-07-16 21:10:50 +02:00 committed by Denis Kenzior
parent bac8a9cf8d
commit 5a255d6e62
1 changed files with 11 additions and 0 deletions

View File

@ -70,6 +70,13 @@ static const uint8_t gsm0710_terminate[] = {
0xf9, /* close flag */
};
enum quectel_model {
QUECTEL_UNKNOWN,
QUECTEL_UC15,
QUECTEL_M95,
QUECTEL_MC60,
};
struct quectel_data {
GAtChat *modem;
GAtChat *aux;
@ -77,6 +84,7 @@ struct quectel_data {
guint call_ready;
bool have_sim;
enum ofono_vendor vendor;
enum quectel_model model;
struct l_timeout *sms_ready_timer;
/* used by quectel uart driver */
@ -329,12 +337,15 @@ static void cgmm_cb(int ok, GAtResult *result, void *user_data)
if (strcmp(model, "UC15") == 0) {
DBG("%p model UC15", modem);
data->vendor = OFONO_VENDOR_QUECTEL;
data->model = QUECTEL_UC15;
} else if (strcmp(model, "Quectel_M95") == 0) {
DBG("%p model M95", modem);
data->vendor = OFONO_VENDOR_QUECTEL_SERIAL;
data->model = QUECTEL_M95;
} else {
ofono_warn("%p unknown model: '%s'", modem, model);
data->vendor = OFONO_VENDOR_QUECTEL;
data->model = QUECTEL_UNKNOWN;
}
g_at_chat_send(data->aux, "AT+CFUN?", cfun_prefix, cfun_query, modem,