summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorSom_SP <somashekhar.puttagangaiah@intel.com>2021-09-21 22:47:22 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-09-21 23:10:31 +0200
commitd21bcb6c8ccd86a8fb966e9d1bb0172da104ba02 (patch)
tree7b21b15248276aefc035e45dbaa6825d0b2e305f /data
parent67f895aa9ec6541b56d6696c00c031bb2fe05567 (diff)
ms-basic-connect-v2: implement 'Packet Service'
This command is an extension for the existing MBIM_CID_PACKET_SERVICE defined in the MBIM specification revision 1.0. This extension adds a new member called FrequencyRange for the response structure and renamed the HighestAvailableDataClass member to CurrentDataClass to clarify its purpose.
Diffstat (limited to 'data')
-rw-r--r--data/mbim-service-ms-basic-connect-v2.json42
1 files changed, 41 insertions, 1 deletions
diff --git a/data/mbim-service-ms-basic-connect-v2.json b/data/mbim-service-ms-basic-connect-v2.json
index 8d6d130..022e947 100644
--- a/data/mbim-service-ms-basic-connect-v2.json
+++ b/data/mbim-service-ms-basic-connect-v2.json
@@ -72,5 +72,45 @@
"public-format" : "MbimRegistrationFlag" },
{ "name" : "PreferredDataClasses",
"format" : "guint32",
- "public-format" : "MbimDataClass" } ] }
+ "public-format" : "MbimDataClass" } ] },
+
+ // *********************************************************************************
+ { "name" : "Packet Service",
+ "type" : "Command",
+ "since" : "1.28",
+ "set" : [ { "name" : "PacketServiceAction",
+ "format" : "guint32",
+ "public-format" : "MbimPacketServiceAction" } ],
+ "query" : [],
+ "response" : [ { "name" : "NwError",
+ "format" : "guint32" },
+ { "name" : "PacketServiceState",
+ "format" : "guint32",
+ "public-format" : "MbimPacketServiceState" },
+ { "name" : "CurrentDataClass",
+ "format" : "guint32",
+ "public-format" : "MbimDataClass" },
+ { "name" : "UplinkSpeed",
+ "format" : "guint64" },
+ { "name" : "DownlinkSpeed",
+ "format" : "guint64" },
+ { "name" : "FrequencyRange",
+ "format" : "guint32",
+ "public-format" : "MbimFrequencyRange" } ],
+ "notification" : [ { "name" : "NwError",
+ "format" : "guint32" },
+ { "name" : "PacketServiceState",
+ "format" : "guint32",
+ "public-format" : "MbimPacketServiceState" },
+ { "name" : "CurrentDataClass",
+ "format" : "guint32",
+ "public-format" : "MbimDataClass" },
+ { "name" : "UplinkSpeed",
+ "format" : "guint64" },
+ { "name" : "DownlinkSpeed",
+ "format" : "guint64" },
+ { "name" : "FrequencyRange",
+ "format" : "guint32",
+ "public-format" : "MbimFrequencyRange" } ] }
+
]