From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 05:17:46 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8EA8F16A400 for ; Mon, 5 Feb 2007 05:17:46 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 6440613C46B for ; Mon, 5 Feb 2007 05:17:46 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from insp.local (jn@c-76-23-109-98.hsd1.sc.comcast.net [76.23.109.98]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l154eLAE046896; Sun, 4 Feb 2007 23:40:21 -0500 (EST) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-mobile@freebsd.org Date: Sun, 4 Feb 2007 23:40:13 -0500 User-Agent: KMail/1.9.5 X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*. X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: evs@telod.net Subject: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 05:17:46 -0000 --Boundary-00=_uUrxFywZMjriaBO Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline I just want to report that I got this card working on my laptop running 6-STABLE. (This should be a reply to this message but I couldn't find it locally): http://lists.freebsd.org/pipermail/freebsd-mobile/2006-December/009404.html Unlike the OP, the usb hub was recognized on my machine and gave me a ugen0 device associated with the CDMA modem. So all I had to do was get the modem to attach to ucom or similar. After a couple false starts I got a cue from this message: http://lists.freebsd.org/pipermail/freebsd-hackers/2005-June/012512.html The attached patch lets the card attach as a ubsa device. I'm also attaching the ppp.conf file I hacked up (it's been a while since I've made any ppp chat scripts so I'm sure it could be done more elegantly). Here are the relevant bits of dmesg with the card inserted: cbb0: at device 11.0 on pci0 cardbus0: on cbb0 pccard0: <16-bit PCCard bus> on cbb0 cbb1: at device 11.1 on pci0 cardbus1: on cbb1 pccard1: <16-bit PCCard bus> on cbb1 ... cardbus0: CIS pointer is 0! cardbus0: Resource not specified in CIS: id=10, size=1000 ohci3: mem 0x88001000-0x88001fff irq 9 at device 0.1 on cardbus0 ohci3: [GIANT-LOCKED] usb4: OHCI version 1.0 usb4: on ohci3 usb4: USB revision 1.0 uhub4: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub4: 2 ports with 2 removable, self powered ucom0: Novatel Wireless Inc. Novatel Wireless Merlin CDMA, rev 1.10/0.00, addr 2 ucom0: ubsa_request: STALLED ucom0: ubsa_request: STALLED ... (lots more STALLED messages) Despite the error messages it connects and works just fine, with performance similar to what I see in Windows (which isn't great in this area). evs: Did you take ohci out of your kernel by any chance? I'm open to feedback on what the STALLED messages might mean and how to get rid of them. JN --Boundary-00=_uUrxFywZMjriaBO Content-Type: text/x-diff; charset="us-ascii"; name="v620.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="v620.patch" --- usbdevs.orig Mon Jan 22 12:57:30 2007 +++ usbdevs Sun Feb 4 00:11:33 2007 @@ -510,6 +510,7 @@ vendor MOBILITY 0x1342 Mobility vendor LINKSYS4 0x13b1 Linksys vendor SHARK 0x13d2 Shark +vendor NOVATEL 0x1410 Novatel Wireless vendor RADIOSHACK 0x1453 Radio Shack vendor SILICOM 0x1485 Silicom vendor RALINK 0x148f Ralink Technology @@ -1340,6 +1341,9 @@ /* NovaTech Products */ product NOVATECH NV902 0x9020 NovaTech NV-902W +/* Novatel Products */ +product NOVATEL CDMA_MODEM 0x1110 Novatel Wireless Merlin CDMA + /* Olympus products */ product OLYMPUS C1 0x0102 C-1 Digital Camera product OLYMPUS C700 0x0105 C-700 Ultra Zoom --- ubsa.c.orig Sun Feb 4 23:19:49 2007 +++ ubsa.c Sun Feb 4 15:20:36 2007 @@ -224,6 +224,8 @@ { USB_VENDOR_GOHUBS, USB_PRODUCT_GOHUBS_GOCOM232 }, /* Peracom */ { USB_VENDOR_PERACOM, USB_PRODUCT_PERACOM_SERIAL1 }, + /* Novatel */ + { USB_VENDOR_NOVATEL, USB_PRODUCT_NOVATEL_CDMA_MODEM }, /* Vodafone */ { USB_VENDOR_VODAFONE, USB_PRODUCT_VODAFONE_MC3G }, { 0, 0 } --- usb_quirks.c.orig Mon Jan 22 12:57:30 2007 +++ usb_quirks.c Sun Feb 4 16:23:33 2007 @@ -104,6 +104,10 @@ ANY, { UQ_ASSUME_CM_OVER_DATA }}, { USB_VENDOR_SUNTAC, USB_PRODUCT_SUNTAC_AS64LX, 0x100, { UQ_ASSUME_CM_OVER_DATA }}, + { USB_VENDOR_NOVATEL, USB_PRODUCT_NOVATEL_CDMA_MODEM, + ANY, { UQ_ASSUME_CM_OVER_DATA }}, { USB_VENDOR_MOTOROLA2, USB_PRODUCT_MOTOROLA2_A41XV32X, ANY, { UQ_ASSUME_CM_OVER_DATA }}, /* Devices which should be ignored by uhid */ --Boundary-00=_uUrxFywZMjriaBO Content-Type: text/plain; charset="us-ascii"; name="ppp.conf" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ppp.conf" ################################################################# # PPP Sample Configuration File # Originally written by Toshiharu OHNO # Simplified 5/14/1999 by wself@cdrom.com # # See /usr/share/examples/ppp/ for some examples # # $FreeBSD: src/etc/ppp/ppp.conf,v 1.10 2004/11/19 17:12:56 obrien Exp $ ################################################################# default: set log Phase Chat LCP IPCP CCP tun command ident user-ppp VERSION (built COMPILATIONDATE) # Ensure that "device" references the correct serial port # for your modem. (cuad0 = COM1, cuad1 = COM2) # set device /dev/cuaU0 # set speed 115200 set speed 230400 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATE1Q0 OK \\dATDT\\T TIMEOUT 40 CONNECT" set timeout 180 # 3 minute idle timer (the default) enable dns # request DNS info (for resolv.conf) papchap: # # edit the next three lines and replace the items in caps with # the values which have been assigned by your ISP. # set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \ \"\" AT OK-AT-OK ATDT#777\\T TIMEOUT 40 CONNECT" set phone #777 set login set authname set authkey accept PAP # set authname USERNAME # set authkey PASSWORD set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 add default HISADDR # Add a (sticky) default route --Boundary-00=_uUrxFywZMjriaBO-- From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 13:58:25 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92F9116A400; Mon, 5 Feb 2007 13:58:24 +0000 (UTC) (envelope-from ducrot@poupinou.org) Received: from poup.poupinou.org (poup.poupinou.org [195.101.94.96]) by mx1.freebsd.org (Postfix) with ESMTP id 58AEB13C478; Mon, 5 Feb 2007 13:58:24 +0000 (UTC) (envelope-from ducrot@poupinou.org) Received: from ducrot by poup.poupinou.org with local (Exim) id 1HE4MJ-0005SP-00; Mon, 05 Feb 2007 14:58:15 +0100 Date: Mon, 5 Feb 2007 14:58:15 +0100 To: Peter Jeremy Message-ID: <20070205135815.GH12197@poupinou.org> References: <499c70c0701240044q32162e40ye8f923bf758e8633@mail.gmail.com> <20070124103226.GA12197@poupinou.org> <20070124181449.GI874@turion.vk2pj.dyndns.org> <20070124184828.GC12197@poupinou.org> <20070202094627.GA1758@turion.vk2pj.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070202094627.GA1758@turion.vk2pj.dyndns.org> User-Agent: Mutt/1.5.9i From: Bruno Ducrot Cc: freebsd-acpi@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: AMD Turion64 X2 works with PowerNow! thank you Bruno X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 13:58:27 -0000 On Fri, Feb 02, 2007 at 08:46:27PM +1100, Peter Jeremy wrote: > On Wed, 2007-Jan-24 19:48:28 +0100, Bruno Ducrot wrote: > >acpi_throttle is broken ATM on your machine. BTW if you boot with > >hint.apic.0.disabled="1" > >into /boot/loader.conf > >does this solve the acpi_throttle issue? > > No. hint.apic.0.disabled makes no difference to me: > hint.powernow.0.disabled has no effect (powernow0 still attaches) and > throttling can still cause random lockups unless acpi_throttle is > disabled. > Thanks for your report. In order to disable powernow, you shouldn't load the cpufreq kernel module, or don't compile your kernel with the device cpufreq. The cpufreq.ko is a bundlle of different hw drivers related to cpufreq, but without the acpi specfic ones, those being acpi_throttle and acpi_perf and they are included into acpi.ko. After that check, you want to go back to powernow enabled and without acpi_throttle, since powernow ofer way much more power saving than throttling. Cheers, -- Bruno Ducrot -- Which is worse: ignorance or apathy? -- Don't know. Don't care. From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 15:09:53 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63E4616A401 for ; Mon, 5 Feb 2007 15:09:53 +0000 (UTC) (envelope-from gdt@ir.bbn.com) Received: from fnord.ir.bbn.com (fnord.ir.bbn.com [192.1.100.210]) by mx1.freebsd.org (Postfix) with ESMTP id 3563B13C4BA for ; Mon, 5 Feb 2007 15:09:53 +0000 (UTC) (envelope-from gdt@ir.bbn.com) Received: by fnord.ir.bbn.com (Postfix, from userid 10853) id E966952A0; Mon, 5 Feb 2007 09:44:58 -0500 (EST) From: Greg Troxel To: John Nielsen References: <200702042340.14417.lists@jnielsen.net> X-Hashcash: 1:20:070205:lists@jnielsen.net::A28F34iT04K4Y1Q0:00000000000000000000000000000000000000000000Xtt X-Hashcash: 1:20:070205:freebsd-mobile@freebsd.org::Sviro+ycJSw9Z68d:000000000000000000000000000000000000ue4 X-Hashcash: 1:20:070205:evs@telod.net::drp5sXSLl38t8lyl:00005i1q Date: Mon, 05 Feb 2007 09:44:58 -0500 In-Reply-To: <200702042340.14417.lists@jnielsen.net> (John Nielsen's message of "Sun\, 4 Feb 2007 23\:40\:13 -0500") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: evs@telod.net, freebsd-mobile@freebsd.org Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 15:09:53 -0000 I added the vendor ids to NetBSD's usbdevs and ugensa(4). (ugensa is similar to (and I think the ancestor of) FreeBSD's ubsa.) Can you explain the UQ_ASSUME_CM_OVER_DATA quirk? I couldn't find it showing up in ubsa or ucom, so I don't understand what it does (and if anything odd should be done by NetBSD). About the stall: see the following log entry in usbdevs: Revision 1.254 / (download) - annotate - [select for diffs], Sun Feb 19 14:48:02 2006 UTC (11 months, 2 weeks ago) by iedowse Branch: MAIN Changes since 1.253: +1 -0 lines Diff to previous 1.253 (colored) Add a UQ_OPEN_CLEARSTALL quirk for devices that need a clear-stall operation when a pipe is opened, and add an entry for the ST Micro biometric CPU. Submitted by: Fredrik Lindberg MFC after: 1 week -- Greg Troxel From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 15:45:22 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A904B16A402 for ; Mon, 5 Feb 2007 15:45:22 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 8BC7D13C471 for ; Mon, 5 Feb 2007 15:45:22 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from localhost (jn@ns1 [69.55.238.237]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l15FjLAE036735; Mon, 5 Feb 2007 10:45:21 -0500 (EST) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-mobile@freebsd.org Date: Mon, 5 Feb 2007 10:41:23 -0500 User-Agent: KMail/1.9.5 References: <200702042340.14417.lists@jnielsen.net> In-Reply-To: X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200702051041.23665.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: freebsd-usb@freebsd.org Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 15:45:22 -0000 [Adding usb@ to CC list.] On Monday 05 February 2007 09:44, Greg Troxel wrote: > I added the vendor ids to NetBSD's usbdevs and ugensa(4). (ugensa is > similar to (and I think the ancestor of) FreeBSD's ubsa.) > > Can you explain the UQ_ASSUME_CM_OVER_DATA quirk? I couldn't find it > showing up in ubsa or ucom, so I don't understand what it does (and if > anything odd should be done by NetBSD). I don't know what it does exactly. The comment in usb_quirks.h just says "modem device breaks on cm over data". I do know that it's needed for a lot of cellphone and modem-type usb devices (including my Samsung VI660 (anyone feel like committing usb/74880?)). I tried my V620 with the ubsa patch but without the quirk and it didn't work at all. > About the stall: see the following log entry in usbdevs: > > Revision 1.254 / (download) - annotate - [select for diffs], Sun Feb 19 > 14:48:02 2006 UTC (11 months, 2 weeks ago) by iedowse Branch: MAIN > Changes since 1.253: +1 -0 lines > Diff to previous 1.253 (colored) > > Add a UQ_OPEN_CLEARSTALL quirk for devices that need a clear-stall > operation when a pipe is opened, and add an entry for the ST Micro > biometric CPU. It doesn't look like this was ever MFC'ed. Who should I bug to get that taken care of? If I can test it and it takes care of the error messages then I'll add it to my patch and submit a PR. Funny coincidence. It looks like kern/106033 (the PR that led me down the ubsa path to begin with) was committed a few hours before my message yesterday. Thanks Lukas! JN From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 16:44:59 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A78016A403 for ; Mon, 5 Feb 2007 16:44:57 +0000 (UTC) (envelope-from gdt@ir.bbn.com) Received: from fnord.ir.bbn.com (fnord.ir.bbn.com [192.1.100.210]) by mx1.freebsd.org (Postfix) with ESMTP id 9811813C4B5 for ; Mon, 5 Feb 2007 16:44:56 +0000 (UTC) (envelope-from gdt@ir.bbn.com) Received: by fnord.ir.bbn.com (Postfix, from userid 10853) id 47C4652A0; Mon, 5 Feb 2007 11:44:56 -0500 (EST) From: Greg Troxel To: John Nielsen References: <200702042340.14417.lists@jnielsen.net> <200702051041.23665.lists@jnielsen.net> X-Hashcash: 1:20:070205:lists@jnielsen.net::fPEdbOvOgN+o9xJR:000000000000000000000000000000000000000000011WD X-Hashcash: 1:20:070205:freebsd-usb@freebsd.org::O7curTniGjClVcVp:0000000000000000000000000000000000000028S5 X-Hashcash: 1:20:070205:freebsd-mobile@freebsd.org::0BblnLaDT4ck9jcO:000000000000000000000000000000000007F7+ Date: Mon, 05 Feb 2007 11:44:51 -0500 In-Reply-To: <200702051041.23665.lists@jnielsen.net> (John Nielsen's message of "Mon\, 5 Feb 2007 10\:41\:23 -0500") Message-ID: User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Cc: freebsd-usb@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 16:44:59 -0000 --=-=-= Content-Transfer-Encoding: quoted-printable John Nielsen writes: > [Adding usb@ to CC list.] > > On Monday 05 February 2007 09:44, Greg Troxel wrote: >> I added the vendor ids to NetBSD's usbdevs and ugensa(4). (ugensa is >> similar to (and I think the ancestor of) FreeBSD's ubsa.) >> >> Can you explain the UQ_ASSUME_CM_OVER_DATA quirk? I couldn't find it >> showing up in ubsa or ucom, so I don't understand what it does (and if >> anything odd should be done by NetBSD). > > I don't know what it does exactly. The comment in usb_quirks.h just=20 > says "modem device breaks on cm over data". I do know that it's needed fo= r a=20 > lot of cellphone and modem-type usb devices (including my Samsung VI660=20 > (anyone feel like committing usb/74880?)). I tried my V620 with the ubsa= =20 > patch but without the quirk and it didn't work at all. I've been using a KPC650 (vz) and a sierra aircard (sprint) on NetBSD without any sign of that quirk with no issues. So, it could be that the NetBSD code doesn't provoke the behavior for some other reason. Greg Troxel --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (NetBSD) iD8DBQFFx18I+vesoDJhHiURAkf9AJ9AcOnKExSrceo5aTeU7uHObV0RIACgqifw nyiUNjejIgxI59pWFzyV4S8= =R3mU -----END PGP SIGNATURE----- --=-=-=-- From owner-freebsd-mobile@FreeBSD.ORG Mon Feb 5 23:15:39 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1DCD016A40A for ; Mon, 5 Feb 2007 23:15:38 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from frontmail.ipactive.de (frontmail.maindns.de [85.214.95.103]) by mx1.freebsd.org (Postfix) with ESMTP id 5206B13C49D for ; Mon, 5 Feb 2007 23:15:37 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from mail.vtec.ipme.de (Q7d99.q.ppp-pool.de [89.53.125.153]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by frontmail.ipactive.de (Postfix) with ESMTP id D0468128831; Mon, 5 Feb 2007 23:57:19 +0100 (CET) Received: from [192.168.18.3] (unknown [192.168.18.3]) by mail.vtec.ipme.de (Postfix) with ESMTP id 786EC2E568; Mon, 5 Feb 2007 23:57:06 +0100 (CET) Message-ID: <45C7B643.2030904@vwsoft.com> Date: Mon, 05 Feb 2007 23:57:07 +0100 From: Volker User-Agent: Thunderbird 1.5.0.9 (X11/20070119) MIME-Version: 1.0 To: freebsd-mobile@freebsd.org X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-VWSoft-MailScanner: Found to be clean X-MailScanner-From: volker@vwsoft.com X-ipactive-MailScanner-Information: Please contact the ISP for more information X-ipactive-MailScanner: Found to be clean X-ipactive-MailScanner-From: volker@vwsoft.com Cc: lists@jnielsen.net Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Feb 2007 23:15:39 -0000 > ucom0: Novatel Wireless Inc. Novatel Wireless Merlin CDMA, rev 1.10/0.00, > addr 2 > ucom0: ubsa_request: STALLED > ucom0: ubsa_request: STALLED > ... > (lots more STALLED messages) John, just added myself to mobile@ (thanks for cross-posting this to usb@ so I got notice of this discussion). If you're using the V620 (or any other (W-)CDMA) card with ppp, you should make sure you're using: set cd 30! (note the exclamation mark at the end) I've seen _a lot_ of problem reports (not just with FreeBSD) where ppp does not recognize a connection loss when using W-CDMA cards. The exclamation mark forces ppp into waiting for a carrier and following that CD signal. I suspect your problems might come from a bad signal. I don't know much about the V620 (just that it's only used in nothern america) but if it's a high-speed card (transfer rate > 56k, 3G mode?) you should force your card into GPRS or 3G mode. By default W-CDMA cards are trying to auto detect the best signal reception and that might cause often signal loss due to band change. If you know how to force the card into one or the other mode, please use that in ppp's init string. If you don't know it, you may try the commands for the U630 (I guess both cards are using the same command set). You may find a bit info about the U630 at: http://bsd.vwsoft.com/3g/merlin_u630.html Please note the U630 is serial-over-PCMCIA and not usb so the hardware is not the same. I thought the V620 is also serial-over-PCMCIA but it seems you proved me wrong. ;) Greetings, Volker From owner-freebsd-mobile@FreeBSD.ORG Tue Feb 6 03:35:40 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AF3E016A401 for ; Tue, 6 Feb 2007 03:35:40 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from ns1.jnielsen.net (ns1.jnielsen.net [69.55.238.237]) by mx1.freebsd.org (Postfix) with ESMTP id 934FA13C441 for ; Tue, 6 Feb 2007 03:35:40 +0000 (UTC) (envelope-from lists@jnielsen.net) Received: from insp.local (jn@c-76-23-109-98.hsd1.sc.comcast.net [76.23.109.98]) (authenticated bits=0) by ns1.jnielsen.net (8.12.9p2/8.12.9) with ESMTP id l163ZaAE066258; Mon, 5 Feb 2007 22:35:36 -0500 (EST) (envelope-from lists@jnielsen.net) From: John Nielsen To: freebsd-mobile@freebsd.org Date: Mon, 5 Feb 2007 22:35:24 -0500 User-Agent: KMail/1.9.5 References: <45C7B643.2030904@vwsoft.com> In-Reply-To: <45C7B643.2030904@vwsoft.com> X-Face: #X5#Y*q>F:]zT!DegL3z5Xo'^MN[$8k\[4^3rN~wm=s=Uw(sW}R?3b^*f1Wu*.<=?utf-8?q?of=5F4NrS=0A=09P*M/9CpxDo!D6?=)IY1w<9B1jB; tBQf[RU-R<,I)e"$q7N7 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200702052235.24916.lists@jnielsen.net> X-Virus-Scanned: ClamAV version 0.88.4, clamav-milter version 0.88.4 on ns1.jnielsen.net X-Virus-Status: Clean Cc: Volker Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2007 03:35:40 -0000 On Monday 05 February 2007 17:57, Volker wrote: > > ucom0: Novatel Wireless Inc. Novatel Wireless Merlin CDMA, rev > > 1.10/0.00, addr 2 > > ucom0: ubsa_request: STALLED > > ucom0: ubsa_request: STALLED > > ... > > (lots more STALLED messages) > > John, > > just added myself to mobile@ (thanks for cross-posting this to usb@ > so I got notice of this discussion). > > If you're using the V620 (or any other (W-)CDMA) card with ppp, you > should make sure you're using: > > set cd 30! (note the exclamation mark at the end) > > I've seen _a lot_ of problem reports (not just with FreeBSD) where > ppp does not recognize a connection loss when using W-CDMA cards. > The exclamation mark forces ppp into waiting for a carrier and > following that CD signal. I'll play around with that, thanks. > I suspect your problems might come from a bad signal. I don't know > much about the V620 (just that it's only used in nothern america) > but if it's a high-speed card (transfer rate > 56k, 3G mode?) you > should force your card into GPRS or 3G mode. I'll experiment with that too. One thing I'm not sure I mentioned in my first post is that the STALLED messages only show up when the device is opened and closed. If I use ppp in manual mode I get about six of them when I first start ppp but none while I issue any AT commands or while the link is active. Then I get about six more when I close the link. It is a (relatively) high-speed card. Under Windows all the fancy third-party software does is create a regular dial-up networking link with a serial speed of 230400. Doing the same with ppp under FreeBSD gets me a usable connection. Under either OS the latency is pretty high (~300ms) and a few packets get dropped here and there, but it beats straight dial-up (or heaven forbid, no connection at all!) > By default W-CDMA cards are trying to auto detect the best signal > reception and that might cause often signal loss due to band change. > > If you know how to force the card into one or the other mode, please > use that in ppp's init string. If you don't know it, you may try the > commands for the U630 (I guess both cards are using the same command > set). You may find a bit info about the U630 at: > http://bsd.vwsoft.com/3g/merlin_u630.html Thanks for the link. More documentation is almost always better. :) > Please note the U630 is serial-over-PCMCIA and not usb so the > hardware is not the same. I thought the V620 is also > serial-over-PCMCIA but it seems you proved me wrong. ;) I was a little surprised when I first plugged it in under Windows and a USB hub popped up. But hey, I didn't design the card or even choose to buy it (it's part of the lucky ball-and-chain package I get from work when I'm on call). Thanks for your response. JN From owner-freebsd-mobile@FreeBSD.ORG Tue Feb 6 09:15:21 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEF6216A403 for ; Tue, 6 Feb 2007 09:15:21 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id B553713C4A3 for ; Tue, 6 Feb 2007 09:15:21 +0000 (UTC) (envelope-from almarrie@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so1140403ana for ; Tue, 06 Feb 2007 01:15:21 -0800 (PST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qs6nR1ECIa0ertmOZQeBM5lTLWt/YVv6pbe9VyOYbUO7OZn1lbWAvYldwwCSDvqEukSJIM9EnclCB2yNdiZd8hPekxkumJjuZdxJg+GllkNeEDJQRRYMBlO0zorb9IiziEZML/wufZzfwM2I2MZwIjheQWS+4jUUlgm++wq7Wms= Received: by 10.114.25.3 with SMTP id 3mr734693way.1170753320485; Tue, 06 Feb 2007 01:15:20 -0800 (PST) Received: by 10.115.91.7 with HTTP; Tue, 6 Feb 2007 01:15:20 -0800 (PST) Message-ID: <499c70c0702060115q76ba9cfhac94e2582ddf2751@mail.gmail.com> Date: Tue, 6 Feb 2007 12:15:20 +0300 From: "Abdullah Ibn Hamad Al-Marri" To: freebsd-mobile@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: HP Pavilion dv9000t series inquiry X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2007 09:15:22 -0000 Hello, I plan to buy one of HP Pavilion dv9000t series with C2D and Nvidia GPU. Anyone of you guys have tried it yet with FreeBSD 6.2? If yes, did you get any real issues with the ACPI? or the bios in general? -- Regards, -Abdullah Ibn Hamad Al-Marri Arab Portal http://www.WeArab.Net/ From owner-freebsd-mobile@FreeBSD.ORG Tue Feb 6 12:04:21 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6B2AF16A409 for ; Tue, 6 Feb 2007 12:04:21 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from frontmail.ipactive.de (frontmail.maindns.de [85.214.95.103]) by mx1.freebsd.org (Postfix) with ESMTP id 0735F13C47E for ; Tue, 6 Feb 2007 12:04:20 +0000 (UTC) (envelope-from volker@vwsoft.com) Received: from mail.vtec.ipme.de (Q7cbb.q.ppp-pool.de [89.53.124.187]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by frontmail.ipactive.de (Postfix) with ESMTP id 814AA12883B; Tue, 6 Feb 2007 13:04:14 +0100 (CET) Received: from [192.168.16.3] (cesar.sz.vwsoft.com [192.168.16.3]) by mail.vtec.ipme.de (Postfix) with ESMTP id 492AE2E568; Tue, 6 Feb 2007 13:04:08 +0100 (CET) Message-ID: <45C86EB9.5010907@vwsoft.com> Date: Tue, 06 Feb 2007 13:04:09 +0100 From: Volker User-Agent: Thunderbird 1.5.0.9 (X11/20070119) MIME-Version: 1.0 To: John Nielsen References: <45C7B643.2030904@vwsoft.com> <200702052235.24916.lists@jnielsen.net> In-Reply-To: <200702052235.24916.lists@jnielsen.net> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-VWSoft-MailScanner: Found to be clean X-MailScanner-From: volker@vwsoft.com X-ipactive-MailScanner-Information: Please contact the ISP for more information X-ipactive-MailScanner: Found to be clean X-ipactive-MailScanner-From: volker@vwsoft.com Cc: freebsd-mobile@freebsd.org Subject: Re: Verizon V620 wireless card X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2007 12:04:21 -0000 John, On 02/06/07 04:35, John Nielsen wrote: > On Monday 05 February 2007 17:57, Volker wrote: >>> ucom0: Novatel Wireless Inc. Novatel Wireless Merlin CDMA, rev >>> 1.10/0.00, addr 2 >>> ucom0: ubsa_request: STALLED >>> ucom0: ubsa_request: STALLED >>> ... >>> (lots more STALLED messages) >> John, >> >> just added myself to mobile@ (thanks for cross-posting this to usb@ >> so I got notice of this discussion). >> >> If you're using the V620 (or any other (W-)CDMA) card with ppp, you >> should make sure you're using: >> >> set cd 30! (note the exclamation mark at the end) >> >> I've seen _a lot_ of problem reports (not just with FreeBSD) where >> ppp does not recognize a connection loss when using W-CDMA cards. >> The exclamation mark forces ppp into waiting for a carrier and >> following that CD signal. > > I'll play around with that, thanks. > >> I suspect your problems might come from a bad signal. I don't know >> much about the V620 (just that it's only used in nothern america) >> but if it's a high-speed card (transfer rate > 56k, 3G mode?) you >> should force your card into GPRS or 3G mode. > > I'll experiment with that too. One thing I'm not sure I mentioned in my > first post is that the STALLED messages only show up when the device is > opened and closed. If I use ppp in manual mode I get about six of them when > I first start ppp but none while I issue any AT commands or while the link > is active. Then I get about six more when I close the link. You may even try to open the device with a speed setting of 1200 baud. I've played with userland ppp and found that when using speeds above 115kbit ppp might behave oddly. For any tty device which is not associated with a real UART chip the speed should not matter. Even in the driver the speed setting function is a dummy function which does nothing but ppp takes care of the speed. I suggest to use a lower speed setting with ppp and try again. You should have no throughput impact when using 38400 baud with ppp. At least this is what I was experiencing using 3G hardware. Please try that (plus the 'set cd xx!' setting) and see if the stalled messages are gone. > Thanks for the link. More documentation is almost always better. :) If you have any good docs for the V620 with the differences to the U630 I'll put them up also if you can give me pointers. I'm trying to assemble as much 3G infos as possible as this is a really interesting infrastructure (I like the idea to have the internet to go). > I was a little surprised when I first plugged it in under Windows and a USB > hub popped up. But hey, I didn't design the card or even choose to buy it > (it's part of the lucky ball-and-chain package I get from work when I'm on > call). Most current 3G cards do have an interface like that. I think Qualcomm designed that and most manufacturers took that. Just the newer Option Globetrotter cards (3G Max, 3G +) do have a different interface. Greetings, Volker From owner-freebsd-mobile@FreeBSD.ORG Tue Feb 6 15:11:44 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4566616A402 for ; Tue, 6 Feb 2007 15:11:44 +0000 (UTC) (envelope-from joji@eskimo.com) Received: from ultra6.eskimo.com (ultra6.eskimo.com [204.122.16.69]) by mx1.freebsd.org (Postfix) with ESMTP id 01EBD13C48E for ; Tue, 6 Feb 2007 15:11:43 +0000 (UTC) (envelope-from joji@eskimo.com) Received: from eskimo.com (eskimo.com [204.122.16.13]) by ultra6.eskimo.com (8.13.6/8.13.4) with ESMTP id l16EnsV7027511; Tue, 6 Feb 2007 06:49:54 -0800 Received: (from joji@localhost) by eskimo.com (8.9.1a/8.9.1) id GAA03928; Tue, 6 Feb 2007 06:49:55 -0800 (PST) Date: Tue, 6 Feb 2007 06:49:54 -0800 From: Joseph Olatt To: Cecil Message-ID: <20070206064953.A2984@eskimo.com> References: <24af73f0e96946c79029bc68eb142886.ceco108@gimail.af.mil> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <24af73f0e96946c79029bc68eb142886.ceco108@gimail.af.mil>; from ceco108@gimail.af.mil on Thu, Feb 01, 2007 at 05:29:56PM -0500 Cc: freebsd-mobile@freebsd.org Subject: Re: What did I do wrong when I set the CLASSPATH?? X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2007 15:11:44 -0000 On Thu, Feb 01, 2007 at 05:29:56PM -0500, Cecil wrote: > > Hello all, > > I have installed Sun JDK1.6.0 on my FreeBSD 6.2 laptop, and I cant seem to get the CLASSPATH set right in my .profile file. I really need to know the syntax of using the wildcard * to open folders in the CLASSPATH variable to cutdown on all the typing. > > Can I do the following: > > CLASSPATH=$CLASSPATH:./:/usr/local/jdk1.6.0/*.zip:/usr/local/jdk1.6.0/lib/*/*.jar; export CLASSPATH > > PATH=/usr/local/jdk1.6.0/bin:/usr/local/jdk1.6.0/jre/bin:/sbin:/bin:/usr/sbin:/u > sr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin:$HOME/bin; > export PATH > > JAVA_HOME=/usr/local/jdk1.6.0/jre; export JAVA_HOME > > CLASSPATH=/usr/local/jdk1.6.0/:/usr/local/jdk1.6.0/lib/:/usr/local/jdk1.6.0/jre/ > lib/:/usr/local/jdk1.6.0/lib/applet/:/usr/local/jdk1.6.0/lib/audio/:/usr/local/j > dk1.6.0/lib/cmm/:/usr/local/jdk1.6.0/lib/deploy/:/usr/local/jdk1.6.0/lib/desktop > /*:/usr/local/jdk1.6.0/lib/ext/*:/usr/local/jdk1.6.0/lib/fonts/*:/usr/local/jdk1 > .6.0/lib/i386/*:/usr/local/jdk1.6.0/lib/im/*:/usr/local/jdk1.6.0/lib/images/*:/u > sr/local/jdk1.6.0/lib/locale/*:/usr/local/jdk1.6.0/lib/management/*:/usr/local/j > dk1.6.0/lib/oblique-fonts/*:/usr/local/jdk1.6.0/lib/security/*:/usr/local/jdk1.6 > .0/lib/zi/*; > export CLASSPATH > > $ which java_vm > /usr/local/jdk1.6.0/jre/bin/java_vm > > $ java -version > java version "1.6.0" > Java(TM) SE Runtime Environment (build 1.6.0-b105) > Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode) > > But when I test the libraries I get this: > > $ jconsole > Exception in thread "main" java.lang.UnsatisfiedLinkError: /usr/local/jdk1.6.0/jre/lib/i386/xawt/libmawt.so: libXext.so.6: cannot open shared object file: No such file or directory Does your LD_LIBRARY_PATH contain /usr/X11R6/lib? If not try the setting the following and see if it works: LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/X11R6/lib; export LD_LIBRARY_PATH libXext.so.6 comes from xorg-libraries-6.8.2. It looks like "jconsole" needs it. > What did I do wrong when I set the CLASSPATH?? > > > > _______________________________________________ > freebsd-mobile@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-mobile > To unsubscribe, send any mail to "freebsd-mobile-unsubscribe@freebsd.org" From owner-freebsd-mobile@FreeBSD.ORG Thu Feb 8 19:33:30 2007 Return-Path: X-Original-To: freebsd-mobile@freebsd.org Delivered-To: freebsd-mobile@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A07B516A408 for ; Thu, 8 Feb 2007 19:33:30 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by mx1.freebsd.org (Postfix) with ESMTP id 7A3D313C4C1 for ; Thu, 8 Feb 2007 19:33:30 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1HFEju-00088R-Gh for freebsd-mobile@freebsd.org; Thu, 08 Feb 2007 11:15:26 -0800 Message-ID: <8872093.post@talk.nabble.com> Date: Thu, 8 Feb 2007 11:15:26 -0800 (PST) From: "Dr. Reda" To: freebsd-mobile@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: reda.reda@siemens.com Subject: ICAS 2007 & ICNS 2007, Athens, June 19-25, 2007 DEADLINE EXTENDED FEBRUARY Invitation X-BeenThere: freebsd-mobile@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Mobile computing with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Feb 2007 19:33:30 -0000 Please consider contributing to ICAS 2007, ICNS 2007 and the associated workshops listed below. Conference: June 19-25, 2007, Athens, Greece Important deadline for full paper submission: February 10, 2007 Please forward the Call for Submissions to the appropriate groups. ======================================= CALL FOR PAPERS ICAS 2007: The Third International Conference on Autonomic and Autonomous Systems: http://www.iaria.org/conferences2007/ICAS07.html ICNS 2007: The Third International Conference on Networking and Services http://www.iaria.org/conferences2007/ICNS07.html ======================================== Featuring also the workshops: - SELF 2007: The Second International Workshop on Self-adaptability and Self-management of Context-aware Systems http://www.iaria.org/conferences2007/SELF.html - KUI 2007: The First International Workshop on Knowledge-based User Interface http://www.iaria.org/conferences2007/KUI.html - IPv6DFI 2007: The Second International Workshop on Deploying the Future Infrastructure http://www.iaria.org/conferences2007/IPV6DFI.html - IPDy 2007: The Second International Workshop on Internet Packet Dynamics http://www.iaria.org/conferences2007/IPDY.html - GOBS 2007: The First International Workshop on GRID over Optical Burst Switching Networks http://www.iaria.org/conferences2007/GOBS.html =============================== Published by IEEE Computer Society Press Published in the IEEE Xplore Digital Library Indexing: http://www.computer.org/portal/pages/cscps/cps/cps_indexing.html =============================== ICAS 2007 Main Tracks: SYSAT: Advances in system automation AUTSY: Theory and practice of autonomous systems AWARE: Design and deployment of context-awareness networks, services and applications AUTONOMIC: Autonomic computing: design and management of self-behavioural networks and services MCMAC: Monitoring, control, and management of autonomous self-aware and context-aware systems CASES: Automation in specialized mobile environments ALCOC: Algorithms and theory for control and computation MODEL: Modelling, virtualization, any-on-demand, MDA, SOA ============================================= ICNS 2007 Main Tracks: ENCOT: Emerging Network Communications and Technologies COMAN: Network Control and Management SERVI: Multi-technology service deployment and assurance NGNUS: Next Generation Networks and Ubiquitous Services MPQSI: Multi Provider QoS/SLA Internetworking GRIDNS: Grid Networks and Services EDNA: Emergency Services and Disaster Recovery of Networks and Applications -- View this message in context: http://www.nabble.com/ICAS-2007---ICNS-2007%2C-Athens%2C-June-19-25%2C-2007-DEADLINE-EXTENDED-FEBRUARY-Invitation-tf3195311.html#a8872093 Sent from the freebsd-mobile mailing list archive at Nabble.com.