Hello, I need to use MaxStream's PKG-U modules which includes a ftdi sio chipset for usb2serial communication, here are the patches for handling Maxstream's modules.
The VID & PID to use with the open-source driver are provided on the CD-ROM bundled with the modules. Here is the content on this file : ------------------- The Linux FTDI USB driver provided is version 1.2.1. More information on the driver, including updated versions can be found at http://ftdi-usb-sio.sourceforge.net/. The driver should be compiled either as a loadable module or into a kernel. The PID should be changed in the header file to "0xEE18" which corresponds to the PID used on FTDI USB Converter in the MaxStream PKG-U. ------------------ The patches are for the files taken from the 2.6.20 linux sources. Neil Armstrong -- Neil "Superna" ARMSTRONG Etudiant Ecole Polytechnique Universitaire de Nice-Sophia Antipolis Département Sciences Informatiques Trésorier BDE Polytech'Nice-Sophia www.starnux.net / www.na-prod.com [EMAIL PROTECTED] (PGP : 0xC3A7903D) [EMAIL PROTECTED] (PGP : 0x05834E84) [EMAIL PROTECTED]
--- /usr/src/linux-source-2.6.20/drivers/usb/serial/ftdi_sio.c 2007-04-12
19:16:12.000000000 +0200
+++ ftdi_sio.c 2007-04-24 16:03:24.864660410 +0200
@@ -514,6 +514,7 @@
{ USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13S_PID) },
{ USB_DEVICE(FTDI_VID, FTDI_TACTRIX_OPENPORT_13U_PID) },
{ USB_DEVICE(ELEKTOR_VID, ELEKTOR_FT323R_PID) },
+ { USB_DEVICE(FTDI_VID, FTDI_MAXSTREAM_PID) },
{ }, /* Optional parameter entry */
{ } /* Terminating entry */
};
--- /usr/src/linux-source-2.6.20/drivers/usb/serial/ftdi_sio.h 2007-04-12 19:16:12.000000000 +0200 +++ ftdi_sio.h 2007-04-24 16:03:27.308784487 +0200 @@ -492,6 +492,12 @@ #define FTDI_TACTRIX_OPENPORT_13S_PID 0xCC49 /* OpenPort 1.3 Subaru */ #define FTDI_TACTRIX_OPENPORT_13U_PID 0xCC4A /* OpenPort 1.3 Universal */ +/* + * MaxStream devices + * www.maxstream.net + */ +#define FTDI_MAXSTREAM_PID 0xEE18 /* Xbee PKG-U Module */ + /* Commands */ #define FTDI_SIO_RESET 0 /* Reset the port */ #define FTDI_SIO_MODEM_CTRL 1 /* Set the modem control register */
signature.asc
Description: OpenPGP digital signature
------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/
_______________________________________________ [email protected] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel
