]> git.itanic.dy.fi Git - linux-stable/commitdiff
USB: serial: ftdi_sio: add device IDs for U-Blox C099-F9P
authorFabio D'Urso <fabiodurso@hotmail.it>
Thu, 14 Nov 2019 01:30:53 +0000 (01:30 +0000)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 11 Feb 2020 20:03:40 +0000 (20:03 +0000)
commit c1a1f273d0825774c80896b8deb1c9ea1d0b91e3 upstream.

This device presents itself as a USB hub with three attached devices:
 - An ACM serial port connected to the GPS module (not affected by this
   commit)
 - An FTDI serial port connected to the GPS module (1546:0502)
 - Another FTDI serial port connected to the ODIN-W2 radio module
   (1546:0503)

This commit registers U-Blox's VID and the PIDs of the second and third
devices.

Datasheet: https://www.u-blox.com/sites/default/files/C099-F9P-AppBoard-Mbed-OS3-FW_UserGuide_%28UBX-18063024%29.pdf

Signed-off-by: Fabio D'Urso <fabiodurso@hotmail.it>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/usb/serial/ftdi_sio.c
drivers/usb/serial/ftdi_sio_ids.h

index d5d33bf5188fbe164a731d48472f183ec9d3f3bd..a39e2307b09f81c6c2f453e4e4996ea0e59c4267 100644 (file)
@@ -1041,6 +1041,9 @@ static const struct usb_device_id id_table_combined[] = {
        /* Sienna devices */
        { USB_DEVICE(FTDI_VID, FTDI_SIENNA_PID) },
        { USB_DEVICE(ECHELON_VID, ECHELON_U20_PID) },
+       /* U-Blox devices */
+       { USB_DEVICE(UBLOX_VID, UBLOX_C099F9P_ZED_PID) },
+       { USB_DEVICE(UBLOX_VID, UBLOX_C099F9P_ODIN_PID) },
        { }                                     /* Terminating entry */
 };
 
index 655672d1be6faaa7f5bcadcf822d42b14f19cfa5..6c2f53e2a46ac9c326cee17fc2d05e11dbb43d6f 100644 (file)
  */
 #define UNJO_VID                       0x22B7
 #define UNJO_ISODEBUG_V1_PID           0x150D
+
+/*
+ * U-Blox products (http://www.u-blox.com).
+ */
+#define UBLOX_VID                      0x1546
+#define UBLOX_C099F9P_ZED_PID          0x0502
+#define UBLOX_C099F9P_ODIN_PID         0x0503