diff options
| author | Davide Tronchin <davide.tronchin.94@gmail.com> | 2022-11-16 16:59:49 +0100 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-11-25 17:35:41 +0100 |
| commit | 1b78c81de5dfdc3476ed7cc3c1f0b8a45e5da68b (patch) | |
| tree | 85de926d55b01a3c43ca081c55d21a280f69879f | |
| parent | 2194406c1222945e8ee561b8468dadb35ffb0927 (diff) | |
| download | linux-1b78c81de5dfdc3476ed7cc3c1f0b8a45e5da68b.tar.gz linux-1b78c81de5dfdc3476ed7cc3c1f0b8a45e5da68b.tar.bz2 linux-1b78c81de5dfdc3476ed7cc3c1f0b8a45e5da68b.zip | |
USB: serial: option: add u-blox LARA-R6 00B modem
commit d9e37a5c4d80ea25a7171ab8557a449115554e76 upstream.
The official LARA-R6 (00B) modem uses 0x908b PID. LARA-R6 00B does not
implement a QMI interface on port 4, the reservation (RSVD(4)) has been
added to meet other companies that implement QMI on that interface.
LARA-R6 00B USB composition exposes the following interfaces:
If 0: Diagnostic
If 1: AT parser
If 2: AT parser
If 3: AT parser/alternative functions
Signed-off-by: Davide Tronchin <davide.tronchin.94@gmail.com>
Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/usb/serial/option.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index ce48c3bf11ca..1777002375ad 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -1117,6 +1117,8 @@ static const struct usb_device_id option_ids[] = { /* u-blox products using Qualcomm vendor ID */ { USB_DEVICE(QUALCOMM_VENDOR_ID, UBLOX_PRODUCT_R410M), .driver_info = RSVD(1) | RSVD(3) }, + { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x908b), /* u-blox LARA-R6 00B */ + .driver_info = RSVD(4) }, { USB_DEVICE(QUALCOMM_VENDOR_ID, 0x90fa), .driver_info = RSVD(3) }, /* Quectel products using Quectel vendor ID */ |
