summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Lubich <martin.lubich@gmx.at>2004-04-13 20:04:33 -0700
committerGreg Kroah-Hartman <greg@kroah.com>2004-04-13 20:04:33 -0700
commitb5579ca5586f6c4e0807b3669abb49e7b9512d6f (patch)
treeb3b4088d26774db94ee9da7e6ce1d7a13333642e
parent0df15e3b33e01f0757b162475f75b22cdfaea8b1 (diff)
[PATCH] USB: Patch for Clie TH55 Support in visor kernel module
I just want to explain the changes I've made, since I tried to adhere to the more organized structure in the 2.6 visor module to incorporate my changes. I didn't want to pollute this with some ugly hack. I created a new device id table with name clie_id_5_table to cleanly separate the UX50/TH55 from the rest. Along with this I added a new usb_serial_device_type which is essentially a copy of handspring_device but has its own attach function. This new attach function ( clie_5_attach ) will do the actual magic. I think it is justified to introduce a new type ( which I called clie_5 ) since I suspect that Sony is intentionally changing the interface spec ( As it has done so in the past ). I dare to predict that we will see more clie devices coming this year which will require this new attachment procedure. At the moment I am only aware of the UX50 and TH55 to implement that weird configuration.
-rw-r--r--drivers/usb/serial/visor.c65
1 files changed, 63 insertions, 2 deletions
diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c
index b00375d4dc14..37e0dae944e9 100644
--- a/drivers/usb/serial/visor.c
+++ b/drivers/usb/serial/visor.c
@@ -189,6 +189,7 @@ static void visor_read_bulk_callback (struct urb *urb, struct pt_regs *regs);
static void visor_read_int_callback (struct urb *urb, struct pt_regs *regs);
static int clie_3_5_startup (struct usb_serial *serial);
static int treo_attach (struct usb_serial *serial);
+static int clie_5_attach (struct usb_serial *serial);
static int palm_os_3_probe (struct usb_serial *serial, const struct usb_device_id *id);
static int palm_os_4_probe (struct usb_serial *serial, const struct usb_device_id *id);
@@ -231,8 +232,6 @@ static struct usb_device_id id_table [] = {
.driver_info = (kernel_ulong_t)&palm_os_4_probe },
{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_NX60_ID),
.driver_info = (kernel_ulong_t)&palm_os_4_probe },
- { USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_UX50_ID),
- .driver_info = (kernel_ulong_t)&palm_os_4_probe },
{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_NZ90V_ID),
.driver_info = (kernel_ulong_t)&palm_os_4_probe },
{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_TJ25_ID),
@@ -249,6 +248,13 @@ static struct usb_device_id id_table [] = {
{ } /* Terminating entry */
};
+static struct usb_device_id clie_id_5_table [] = {
+ { USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_UX50_ID),
+ .driver_info = (kernel_ulong_t)&palm_os_4_probe },
+ { }, /* optional parameter entry */
+ { } /* Terminating entry */
+};
+
static struct usb_device_id clie_id_3_5_table [] = {
{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_3_5_ID) },
{ } /* Terminating entry */
@@ -322,6 +328,34 @@ static struct usb_serial_device_type handspring_device = {
.read_int_callback = visor_read_int_callback,
};
+/* All of the device info needed for the Clie UX50, TH55 Palm 5.0 devices */
+static struct usb_serial_device_type clie_5_device = {
+ .owner = THIS_MODULE,
+ .name = "Sony Clie 5.0",
+ .short_name = "clie_5",
+ .id_table = clie_id_5_table,
+ .num_interrupt_in = NUM_DONT_CARE,
+ .num_bulk_in = 2,
+ .num_bulk_out = 2,
+ .num_ports = 2,
+ .open = visor_open,
+ .close = visor_close,
+ .throttle = visor_throttle,
+ .unthrottle = visor_unthrottle,
+ .attach = clie_5_attach,
+ .probe = visor_probe,
+ .calc_num_ports = visor_calc_num_ports,
+ .shutdown = visor_shutdown,
+ .ioctl = visor_ioctl,
+ .set_termios = visor_set_termios,
+ .write = visor_write,
+ .write_room = visor_write_room,
+ .chars_in_buffer = visor_chars_in_buffer,
+ .write_bulk_callback = visor_write_bulk_callback,
+ .read_bulk_callback = visor_read_bulk_callback,
+ .read_int_callback = visor_read_int_callback,
+};
+
/* device info for the Sony Clie OS version 3.5 */
static struct usb_serial_device_type clie_3_5_device = {
.owner = THIS_MODULE,
@@ -893,6 +927,27 @@ static int treo_attach (struct usb_serial *serial)
return 0;
}
+static int clie_5_attach (struct usb_serial *serial)
+{
+ dbg("%s", __FUNCTION__);
+
+ /* TH55 registers 2 ports.
+ Communication in from the UX50/TH55 uses bulk_in_endpointAddress from port 0
+ Communication out to the UX50/TH55 uses bulk_out_endpointAddress from port 1
+
+ Lets do a quick and dirty mapping
+ */
+
+ /* some sanity check */
+ if (serial->num_ports < 2)
+ return -1;
+
+ /* port 0 now uses the modified endpoint Address */
+ serial->port[0]->bulk_out_endpointAddress = serial->port[1]->bulk_out_endpointAddress;
+
+ return 0;
+}
+
static void visor_shutdown (struct usb_serial *serial)
{
dbg("%s", __FUNCTION__);
@@ -1008,6 +1063,9 @@ static int __init visor_init (void)
retval = usb_serial_register(&clie_3_5_device);
if (retval)
goto failed_clie_3_5_register;
+ retval = usb_serial_register(&clie_5_device);
+ if (retval)
+ goto failed_clie_5_register;
retval = usb_register(&visor_driver);
if (retval)
goto failed_usb_register;
@@ -1015,6 +1073,8 @@ static int __init visor_init (void)
return 0;
failed_usb_register:
+ usb_serial_deregister(&clie_5_device);
+failed_clie_5_register:
usb_serial_deregister(&clie_3_5_device);
failed_clie_3_5_register:
usb_serial_deregister(&handspring_device);
@@ -1028,6 +1088,7 @@ static void __exit visor_exit (void)
usb_deregister (&visor_driver);
usb_serial_deregister (&handspring_device);
usb_serial_deregister (&clie_3_5_device);
+ usb_serial_deregister (&clie_5_device);
}