summaryrefslogtreecommitdiff
path: root/commands-dms.c
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2016-08-21 01:21:56 +0200
committerBjørn Mork <bjorn@mork.no>2016-08-21 01:35:37 +0200
commitd435f1285aa2a983e0a5451dd161cfdcbb4e6499 (patch)
treeddcee80c7710cb293c21d9823274cd6324970896 /commands-dms.c
parent6128d9912af8048d9e303ed21c2f73dd3a85cde0 (diff)
dms: add "Set FCC Authentication" requestnbd+debian
Many newer modems from Sierra Wireless includes a feature known as "FCC Authentication". The basic idea is that the radio is kept in low power mode until the driver has told the firmware that it is OK to switch it on. This is done with a vendor specific QMI DMS request with no input or output TLVs. The "Set FCC Authentication" request is required for any modem with the feature enabled. Which includes most newer Lenovo branded Sierra Wireless modems based on Qualcomm chipsets, like for example the EM7455. Sample session with an EM7455 in MBIM mode and the FCC Authentication feature enabled: $ umbim -d /dev/cdc-wdm0 -n radio hwradiostate: on swradiostate: off $ uqmi -m -d /dev/cdc-wdm0 --fcc-auth $ umbim -d /dev/cdc-wdm0 -t 2 radio hwradiostate: on swradiostate: on Signed-off-by: Bjørn Mork <bjorn@mork.no>
Diffstat (limited to 'commands-dms.c')
-rw-r--r--commands-dms.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/commands-dms.c b/commands-dms.c
index dad2b86..8cc7bc5 100644
--- a/commands-dms.c
+++ b/commands-dms.c
@@ -408,3 +408,11 @@ cmd_dms_set_operating_mode_prepare(struct qmi_dev *qmi, struct qmi_request *req,
return uqmi_add_error("Invalid argument");
}
+
+#define cmd_dms_set_fcc_authentication_cb no_cb
+static enum qmi_cmd_result
+cmd_dms_set_fcc_authentication_prepare(struct qmi_dev *qmi, struct qmi_request *req, struct qmi_msg *msg, char *arg)
+{
+ qmi_set_dms_set_fcc_authentication_request(msg);
+ return QMI_CMD_REQUEST;
+}