summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Mork <bjorn@mork.no>2017-12-18 13:04:10 +0100
committerBjørn Mork <bjorn@mork.no>2017-12-18 13:05:25 +0100
commitb457b5e6ed44a65c02263119f3447dd19c2f34be (patch)
tree20bc287b2846f03d746032170233aeabdaafe01c
parent9702dfe99e88b3fcebd4a1f4d0a4467ea62ae29a (diff)
support Quanta and Blackberry modes
Quanta mode was introduced in usb_modeswitch 1.2.6 and Blackberry mode in usb_modeswitch 1.2.7 Signed-off-by: Bjørn Mork <bjorn@mork.no>
-rwxr-xr-xconvert-modeswitch.pl2
-rw-r--r--switch.c21
2 files changed, 23 insertions, 0 deletions
diff --git a/convert-modeswitch.pl b/convert-modeswitch.pl
index 71c2b79..48d0fd4 100755
--- a/convert-modeswitch.pl
+++ b/convert-modeswitch.pl
@@ -62,6 +62,8 @@ my %options = (
MBIM => $mode_option,
HuaweiMode => $mode_option,
HuaweiNewMode => $mode_option,
+ QuantaMode => $mode_option,
+ BlackberryMode => $mode_option,
OptionMode => $mode_option,
SierraMode => $mode_option,
SonyMode => $mode_option,
diff --git a/switch.c b/switch.c
index b3f62fa..fe25e80 100644
--- a/switch.c
+++ b/switch.c
@@ -375,6 +375,23 @@ static void handle_mbim(struct usbdev_data *data, struct blob_attr **tb)
}
}
+static void handle_quanta(struct usbdev_data *data, struct blob_attr **tb)
+{
+ int type = LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_IN;
+
+ detach_driver(data);
+ send_control_packet(data, type, 0xff, 0, 0, 8);
+}
+
+static void handle_blackberry(struct usbdev_data *data, struct blob_attr **tb)
+{
+ int type = LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_RECIPIENT_DEVICE | LIBUSB_ENDPOINT_IN;
+
+ detach_driver(data);
+ send_control_packet(data, type, 0xb1, 0x0000, 0, 8);
+ send_control_packet(data, type, 0xa9, 0x000e, 0, 8);
+}
+
static void set_alt_setting(struct usbdev_data *data, int setting)
{
if (libusb_claim_interface(data->devh, data->interface))
@@ -399,6 +416,8 @@ enum {
MODE_CISCO,
MODE_MBIM,
MODE_OPTION,
+ MODE_QUANTA,
+ MODE_BLACKBERRY,
__MODE_MAX
};
@@ -420,6 +439,8 @@ static const struct {
[MODE_CISCO] = { "Cisco", handle_cisco },
[MODE_MBIM] = { "MBIM", handle_mbim },
[MODE_OPTION] = { "Option", handle_option },
+ [MODE_QUANTA] = { "Quanta", handle_quanta },
+ [MODE_BLACKBERRY] = { "Blackberry", handle_blackberry },
};
void handle_switch(struct usbdev_data *data)