diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-01-21 09:08:10 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-01-29 10:37:53 +0100 |
commit | bcd4b18d3d11ec916ebed1ceccb4337b6d7e9114 (patch) | |
tree | 076424643ecc230af5d1c0736029fe18d2aacd57 /data | |
parent | b6190674bd57fa760c601d760a29caf4d8373918 (diff) | |
download | external_libqmi-bcd4b18d3d11ec916ebed1ceccb4337b6d7e9114.zip external_libqmi-bcd4b18d3d11ec916ebed1ceccb4337b6d7e9114.tar.gz external_libqmi-bcd4b18d3d11ec916ebed1ceccb4337b6d7e9114.tar.bz2 |
dms: new 'SWI Get Current Firmware'
This is a vendor-specific message with id 0x5556.
E.g. for a Dell DW5570:
[/dev/cdc-wdm1] Successfully retrieved current firmware:
Model: MC8805
Boot version: SWI9X15C_01.08.16.02 r15159 carmd-fwbuild1 2013/05/16 17:41:33
AMSS version: SWI9X15C_01.08.16.02 r15159 carmd-fwbuild1 2013/05/16 17:41:33
SKU ID: 1101798
Package ID: 1101798_9902617_SWI9X15C_01.08.16.02_00_Dell_001.005_000
Carrier ID: 12
Config version: unknown
And for a MC7455:
[/dev/cdc-wdm1] Successfully retrieved current firmware:
Model: MC7455
Boot version: SWI9X30C_02.14.03.00
AMSS version: SWI9X30C_02.14.03.00
SKU ID: 1102476
Package ID: unknown
Carrier ID: 202
Config version: 000.008_000
Diffstat (limited to 'data')
-rw-r--r-- | data/qmi-service-dms.json | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/data/qmi-service-dms.json b/data/qmi-service-dms.json index f03b690..221eedc 100644 --- a/data/qmi-service-dms.json +++ b/data/qmi-service-dms.json @@ -1240,6 +1240,69 @@ "output" : [ { "common-ref" : "Operation Result" } ] }, // ********************************************************************************* + { "name" : "Swi Get Current Firmware", + "type" : "Message", + "service" : "DMS", + "id" : "0x5556", + "vendor" : "0x1199", + "version" : "1.0", + "output" : [ { "common-ref" : "Operation Result" }, + { "name" : "Model", + "id" : "0x10", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Boot version", + "id" : "0x11", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "AMSS version", + "id" : "0x12", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "SKU ID", + "id" : "0x13", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Package ID", + "id" : "0x14", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Carrier ID", + "id" : "0x15", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "PRI version", + "id" : "0x16", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Carrier", + "id" : "0x17", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] }, + { "name" : "Config version", + "id" : "0x18", + "mandatory" : "no", + "type" : "TLV", + "format" : "string", + "prerequisites" : [ { "common-ref" : "Success" } ] } ] }, + + // ********************************************************************************* { "name" : "Set FCC Authentication", "type" : "Message", "service" : "DMS", |