aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmi-firmware-update
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2017-01-16 19:43:55 +0100
committerAleksander Morgado <aleksander@aleksander.es>2017-01-16 22:16:38 +0100
commit55033cbe402adb0c3496f6249cf0ebde02e21f78 (patch)
tree645a2a4df921ec19d18fb9199376eb956ddd4f5b /src/qmi-firmware-update
parenta7f5e8835d6936fb545f73cb67887ab902060a6d (diff)
downloadexternal_libqmi-55033cbe402adb0c3496f6249cf0ebde02e21f78.zip
external_libqmi-55033cbe402adb0c3496f6249cf0ebde02e21f78.tar.gz
external_libqmi-55033cbe402adb0c3496f6249cf0ebde02e21f78.tar.bz2
qmi-firmware-update: print firmware preference before/after update
Diffstat (limited to 'src/qmi-firmware-update')
-rw-r--r--src/qmi-firmware-update/qfu-reseter.c2
-rw-r--r--src/qmi-firmware-update/qfu-updater.c146
-rw-r--r--src/qmi-firmware-update/qfu-utils.c23
-rw-r--r--src/qmi-firmware-update/qfu-utils.h1
4 files changed, 114 insertions, 58 deletions
diff --git a/src/qmi-firmware-update/qfu-reseter.c b/src/qmi-firmware-update/qfu-reseter.c
index 3b81d7c..e0dc7bf 100644
--- a/src/qmi-firmware-update/qfu-reseter.c
+++ b/src/qmi-firmware-update/qfu-reseter.c
@@ -331,7 +331,7 @@ new_client_dms_ready (gpointer unused,
if (!qfu_utils_new_client_dms_finish (res,
&ctx->qmi_device,
&ctx->qmi_client,
- NULL, NULL, NULL,
+ NULL, NULL, NULL, NULL,
&error)) {
/* Jump to AT-based boothold */
g_debug ("[qfu-reseter] error: couldn't allocate QMI client: %s", error->message);
diff --git a/src/qmi-firmware-update/qfu-updater.c b/src/qmi-firmware-update/qfu-updater.c
index 1575e1d..398d697 100644
--- a/src/qmi-firmware-update/qfu-updater.c
+++ b/src/qmi-firmware-update/qfu-updater.c
@@ -107,12 +107,14 @@ typedef struct {
RunContextStep step;
/* Old/New info and capabilities */
- gchar *revision;
- gboolean supports_stored_image_management;
- gboolean supports_firmware_preference_management;
- gchar *new_revision;
- gboolean new_supports_stored_image_management;
- gboolean new_supports_firmware_preference_management;
+ gchar *revision;
+ gboolean supports_stored_image_management;
+ gboolean supports_firmware_preference_management;
+ QmiMessageDmsGetFirmwarePreferenceOutput *firmware_preference;
+ gchar *new_revision;
+ gboolean new_supports_stored_image_management;
+ gboolean new_supports_firmware_preference_management;
+ QmiMessageDmsGetFirmwarePreferenceOutput *new_firmware_preference;
/* List of pending QfuImages to download, and the current one being
* processed. */
@@ -130,9 +132,9 @@ typedef struct {
gboolean boothold_reset;
/* Information gathered from the firmware images themselves */
- gchar *firmware_version;
- gchar *config_version;
- gchar *carrier;
+ gchar *firmware_version;
+ gchar *config_version;
+ gchar *carrier;
/* Waiting for boot */
guint wait_for_boot_seconds_elapsed;
@@ -142,6 +144,10 @@ typedef struct {
static void
run_context_free (RunContext *ctx)
{
+ if (ctx->firmware_preference)
+ qmi_message_dms_get_firmware_preference_output_unref (ctx->firmware_preference);
+ if (ctx->new_firmware_preference)
+ qmi_message_dms_get_firmware_preference_output_unref (ctx->new_firmware_preference);
g_free (ctx->new_revision);
g_free (ctx->revision);
g_free (ctx->firmware_version);
@@ -181,6 +187,79 @@ qfu_updater_run_finish (QfuUpdater *self,
return g_task_propagate_boolean (G_TASK (res), error);
}
+static void
+print_firmware_preference (QmiMessageDmsGetFirmwarePreferenceOutput *firmware_preference,
+ const gchar *prefix)
+{
+ GArray *array;
+ guint i;
+
+ qmi_message_dms_get_firmware_preference_output_get_list (firmware_preference, &array, NULL);
+
+ if (array->len > 0) {
+ for (i = 0; i < array->len; i++) {
+ QmiMessageDmsGetFirmwarePreferenceOutputListImage *image;
+ gchar *unique_id_str;
+
+ image = &g_array_index (array, QmiMessageDmsGetFirmwarePreferenceOutputListImage, i);
+ unique_id_str = qfu_utils_get_firmware_image_unique_id_printable (image->unique_id);
+ g_print ("%simage '%s': unique id '%s', build id '%s'\n",
+ prefix,
+ qmi_dms_firmware_image_type_get_string (image->type),
+ unique_id_str,
+ image->build_id);
+ g_free (unique_id_str);
+ }
+ } else
+ g_debug ("%sno preference specified\n", prefix);
+}
+
+static void
+run_context_step_last (GTask *task)
+{
+ RunContext *ctx;
+
+ ctx = (RunContext *) g_task_get_task_data (task);
+
+ /* Dump output report */
+ g_print ("\n"
+ "------------------------------------------------------------------------\n");
+
+ g_print ("\n"
+ " original firmware revision was:\n"
+ " %s\n", ctx->revision ? ctx->revision : "unknown");
+ if (ctx->firmware_preference)
+ print_firmware_preference (ctx->firmware_preference, " ");
+
+ g_print ("\n"
+ " new firmware revision is:\n"
+ " %s\n", ctx->new_revision ? ctx->new_revision : "unknown");
+ if (ctx->new_firmware_preference)
+ print_firmware_preference (ctx->new_firmware_preference, " ");
+
+ if (ctx->new_supports_stored_image_management)
+ g_print ("\n"
+ " NOTE: this device supports stored image management\n"
+ " with qmicli operations:\n"
+ " --dms-list-stored-images\n"
+ " --dms-select-stored-image\n"
+ " --dms-delete-stored-image\n");
+
+ if (ctx->new_supports_firmware_preference_management)
+ g_print ("\n"
+ " NOTE: this device supports firmware preference management\n"
+ " with qmicli operations:\n"
+ " --dms-get-firmware-preference\n"
+ " --dms-set-firmware-preference\n");
+
+ g_print ("\n"
+ "------------------------------------------------------------------------\n"
+ "\n");
+
+ g_task_return_boolean (task, TRUE);
+ g_object_unref (task);
+}
+
static void run_context_step (GTask *task);
static gboolean
@@ -222,6 +301,7 @@ new_client_dms_after_ready (gpointer unused,
&ctx->new_revision,
&ctx->new_supports_stored_image_management,
&ctx->new_supports_firmware_preference_management,
+ &ctx->new_firmware_preference,
&error)) {
if (ctx->wait_for_boot_retries == WAIT_FOR_BOOT_RETRIES) {
g_warning ("couldn't create DMS client after upgrade: %s", error->message);
@@ -341,13 +421,11 @@ wait_for_cdc_wdm_ready (QfuDeviceSelection *device_selection,
}
g_print ("\n"
- "--------------------------------------------------\n"
- " Note:\n"
- " In order to validate which is the firmware running in the module,\n"
- " the program will wait for a complete boot.\n"
- "\n"
- " This process may take some time and several retries.\n"
- "--------------------------------------------------\n"
+ "------------------------------------------------------------------------\n"
+ " NOTE: in order to validate which is the firmware running in the\n"
+ " module, the program will wait for a complete boot; this process\n"
+ " may take some time and several retries.\n"
+ "------------------------------------------------------------------------\n"
"\n");
/* Go on */
@@ -1033,6 +1111,7 @@ new_client_dms_ready (gpointer unused,
&ctx->revision,
&ctx->supports_stored_image_management,
&ctx->supports_firmware_preference_management,
+ &ctx->firmware_preference,
&error)) {
g_task_return_error (task, error);
g_object_unref (task);
@@ -1105,40 +1184,7 @@ run_context_step (GTask *task)
}
g_debug ("[qfu-updater] operation finished");
-
- /* Dump output report */
- g_print ("\n"
- "--------------------------------------------------\n");
-
- g_print ("\n"
- " original firmware revision was:\n"
- " %s\n", ctx->revision ? ctx->revision : "unknown");
-
- g_print ("\n"
- " new firmware revision is:\n"
- " %s\n", ctx->new_revision ? ctx->new_revision : "unknown");
-
- if (ctx->new_supports_stored_image_management)
- g_print ("\n"
- " NOTE: this device supports stored image management\n"
- " with qmicli operations:\n"
- " --dms-list-stored-images\n"
- " --dms-select-stored-image\n"
- " --dms-delete-stored-image\n");
-
- if (ctx->new_supports_firmware_preference_management)
- g_print ("\n"
- " NOTE: this device supports firmware preference management\n"
- " with qmicli operations:\n"
- " --dms-get-firmware-preference\n"
- " --dms-set-firmware-preference\n");
-
- g_print ("\n"
- "--------------------------------------------------\n"
- "\n");
-
- g_task_return_boolean (task, TRUE);
- g_object_unref (task);
+ run_context_step_last (task);
}
static gint
diff --git a/src/qmi-firmware-update/qfu-utils.c b/src/qmi-firmware-update/qfu-utils.c
index 8a55f13..eb4a65f 100644
--- a/src/qmi-firmware-update/qfu-utils.c
+++ b/src/qmi-firmware-update/qfu-utils.c
@@ -223,18 +223,21 @@ typedef struct {
gint qmi_client_retries;
QmiClientDms *qmi_client;
- gboolean load_capabilities;
- gchar *revision;
- gboolean revision_done;
- gboolean supports_stored_image_management;
- gboolean supports_stored_image_management_done;
- gboolean supports_firmware_preference_management;
- gboolean supports_firmware_preference_management_done;
+ gboolean load_capabilities;
+ gchar *revision;
+ gboolean revision_done;
+ gboolean supports_stored_image_management;
+ gboolean supports_stored_image_management_done;
+ gboolean supports_firmware_preference_management;
+ QmiMessageDmsGetFirmwarePreferenceOutput *firmware_preference;
+ gboolean supports_firmware_preference_management_done;
} NewClientDmsContext;
static void
new_client_dms_context_free (NewClientDmsContext *ctx)
{
+ if (ctx->firmware_preference)
+ qmi_message_dms_get_firmware_preference_output_unref (ctx->firmware_preference);
if (ctx->qmi_client)
g_object_unref (ctx->qmi_client);
if (ctx->qmi_device)
@@ -250,6 +253,7 @@ qfu_utils_new_client_dms_finish (GAsyncResult *res,
gchar **revision,
gboolean *supports_stored_image_management,
gboolean *supports_firmware_preference_management,
+ QmiMessageDmsGetFirmwarePreferenceOutput **firmware_preference,
GError **error)
{
NewClientDmsContext *ctx;
@@ -268,6 +272,8 @@ qfu_utils_new_client_dms_finish (GAsyncResult *res,
*supports_stored_image_management = ctx->supports_stored_image_management;
if (supports_firmware_preference_management)
*supports_firmware_preference_management = ctx->supports_firmware_preference_management;
+ if (firmware_preference)
+ *firmware_preference = (ctx->firmware_preference ? qmi_message_dms_get_firmware_preference_output_ref (ctx->firmware_preference) : NULL);
return TRUE;
}
@@ -355,6 +361,9 @@ dms_get_firmware_preference_ready (QmiClientDms *client,
g_debug ("[qfu,utils] current firmware preference loaded:");
+ /* Store */
+ ctx->firmware_preference = qmi_message_dms_get_firmware_preference_output_ref (output);
+
qmi_message_dms_get_firmware_preference_output_get_list (output, &array, NULL);
if (array->len > 0) {
diff --git a/src/qmi-firmware-update/qfu-utils.h b/src/qmi-firmware-update/qfu-utils.h
index e3e5d0c..63baca5 100644
--- a/src/qmi-firmware-update/qfu-utils.h
+++ b/src/qmi-firmware-update/qfu-utils.h
@@ -58,6 +58,7 @@ gboolean qfu_utils_new_client_dms_finish (GAsyncResult *res,
gchar **revision,
gboolean *supports_stored_image_management,
gboolean *supports_firmware_preference_management,
+ QmiMessageDmsGetFirmwarePreferenceOutput **firmware_preference,
GError **error);
void qfu_utils_power_cycle (QmiClientDms *qmi_client,