mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: Problem: Palm Tungsten T + kernel 2.4.20 + Tungsten patch applied
@ 2003-02-23  9:36 Andree Leidenfrost
  0 siblings, 0 replies; 3+ messages in thread
From: Andree Leidenfrost @ 2003-02-23  9:36 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel

Hi Greg

I'm an idiot! I thought I had tried this, but obviously I hadn't: Things
are working fine with /dev/ttyUSB0 instead of /dev/ttyUSB1.

Thanks heaps!
Andree

On Sat, 2003-02-22 at 01:43, Greg KH wrote: 
> On Fri, Feb 21, 2003 at 09:45:12PM +1100, Andree Leidenfrost wrote:
> > Syncing my m505 works fine, but I'd love to be able to sync my new and
> > shiny Tungsten T... ;-)
> 
> Try using /dev/ttyUSB0 instead of /dev/ttyUSB1, some people have
> reported that this is necessary.  If this doesn't work, the pilot-link
> mailing list should be able to help you out.
> 
> Good luck,
> 
> greg k-h



-- 
Andree Leidenfrost
Sydney - Australia


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Problem: Palm Tungsten T + kernel 2.4.20 + Tungsten patch applied
  2003-02-21 10:45 Andree Leidenfrost
@ 2003-02-21 14:43 ` Greg KH
  0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2003-02-21 14:43 UTC (permalink / raw)
  To: Andree Leidenfrost; +Cc: linux-kernel

On Fri, Feb 21, 2003 at 09:45:12PM +1100, Andree Leidenfrost wrote:
> Syncing my m505 works fine, but I'd love to be able to sync my new and
> shiny Tungsten T... ;-)

Try using /dev/ttyUSB0 instead of /dev/ttyUSB1, some people have
reported that this is necessary.  If this doesn't work, the pilot-link
mailing list should be able to help you out.

Good luck,

greg k-h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Problem: Palm Tungsten T + kernel 2.4.20 + Tungsten patch applied
@ 2003-02-21 10:45 Andree Leidenfrost
  2003-02-21 14:43 ` Greg KH
  0 siblings, 1 reply; 3+ messages in thread
From: Andree Leidenfrost @ 2003-02-21 10:45 UTC (permalink / raw)
  To: linux-kernel

Dear list

I'm having the above problem. In detail, when pressing the hotsync
button, /var/log/syslog says:

Feb 21 21:15:30 aurich kernel: hub.c: new USB device 00:10.0-1, assigned
address 3
Feb 21 21:15:30 aurich kernel: usb.c: USB device 3 (vend/prod
0x830/0x60) is not claimed by any active driver.
Feb 21 21:15:33 aurich /etc/hotplug/usb.agent: Setup visor for USB
product 830/60/100
Feb 21 21:15:33 aurich kernel: usb.c: registered new driver serial
Feb 21 21:15:33 aurich kernel: usbserial.c: USB Serial Driver core v1.4
Feb 21 21:15:33 aurich kernel: usbserial.c: USB Serial support
registered for Handspring Visor / Palm 4.0 / Clié 4.x
Feb 21 21:15:33 aurich kernel: usbserial.c: Handspring Visor / Palm 4.0
/ Clié 4.x converter detected
Feb 21 21:15:36 aurich kernel: usb_control/bulk_msg: timeout
Feb 21 21:15:36 aurich kernel: visor.c: visor_startup - error getting
connection information
Feb 21 21:15:36 aurich kernel: usbserial.c: Handspring Visor / Palm 4.0
/ Clié 4.x converter now attached to ttyUSB0 (or usb/tts/0 for devfs)
Feb 21 21:15:36 aurich kernel: usbserial.c: Handspring Visor / Palm 4.0
/ Clié 4.x converter now attached to ttyUSB1 (or usb/tts/1 for devfs)
Feb 21 21:15:36 aurich kernel: usbserial.c: USB Serial support
registered for Sony Clié 3.5
Feb 21 21:15:36 aurich kernel: visor.c: USB HandSpring Visor, Palm m50x,
Sony Clié driver v1.6
Feb 21 21:15:36 aurich kernel: usb-uhci.c: interrupt, status 2, frame#
1431
Feb 21 21:15:36 aurich kernel: usbdevfs: USBDEVFS_CONTROL failed dev 3
rqt 128 rq 6 len 0 ret -32
Feb 21 21:15:36 aurich kernel: usbdevfs: USBDEVFS_CONTROL failed dev 3
rqt 128 rq 6 len 0 ret -32

I have applied the following patches:

--- visor.c.orig	Wed Feb 19 22:55:38 2003
+++ visor.c	Wed Feb 19 22:57:00 2003
@@ -174,6 +174,7 @@
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_I705_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_M125_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_M130_ID) },
+	{ USB_DEVICE(PALM_VENDOR_ID, PALM_TUNGSTEN_T_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_ZIRE_ID) },
 	{ USB_DEVICE(HANDSPRING_VENDOR_ID, HANDSPRING_VISOR_ID) },
 	{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_4_0_ID) },
@@ -195,6 +196,7 @@
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_I705_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_M125_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_M130_ID) },
+	{ USB_DEVICE(PALM_VENDOR_ID, PALM_TUNGSTEN_T_ID) },
 	{ USB_DEVICE(PALM_VENDOR_ID, PALM_ZIRE_ID) },
 	{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_3_5_ID) },
 	{ USB_DEVICE(SONY_VENDOR_ID, SONY_CLIE_4_0_ID) },


--- visor.h.orig	Wed Feb 19 22:57:20 2003
+++ visor.h	Wed Feb 19 22:58:04 2003
@@ -27,6 +27,7 @@
 #define PALM_I705_ID			0x0020
 #define PALM_M125_ID			0x0040
 #define PALM_M130_ID			0x0050
+#define PALM_TUNGSTEN_T_ID		0x0060
 #define PALM_ZIRE_ID			0x0070
 
 #define SONY_VENDOR_ID			0x054C

Also I have added the following line to /etc/hotplug/usb.usermap:
visor                0x0003      0x0830   0x0060    0x0000      
0x0000       0x00         0x00            0x00           
0x00            0x00               0x00               0x00000000

I do not think it matters at this stage, but I'm running pilot-link
0.11.7 and jpliot 0.99.4 on Debian woody.

Syncing my m505 works fine, but I'd love to be able to sync my new and
shiny Tungsten T... ;-)

I have searched google and found this patch and success messages of
other people but no clue as to what my problem could.

Cheers
Andree
-- 
Andree Leidenfrost
Sydney - Australia


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2003-02-23  9:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-02-23  9:36 Problem: Palm Tungsten T + kernel 2.4.20 + Tungsten patch applied Andree Leidenfrost
  -- strict thread matches above, loose matches on Subject: below --
2003-02-21 10:45 Andree Leidenfrost
2003-02-21 14:43 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®