From owner-freebsd-mobile Sun Sep 9 9:31:48 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from femail34.sdc1.sfba.home.com (femail34.sdc1.sfba.home.com [24.254.60.24]) by hub.freebsd.org (Postfix) with ESMTP id A7C1C37B403 for ; Sun, 9 Sep 2001 09:31:45 -0700 (PDT) Received: from home.com ([24.183.155.95]) by femail34.sdc1.sfba.home.com (InterMail vM.4.01.03.20 201-229-121-120-20010223) with ESMTP id <20010909163145.BHAO28036.femail34.sdc1.sfba.home.com@home.com>; Sun, 9 Sep 2001 09:31:45 -0700 Message-ID: <3B9B9990.D7650EBB@home.com> Date: Sun, 09 Sep 2001 11:32:16 -0500 From: Chuck X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Cc: bkarp@icsi.berkeley.edu Subject: Linksys WAP11 and WPC11 on FreeBSD 4.3 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I recently purchased Linksys WAP11 and WPC11 pccard and had some trouble getting it to work with FreeBSD 4.3. I saw Brad Karp's post on 19 May, and while it was helpful, it was not immediately obvious exactly what needed to be changed in the if_wi.c driver. The following are the diffs that worked for me: /etc/defaults/pccard.conf diffs 1633,1637d1632 < # Linksys Wireless WPC11 < card "Instant Wireless " " Network PC CARD" < config auto "wi" ? < insert /etc/pccard_ether $device start < remove /etc/pccard_ether $device stop /usr/src/sys/i386/isa/if_wi.c diffs 376,382d375 < if( rx_frame.wi_status == NULL ) { < device_printf(sc->dev, "NULL wi_status received, returning" ); < m_freem(m); < ifp->if_ierrors++; < return; < } < Anybody get the WEP (swiss cheese) encryption to work between the WAP11 and the WPC11?? Cheers, -Chuck To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 11:42:18 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.wrs.com (unknown-1-11.windriver.com [147.11.1.11]) by hub.freebsd.org (Postfix) with ESMTP id B0AE437B406 for ; Sun, 9 Sep 2001 11:42:08 -0700 (PDT) Received: from windriver.com (johng-home-pc [147.11.33.26]) by mail.wrs.com (8.9.3/8.9.1) with ESMTP id LAA11755; Sun, 9 Sep 2001 11:41:27 -0700 (PDT) Message-ID: <3B9BB9EE.243608B5@windriver.com> Date: Sun, 09 Sep 2001 11:50:22 -0700 From: John Gordon X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Chuck Cc: freebsd-mobile@FreeBSD.ORG, bkarp@icsi.berkeley.edu Subject: Re: Linksys WAP11 and WPC11 on FreeBSD 4.3 References: <3B9B9990.D7650EBB@home.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello Chuck, I have the 40/64 but WEP running, but not the 128 bit yet. I am using the BEFW11S4 router/WAP combination, but I suspect it'll be basically the same for the wireless setup. I had to upgrade the firmware on that to be able to get 128 bit support (even though I'm stuck at the lower setting for now, I'm ready for 128 bit). The laptop side has the following in pccard.conf: # Linksys WPC11 802.11b network card card "Instant Wireless " " Network PC CARD" config auto "wi" ? 0x10000 insert /usr/sbin/wicontrol -i $device -p 1 insert /usr/sbin/wicontrol -i $device -f 6 insert /usr/sbin/wicontrol -i $device -k 0xXXXXXXXXXX -v 1 insert /usr/sbin/wicontrol -i $device -k 0xXXXXXXXXXX -v 2 insert /usr/sbin/wicontrol -i $device -k 0xXXXXXXXXXX -v 3 insert /usr/sbin/wicontrol -i $device -k 0xXXXXXXXXXX -v 4 insert /usr/sbin/wicontrol -i $device -e 1 insert /etc/pccard_ether $device start remove /etc/pccard_ether $device stop (Replace the 0xXXXXXXXXXX parts with the keys shown on the access point key config page.) I had a lot more changes than you've shown. Mostly, they came from the instructions at http://lists.bawug.org/pipermail/wireless/2001-May/001084.html Note that the automatic patching will fail as described in the instructions, and you will have to manually apply a change in the header file, if_wireg.h. Additionally, I added this change: *** if_wi.c Sat Sep 8 02:02:34 2001 --- if_wi.c.orig Sat Sep 8 00:27:34 2001 *************** *** 1454,1468 **** ifp = &sc->arpcom.ac_if; ! /* ! * If the card is gone and the memory port isn't mapped, we will ! * (hopefully) get 0xffff back from the status read, which is not ! * a valid status value. ! */ ! if (CSR_READ_2(sc, WI_STATUS) != 0xffff) { ! CSR_WRITE_2(sc, WI_INT_EN, 0); ! wi_cmd(sc, WI_CMD_DISABLE|sc->wi_portnum, 0); ! } untimeout(wi_inquire, sc, sc->wi_stat_ch); --- 1454,1461 ---- ifp = &sc->arpcom.ac_if; ! CSR_WRITE_2(sc, WI_INT_EN, 0); ! wi_cmd(sc, WI_CMD_DISABLE|sc->wi_portnum, 0); untimeout(wi_inquire, sc, sc->wi_stat_ch); This makes it safe to eject the card (without this change, my system freezes on eject). This is taken from version 1.31 (but it is not exactly that version since they relocated the source file so some of the headers don't match up). Hope that helps, if you get 128 bit working please let me know how ;-) John... PS If you'd like me to send you the if_wi.c and if_wireg.h files, please just let me know and I'll send them over. Chuck wrote: > > I recently purchased Linksys WAP11 and WPC11 pccard and had some trouble > getting it to work with FreeBSD 4.3. I saw Brad Karp's post on 19 May, > and while it was helpful, it was not immediately obvious exactly what > needed to be changed in the if_wi.c driver. The following are the diffs > that worked for me: > > /etc/defaults/pccard.conf diffs > > 1633,1637d1632 > < # Linksys Wireless WPC11 > < card "Instant Wireless " " Network PC CARD" > < config auto "wi" ? > < insert /etc/pccard_ether $device start > < remove /etc/pccard_ether $device stop > > /usr/src/sys/i386/isa/if_wi.c diffs > > 376,382d375 > < if( rx_frame.wi_status == NULL ) { > < device_printf(sc->dev, "NULL wi_status received, > returning" ); > < m_freem(m); > < ifp->if_ierrors++; > < return; > < } > < > > Anybody get the WEP (swiss cheese) encryption to work between the WAP11 > and the WPC11?? > > Cheers, > -Chuck > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 14:19:33 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from zima.ucf.ics.uci.edu (zima.ucf.ics.uci.edu [128.195.23.150]) by hub.freebsd.org (Postfix) with SMTP id 831EF37B40A for ; Sun, 9 Sep 2001 14:19:32 -0700 (PDT) Received: (qmail 5140 invoked from network); 9 Sep 2001 21:19:31 -0000 Received: from fosters.ucf.ics.uci.edu (HELO ucf.ics.uci.edu) (128.195.23.105) by zima.ucf.ics.uci.edu with SMTP; 9 Sep 2001 21:19:31 -0000 To: freebsd-mobile@FreeBSD.ORG Reply-To: sjh@ucf.ics.uci.edu Subject: suspend working anymore? acpi? Date: Sun, 09 Sep 2001 14:19:31 -0700 From: Seth Hettich Message-Id: <20010909211932.831EF37B40A@hub.freebsd.org> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org A "few" days ago suspend stopped working on my -current NEWCARD Dell CPi system. Well, it's more like resume stopped working. I thought I would check to see if this is common before I get to far. -Seth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 16:22:28 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id A111B37B401 for ; Sun, 9 Sep 2001 16:22:25 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f89NMO603785; Sun, 9 Sep 2001 17:22:24 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f89NMNt06902; Sun, 9 Sep 2001 17:22:23 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109092322.f89NMNt06902@harmony.village.org> To: Neal Subject: Re: Fwd: Surecom EP-427X (NE2000 Clone) Net Card Problem Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 20 Aug 1901 16:33:25 +1100." <20010820062711.A644F37B403@hub.freebsd.org> References: <20010820062711.A644F37B403@hub.freebsd.org> Date: Sun, 09 Sep 2001 17:22:23 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <20010820062711.A644F37B403@hub.freebsd.org> Neal writes: : I've looked for an if_ed.ko module but I can't find one anywhere, so I : can't load it manually. Do I need to do something special in the kernel : configuration file to get the ed device compiled in for pccard use? I don't know if 4.3 has the AX88190. But if it does, then you need to use config auto "ed" ? 0x30000 as your config line. I think that this card is just like the NetGear FA411 I just purchased. Can you give it a try? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 18:26:19 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from lunabase.org (adsl-63-200-244-106.dsl.lsan03.pacbell.net [63.200.244.106]) by hub.freebsd.org (Postfix) with ESMTP id 1B86137B403 for ; Sun, 9 Sep 2001 18:26:15 -0700 (PDT) Received: from praxis.lunabase.org (adsl-63-200-244-110.dsl.lsan03.pacbell.net [63.200.244.110]) by lunabase.org (8.11.4/8.11.4) with ESMTP id f8A1QEq52474; Sun, 9 Sep 2001 18:26:14 -0700 (PDT) (envelope-from faber@lunabase.org) Received: (from faber@localhost) by praxis.lunabase.org (8.11.5/8.11.5) id f8A1PXR43493; Sun, 9 Sep 2001 18:25:33 -0700 (PDT) (envelope-from faber) Date: Sun, 9 Sep 2001 18:25:33 -0700 From: Ted Faber To: Warner Losh Cc: Ted Faber , freebsd-mobile@FreeBSD.ORG Subject: Re: Fujitsu still hangs on pcmcia card insert - sorry for disappearing. Message-ID: <20010909182533.A43444@praxis.lunabase.org> References: <200109072140.f87LeMh64935@harmony.village.org> <20010907141515.H598@ted.isi.edu> <200109072140.f87LeMh64935@harmony.village.org> <200109080513.f885D9h67223@harmony.village.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=php-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109080513.f885D9h67223@harmony.village.org>; from imp@harmony.village.org on Fri, Sep 07, 2001 at 11:13:09PM -0600 X-url: http://www.lunabase.edu/~faber Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Sep 07, 2001 at 11:13:09PM -0600, Warner Losh wrote: > In message <200109072140.f87LeMh64935@harmony.village.org> Warner Losh writes: > : In message <20010907141515.H598@ted.isi.edu> Ted Faber writes: > : : hw.pcic.init_routing: 1 > : > : Try setting this to 0 as well. 1 doesn't work too well on many laptops. > > You never said if setting this to 0 fixed your problems or not. Maybe > just doing that is all you need... The only difference I notice with this is that when hw.pcic.init_routing is set to one, I can successfully kldload the snd_ds1 driver when a card is inserted. In either case, the first card insert or removal after the sound driver is installed freezes the machine. --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7nBaNaUz3f+Zf+XsRAoQ2AJ4m3O277yVI6FxG4kJojFYxRJGqawCgx3Qa /41Ft7rxwEtAlbXRE9IBgu8= =/Ycz -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 21: 9:23 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 1A8DA37B403 for ; Sun, 9 Sep 2001 21:09:11 -0700 (PDT) Received: from cain.gsoft.com.au (root@spare0.gsoft.com.au [203.38.152.114]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id NAA12391; Sat, 8 Sep 2001 13:48:30 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010907130733.M62813-100000@TMA-1.brad-x.com> Date: Sat, 08 Sep 2001 13:48:24 +0930 (CST) From: "Daniel O'Connor" To: Brad Laue Subject: re: dell inspiron 8000, maestro3 and apm Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 07-Sep-2001 Brad Laue wrote: > The same occurs on an Inspiron 8100 under 4.4-RC2, with the additional > oddity that the speakers blast a high whine until the module is unloaded - > I haven't suspended/wakened the laptop consecutively enough to see whether > it stopped unloading, but we share the same problem. You can work around it (at least on the i8000) by resetting the mixer values on suspend. I have been meaning to look at this problem but I keep forgetting :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 22:17:56 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from vaio.aviaport.ru (dialup-h.aviaport.ru [217.69.199.239]) by hub.freebsd.org (Postfix) with SMTP id 7B87437B403 for ; Sun, 9 Sep 2001 22:17:52 -0700 (PDT) Received: by vaio.aviaport.ru (Postfix, from userid 1001) id 04E46E2F26; Mon, 10 Sep 2001 09:17:47 +0400 (MSD) Date: Mon, 10 Sep 2001 09:17:47 +0400 From: Juriy Goloveshkin To: Seth Hettich Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: suspend working anymore? acpi? Message-ID: <20010910091747.B16575@aviaport.ru> References: <20010909211932.831EF37B40A@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010909211932.831EF37B40A@hub.freebsd.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Sep 09, 2001 at 02:19:31PM -0700, Seth Hettich wrote: > A "few" days ago suspend stopped working on my -current NEWCARD > Dell CPi system. Well, it's more like resume stopped working. > I thought I would check to see if this is common before I get to far. I don't know why acpi-developers think that acpi is ready to load by default. on my VAIO suspend doesn't work too. try to add hint.acpi.0.disable=1 into /boot/device.hints -- bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 22:22:41 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id A65A337B403 for ; Sun, 9 Sep 2001 22:22:36 -0700 (PDT) Received: from cain.gsoft.com.au (root@spare0.gsoft.com.au [203.38.152.114]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id OAA05052; Mon, 10 Sep 2001 14:52:24 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20010910091747.B16575@aviaport.ru> Date: Mon, 10 Sep 2001 14:52:23 +0930 (CST) From: "Daniel O'Connor" To: Juriy Goloveshkin Subject: Re: suspend working anymore? acpi? Cc: freebsd-mobile@FreeBSD.ORG, Seth Hettich Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 10-Sep-2001 Juriy Goloveshkin wrote: > I don't know why acpi-developers think that acpi is ready to load by > default. > on my VAIO suspend doesn't work too. > try to add hint.acpi.0.disable=1 into /boot/device.hints Because otherwise no-one will test it? Because this is -current and if it isn't tested it's useless? It's hardly complex to disable for a -current user (who I would expect would read the lists and know of up coming potential problems like this). --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 23:28:46 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from vaio.aviaport.ru (dialup-h.aviaport.ru [217.69.199.239]) by hub.freebsd.org (Postfix) with SMTP id 9E28137B409 for ; Sun, 9 Sep 2001 23:28:41 -0700 (PDT) Received: by vaio.aviaport.ru (Postfix, from userid 1001) id 29C6BE2F26; Mon, 10 Sep 2001 10:28:37 +0400 (MSD) Date: Mon, 10 Sep 2001 10:28:36 +0400 From: Juriy Goloveshkin To: Daniel O'Connor Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: suspend working anymore? acpi? Message-ID: <20010910102836.A24179@aviaport.ru> References: <20010910091747.B16575@aviaport.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Sep 10, 2001 at 02:52:23PM +0930, Daniel O'Connor wrote: > > I don't know why acpi-developers think that acpi is ready to load by > > default. > > on my VAIO suspend doesn't work too. > > try to add hint.acpi.0.disable=1 into /boot/device.hints > Because otherwise no-one will test it? I tested it. I've tried to report. maybe my reports are bad. for now I just want to say: I have 2 different notebooks and suspend doesn't work on both(different reasons). I reported abount that. I gave to developers info they asked me. And after reporting I disabled acpi: apm+apmd WORK and DO what I need. will I test acpi-thing? CERTAINLY yes. but I can test it in most cases only as 'just 2 notebooks owner'. it's a fact for me: first - test, if works then leave else report and disable. > Because this is -current and if it isn't tested it's useless? > It's hardly complex to disable for a -current user (who I would expect would > read the lists and know of up coming potential problems like this). ok. I've had 2 problems with CURRENT for a long time. in both cases kernel does panic. I sent letters to CURRENT, PR, MOBILE with kernel trace and panic-conditions... and? nobody even try to ask me some specific informarion. on CURRENT I have problems with ppp and vnodes, acpi and keyboard. I had one with pccard, but thanks to Warner Losh - He helped me. acpi-developers: thank them. They do very good things. I am contacting with them. vnode: I posted letter with problem to current-list... nobody had asked. OK. I did crosspost to last commiters who did commits to /sys/kern/vfs_subr.c nobody had asked. need I to do PR? may be. but primary I want to know what specific information developers need. sorry my emotion letter ;( -- bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Sep 9 23:43: 6 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cm1.ethome.net.tw (cm1.ethome.net.tw [210.58.94.21]) by hub.freebsd.org (Postfix) with SMTP id 2F9DE37B407 for ; Sun, 9 Sep 2001 23:43:01 -0700 (PDT) Received: (qmail 18598 invoked from network); 10 Sep 2001 06:36:31 -0000 Received: from 184.c210-58-188.ethome.net.tw (HELO CoreBit.com) (210.58.188.184) by cm1.ethome.net.tw with SMTP; 10 Sep 2001 06:36:31 -0000 Message-ID: <3B9C5686.13F2F70C@CoreBit.com> Date: Mon, 10 Sep 2001 13:58:30 +0800 From: Donny Lee X-Mailer: Mozilla 4.75 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: suspend working anymore? acpi? References: <20010909211932.831EF37B40A@hub.freebsd.org> <20010910091747.B16575@aviaport.ru> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Juriy Goloveshkin wrote: > On Sun, Sep 09, 2001 at 02:19:31PM -0700, Seth Hettich wrote: > > A "few" days ago suspend stopped working on my -current NEWCARD > > Dell CPi system. Well, it's more like resume stopped working. > > I thought I would check to see if this is common before I get to far. > I don't know why acpi-developers think that acpi is ready to load by default. > on my VAIO suspend doesn't work too. > try to add hint.acpi.0.disable=1 into /boot/device.hints acpi works on my ibm 570e, but i currently have it disabled to get my ps/2 mouse back. -- // Donny To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 4:15: 4 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id 35B0F37B407 for ; Mon, 10 Sep 2001 04:15:00 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [172.16.0.12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id f8ABEri70510; Mon, 10 Sep 2001 12:14:53 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id f8ABEgJ58005; Mon, 10 Sep 2001 12:14:42 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200109101114.f8ABEgJ58005@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Juriy Goloveshkin Cc: "Daniel O'Connor" , freebsd-mobile@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: suspend working anymore? acpi? In-Reply-To: Message from Juriy Goloveshkin of "Mon, 10 Sep 2001 10:28:36 +0400." <20010910102836.A24179@aviaport.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 10 Sep 2001 12:14:42 +0100 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > on CURRENT I have problems with ppp and vnodes, acpi and keyboard. > I had one with pccard, but thanks to Warner Losh - He helped me. What sort of problem do you have with ppp ? > -- > bye > Juriy Goloveshkin -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 5:35:43 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 5D6F637B408 for ; Mon, 10 Sep 2001 05:35:37 -0700 (PDT) Received: (qmail 27369 invoked by uid 0); 10 Sep 2001 12:35:35 -0000 Received: from pd9e505bb.dip.t-dialin.net (HELO blob.ecademix.com) (217.229.5.187) by mail.gmx.net (mp003-rz3) with SMTP; 10 Sep 2001 12:35:35 -0000 Received: (qmail 440 invoked by uid 501); 10 Sep 2001 12:36:17 -0000 Date: Mon, 10 Sep 2001 14:36:17 +0200 From: Johannes Hofmann To: freebsd-mobile@freebsd.org Subject: another O2Micro success Message-ID: <20010910143617.D382@blob.baaderstrasse.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, pccard works fine again with latest -stable on my Thinkpad 1200i. thanks for the hard work, Johannes Hofmann pcic0: irq 10 at device 3.0 on pci0 pcic0: PCI Memory allocated: 0x44000000 pcic0: Warning: O2micro OZ68xx chips may not work pccard0: on pcic0 ... ed0 at port 0x300-0x31f irq 10 slot 0 on pccard0 ed0: address 00:00:e8:19:ce:f5, type NE2000 (16 bit) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 6: 3:37 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from vaio.aviaport.ru (vaio.aviaport.ru [217.69.199.242]) by hub.freebsd.org (Postfix) with SMTP id 846B737B406 for ; Mon, 10 Sep 2001 06:03:34 -0700 (PDT) Received: by vaio.aviaport.ru (Postfix, from userid 1001) id E5843E2F26; Mon, 10 Sep 2001 17:03:25 +0400 (MSD) Date: Mon, 10 Sep 2001 17:03:25 +0400 From: Juriy Goloveshkin To: Brian Somers Cc: Daniel O'Connor , freebsd-mobile@FreeBSD.ORG Subject: Re: suspend working anymore? acpi? Message-ID: <20010910170325.A932@aviaport.ru> References: <20010910102836.A24179@aviaport.ru> <200109101114.f8ABEgJ58005@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200109101114.f8ABEgJ58005@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Sep 10, 2001 at 12:14:42PM +0100, Brian Somers wrote: > > on CURRENT I have problems with ppp and vnodes, acpi and keyboard. > > I had one with pccard, but thanks to Warner Losh - He helped me. > What sort of problem do you have with ppp ? 1. pcmcia-modem 2. active ppp-link zzz ---- wakeup -> panic the same problem is with pppd(as I remember). I'll give you dump-information in 5-6 hours: my pcmcia-modem is at home... -- bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 7:24:50 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from Awfulhak.org (gw.Awfulhak.org [217.204.245.18]) by hub.freebsd.org (Postfix) with ESMTP id BC6C837B407 for ; Mon, 10 Sep 2001 07:24:45 -0700 (PDT) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [172.16.0.12]) by Awfulhak.org (8.11.6/8.11.6) with ESMTP id f8AEOhi71150; Mon, 10 Sep 2001 15:24:43 +0100 (BST) (envelope-from brian@freebsd-services.com) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.11.6/8.11.6) with ESMTP id f8AEOWJ60187; Mon, 10 Sep 2001 15:24:32 +0100 (BST) (envelope-from brian@freebsd-services.com) Message-Id: <200109101424.f8AEOWJ60187@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Juriy Goloveshkin Cc: Brian Somers , "Daniel O'Connor" , freebsd-mobile@FreeBSD.ORG, brian@freebsd-services.com Subject: Re: suspend working anymore? acpi? In-Reply-To: Message from Juriy Goloveshkin of "Mon, 10 Sep 2001 17:03:25 +0400." <20010910170325.A932@aviaport.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 10 Sep 2001 15:24:31 +0100 From: Brian Somers Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > On Mon, Sep 10, 2001 at 12:14:42PM +0100, Brian Somers wrote: > > > on CURRENT I have problems with ppp and vnodes, acpi and keyboard. > > > I had one with pccard, but thanks to Warner Losh - He helped me. > > What sort of problem do you have with ppp ? > 1. pcmcia-modem > 2. active ppp-link > zzz > ---- > wakeup -> panic > the same problem is with pppd(as I remember). > > I'll give you dump-information in 5-6 hours: my pcmcia-modem is at home... Hmm, I've never been able to suspend and resume on my laptop (with APM or ACPI), so I'm not going to be able to help I'm afraid. My apologies. > -- > bye > Juriy Goloveshkin -- Brian http://www.freebsd-services.com/ Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 11:47:37 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 1947337B408 for ; Mon, 10 Sep 2001 11:45:33 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8AIjWQ27332 for ; Mon, 10 Sep 2001 11:45:32 -0700 (PDT) Message-ID: <3B9D0A4C.2090203@isi.edu> Date: Mon, 10 Sep 2001 11:45:32 -0700 From: Lars Eggert User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.2-RELEASE i386; en-US; rv:0.9) Gecko/20010529 X-Accept-Language: en, de MIME-Version: 1.0 To: mobile@freebsd.org Subject: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Content-Type: multipart/mixed; boundary="------------070207000106010001000906" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------070207000106010001000906 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi, I've installed 4.4-RC4 on a new Dell Latitude C600, and PC-cards aren't working. Following the (extensive) thread about this earlier, I'm still confused as to which settings could fix this. Problem: Any card I insert is probed twice! For example, I insert a Linksys PCMPC100 card, it is probed correctly as ed0 ("ed0 at port 0x300-0x31f irq 11 slot 1 on pccard1"). A few seconds later, I get a second probe message ("ed1 at port 0x320-0x33f irq 11 slot 1 on pccard1") for the same card, and the machine freezes up. Does 4.4-RC4 have Warner's latest patches, or should I try -STABLE? With the new PC-card code, is listing of available interrupts in /etc/pccard.conf still required? Here's the related pcic sysctl settings, I haven't changed any from the default: hw.pcic.irq: 0 hw.pcic.ignore_function_1: 0 hw.pcic.intr_path: 2 hw.pcic.init_routing: 0 machdep.pccard.pcic_resume_reset: 1 Kernel config and dmesg output are included as attachments. Let me know if I can provide more information to track this down! Thanks, Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------070207000106010001000906 Content-Type: text/plain; name="dmesg" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="dmesg" Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.4-RC4 #0: Fri Sep 7 20:42:58 PDT 2001 larse@g.postel.org:/usr/src/sys/compile/KERNEL-1.22 Calibrating clock(s) ... TSC clock: 701557725 Hz, i8254 clock: 1193125 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium III/Pentium III Xeon/Celeron (701.59-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x68a Stepping = 10 Features=0x383f9ff real memory = 268283904 (261996K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x00480000 - 0x0ffd2fff, 263532544 bytes (64339 pages) avail memory = 256204800 (250200K bytes) bios32: Found BIOS32 Service Directory header at 0xc00ffe80 bios32: Entry = 0xffe90 (c00ffe90) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xc12e pnpbios: Found PnP BIOS data at 0xc00fe2d0 pnpbios: Entry = f0000:e2f4 Rev = 1.0 pnpbios: Event flag at 4b4 Other BIOS signatures found: ACPI: 000f3f70 Preloaded elf kernel "kernel" at 0xc045a000. Preloaded elf module "snd_maestro3.ko" at 0xc045a0a8. Preloaded elf module "snd_pcm.ko" at 0xc045a14c. VESA: information block 56 45 53 41 00 02 00 01 00 01 01 00 00 00 22 00 00 01 80 00 00 01 0e 01 00 01 24 01 00 01 29 01 00 01 82 01 0d 01 0e 01 0f 01 20 01 92 01 93 01 94 01 95 01 96 01 a2 01 a3 01 a4 01 a5 01 a6 01 VESA: 0 mode(s) found module_register_init: MOD_LOAD (vesa, c02fa354, 0) error 6 Pentium Pro MTRR support enabled pci_open(1): mode 1 addr port (0x0cf8) is 0x80003ac0 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) Using $PIR table, 9 entries at 0xc00fbd70 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x8086, dev=0x7190, revid=0x03 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base f4000000, size 26 found-> vendor=0x8086, dev=0x7191, revid=0x03 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=1 secondarybus=1 found-> vendor=0x104c, dev=0xac51, revid=0x00 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=11 found-> vendor=0x104c, dev=0xac51, revid=0x00 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=11 found-> vendor=0x8086, dev=0x7110, revid=0x02 class=06-80-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x7111, revid=0x01 class=01-01-80, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[20]: type 1, range 32, base 00000860, size 4 found-> vendor=0x8086, dev=0x7112, revid=0x01 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=d, irq=11 map[20]: type 1, range 32, base 0000dce0, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x03 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[90]: type 1, range 32, base 00000840, size 4 found-> vendor=0x125d, dev=0x1998, revid=0x10 class=04-01-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=5 map[10]: type 1, range 32, base 0000d800, size 8 map[14]: type 1, range 32, base f3ffe000, size 13 found-> vendor=0x10b7, dev=0x6055, revid=0x10 class=02-00-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 0000d400, size 8 map[14]: type 1, range 32, base f3ffdc00, size 7 map[18]: type 1, range 32, base f3ffd800, size 7 found-> vendor=0x10b7, dev=0x1007, revid=0x10 class=07-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 0000d000, size 8 map[14]: type 1, range 32, base f3ffd400, size 8 map[18]: type 1, range 32, base f3ffd000, size 7 pci0: on pcib0 agp0: mem 0xf4000000-0xf7ffffff at device 0.0 on pci0 agp0: allocating GATT for aperture of size 64M pcib1: at device 1.0 on pci0 found-> vendor=0x1002, dev=0x4c46, revid=0x02 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base f8000000, size 26 map[14]: type 1, range 32, base 0000ec00, size 8 map[18]: type 1, range 32, base fdffc000, size 14 pci1: on pcib1 pci1: (vendor=0x1002, dev=0x4c46) at 0.0 irq 11 pcic0: irq 11 at device 3.0 on pci0 pcic0: PCI Memory allocated: 0x44000000 pcic0: TI12XX PCI Config Reg: [ring enable][speaker enable][CSC serial isa irq] pccard0: on pcic0 pcic1: irq 11 at device 3.1 on pci0 pcic1: PCI Memory allocated: 0x44001000 pcic1: TI12XX PCI Config Reg: [ring enable][speaker enable][CSC serial isa irq] using shared irq11. pccard1: on pcic1 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x860-0x86f at device 7.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x0860 ata0: mask=03 status0=50 status1=00 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI probe a=00 b=00 ata0-slave: ATAPI probe a=00 b=00 ata0: mask=03 status0=50 status1=00 ata0-master: ATA probe a=01 b=a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x0868 ata1: mask=00 status0=ff status1=ff ata1: probe allocation failed uhci0: port 0xdce0-0xdcff irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered intpm0: port 0x840-0x84f irq 9 at device 7.3 on pci0 intpm0: I/O mapped 840 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped 800 pcm0: port 0xd800-0xd8ff mem 0xf3ffe000-0xf3ffffff irq 5 at device 8.0 on pci0 pcm0: ac97 codec id 0x83847609 (SigmaTel STAC9721/9723) pcm0: ac97 codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: ac97 primary codec extended features AMAP pcm: setmap 15000, 1000; 0xd2c39000 -> 15000 pcm: setmap 16000, 1000; 0xd2c3a000 -> 16000 xl0: <3Com 3c556 Fast Etherlink XL> port 0xd400-0xd4ff mem 0xf3ffd800-0xf3ffd87f,0xf3ffdc00-0xf3ffdc7f irq 11 at device 16.0 on pci0 xl0: Ethernet address: 00:04:76:45:47:e0 xl0: media options word: 40 xl0: found MII/AUTO miibus0: on xl0 ukphy0: on miibus0 ukphy0: OUI 0x00c000, model 0x0000, rev. 0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: xl0 attached pci0: (vendor=0x10b7, dev=0x1007) at 16.1 irq 11 pcic-: pcic0 exists, using next available unit number pcic-: pcic1 exists, using next available unit number Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0:
Has anyone gotten a Linksys PCMPC100 V3 = to work=20 with 4.x or -current?  I've only been able to get it to work with = Netbsd=20 and 3.5.1 with the PAO patches.  When booting current or 4.3 (and = 4.4-RC),=20 I keep getting "ed1: device timeout" errors.  The card is getting = the data,=20 since I can see the light on the dongle cable flash whenever I ping = it.  Another strange thing is Netbsd and Fbsd read the mac = addresses=20 differently.  I'm not sure if this is the problem, or=20 not.
 
The machine is a IBM Thinkpad = 760EL.  I've=20 also tried it in a Toshiba Satellite 1555CDS, with the same=20 results.
 
Thanks,
Flint
 
------=_NextPart_000_0021_01C13A0C.7425FDF0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 12:45: 9 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 8858D37B40B for ; Mon, 10 Sep 2001 12:45:05 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8AJj5Q04578 for ; Mon, 10 Sep 2001 12:45:05 -0700 (PDT) Message-ID: <3B9D1841.3020706@isi.edu> Date: Mon, 10 Sep 2001 12:45:05 -0700 From: Lars Eggert User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.2-RELEASE i386; en-US; rv:0.9) Gecko/20010529 X-Accept-Language: en, de MIME-Version: 1.0 Cc: mobile@freebsd.org Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Done some more experiments, see below. Lars Eggert wrote: > Problem: Any card I insert is probed twice! For example, I insert a > Linksys PCMPC100 card, it is probed correctly as ed0 ("ed0 at port > 0x300-0x31f irq 11 slot 1 on pccard1"). A few seconds later, I get a > second probe message ("ed1 at port 0x320-0x33f irq 11 slot 1 on > pccard1") for the same card, and the machine freezes up. ... > Here's the related pcic sysctl settings, I haven't changed any from the > default: > > hw.pcic.irq: 0 > hw.pcic.ignore_function_1: 0 > hw.pcic.intr_path: 2 > hw.pcic.init_routing: 0 > machdep.pccard.pcic_resume_reset: 1 Ted Faber wrote: > The two I've had the most luck tweaking are > > hw.pcic.intr_path: [12] > hw.pcic.init_routing: [01] I've played with the settings Ted suggested, and here's what I found: Case 1: hw.pcic.intr_path=2 and hw.pcic.init_routing=1 Result: Unchanged (card probes twice, followed by hang) Case 2: hw.pcic.intr_path=1 and hw.pcic.init_routing=1 Result: Hangs as soon as the card is inserted Case 3: hw.pcic.intr_path=1 and hw.pcic.init_routing=0 Result: Hangs as soon as the card is inserted Any ideas? Thanks, Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 13: 6:58 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from vaio.aviaport.ru (dialup-h.aviaport.ru [217.69.199.239]) by hub.freebsd.org (Postfix) with SMTP id 6269837B407; Mon, 10 Sep 2001 13:06:21 -0700 (PDT) Received: by vaio.aviaport.ru (Postfix, from userid 1001) id 55E2EE2F26; Tue, 11 Sep 2001 00:06:16 +0400 (MSD) Date: Tue, 11 Sep 2001 00:06:16 +0400 From: Juriy Goloveshkin To: Brian Somers Cc: freebsd-mobile@FreeBSD.ORG, freebsd-current@freebsd.org Subject: ppp -> suspend -> wakeup problem Message-ID: <20010911000615.A1326@aviaport.ru> References: <20010910170325.A932@aviaport.ru> <200109101424.f8AEOWJ60187@hak.lan.Awfulhak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200109101424.f8AEOWJ60187@hak.lan.Awfulhak.org> User-Agent: Mutt/1.3.22.1i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Sep 10, 2001 at 03:24:31PM +0100, Brian Somers wrote: > > > What sort of problem do you have with ppp ? > > 1. pcmcia-modem > > 2. active ppp-link > > zzz > > ---- > > wakeup -> panic > > the same problem is with pppd(as I remember). > > I'll give you dump-information in 5-6 hours: my pcmcia-modem is at home... > > Hmm, I've never been able to suspend and resume on my laptop (with > APM or ACPI), so I'm not going to be able to help I'm afraid. ohh... I think it is so booooring to boot twice a day... > My apologies. never mind, but... could you 'just to see', may be you'll have any ideas? I think the problem is: when I suspend my system, pccard is unregistred and disapeared as device. when I resume, it needs some time to activate device back, but in the same time ppp or tun or bpf or some network stuff try to talk with this device and... ta-da I think I saw the same when I suspend with pccard-NIC at the moment, when trafshow was running... GNU gdb 4.18 Copyright 1998 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-unknown-freebsd"... IdlePTD 4993024 initial pcb at 2e85a0 panicstr: from debugger panic messages: --- Fatal trap 12: page fault while in kernel mode fault virtual address = 0x14 fault code = supervisor read, page not present instruction pointer = 0x8:0xc014709f stack pointer = 0x10:0xcfc97c60 frame pointer = 0x10:0xcfc97c78 code segment = base 0x0, limit 0xfffff, type 0x1b = DPL 0, pres 1, def32 1, gran 1 processor eflags = interrupt enabled, resume, IOPL = 0 current process = 616 (ppp) \\|/ ____ \\|/ "@'/ .. \\`@" /_| \\__/ |_\\ \\__U_/ panic: from debugger \\|/ ____ \\|/ "@'/ .. \\`@" /_| \\__/ |_\\ \\__U_/ panic: from debugger Uptime: 2m26s dumping to dev ad0s3b, offset 128 dump ata0: resetting devices .. done 255 254 253 252 251 250 249 248 247 246 245 244 243 242 241 240 239 238 237 236 235 234 233 232 231 230 229 228 227 226 225 224 223 222 221 220 219 218 217 216 215 214 213 212 211 210 209 208 207 206 205 204 203 202 201 200 199 198 197 196 195 194 193 192 191 190 189 188 187 186 185 184 183 182 181 180 179 178 177 176 175 174 173 172 171 170 169 168 167 166 165 164 163 162 161 160 159 158 157 156 155 154 153 152 151 150 149 148 147 146 145 144 143 142 141 140 139 138 137 136 135 134 133 132 131 130 129 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 110 109 108 107 106 105 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 82 81 80 79 78 77 76 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 51 50 49 48 47 46 45 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0 --- #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:489 489 if (dumping++) { (kgdb) bt #0 dumpsys () at /usr/src/sys/kern/kern_shutdown.c:489 #1 0xc0170f68 in boot (howto=260) at /usr/src/sys/kern/kern_shutdown.c:332 #2 0xc01713de in panic (fmt=0xc028b1be "from debugger") at /usr/src/sys/kern/kern_shutdown.c:657 #3 0xc01287c1 in db_panic (addr=-1072402273, have_addr=0, count=1, modif=0xcfc97adc "") at /usr/src/sys/ddb/db_command.c:443 #4 0xc0128761 in db_command (last_cmdp=0xc02c69f8, cmd_table=0xc02c6838, aux_cmd_tablep=0xc02be560, aux_cmd_tablep_end=0xc02be564) at /usr/src/sys/ddb/db_command.c:341 #5 0xc012882b in db_command_loop () at /usr/src/sys/ddb/db_command.c:465 #6 0xc012aa9f in db_trap (type=12, code=0) at /usr/src/sys/ddb/db_trap.c:72 #7 0xc0265204 in kdb_trap (type=12, code=0, regs=0xcfc97c20) at /usr/src/sys/i386/i386/db_interface.c:167 #8 0xc0273468 in trap_fatal (frame=0xcfc97c20, eva=20) at /usr/src/sys/i386/i386/trap.c:929 #9 0xc02731c5 in trap_pfault (frame=0xcfc97c20, usermode=0, eva=20) at /usr/src/sys/i386/i386/trap.c:848 #10 0xc02728a4 in trap (frame={tf_fs = -1070727144, tf_es = 16, tf_ds = -1070661616, tf_edi = 0, tf_esi = -1032471552, tf_ebp = -808878984, tf_isp = -808879028, tf_ebx = -808878956, tf_edx = 0, tf_ecx = 19, tf_eax = 64, tf_trapno = 12, tf_err = 0, tf_eip = -1072402273, tf_cs = 8, tf_eflags = 66195, tf_esp = -1032471552, tf_ss = 64}) at /usr/src/sys/i386/i386/trap.c:405 #11 0xc014709f in spec_poll (ap=0xcfc97c94) ---Type to continue, or q to quit--- at /usr/src/sys/fs/specfs/spec_vnops.c:333 #12 0xc0146d1d in spec_vnoperate (ap=0xcfc97c94) at /usr/src/sys/fs/specfs/spec_vnops.c:119 #13 0xc01bfd4f in vn_poll (fp=0xc2ac2200, events=64, cred=0xc2ac6900, p=0xcfb95540) at vnode_if.h:381 #14 0xc01961a3 in selscan (p=0xcfb95540, ibits=0xcfc97d44, obits=0xcfc97d38, nfd=7) at /usr/src/sys/sys/file.h:192 #15 0xc0195b15 in select (p=0xcfb95540, uap=0xcfc97f80) at /usr/src/sys/kern/sys_generic.c:838 #16 0xc0273ac5 in syscall (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 0, tf_esi = 134842880, tf_ebp = -1077937900, tf_isp = -808878124, tf_ebx = -1, tf_edx = 134991872, tf_ecx = 134945792, tf_eax = 93, tf_trapno = 0, tf_err = 2, tf_eip = 673186856, tf_cs = 31, tf_eflags = 659, tf_esp = -1077937992, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1117 #17 0xc026627d in syscall_with_err_pushed () #18 0x806de25 in ?? () #19 0x804b395 in ?? () (kgdb) up 10 #10 0xc02728a4 in trap (frame={tf_fs = -1070727144, tf_es = 16, tf_ds = -1070661616, tf_edi = 0, tf_esi = -1032471552, tf_ebp = -808878984, tf_isp = -808879028, tf_ebx = -808878956, tf_edx = 0, tf_ecx = 19, tf_eax = 64, tf_trapno = 12, tf_err = 0, tf_eip = -1072402273, tf_cs = 8, tf_eflags = 66195, tf_esp = -1032471552, tf_ss = 64}) at /usr/src/sys/i386/i386/trap.c:405 405 (void) trap_pfault(&frame, FALSE, eva); (kgdb) up 1 #11 0xc014709f in spec_poll (ap=0xcfc97c94) at /usr/src/sys/fs/specfs/spec_vnops.c:333 333 return (*devsw(dev)->d_poll)(dev, ap->a_events, ap->a_p); (kgdb) list 328 } */ *ap; 329 { 330 dev_t dev; 331 332 dev = ap->a_vp->v_rdev; 333 return (*devsw(dev)->d_poll)(dev, ap->a_events, ap->a_p); 334 } 335 336 /* ARGSUSED */ 337 static int (kgdb) up #12 0xc0146d1d in spec_vnoperate (ap=0xcfc97c94) at /usr/src/sys/fs/specfs/spec_vnops.c:119 119 return (VOCALL(spec_vnodeop_p, ap->a_desc->vdesc_offset, ap)); (kgdb) list 114 struct vop_generic_args /* { 115 struct vnodeop_desc *a_desc; 116 117 } */ *ap; 118 { 119 return (VOCALL(spec_vnodeop_p, ap->a_desc->vdesc_offset, ap)); 120 } 121 122 static void spec_getpages_iodone __P((struct buf *bp)); 123 (kgdb) up #13 0xc01bfd4f in vn_poll (fp=0xc2ac2200, events=64, cred=0xc2ac6900, p=0xcfb95540) at vnode_if.h:381 381 rc = VCALL(vp, VOFFSET(vop_poll), &a); (kgdb) list 376 a.a_desc = VDESC(vop_poll); 377 a.a_vp = vp; 378 a.a_events = events; 379 a.a_cred = cred; 380 a.a_p = p; 381 rc = VCALL(vp, VOFFSET(vop_poll), &a); 382 return (rc); 383 } 384 struct vop_kqfilter_args { 385 struct vnodeop_desc *a_desc; (kgdb) up #14 0xc01961a3 in selscan (p=0xcfb95540, ibits=0xcfc97d44, obits=0xcfc97d38, nfd=7) at /usr/src/sys/sys/file.h:192 192 error = (*fp->f_ops->fo_poll)(fp, events, cred, p); (kgdb) list 187 struct proc *p; 188 { 189 int error; 190 191 fhold(fp); 192 error = (*fp->f_ops->fo_poll)(fp, events, cred, p); 193 fdrop(fp, p); 194 return (error); 195 } 196 (kgdb) up #15 0xc0195b15 in select (p=0xcfb95540, uap=0xcfc97f80) at /usr/src/sys/kern/sys_generic.c:838 838 error = selscan(p, ibits, obits, uap->nd); (kgdb) list 833 PROC_LOCK(p); 834 retry: 835 ncoll = nselcoll; 836 p->p_flag |= P_SELECT; 837 PROC_UNLOCK(p); 838 error = selscan(p, ibits, obits, uap->nd); 839 PROC_LOCK(p); 840 if (error || p->p_retval[0]) 841 goto done; 842 if (atv.tv_sec || atv.tv_usec) { (kgdb) up #16 0xc0273ac5 in syscall (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, tf_edi = 0, tf_esi = 134842880, tf_ebp = -1077937900, tf_isp = -808878124, tf_ebx = -1, tf_edx = 134991872, tf_ecx = 134945792, tf_eax = 93, tf_trapno = 0, tf_err = 2, tf_eip = 673186856, tf_cs = 31, tf_eflags = 659, tf_esp = -1077937992, tf_ss = 47}) at /usr/src/sys/i386/i386/trap.c:1117 1117 error = (*callp->sy_call)(p, args); (kgdb) list 1112 p->p_retval[0] = 0; 1113 p->p_retval[1] = frame.tf_edx; 1114 1115 STOPEVENT(p, S_SCE, narg); 1116 1117 error = (*callp->sy_call)(p, args); 1118 1119 switch (error) { 1120 case 0: 1121 frame.tf_eax = p->p_retval[0]; (kgdb) up #17 0xc026627d in syscall_with_err_pushed () (kgdb) list 1122 frame.tf_edx = p->p_retval[1]; 1123 frame.tf_eflags &= ~PSL_C; 1124 break; 1125 1126 case ERESTART: 1127 /* 1128 * Reconstruct pc, assuming lcall $X,y is 7 bytes, 1129 * int 0x80 is 2 bytes. We saved this in tf_err. 1130 */ 1131 frame.tf_eip -= frame.tf_err; (kgdb) up #18 0x806de25 in ?? () -- bye Juriy Goloveshkin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 13:51:49 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from franklin.physics.purdue.edu (franklin.physics.purdue.edu [128.210.146.222]) by hub.freebsd.org (Postfix) with ESMTP id 7074537B401 for ; Mon, 10 Sep 2001 13:51:45 -0700 (PDT) Received: from physics.purdue.edu (curie.physics.purdue.edu [128.210.68.223]) by franklin.physics.purdue.edu (Postfix) with ESMTP id 63D3520F04; Mon, 10 Sep 2001 15:51:47 -0500 (EST) Received: by physics.purdue.edu (Postfix, from userid 12409) id 8A0E979; Mon, 10 Sep 2001 15:51:42 -0500 (EST) Date: Mon, 10 Sep 2001 15:51:42 -0500 From: Will Andrews To: Flint Cc: freebsd-mobile@freebsd.org Subject: Re: PCMPC100 (v3) Message-ID: <20010910155142.K30764@curie.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Flint , freebsd-mobile@freebsd.org References: <002401c13a2d$fb6564b0$9865fea9@satellite> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.17i In-Reply-To: <002401c13a2d$fb6564b0$9865fea9@satellite>; from flint@virtualflu.com on Mon, Sep 10, 2001 at 03:22:50PM -0400 X-Operating-System: FreeBSD 4.3-STABLE i386 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, Sep 10, 2001 at 03:22:50PM -0400, Flint (flint@virtualflu.com) wrote: > Has anyone gotten a Linksys PCMPC100 V3 to work with 4.x or -current? I've only been able to get it to work with Netbsd and 3.5.1 with the PAO patches. When booting current or 4.3 (and 4.4-RC), I keep getting "ed1: device timeout" errors. The card is getting the data, since I can see the light on the dongle cable flash whenever I ping it. Another strange thing is Netbsd and Fbsd read the mac addresses differently. I'm not sure if this is the problem, or not. > > The machine is a IBM Thinkpad 760EL. I've also tried it in a Toshiba Satellite 1555CDS, with the same results. It's not a PCMPC100, but my PCM100 works great on -CURRENT. Did you try putting the card in slot #0 instead of slot #1? -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 13:56:55 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id E581D37B409 for ; Mon, 10 Sep 2001 13:56:53 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8AKurQ17267 for ; Mon, 10 Sep 2001 13:56:53 -0700 (PDT) Message-ID: <3B9D2915.9080506@isi.edu> Date: Mon, 10 Sep 2001 13:56:53 -0700 From: Lars Eggert User-Agent: Mozilla/5.0 (X11; U; FreeBSD 4.2-RELEASE i386; en-US; rv:0.9) Gecko/20010529 X-Accept-Language: en, de MIME-Version: 1.0 Cc: mobile@freebsd.org Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> <3B9D1841.3020706@isi.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [Bad style, following up to my own posts constantly, I know...] I forgot to mention that irq 11 seems to be shared between the video card, PCI-CardBus Bridge, USB controller and the onboard Ethernet/WinModem Mini PCI card (see dmesg output in my initial report). It *also* gets assigned to the PC card on insertion. Maybe this contributes to the problem? Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 17: 1:22 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from sparky.virtualflu.com (pool-151-197-235-55.phil.east.verizon.net [151.197.235.55]) by hub.freebsd.org (Postfix) with ESMTP id A958B37B403 for ; Mon, 10 Sep 2001 17:01:19 -0700 (PDT) Received: from satellite (satellite [10.0.0.4]) by sparky.virtualflu.com (Postfix) with SMTP id AEB55BDE59; Mon, 10 Sep 2001 20:01:17 -0400 (EDT) Message-ID: <007301c13a55$cee7bf50$9865fea9@satellite> From: "Flint" To: "Will Andrews" Cc: References: <002401c13a2d$fb6564b0$9865fea9@satellite> <20010910155142.K30764@curie.physics.purdue.edu> Subject: Re: PCMPC100 (v3) Date: Mon, 10 Sep 2001 20:07:55 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It's currently in slot 0, the other one has several pins broken (I got it as a used laptop), so cards won't work in it. Apparently, the pcmpc100 v2/v3 use different drivers than the v1, or other Linksys cards. - Flint > It's not a PCMPC100, but my PCM100 works great on -CURRENT. Did > you try putting the card in slot #0 instead of slot #1? > > -- > wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:23:14 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 4F97E37B40C for ; Mon, 10 Sep 2001 19:23:00 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2Mw608292; Mon, 10 Sep 2001 20:22:59 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2Mvt29179; Mon, 10 Sep 2001 20:22:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110222.f8B2Mvt29179@harmony.village.org> To: "Flint" Subject: Re: PCMPC100 (v3) Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 15:22:50 EDT." <002401c13a2d$fb6564b0$9865fea9@satellite> References: <002401c13a2d$fb6564b0$9865fea9@satellite> Date: Mon, 10 Sep 2001 20:22:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <002401c13a2d$fb6564b0$9865fea9@satellite> "Flint" writes: : Has anyone gotten a Linksys PCMPC100 V3 to work with 4.x or -current? = : I've only been able to get it to work with Netbsd and 3.5.1 with the PAO = : patches. When booting current or 4.3 (and 4.4-RC), I keep getting "ed1: = : device timeout" errors. The card is getting the data, since I can see = : the light on the dongle cable flash whenever I ping it. Another strange = : thing is Netbsd and Fbsd read the mac addresses differently. I'm not = : sure if this is the problem, or not. : : The machine is a IBM Thinkpad 760EL. I've also tried it in a Toshiba = : Satellite 1555CDS, with the same results. Try flags 0x30000. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:24:11 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from shell.wetworks.org (dsl-64-130-18-61.telocity.com [64.130.18.61]) by hub.freebsd.org (Postfix) with SMTP id C94CF37B403 for ; Mon, 10 Sep 2001 19:24:07 -0700 (PDT) Received: (qmail 35617 invoked by uid 1000); 11 Sep 2001 02:23:21 -0000 Date: Mon, 10 Sep 2001 22:23:21 -0400 From: Alan B Clegg To: freebsd-mobile@freebsd.org Subject: USB Query Message-ID: <20010910222321.D33987@shell.wetworks.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="+KJYzRxRHjYqLGl5" Content-Disposition: inline User-Agent: Mutt/1.2i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --+KJYzRxRHjYqLGl5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable My laptop (Sony Vaio PCG-C1VN) has no serial device, but does have that really nice USB adapter. ;-) I've purchased a Belkin USB <-> Serial=20 adapter that works passibly under W2K: http://catalog.belkin.com/IWCatProductPage.process?Product_Id=3D20938 I see an entry in the /etc/usbd.conf that mentions a similar device, the Entrega Serial with UART. I'm wondering (beyond hope, I'm afraid) if anyone has gotten the Belkin device working. Thanks! AlanC --=20 Alan Clegg FreeBSD core secretary abc@freebsd.org finger for PGP keys --+KJYzRxRHjYqLGl5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7nXWZyJP8xSfQVdsRAhs5AJ0TEJ0kKuakr3L04Iq593mYavwCJgCdHmDI 0HyRA6se4/aLfop0nhIa6l8= =0Wrz -----END PGP SIGNATURE----- --+KJYzRxRHjYqLGl5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:32:13 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 85C0B37B405 for ; Mon, 10 Sep 2001 19:32:08 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2W7608334; Mon, 10 Sep 2001 20:32:07 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2W6t29273; Mon, 10 Sep 2001 20:32:07 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110232.f8B2W6t29273@harmony.village.org> To: rdmurphy@vt.edu Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge Cc: FreeBSD-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 15:09:59 EDT." <15261.4103.952522.597428@localhost.econ.vt.edu> References: <15261.4103.952522.597428@localhost.econ.vt.edu> Date: Mon, 10 Sep 2001 20:32:06 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <15261.4103.952522.597428@localhost.econ.vt.edu> "Russell D. Murphy Jr." writes: : # maybe later: : hw.pcic.init_routing=1 Generally you do not want this. This is a no op when using ISA interrupts. : # : hw.pcic.intr_path=1 OK, so you are trying to use ISA interrupts. : I have tried no hw.pcic settings, and, in turn: : : - hw.pcic.irq alone This should never be set to a vlaue other than 0. And it is only used when ISA interrupts are done. : - hw.pcic.irq and hw.pcic.intr_routing intr_routing [sic] would be ignored. : Any suggestions? I'd use PCI interrupts. IRQ 9 is already asigned to the bridge. : pcic0: irq 9 at device 10.0 on pci0 : pcic0: PCI Memory allocated: 0x44000000 : pcic0: Polling mode : pcic0: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] : pccard0: on pcic0 : pcic1: irq 9 at device 10.1 on pci0 : pcic1: PCI Memory allocated: 0x44001000 : pcic1: Polling mode : pcic1: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] : pccard1: on pcic1 I'd try it without any set. What is your laptop? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:42: 2 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 0D3CE37B40C for ; Mon, 10 Sep 2001 19:41:59 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2fu608356; Mon, 10 Sep 2001 20:41:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2ftt29320; Mon, 10 Sep 2001 20:41:56 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110241.f8B2ftt29320@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 11:45:32 PDT." <3B9D0A4C.2090203@isi.edu> References: <3B9D0A4C.2090203@isi.edu> Date: Mon, 10 Sep 2001 20:41:55 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9D0A4C.2090203@isi.edu> Lars Eggert writes: : I've installed 4.4-RC4 on a new Dell Latitude C600, and PC-cards aren't : working. Following the (extensive) thread about this earlier, I'm still : confused as to which settings could fix this. The Latitude c600 fixes might not have made it into RC4, so I'd try something newer. At least I think the latitude uses the TI-1130. If it is the dmesg below, then the TI-1130 fixes are relevant. : Problem: Any card I insert is probed twice! I fixed this *AFTER* 4.4RC-4. The message should be benign, but there is anecdotal evidence that it isn't... : For example, I insert a : Linksys PCMPC100 card, it is probed correctly as ed0 ("ed0 at port : 0x300-0x31f irq 11 slot 1 on pccard1"). A few seconds later, I get a : second probe message ("ed1 at port 0x320-0x33f irq 11 slot 1 on : pccard1") for the same card, and the machine freezes up. Wow! It shouldn't do that. I'd try the latest -stable to see if it still happens. : With the new PC-card code, is listing of available interrupts in : /etc/pccard.conf still required? Only if you specifically set intr_path to 1. Otherwise, the system just deals for you. : pcic0: irq 11 at device 3.0 on pci0 : pcic0: PCI Memory allocated: 0x44000000 : pcic0: TI12XX PCI Config Reg: [ring enable][speaker enable][CSC serial isa irq] : pccard0: on pcic0 This should work with PCI interrupts. I've not seen any laptops that have an interrupt routed to the pci slot like you have that don't work. Most of the problems with PCI interrupts are with interrupt routing when the BIOS doesn't assign it on boot. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:43:27 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 7302437B407 for ; Mon, 10 Sep 2001 19:43:23 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2hM608364; Mon, 10 Sep 2001 20:43:22 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2hLt29342; Mon, 10 Sep 2001 20:43:21 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110243.f8B2hLt29342@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 12:45:05 PDT." <3B9D1841.3020706@isi.edu> References: <3B9D1841.3020706@isi.edu> <3B9D0A4C.2090203@isi.edu> Date: Mon, 10 Sep 2001 20:43:21 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9D1841.3020706@isi.edu> Lars Eggert writes: : Any ideas? Try newer -stable... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:44: 6 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id CB06937B405 for ; Mon, 10 Sep 2001 19:44:02 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2i1608372; Mon, 10 Sep 2001 20:44:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2i0t29362; Mon, 10 Sep 2001 20:44:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110244.f8B2i0t29362@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 13:56:53 PDT." <3B9D2915.9080506@isi.edu> References: <3B9D2915.9080506@isi.edu> <3B9D0A4C.2090203@isi.edu> <3B9D1841.3020706@isi.edu> Date: Mon, 10 Sep 2001 20:44:00 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9D2915.9080506@isi.edu> Lars Eggert writes: : It *also* gets assigned to the PC card on insertion. Maybe this : contributes to the problem? PCI shares things. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:45:54 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 3D33637B406 for ; Mon, 10 Sep 2001 19:45:49 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B2jmQ11823 for ; Mon, 10 Sep 2001 19:45:48 -0700 (PDT) Message-ID: <3B9D7ADC.C4F9493@isi.edu> Date: Mon, 10 Sep 2001 19:45:48 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 Cc: mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D1841.3020706@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110243.f8B2hLt29342@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms4880C3C3277F9D730D141C90" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms4880C3C3277F9D730D141C90 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > Try newer -stable... Warner, thanks for the quick reply! Currently cvsup'ing RELENG_4. Stay tuned... -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms4880C3C3277F9D730D141C90 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDI0NTQ4WjAjBgkqhkiG9w0BCQQxFgQUgPQV8vL57m7O89tdVc26 +4wdZPgwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYAY 44MdDRced9/6hU2kdJmQZSm/hRIWjV9VhxfaYZ1ePG5gjnDdu6EufEmmgoS+4dgwILB7ZVOL 2/ga5DFCMH5L6LcZLYoDgvtpIUUtpgOXbpugxOiE8JjAaq7qi8YV45znIK207mZasYR73HgX JKDhXqIAadYO8N/dPy7KkHDyZw== --------------ms4880C3C3277F9D730D141C90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:47:58 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from roam.psg.com (H-135-207-10-108.research.att.com [135.207.10.108]) by hub.freebsd.org (Postfix) with ESMTP id 5841E37B40E for ; Mon, 10 Sep 2001 19:47:56 -0700 (PDT) Received: from randy by roam.psg.com with local (Exim 3.33 #1) id 15gdaZ-0000VE-00; Mon, 10 Sep 2001 22:47:51 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Warner Losh Cc: Lars Eggert , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D1841.3020706@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110243.f8B2hLt29342@harmony.village.org> Message-Id: Date: Mon, 10 Sep 2001 22:47:51 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org c600 is fine for me with 4.4-rc as of maybe 20 hours ago. note that i still have the old pccard.conf hack in place # local overrides for /etc/defaults/pccard.conf memory 0xdc000 16k irq 7 9 10 # Lucent WaveLAN/IEEE card "Lucent Technologies" "WaveLAN/IEEE" config default "wi" ? insert /etc/pccard_wi $device insert /etc/pccard_ether $device start remove /etc/pccard_ether $device stop # SunDisk Flash ATA # (OEM: Epson Flash Packer) card "SunDisk" "/.*/" config 0x1 "ata" ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 19:49:57 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id EAF4C37B408 for ; Mon, 10 Sep 2001 19:49:54 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B2nr608400; Mon, 10 Sep 2001 20:49:53 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B2nrt29452; Mon, 10 Sep 2001 20:49:53 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110249.f8B2nrt29452@harmony.village.org> To: Randy Bush Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: Lars Eggert , mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 22:47:51 EDT." References: <3B9D1841.3020706@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110243.f8B2hLt29342@harmony.village.org> Date: Mon, 10 Sep 2001 20:49:53 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message Randy Bush writes: : c600 is fine for me with 4.4-rc as of maybe 20 hours ago. note that i still : have the old pccard.conf hack in place IIRC, you didn't have to set any hw.pcic.xxx settings to make it work, and things just worked with the shared interrupts. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 20: 1:14 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from roam.psg.com (H-135-207-10-108.research.att.com [135.207.10.108]) by hub.freebsd.org (Postfix) with ESMTP id 7195B37B401 for ; Mon, 10 Sep 2001 20:01:09 -0700 (PDT) Received: from randy by roam.psg.com with local (Exim 3.33 #1) id 15gdnM-0000aE-00; Mon, 10 Sep 2001 23:01:04 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Warner Losh Cc: Lars Eggert , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D1841.3020706@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110243.f8B2hLt29342@harmony.village.org> <200109110249.f8B2nrt29452@harmony.village.org> Message-Id: Date: Mon, 10 Sep 2001 23:01:04 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >> have the old pccard.conf hack in place > IIRC, you didn't have to set any hw.pcic.xxx settings to make it work, > and things just worked with the shared interrupts. indeed, after a bit of a test, you seem to RC indeed! hack removed. randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 20:13:32 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 0816937B405 for ; Mon, 10 Sep 2001 20:13:28 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B3DPQ16803; Mon, 10 Sep 2001 20:13:25 -0700 (PDT) Message-ID: <3B9D8155.C2FF4F88@isi.edu> Date: Mon, 10 Sep 2001 20:13:25 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG, randy@psg.com Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msF0AF432FD9CF3048DFEE58B3" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msF0AF432FD9CF3048DFEE58B3 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > In message <3B9D0A4C.2090203@isi.edu> Lars Eggert writes: > : For example, I insert a > : Linksys PCMPC100 card, it is probed correctly as ed0 ("ed0 at port > : 0x300-0x31f irq 11 slot 1 on pccard1"). A few seconds later, I get a > : second probe message ("ed1 at port 0x320-0x33f irq 11 slot 1 on > : pccard1") for the same card, and the machine freezes up. > > Wow! It shouldn't do that. I'd try the latest -stable to see if it > still happens. I cvsup'ed, and see no improvement with the Linksys card (it is still probed and attached twice, resulting in a hang). With a WaveLAN Gold card (also probed twice), however, the second attachment fails ("wi1: init failed", "wi1: mac read failed 5", "device_probe_and_attach: wi1 attach returned 5") and the machine survives the card insertion. However, upon removal, it panics in wi_intr+0x38. I have some more cards I could plug in, in case that'd help. Let me know. This is with these pcic sysctls set (all defaults): hw.pcic.irq: 0 hw.pcic.ignore_function_1: 0 hw.pcic.intr_path: 2 hw.pcic.init_routing: 0 machdep.pccard.pcic_resume_reset: 1 Since it seems to work for you, Randy, maybe you could email me you kernel config file and sysctl settings, so I can check if they work for me as well? Warner, feel free to make me run patches and test things; anything to make this work :-) Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msF0AF432FD9CF3048DFEE58B3 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDMxMzI1WjAjBgkqhkiG9w0BCQQxFgQUdeSUmwmxJIWi2CHDBibk TTeMBkEwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYBV gx0JKrIlkeFng4xpi4FSOfNhGrsj6y6uwaqkzwD28ZCvH4FOZXnlwICm++IKM7cNOIQaLDls rsOr/k0ugcojf2RawOOEbjKBRRkqfAw9eVWHhXmZ4ON9EXQRlErul/kMRl3YBDVYseZrySaj tv58vfq826qmuUwoD5oV5oXl5A== --------------msF0AF432FD9CF3048DFEE58B3-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 20:24: 1 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from roam.psg.com (H-135-207-10-108.research.att.com [135.207.10.108]) by hub.freebsd.org (Postfix) with ESMTP id C064D37B40C for ; Mon, 10 Sep 2001 20:23:59 -0700 (PDT) Received: from randy by roam.psg.com with local (Exim 3.33 #1) id 15ge9U-0000ca-00; Mon, 10 Sep 2001 23:23:56 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Lars Eggert Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> Message-Id: Date: Mon, 10 Sep 2001 23:23:56 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > Since it seems to work for you, Randy, maybe you could email me you > kernel config file and sysctl settings, so I can check if they work for > me as well? randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 20:41: 7 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 4552537B406 for ; Mon, 10 Sep 2001 20:41:03 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B3f1Q21825; Mon, 10 Sep 2001 20:41:01 -0700 (PDT) Message-ID: <3B9D87CD.81A03D08@isi.edu> Date: Mon, 10 Sep 2001 20:41:01 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msFCFD3EE277B351F46E423551" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msFCFD3EE277B351F46E423551 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Aha! Clue! If I boot with the card already inserted (as opposed to inserting it later), it's probed only once and attached correctly. The system survives ejecting the WaveLAN card, but hangs when ejecting the Linksys one. I'll try Randy's kernel next and see if that works better. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msFCFD3EE277B351F46E423551 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDM0MTAxWjAjBgkqhkiG9w0BCQQxFgQUCaCMeo3LMhEKfBSpyChn 2YhsOEUwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYB3 CCDeJEmzmzBPWAIxs5qLb277GZ7wdDTbWgND7KrC0bnVOfJme2evltkpBytcaZS0wawov3/e cC3QWLHs32UIafgzZIHGBOsy+BS0EPTXn92d2vf8qTQrSO4dzZoGVnjiICgeFAd8pqHZwyiL WVwuoEhbvLckF9P7awMeXAClJg== --------------msFCFD3EE277B351F46E423551-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 21: 0: 8 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 8975D37B40B for ; Mon, 10 Sep 2001 21:00:02 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B3xxQ24094; Mon, 10 Sep 2001 20:59:59 -0700 (PDT) Message-ID: <3B9D8C3F.2D2BF8B6@isi.edu> Date: Mon, 10 Sep 2001 20:59:59 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms6F08BB5D88F77753654CA482" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms6F08BB5D88F77753654CA482 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lars Eggert wrote: > I'll try Randy's kernel next and see if that works better. Did that, and nothing changed. Not sure what the difference between our machines is; the BIOS maybe (I'm running A13)? Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms6F08BB5D88F77753654CA482 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDM1OTU5WjAjBgkqhkiG9w0BCQQxFgQUoMAS9jMNkrP3STNeAC/D 7HCzxxswUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYCs TSt02El0bVCw4XCVzhtyfHnndcygDg+fVfTgIWr5IIg+a86norrrumpUZ7Op71m9naFEQS3K NjIxLxTv+SOaeHRTmW89bwwZ38TJ+M6KWs7Ef+Fr41mgd+Au2QL6b8ux9tj0Fyk2/2HGUfkl gK4/wat8bKYonY6GsdF+LqPSAg== --------------ms6F08BB5D88F77753654CA482-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 21:29:38 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 885CA37B407 for ; Mon, 10 Sep 2001 21:29:34 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B4TW608723; Mon, 10 Sep 2001 22:29:33 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B4TWt30205; Mon, 10 Sep 2001 22:29:32 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110429.f8B4TWt30205@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 20:59:59 PDT." <3B9D8C3F.2D2BF8B6@isi.edu> References: <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> Date: Mon, 10 Sep 2001 22:29:32 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9D8C3F.2D2BF8B6@isi.edu> Lars Eggert writes: : Did that, and nothing changed. Not sure what the difference between our : machines is; the BIOS maybe (I'm running A13)? You did update pccardd to at least RC4, right? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 21:46:58 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id BA3B337B407 for ; Mon, 10 Sep 2001 21:46:52 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B4koQ29293; Mon, 10 Sep 2001 21:46:50 -0700 (PDT) Message-ID: <3B9D973A.141FF5CF@isi.edu> Date: Mon, 10 Sep 2001 21:46:50 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms17C2718EF11FE9C87A3D629F" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms17C2718EF11FE9C87A3D629F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > You did update pccardd to at least RC4, right? Yes. I was running from an RC4 ISO installation when I posted my first message. When you responded and asked me to move to a newer -STABLE, I cvsup'ed, which I'm running now (and have been running during second round of reports.) Here's what's in pccard: /* $FreeBSD: src/sys/pccard/cardinfo.h,v 1.16.2.5 2001/07/28 03:52:15 imp Exp $ */ * $FreeBSD: src/sys/pccard/cis.h,v 1.3.10.1 2000/05/23 03:56:58 imp Exp $ * $FreeBSD: src/sys/pccard/driver.h,v 1.12.2.2 2001/04/21 05:52:30 imp Exp $ * $FreeBSD: src/sys/pccard/i82365.h,v 1.10.2.6 2001/09/04 20:06:41 imp Exp $ * $FreeBSD: src/sys/pccard/mecia.c,v 1.2.2.4 2001/08/14 23:36:18 imp Exp $ * $FreeBSD: src/sys/pccard/meciareg.h,v 1.2.2.1 2001/07/06 22:58:49 imp Exp $ * $FreeBSD: src/sys/pccard/pccard.c,v 1.106.2.9 2001/08/01 20:07:03 imp Exp $ /* $FreeBSD: src/sys/pccard/pccard_beep.c,v 1.3.2.3 2001/06/05 19:11:34 imp Exp $ */ * $FreeBSD: src/sys/pccard/pccard_nbk.c,v 1.15.2.9 2001/08/23 07:57:14 imp Exp $ * $FreeBSD: src/sys/pccard/pccard_nbk.h,v 1.4.2.1 2001/06/05 19:16:37 imp Exp $ * $FreeBSD: src/sys/pccard/pcic.c,v 1.89.2.22 2001/09/04 20:06:41 imp Exp $ * $FreeBSD: src/sys/pccard/pcic_isa.c,v 1.13.2.6 2001/09/04 20:06:41 imp Exp $ * $FreeBSD: src/sys/pccard/pcic_pci.c,v 1.54.2.16 2001/09/06 20:59:49 imp Exp $ * $FreeBSD: src/sys/pccard/pcic_pci.h,v 1.23.2.8 2001/09/04 20:06:41 imp Exp $ * $FreeBSD: src/sys/pccard/pcicvar.h,v 1.15.2.9 2001/09/04 20:06:41 imp Exp $ * $FreeBSD: src/sys/pccard/slot.h,v 1.25.2.4 2001/07/30 00:11:29 imp Exp $ -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms17C2718EF11FE9C87A3D629F Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDQ0NjUwWjAjBgkqhkiG9w0BCQQxFgQU2E8JgfXcANBVH54k6td4 QdCaAx8wUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYDM p4tYwWho2tEWFkFfZmtAzGqpF909KaBglOCRKuRAu4fnmp12A8V7YjyWCKpqy2Q6rfvZ2uVH Bevjnl/cWEvEjPzzhJrmLQHelwsCYT7g5Kt2o8Z0ySkuVXQEMW1LNl9y2hRUXPyk+lgkyAP4 b01OZyUo3yfpGp8p3F0ApK7xzQ== --------------ms17C2718EF11FE9C87A3D629F-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 21:52:39 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 6F8C037B405 for ; Mon, 10 Sep 2001 21:52:34 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B4qTQ29859; Mon, 10 Sep 2001 21:52:29 -0700 (PDT) Message-ID: <3B9D988D.DA008498@isi.edu> Date: Mon, 10 Sep 2001 21:52:29 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms7089286DFF9BFD10ACAFA10B" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms7089286DFF9BFD10ACAFA10B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lars Eggert wrote: > > Warner Losh wrote: > > You did update pccardd to at least RC4, right? > > Yes. I was running from an RC4 ISO installation when I posted my first > message. When you responded and asked me to move to a newer -STABLE, I > cvsup'ed, which I'm running now (and have been running during second > round of reports.) Doh! You said pccard*d*. (It's getting late.) I'm running the pccardd from the RC4 ISO CD. I'll build a newer one after cvsup'ing the needed -STABLE bits and let you know if that changes anything. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms7089286DFF9BFD10ACAFA10B Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDQ1MjI5WjAjBgkqhkiG9w0BCQQxFgQUxlYPuQrXI0EOvv0rOqbC 1ury+KUwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYAy k0d3065/fgm7pn/4PwUSP2yuD+XKEAUFy73cEaEfFMSNcwfVm09UhWHE5RebTk8aoNT+tRGm mG/aArpRR6ckZya4o8P+tdCaEhybFpXXJM9gJWsXataKxr/5DtZyN6tKSEH+e8fJ3p96/gTG t4LWtETEqg65Y4SY5xYrZuS75A== --------------ms7089286DFF9BFD10ACAFA10B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 21:55:32 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 1194A37B405 for ; Mon, 10 Sep 2001 21:55:29 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B4tQ608813; Mon, 10 Sep 2001 22:55:27 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B4tQt30414; Mon, 10 Sep 2001 22:55:26 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110455.f8B4tQt30414@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 21:52:29 PDT." <3B9D988D.DA008498@isi.edu> References: <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> Date: Mon, 10 Sep 2001 22:55:26 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9D988D.DA008498@isi.edu> Lars Eggert writes: : I'm running the pccardd from the RC4 ISO CD. I'll build a newer one : after cvsup'ing the needed -STABLE bits and let you know if that changes : anything. : Nothing has changed in pccard*D* since RC3 or so. I don't think it would help you. One other person reported this problem as well, but they had a corrupted system, so they reported later. But if it happens with your kernel and Randy's, then I'm not at all sure what to say. If this is really true, then we may have a show stopper bug on our hands. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 22: 6:47 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 232AB37B401 for ; Mon, 10 Sep 2001 22:06:43 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B56eQ01459; Mon, 10 Sep 2001 22:06:40 -0700 (PDT) Message-ID: <3B9D9BDF.7B20ACDE@isi.edu> Date: Mon, 10 Sep 2001 22:06:39 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms8B472A876105F6D60792F1C2" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms8B472A876105F6D60792F1C2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > Nothing has changed in pccard*D* since RC3 or so. I don't think it > would help you. Correct, it didn't. > One other person reported this problem as well, but they had a > corrupted system, so they reported later. But if it happens with your > kernel and Randy's, then I'm not at all sure what to say. I thought it worked for Randy? Randy Bush wrote: > c600 is fine for me with 4.4-rc as of maybe 20 hours ago. note that i still > have the old pccard.conf hack in place > If this is really true, then we may have a show stopper bug on our > hands. So it's just me, and while I'd certainly like to see this work, I don't think delaying 4.4 because of this is neccessary. I'm sure this can be worked out later. On the other hand, I think Ted Faber still has problems using sound or USB together with an irq-shared PC card (or was it bus?), so maybe other problems remain. If you would like to work on this, I'll gladly test patches tomorrow :-) Or if that's better, I'll set up SSH access to the box for you. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms8B472A876105F6D60792F1C2 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMDUwNjM5WjAjBgkqhkiG9w0BCQQxFgQU2PwhTYu5s/SYZW5ry5oi SuscCgQwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYBR FTudqNlhLO9bM1xzobiarRXfleSSy71WxmQ2viu0j7gFj5s1gzl7dX5N7W3c9OzQN3FXEUgS WnJVIqTE0K49/7mAt1YDxVNkFD+oMRLKruL4jt23NfnB5OP7pebRxrWSDwoH2kogO58Wt+xA ek9I+oxXAp6Z9dPdWw7/uewnfA== --------------ms8B472A876105F6D60792F1C2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 22: 9:32 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 0E4AC37B401 for ; Mon, 10 Sep 2001 22:09:30 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8B59S608852; Mon, 10 Sep 2001 23:09:29 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8B59Rt30494; Mon, 10 Sep 2001 23:09:27 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109110509.f8B59Rt30494@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 22:06:39 PDT." <3B9D9BDF.7B20ACDE@isi.edu> References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> Date: Mon, 10 Sep 2001 23:09:27 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Try setting plug and play OS to "NO" if you can. I thought you'd tried Randy's binary kernel too and it failed (it worked for him). Strange failure modes like that bug me. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Sep 10 23:19: 1 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id E0FFC37B409 for ; Mon, 10 Sep 2001 23:18:54 -0700 (PDT) Received: from [66.27.64.94] (we-66-27-64-94.we.mediaone.net [66.27.64.94]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8B6IpQ09659; Mon, 10 Sep 2001 23:18:51 -0700 (PDT) Mime-Version: 1.0 X-Sender: larse@boreas.isi.edu (Unverified) Message-Id: In-Reply-To: <200109110509.f8B59Rt30494@harmony.village.org> References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> Date: Mon, 10 Sep 2001 23:18:48 -0700 To: Warner Losh From: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG, randy@psg.com Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At 11:09 PM -0600 9/10/01, Warner Losh wrote: >Try setting plug and play OS to "NO" if you can. I don't think I can, but I'll check tomorrow (I left the machine at work). >I thought you'd tried Randy's binary kernel too and it failed (it >worked for him). Strange failure modes like that bug me. Didn't try his binary kernel, I built one using his config file. I'll try the binary one if he could send it to me. -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 0:27:16 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from gate.qubesoft.com (gate.qubesoft.com [212.113.16.243]) by hub.freebsd.org (Postfix) with ESMTP id D973537B405; Tue, 11 Sep 2001 00:27:11 -0700 (PDT) Received: from builder03 (dhcp139.qubesoft.com [192.168.1.139]) by gate.qubesoft.com (8.11.3/8.11.3) with SMTP id f8B7R5M85090; Tue, 11 Sep 2001 08:27:05 +0100 (BST) (envelope-from n_hibma@qubesoft.com) From: "Nick Hibma" To: "Alan B Clegg" , Subject: RE: USB Query Date: Tue, 11 Sep 2001 08:27:05 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Importance: Normal In-Reply-To: <20010910222321.D33987@shell.wetworks.org> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Linux people have for sure. I don't know about any driver on FreeBSD. Ask on usb-bsd@eleetbsd.org, they should know. Nick > -----Original Message----- > From: Alan B Clegg [mailto:abc@freebsd.org] > Sent: 11 September 2001 03:23 > To: freebsd-mobile@freebsd.org > Subject: USB Query > > > My laptop (Sony Vaio PCG-C1VN) has no serial device, but does > have that > really nice USB adapter. ;-) I've purchased a Belkin USB <-> Serial > adapter that works passibly under W2K: > > http://catalog.belkin.com/IWCatProductPage.process?Product_Id=20938 > > I see an entry in the /etc/usbd.conf that mentions a similar > device, the > Entrega Serial with UART. I'm wondering (beyond hope, I'm afraid) if > anyone has gotten the Belkin device working. > > Thanks! > AlanC > -- > Alan Clegg FreeBSD core secretary > abc@freebsd.org finger for PGP keys > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 2:16:52 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from alpha.dante.org.uk (alpha.dante.org.uk [193.63.211.19]) by hub.freebsd.org (Postfix) with ESMTP id 1D18037B409 for ; Tue, 11 Sep 2001 02:16:48 -0700 (PDT) Received: from theta.dante.org.uk ([193.63.211.7] helo=dante.org.uk) by alpha.dante.org.uk with esmtp (Exim 3.12 #4) id 15gjek-0004nK-00; Tue, 11 Sep 2001 10:16:34 +0100 Message-ID: <3B9DD67E.592B0232@dante.org.uk> Date: Tue, 11 Sep 2001 10:16:46 +0100 From: Konstantin Chuguev Organization: Delivery of Advanced Network Technology to Europe Ltd. X-Mailer: Mozilla 4.76 [en] (X11; U; SunOS 5.6 sun4u) X-Accept-Language: ru, en MIME-Version: 1.0 To: Warner Losh Cc: rdmurphy@vt.edu, FreeBSD-mobile@FreeBSD.ORG Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge References: <15261.4103.952522.597428@localhost.econ.vt.edu> <200109110232.f8B2W6t29273@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I have the same hardware but run CURRENT. I reported about exactly the same problem to Warner some time ago. There have been multiple patches to the pccard code since then, one of them has made thinks work for me. (Thanks a lot, Warner!) I'm pretty sure it will work for Russell as well. Warner Losh wrote: > In message <15261.4103.952522.597428@localhost.econ.vt.edu> "Russell D. Murphy Jr." writes: > : # maybe later: > : hw.pcic.init_routing=1 > > Generally you do not want this. This is a no op when using ISA > interrupts. > I've never managed PCI interrupt routing to work with TI-1250 on my Inspiron5000, so I use ISA routing, thus init_routing is irrelevant for me. > > : # > : hw.pcic.intr_path=1 > > OK, so you are trying to use ISA interrupts. > Yep, I'm using this too. > > : I have tried no hw.pcic settings, and, in turn: > : > : - hw.pcic.irq alone > > This should never be set to a vlaue other than 0. And it is only used > when ISA interrupts are done. > hw.pcic.irq=0 > > : - hw.pcic.irq and hw.pcic.intr_routing > > intr_routing [sic] would be ignored. > > : Any suggestions? > > I'd use PCI interrupts. IRQ 9 is already asigned to the bridge. > I'll give it a try soon. -- * * Konstantin Chuguev Francis House * * Application Engineer 112 Hills Road * Tel: +44 1223 302992 Cambridge CB2 1PQ D A N T E WWW: http://www.dante.net United Kingdom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 4:12:51 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from moo.sysabend.org (moo.sysabend.org [63.86.88.201]) by hub.freebsd.org (Postfix) with ESMTP id C88C337B409 for ; Tue, 11 Sep 2001 04:12:48 -0700 (PDT) Received: by moo.sysabend.org (Postfix, from userid 1004) id B3C98756B; Tue, 11 Sep 2001 04:14:56 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by moo.sysabend.org (Postfix) with ESMTP id 9ED351D89; Tue, 11 Sep 2001 04:14:56 -0700 (PDT) Date: Tue, 11 Sep 2001 04:14:56 -0700 (PDT) From: Jamie Bowden To: Warner Losh Cc: Lars Eggert , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 In-Reply-To: <200109110509.f8B59Rt30494@harmony.village.org> Message-ID: Approved: yep X-representing: Only myself. X-badge: We don't need no stinking badges. X-obligatory-profanity: Fuck X-moo: Moo. MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Mon, 10 Sep 2001, Warner Losh wrote: :Try setting plug and play OS to "NO" if you can. : :I thought you'd tried Randy's binary kernel too and it failed (it :worked for him). Strange failure modes like that bug me. Latitude BIOSes don't have this option. Jamie Bowden -- "It was half way to Rivendell when the drugs began to take hold" Hunter S Tolkien "Fear and Loathing in Barad Dur" Iain Bowen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 4:43:25 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from roam.psg.com (H-135-207-10-108.research.att.com [135.207.10.108]) by hub.freebsd.org (Postfix) with ESMTP id 4BC9F37B405 for ; Tue, 11 Sep 2001 04:43:23 -0700 (PDT) Received: from randy by roam.psg.com with local (Exim 3.33 #1) id 15glwh-0000yg-00; Tue, 11 Sep 2001 07:43:15 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Warner Losh Cc: Lars Eggert , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> Message-Id: Date: Tue, 11 Sep 2001 07:43:15 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > I thought you'd tried Randy's binary kernel too nope. he built from source, i imagine. i can supply binary until wed aftn, when i will be only pppable. randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 6:34: 5 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from sv07e.atm-tzs.kmjeuro.com (sv07e.atm-tzs.kmjeuro.com [193.81.94.207]) by hub.freebsd.org (Postfix) with ESMTP id E9E1837B40C for ; Tue, 11 Sep 2001 06:34:00 -0700 (PDT) Received: (from root@localhost) by sv07e.atm-tzs.kmjeuro.com (8.11.5/8.11.4) id f8BDXx199451 for mobile@freebsd.org; Tue, 11 Sep 2001 15:33:59 +0200 (CEST) (envelope-from k.joch@kmjeuro.com) Received: from kmjeuro.com (adsl.sbg.kmjeuro.com [193.154.189.16]) (authenticated) by sv07e.atm-tzs.kmjeuro.com (8.11.5/8.11.4) with ESMTP id f8BDXqH99320 for ; Tue, 11 Sep 2001 15:33:52 +0200 (CEST) (envelope-from k.joch@kmjeuro.com) Message-ID: <3B9E1277.3060306@kmjeuro.com> Date: Tue, 11 Sep 2001 15:32:39 +0200 From: "Karl M. Joch" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:0.9.2) Gecko/20010705 X-Accept-Language: en-us MIME-Version: 1.0 To: mobile@freebsd.org Subject: Getting a session in the forground Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X--virus-scanner: scanned for Virus and dangerous attachments on sv07e.atm-tzs.kmjeuro.com (System Setup/Maintainance: http://www.ctseuro.com/) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, sorry if this is maybe a trivial question, but i dont realy find a way to solve this. is it possible to put a session on a workstation in the background and getting this session in the forground on a notebook after logging in via ssh with x11 forward. it would be nice to have the office box running, putting a session there in background and using this one on the notebook while travelling. -- -- Best regards / Mit freundlichen Gruessen, Karl M. Joch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 7:20:30 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from knock.econ.vt.edu (knock.econ.vt.edu [128.173.172.240]) by hub.freebsd.org (Postfix) with ESMTP id 8749337B405 for ; Tue, 11 Sep 2001 07:20:25 -0700 (PDT) Received: (from rdmurphy@localhost) by knock.econ.vt.edu (8.11.6/8.11.4) id f8BEKB639722; Tue, 11 Sep 2001 10:20:11 -0400 (EDT) (envelope-from rdmurphy) From: "Russell D. Murphy Jr." MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15262.7579.175475.703603@localhost.econ.vt.edu> Date: Tue, 11 Sep 2001 10:20:11 -0400 To: Warner Losh Cc: FreeBSD-mobile@FreeBSD.ORG Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge In-Reply-To: <200109110232.f8B2W6t29273@harmony.village.org> References: <15261.4103.952522.597428@localhost.econ.vt.edu> <200109110232.f8B2W6t29273@harmony.village.org> X-Mailer: VM 6.92 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Reply-To: rdmurphy@vt.edu Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org According to Warner Losh (September 10, 2001): | In message <15261.4103.952522.597428@localhost.econ.vt.edu> "Russell D. Murphy Jr." writes: | I'd use PCI interrupts. IRQ 9 is already asigned to the bridge. | : pcic0: irq 9 at device 10.0 on pci0 | : pcic0: PCI Memory allocated: 0x44000000 | : pcic0: Polling mode | : pcic0: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] | : pccard0: on pcic0 | | : pcic1: irq 9 at device 10.1 on pci0 | : pcic1: PCI Memory allocated: 0x44001000 | : pcic1: Polling mode | : pcic1: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] | : pccard1: on pcic1 | | I'd try it without any set. I've reset /boot/loader.conf; it sets none of the hw.pcic sysctls. Upon re-boot and insertion of the card (3Com 3C589 ethernet card), the machine locks up solid with no messages displayed on the console. It does beep. Ejecting the card switches the console (I had pressed ALT-F2) and displays pnic: page fault on the system console. I also tried hw.pcic.init_routing=1. When this is set, nothing happens when the card is inserted or ejected. No beep, no recognition, (no lockup). | What is your laptop? It's a Gateway Solo 5100 (vintage 1998). I didn't copy down the BIOS information, but can if it would help. Are there BIOS setting I should check? Thanks for your help. RDM -- Russell D. Murphy Department of Economics Virginia Polytechnic Institute and State University Blacksburg, Virginia 24061 (540) 231-4537 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 7:28:43 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id D388737B408 for ; Tue, 11 Sep 2001 07:28:38 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BESZQ13380; Tue, 11 Sep 2001 07:28:35 -0700 (PDT) Message-ID: <3B9E1F8F.A58A8E8D@isi.edu> Date: Tue, 11 Sep 2001 07:28:31 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Randy Bush Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msFE42ED3B9B64497FB6C77EA7" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msFE42ED3B9B64497FB6C77EA7 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Randy Bush wrote: > > > I thought you'd tried Randy's binary kernel too > > nope. he built from source, i imagine. i can supply binary until wed aftn, > when i will be only pppable. Thanks for sending the binary, Randy! Unfortunately, I still see the same (double probe + hang). What BIOS version are you running? What are your sysctl settings for pcic in loader.conf? Maybe there's a difference there. Thanks, Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msFE42ED3B9B64497FB6C77EA7 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMTQyODM1WjAjBgkqhkiG9w0BCQQxFgQUbx2PRKgFZsRKSPid0GqC /MGtZEMwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYCY I41Ccx6cLy97RxySaN6Uts3rFcWFn7R76nHTTeP4rveKn2Ro4zVjiEQHTcKlXBFjnf56Icb9 d+K2ygy0+IdC+cA4jjk0907mIDC6hm1WzMRgVz5GEieCKtoPHAa7AIu3RAxaWHbcXaLAOPTG pT1WJJu9HsJhz+10ENZnLgHENQ== --------------msFE42ED3B9B64497FB6C77EA7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 7:31: 0 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from roam.psg.com (H-135-207-10-108.research.att.com [135.207.10.108]) by hub.freebsd.org (Postfix) with ESMTP id D6D2437B405 for ; Tue, 11 Sep 2001 07:30:57 -0700 (PDT) Received: from randy by roam.psg.com with local (Exim 3.33 #1) id 15goYp-00018z-00; Tue, 11 Sep 2001 10:30:47 -0400 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Lars Eggert Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> <3B9E1F8F.A58A8E8D@isi.edu> Message-Id: Date: Tue, 11 Sep 2001 10:30:47 -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > What BIOS version are you running? A09 > What are your sysctl settings for pcic in loader.conf? machdep.pccard.pcic_irq="10" # dell c600 pcic snd_maestro3_load="YES" # ess maestro-3 pci To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 7:35:36 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id DE0D437B407 for ; Tue, 11 Sep 2001 07:35:30 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BEZSQ13934; Tue, 11 Sep 2001 07:35:28 -0700 (PDT) Message-ID: <3B9E2130.F1CCEBD2@isi.edu> Date: Tue, 11 Sep 2001 07:35:28 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Randy Bush Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> <3B9E1F8F.A58A8E8D@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms09D57B4983006C93CDC4557B" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms09D57B4983006C93CDC4557B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Randy Bush wrote: > > What are your sysctl settings for pcic in loader.conf? > > machdep.pccard.pcic_irq="10" # dell c600 pcic I don't see that sysctl for RC4, but I see hw.pcic.irq - is that the one? -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms09D57B4983006C93CDC4557B Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMTQzNTI4WjAjBgkqhkiG9w0BCQQxFgQUr882wFW08eQ/6Y/3frX+ Wyh7lewwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYBd G9wW1RGgCkVBcOkPnTMaKrEFNa79afQ1kw5Tr8tQOhafkO1WlztUhkPUSWbl1+vV4pVNeSVA NJX5b0QXMtySPSh4g5zGvtLSTUik8hYjUqBJZV0Mzq1MuYPZ9bIxWLGwJ5RZ7d6Wo0MVhOAo oYy2O6NmZ0mRlSXBWm9foU8+Mw== --------------ms09D57B4983006C93CDC4557B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 7:38:13 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from gc0.generalconcepts.com (bluenat.net.rogers.wave.ca [24.112.30.1]) by hub.freebsd.org (Postfix) with ESMTP id DAF7C37B405 for ; Tue, 11 Sep 2001 07:38:10 -0700 (PDT) Received: (from jsellens@localhost) by gc0.generalconcepts.com (8.11.3/8.11.1) id f8BEZtf02039; Tue, 11 Sep 2001 10:35:55 -0400 (EDT) (envelope-from jsellens) Date: Tue, 11 Sep 2001 10:35:55 -0400 (EDT) Message-Id: <200109111435.f8BEZtf02039@gc0.generalconcepts.com> From: John Sellens To: brad@brad-x.com, doconnor@gsoft.com.au Subject: re: dell inspiron 8000, maestro3 and apm Cc: freebsd-mobile@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org | Date: Sat, 8 Sep 2001 00:18:24 -0400 | From: "Daniel O'Connor" | To: Brad Laue | Subject: re: dell inspiron 8000, maestro3 and apm | Cc: freebsd-mobile@FreeBSD.ORG | | | On 07-Sep-2001 Brad Laue wrote: | > The same occurs on an Inspiron 8100 under 4.4-RC2, with the additional | > oddity that the speakers blast a high whine until the module is unloaded - | > I haven't suspended/wakened the laptop consecutively enough to see whether | > it stopped unloading, but we share the same problem. | | You can work around it (at least on the i8000) by resetting the mixer values | on suspend. | | I have been meaning to look at this problem but I keep forgetting :) Just as an additional data point, adjusting the mixer values on resume (which I'm assuming is what you meant rather than on suspend) does not seem to reset the sound my HP Omnibook 6000 with Maestro 3 under 4.4-PRERELEASE. John jsellens@generalconcepts.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 8:11:11 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 92CEA37B40B for ; Tue, 11 Sep 2001 08:11:07 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BFAxQ17291; Tue, 11 Sep 2001 08:10:59 -0700 (PDT) Message-ID: <3B9E2983.785A9FD3@isi.edu> Date: Tue, 11 Sep 2001 08:10:59 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Randy Bush Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> <3B9E1F8F.A58A8E8D@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msEC9C776D195137E0F91ED45A" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msEC9C776D195137E0F91ED45A Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Randy Bush wrote: > > > What BIOS version are you running? > > A09 I've downgraded from A13 to A09, and *still* no difference (double probe, hang). Starting to question my sanity... Maybe something in the BIOS settings that you changed from the default, Randy? Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msEC9C776D195137E0F91ED45A Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMTUxMDU5WjAjBgkqhkiG9w0BCQQxFgQU6qDF283gi7WzkR2fT57i 6RV75QUwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYCi 0JlsfsBxpyyqjX7c2MYBKnjoV9axXCotTjRIVz9lXKfdGPTXwpQ0a/K5gYSkAj7tnDCW7z6t lTc+6r44TV5Dzb951eV2tzPYCBUjjKUU3te0kABPYDcnyPjbH8VE7b4iuxilAPTTw7OGmMUW +wcpTHq0r66ss8XKi2OMZuPVyg== --------------msEC9C776D195137E0F91ED45A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 8:31:55 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cspop.comsoft.de (host14.comsoft.de [194.121.105.214]) by hub.freebsd.org (Postfix) with ESMTP id DB88337B403 for ; Tue, 11 Sep 2001 08:31:49 -0700 (PDT) Received: by cspop.comsoft.de with Internet Mail Service (5.5.2650.21) id ; Tue, 11 Sep 2001 17:31:57 +0200 Message-ID: <905777482C38D5119D0D00D0B7A06E2D0C796C@cspop.comsoft.de> From: "Cornelius, Peter" Reply-To: "Cornelius, Peter" To: "'Karl M. Joch'" Cc: "'Cornelius, Peter'" , "'mobile@freebsd.org'" Subject: RE: Getting a session in the forground Date: Tue, 11 Sep 2001 17:31:49 +0200 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hallo Karl, xmove (->ports) does something like that for X11 clients whereas screen (also see ports) is great for text logins and a favourite of mine. Cheers, Peter. > -----Original Message----- > From: Karl M. Joch [mailto:k.joch@kmjeuro.com] > Sent: Tuesday, September 11, 2001 3:33 PM > To: mobile@freebsd.org > Subject: Getting a session in the forground > > > Hi, > > sorry if this is maybe a trivial question, but i dont realy > find a way > to solve this. is it possible to put a session on a > workstation in the > background and getting this session in the forground on a > notebook after > logging in via ssh with x11 forward. it would be nice to have > the office > box running, putting a session there in background and using > this one on > the notebook while travelling. > -- > -- > Best regards / Mit freundlichen Gruessen, > > Karl M. Joch > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 9:14:33 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 26F2D37B407 for ; Tue, 11 Sep 2001 09:14:29 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BGEPQ26186; Tue, 11 Sep 2001 09:14:25 -0700 (PDT) Message-ID: <3B9E3861.7054113@isi.edu> Date: Tue, 11 Sep 2001 09:14:25 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Randy Bush Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 References: <3B9D9BDF.7B20ACDE@isi.edu> <3B9D988D.DA008498@isi.edu> <3B9D8C3F.2D2BF8B6@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109110241.f8B2ftt29320@harmony.village.org> <3B9D8155.C2FF4F88@isi.edu> <3B9D87CD.81A03D08@isi.edu> <200109110429.f8B4TWt30205@harmony.village.org> <3B9D973A.141FF5CF@isi.edu> <200109110455.f8B4tQt30414@harmony.village.org> <200109110509.f8B59Rt30494@harmony.village.org> <3B9E1F8F.A58A8E8D@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msA1A6A55F539189520B4F4748" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msA1A6A55F539189520B4F4748 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Randy Bush wrote: > > > What BIOS version are you running? > > A09 > > > What are your sysctl settings for pcic in loader.conf? > > machdep.pccard.pcic_irq="10" # dell c600 pcic Setting this (which doesn't seem to exist with RC4) and hw.pcic.irq=10 makes no difference, neither in dmesg output (should it?) nor in the end result (double probe, hang.) One more data point: It makes no difference whether I insert into slot 0 or slot 1. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msA1A6A55F539189520B4F4748 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMTYxNDI1WjAjBgkqhkiG9w0BCQQxFgQUn7Fd879Lg85KADvqr9F0 LHOAmlkwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYA2 KnSfH6VmjPkvuJc82RjoQ4pV56r1mvO/qJda0ROpZr2rJFvytkOPMZgVWzm6Vfe+akvdqp9f xALVdmVYqyXQudcxAXDpbFCoGgH2AG3l5lrm0w3L6z4/+ckIQXzrhFr+UAH/kfdjIgX8s9lU WvPvbQYheh6oyuV73Q2TGmDThw== --------------msA1A6A55F539189520B4F4748-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 10:17: 2 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id B486F37B409 for ; Tue, 11 Sep 2001 10:16:58 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8BHGv610922; Tue, 11 Sep 2001 11:16:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8BHGvt34151; Tue, 11 Sep 2001 11:16:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109111716.f8BHGvt34151@harmony.village.org> To: rdmurphy@vt.edu Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge Cc: FreeBSD-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 11 Sep 2001 10:20:11 EDT." <15262.7579.175475.703603@localhost.econ.vt.edu> References: <15262.7579.175475.703603@localhost.econ.vt.edu> <15261.4103.952522.597428@localhost.econ.vt.edu> <200109110232.f8B2W6t29273@harmony.village.org> Date: Tue, 11 Sep 2001 11:16:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <15262.7579.175475.703603@localhost.econ.vt.edu> "Russell D. Murphy Jr." writes: : I've reset /boot/loader.conf; it sets none of the hw.pcic sysctls. : Upon re-boot and insertion of the card (3Com 3C589 ethernet card), the : machine locks up solid with no messages displayed on the console. It : does beep. Ejecting the card switches the console (I had pressed : ALT-F2) and displays pnic: page fault on the system console. : : I also tried hw.pcic.init_routing=1. When this is set, nothing : happens when the card is inserted or ejected. No beep, no : recognition, (no lockup). OK. Yuck. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 11:37:46 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id CD73537B409 for ; Tue, 11 Sep 2001 11:37:42 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8BIbf611100; Tue, 11 Sep 2001 12:37:41 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8BIbft34551; Tue, 11 Sep 2001 12:37:41 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109111837.f8BIbft34551@harmony.village.org> To: Lars Eggert Subject: Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600 Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 10 Sep 2001 11:45:32 PDT." <3B9D0A4C.2090203@isi.edu> References: <3B9D0A4C.2090203@isi.edu> Date: Tue, 11 Sep 2001 12:37:40 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Try http://people.freebsd.org/~imp/pccard-once.diff It only lets you one attach one child to pccard devices. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 12:11:11 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from beniaminus.red.cert.org (beniaminus.red.cert.org [192.88.209.10]) by hub.freebsd.org (Postfix) with ESMTP id E5E5337B40F for ; Tue, 11 Sep 2001 12:11:05 -0700 (PDT) Received: from smtp.indigo.cert.org (smtp.indigo.cert.org [192.88.209.150]) by beniaminus.red.cert.org (8.9.3/8.9.3/1.48) with ESMTP id PAA05343 for ; Tue, 11 Sep 2001 15:11:04 -0400 (EDT) Received: from semantics.blue.cert.org (holmes.blue.cert.org [192.88.210.122]) by smtp.indigo.cert.org (8.9.3/8.9.3/2.8) with ESMTP id PAA17221 for ; Tue, 11 Sep 2001 15:11:03 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15262.25014.656809.143275@semantics.blue.cert.org> Date: Tue, 11 Sep 2001 15:10:46 -0400 From: snl@cert.org To: freebsd-mobile@freebsd.org Subject: ThinkPad T22 / Orinoco Issues X-Mailer: VM 6.92 under 21.4 (patch 3) "Academic Rigor" XEmacs Lucid Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I am (still) running CVSup'ed to 8/15-04:04:00 on my T22 because I live my whole life on it. I wanted to wait for the dust to settle from all the great work Warner Losh et al have been doing to get everything working. I'm now considering CVSuping to the latest RELENG_4, and wanted to know if a couple issues that I'm currently seeing have been seen by anyone else. I've been following this list from time to time, and hadn't seen mention of them. (1) IBSSS + 2 ORINOCO CARDS IN PROMISC MODE = OCCASIONAL CRASH I have an old PC running 4.3-RELEASE with an ISA PCMCIA adapter and an Orinoco card set up as my home access point. My laptop (T22) has the same kind of Orinoco card. Everything works well normally, but if I do something on both hosts that puts them into promiscuous mode (like run tcpdump), my laptop will eventually crash (remember, it's runing -stable as of 8/15 - the base station is running -RELEASE). Once in a while the base-station machine crashed as well. No crash dumps either place. Not sure what's going on, but promiscuous mode seems to cause problems. I didn't see this listed as a known issue; is it? Here's a dmesg snippet from my T22: pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 pcic-pci0: mem 0x50000000-0x50000fff irq 11 at device 2.0 on pci0 pcic-pci0: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][FUNC pci int + CSC serial isa irq] pcic-pci1: mem 0x50100000-0x50100fff irq 11 at device 2.1 on pci0 pcic-pci1: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][FUNC pci int + CSC serial isa irq] ... pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 pccard1: on pcic0 ... Example output upon inserting the Orinoco card (I see those watchdog timeouts and wi_seek messages all the time, btw): wi0: at port 0x240-0x27f irq 5 slot 0 on pccard0 wi0: Ethernet address: aa:bb:cc:dd:ee:ff wi0: watchdog timeout wi0: timeout in wi_seek to fc80/0; last status ffff wi0: timeout in wi_seek to fc80/0; last status ffff wi0: timeout in wi_seek to fc80/0; last status ffff Here is dmesg output from the crapoid PC/base-station: pcib0: on motherboard pci0: on pcib0 ... pcic2: at port 0x3e0-0x3e1 on isa0 pcic2: Polling mode pccard0: on pcic2 pccard1: on pcic2 ... The card is always in, this is after pccardd gets started wi0: at port 0x240-0x27f irq 3 slot 0 on pccard0 wi0: Ethernet address: 00:02:2d:0a:55:d6 wi0: failed to allocate 1594 bytes on NIC wi0: tx buffer allocation failed wi0: failed to allocate 1594 bytes on NIC wi0: mgmt. buffer allocation failed I see that lats message fairly frequently. As I said, 4.3-RELEASE (from CD's just last night, all I did was rebuild the kernel to get IPFILTER/IPNAT and a couple other things). On the T22, I can leave the card in promiscuous mode normally without problems (i.e. on other wireless networks where I'm not using IBSS mode); it's only at home that I see these crashes. (2) T22 SOUND STOPS WORKING ACROSS SUSPENDS Sound on the T22 does not work across suspends; I get the familiar "dead channel" message. I hadn't seen this listed as something that had been fixed. pcm0: on csa0 Other than that, my T22 has been remarkably stable running on the 8/15 source. It stays up for days at a time, many card inserts and ejections (all on slot#0 (top), though), on battery or plugged in, across suspends, etc. Great job, guys! Pax, --S - -- Sean Levy | CERT/CC | snl@cert.org | 412.268.9128 | GPG Key Available -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: Processed by Mailcrypt 3.5.5 and Gnu Privacy Guard iEYEARECAAYFAjueYakACgkQvzD+i6tbDUtEbQCfW1N9GOC2raDagO3RJKrDCODx LOEAmwZxU5Ku1LTplEKzwZwQSttyv2aQ =U1AB -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 14:27:46 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 52D2937B408 for ; Tue, 11 Sep 2001 14:27:42 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BLRWQ12771; Tue, 11 Sep 2001 14:27:32 -0700 (PDT) Message-ID: <3B9E81C4.5CB017D@isi.edu> Date: Tue, 11 Sep 2001 14:27:32 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms43D583B9787C5C8A1F419995" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms43D583B9787C5C8A1F419995 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner, GOOD NEWS: I gave up and reinstalled the latest -STABLE from scratch. And the double-probe problems are gone! Must have been a local corruption, but exactly what was broken to cause that strange behavior beats me. BAD NEWS: The system now freezes up when I eject some of my cards - ejecting others works (and all insertions work, too). Ejection -> OK Ejection -> Hang ------------------- ------------------- Cisco Aironet 340 Linksys PCMPC100 Lucent WaveLAN Gold US Robotics XJ1560J 3com 3C589D Linksys EC2T This is still with the default sysctl pcis settings. Definitly progress! Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms43D583B9787C5C8A1F419995 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMjEyNzMyWjAjBgkqhkiG9w0BCQQxFgQURrybg8Ngg+QkN1BH/8XR o0ekazAwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYB6 ir3kAF0YbA7EuUfiLVbF3l0CYCFDPcnoJX0ki+aZv6Y9lUz5Z77vXYfmZVjiQt+vkFSN4cXT bhm6mSFzC8qYnOrS/AkCd2K/lPAf0oQNYOcFlFp/TtZJ+DDfCSu84faFDMfwFFIC8T/++0ZL NvBmYSxTX20eHodut5lVQA5vAw== --------------ms43D583B9787C5C8A1F419995-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 14:34:53 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 0DBFC37B409 for ; Tue, 11 Sep 2001 14:34:49 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8BLYk611578; Tue, 11 Sep 2001 15:34:47 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8BLYkt35748; Tue, 11 Sep 2001 15:34:46 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109112134.f8BLYkt35748@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 11 Sep 2001 14:27:32 PDT." <3B9E81C4.5CB017D@isi.edu> References: <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> Date: Tue, 11 Sep 2001 15:34:46 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9E81C4.5CB017D@isi.edu> Lars Eggert writes: : This is a cryptographically signed message in MIME format. : : --------------ms43D583B9787C5C8A1F419995 : Content-Type: text/plain; charset=us-ascii : Content-Transfer-Encoding: 7bit : : Warner, : : GOOD NEWS: I gave up and reinstalled the latest -STABLE from scratch. : And the double-probe problems are gone! Must have been a local : corruption, but exactly what was broken to cause that strange behavior : beats me. Yea! : BAD NEWS: The system now freezes up when I eject some of my cards - : ejecting others works (and all insertions work, too). : : Ejection -> OK Ejection -> Hang : ------------------- ------------------- : Cisco Aironet 340 Linksys PCMPC100 : Lucent WaveLAN Gold US Robotics XJ1560J : 3com 3C589D : Linksys EC2T : : This is still with the default sysctl pcis settings. Boo. I'd guess that the eject is random. I've had the PCMPC100 and 3C589C work on eject and the Aironet both work and fail on eject. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 14:38:11 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 2681837B40A for ; Tue, 11 Sep 2001 14:38:05 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8BLc2Q14140; Tue, 11 Sep 2001 14:38:03 -0700 (PDT) Message-ID: <3B9E843A.54EA07A7@isi.edu> Date: Tue, 11 Sep 2001 14:38:02 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msC7245049992E42DB9E38CC4C" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msC7245049992E42DB9E38CC4C Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > : BAD NEWS: The system now freezes up when I eject some of my cards - > : ejecting others works (and all insertions work, too). > : > : Ejection -> OK Ejection -> Hang > : ------------------- ------------------- > : Cisco Aironet 340 Linksys PCMPC100 > : Lucent WaveLAN Gold US Robotics XJ1560J > : 3com 3C589D > : Linksys EC2T > : > : This is still with the default sysctl pcis settings. > > Boo. I'd guess that the eject is random. I've had the PCMPC100 and > 3C589C work on eject and the Aironet both work and fail on eject. Not sure. I tried multiple times, and the results are always the same (left column always works, right column always hangs). But since my goal was to get the wireless stuff working, that is secondary :-) Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msC7245049992E42DB9E38CC4C Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTExMjEzODAyWjAjBgkqhkiG9w0BCQQxFgQUA9W4KgPsXSLQ4PJd1x+k W348zBkwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYBF l4Y14jfYegC14Rvz1+HpRJ6swXjAD2Ig/SDhP1BhuO5go6VqTQd+RAuxn2y1l/vt4Ko/DXVL iY4kHTgpD1U8AqgLO2S6iaKTVIroUeq9NIMYdLjVIXtl8Zi5dycStq/ikzkcIC7wW1a+bPPj cQePiAXdNPf06xvMyPGMkuWoGw== --------------msC7245049992E42DB9E38CC4C-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 16:32:50 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cs.bu.edu (CS.BU.EDU [128.197.10.2]) by hub.freebsd.org (Postfix) with ESMTP id 6DD6637B407 for ; Tue, 11 Sep 2001 16:32:47 -0700 (PDT) Received: from csa.bu.edu (evms@csa [128.197.12.3]) by cs.bu.edu (8.10.1/8.10.1) with ESMTP id f8BNWhA19402 for ; Tue, 11 Sep 2001 19:32:43 -0400 (EDT) Received: (from evms@localhost) by csa.bu.edu (8.10.1/8.10.1) id f8BNWer10839; Tue, 11 Sep 2001 19:32:40 -0400 (EDT) Date: Tue, 11 Sep 2001 19:32:40 -0400 (EDT) Message-Id: <200109112332.f8BNWer10839@csa.bu.edu> From: Evan Sarmiento To: freebsd-mobile@freebsd.org Subject: Vaio SR33 -- hang on initializing PCMCIA Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I recently bought a Vaio SR33. It came with a PCGA-51/A cdrom, which appears to be supported, when I searched on google. However, it freezes on initializing pccard bus. The pccard bus is a Ricoh cardbus->pci. Thanks, Evan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Sep 11 19:24:32 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 0506037B40E for ; Tue, 11 Sep 2001 19:24:28 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8C2ODQ23463; Tue, 11 Sep 2001 19:24:13 -0700 (PDT) Message-ID: <3B9EC74D.CF3DECBD@isi.edu> Date: Tue, 11 Sep 2001 19:24:13 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh , mobile@FreeBSD.ORG Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------msE3F85ED11EACECBFCF98CB90" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------msE3F85ED11EACECBFCF98CB90 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lars Eggert wrote: > Not sure. I tried multiple times, and the results are always the same > (left column always works, right column always hangs). I've looked into this some more, and the ejection hangs are definitly not random. Any ideas what to try? Two other oddities: 1. When wildly swapping cards during these tests, every so often my kernel would panic at netinet/ip_icmp.c:644, which is in icmp_reflect(). Poking around the crash dump, I found that in_ifaddrhead.tqh_first was 0, which probably caused bad things to happen in the next line when that null pointer is dereferenced. I still have the dump and the debug kernel, if you're interested :-) 2. During bootup, when rc.pccard tries to set pccardmem to the default 0xd0000, I see an error message reading "pccardc: ioctl (PIOCRWMEM): Invalid argument". FWIW, the default pccardmem in /etc/defaults/pccard.conf is 0xd4000, and using this value doesn't cause the error. (But doesn't eliminate the ejection hangs either.) I'm not sure if this is relevant at all. Thanks for all the help so far! I think your beer credit is growing rapidly. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------msE3F85ED11EACECBFCF98CB90 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTEyMDIyNDEzWjAjBgkqhkiG9w0BCQQxFgQULFhnOeXQirV0HqByGNej 1nvbmiAwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYCB e1opbBmjhWqHCHoE3cU87DF++Zw7lom2w+SfG6rhA+pNgVNPyUhQIaqvGoEy0SE61RMbUBpQ G/KTlhCt/meamBiEft2jXcQ53UAHV8hFR0dFmlvPEkjmwYHTRRtDktm7hermSqhJla6nkaI6 6okH8CcgE/FLfek+3hUmjBNrEA== --------------msE3F85ED11EACECBFCF98CB90-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 3:12:32 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from zeus.olympe.fr (145.92.242.195.infosources.fr [195.242.92.145]) by hub.freebsd.org (Postfix) with ESMTP id B78C637B40E for ; Wed, 12 Sep 2001 03:12:28 -0700 (PDT) Received: (from xtof@localhost) by zeus.olympe.fr (8.11.3/8.11.3) id f8CACLY01536 for freebsd-mobile@freebsd.org; Wed, 12 Sep 2001 12:12:21 +0200 (CEST) (envelope-from xtof) Date: Wed, 12 Sep 2001 12:12:21 +0200 (CEST) From: Christophe Message-Id: <200109121012.f8CACLY01536@zeus.olympe.fr> To: freebsd-mobile@freebsd.org Subject: ADSL, PPPoE and Xircom CEM56 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi all, i have the following configuration - FreeBSD 4.3 - Toshiba Satellite 320CDT - Xircom CEM56 ethernet adapter - ADSL connection through PPP with the PPPoE protocol - this box also acts as a router for the local network when the box is connected to the Internet, sometimes it hangs, and since few days i know how to reproduce: ping -s 1464 InternetIP : OK ping -s 1465 InternetIP : HANGS it seems that when the box receives too 'big' packets it hangs. doing a ping -s anyPacketSize LocalNetworkIP : OK so ??? Thanks PS: i am not a developper but if well explained, i can provide any information or do some tests to help fixing this issue -- Christophe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 7:51:31 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id BAA9B37B410 for ; Wed, 12 Sep 2001 07:51:28 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CEpR613830; Wed, 12 Sep 2001 08:51:27 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CEpQt39921; Wed, 12 Sep 2001 08:51:26 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121451.f8CEpQt39921@harmony.village.org> To: Evan Sarmiento Subject: Re: Vaio SR33 -- hang on initializing PCMCIA Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 11 Sep 2001 19:32:40 EDT." <200109112332.f8BNWer10839@csa.bu.edu> References: <200109112332.f8BNWer10839@csa.bu.edu> Date: Wed, 12 Sep 2001 08:51:26 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <200109112332.f8BNWer10839@csa.bu.edu> Evan Sarmiento writes: : I recently bought a Vaio SR33. It came with a PCGA-51/A cdrom, : which appears to be supported, when I searched on google. : However, it freezes on initializing pccard bus. : The pccard bus is a Ricoh cardbus->pci. Try the following in the boot loader: ok set hw.pcic.intr_path=1 ok set hw.pcic.irq=0 ok boot Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 7:53: 7 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 74A9437B40A for ; Wed, 12 Sep 2001 07:53:04 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CEr3613842; Wed, 12 Sep 2001 08:53:03 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CEr2t39965; Wed, 12 Sep 2001 08:53:03 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121453.f8CEr2t39965@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 11 Sep 2001 19:24:13 PDT." <3B9EC74D.CF3DECBD@isi.edu> References: <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> Date: Wed, 12 Sep 2001 08:53:02 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9EC74D.CF3DECBD@isi.edu> Lars Eggert writes: : I've looked into this some more, and the ejection hangs are definitly : not random. Any ideas what to try? I've found that the following patch helps me a lot. Does it help you at all: Index: pcic_pci.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pcic_pci.c,v retrieving revision 1.54.2.16 diff -u -r1.54.2.16 pcic_pci.c --- pcic_pci.c 2001/09/06 20:59:49 1.54.2.16 +++ pcic_pci.c 2001/09/12 14:52:38 @@ -1314,7 +1314,7 @@ DEVMETHOD(bus_activate_resource, pcic_activate_resource), DEVMETHOD(bus_deactivate_resource, pcic_deactivate_resource), DEVMETHOD(bus_setup_intr, pcic_setup_intr), - DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), + DEVMETHOD(bus_teardown_intr, pcic_teardown_intr), /* Card interface */ DEVMETHOD(card_set_res_flags, pcic_set_res_flags), To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 8:56:54 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id EC91937B407 for ; Wed, 12 Sep 2001 08:56:50 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8CFuiQ07020; Wed, 12 Sep 2001 08:56:44 -0700 (PDT) Message-ID: <3B9F85BB.70DE18A6@isi.edu> Date: Wed, 12 Sep 2001 08:56:43 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms3C002F638B1FDECE1E92B6AB" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms3C002F638B1FDECE1E92B6AB Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > I've found that the following patch helps me a lot. Does it help you > at all: Sorry, it doesn't change anything. Still immediate hang (no pccardd message, etc.) when I eject any of the problematic cards. The good ones still eject fine, too. BTW, I think I have a patch for the icmp_reflect() panic. I'll test it a bit more and put it into a PR (will email you the number). Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms3C002F638B1FDECE1E92B6AB Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTEyMTU1NjQzWjAjBgkqhkiG9w0BCQQxFgQUf661ffXx/xjaAGgc/gwT 4AqG708wUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYCb D+kzTlxGW46EyLzb2MDWxA7hyXrIu9FiY2YTIUgEJiGVPpMPj4nrgJ4FBbzcb2aL6IZ1RKVM aM1pwFNOTjP+gUQbpYJrwL05bn9APNojptM/r2dkRv3WqTaGXd4vTzFp0EX+opa5YbCz+3L9 p4bMX/4Te/03FI244w4zeSCBcg== --------------ms3C002F638B1FDECE1E92B6AB-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 9: 4:15 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 9BB2337B410 for ; Wed, 12 Sep 2001 09:04:07 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CG45614055; Wed, 12 Sep 2001 10:04:06 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CG45t40527; Wed, 12 Sep 2001 10:04:05 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121604.f8CG45t40527@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 08:56:43 PDT." <3B9F85BB.70DE18A6@isi.edu> References: <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> Date: Wed, 12 Sep 2001 10:04:05 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9F85BB.70DE18A6@isi.edu> Lars Eggert writes: : Sorry, it doesn't change anything. Still immediate hang (no pccardd : message, etc.) when I eject any of the problematic cards. The good ones : still eject fine, too. A private message leads me to believe that we can't call the eject routine from the ISR... However, it looks like we're NOT acking the interrupt before the detach. So, if we enable interrupts any at all they might storm us before we can do that ack. I don't completely understand this problem just yet. It sounds a little like a bug in the spl code still. So, let's try the following patch. It isn't perfect style-wise, but let me know. We may need to do a little more than this. Index: pcic_pci.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pcic_pci.c,v retrieving revision 1.54.2.16 diff -u -r1.54.2.16 pcic_pci.c --- pcic_pci.c 2001/09/06 20:59:49 1.54.2.16 +++ pcic_pci.c 2001/09/12 16:01:09 @@ -912,6 +912,10 @@ event = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_EVENT); if (event != 0) { stat = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_STATE); + + /* Ack the interrupt */ + bus_space_write_4(sp->bst, sp->bsh, 0, event); + if (bootverbose) device_printf(sc->dev, "Event mask 0x%x stat 0x%x\n", event, stat); @@ -934,8 +938,6 @@ if (stat & CB_SS_BADVCC) device_printf(sc->dev, "BAD Vcc request\n"); - /* Ack the interrupt */ - bus_space_write_4(sp->bst, sp->bsh, 0, event); } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 9:12:43 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 9A13B37B409 for ; Wed, 12 Sep 2001 09:12:39 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8CGCZQ09796; Wed, 12 Sep 2001 09:12:35 -0700 (PDT) Message-ID: <3B9F8973.C53A0ED4@isi.edu> Date: Wed, 12 Sep 2001 09:12:35 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms78AEFE8C84C33DE123BD22E1" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms78AEFE8C84C33DE123BD22E1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > A private message leads me to believe that we can't call the eject > routine from the ISR... However, it looks like we're NOT acking the > interrupt before the detach. So, if we enable interrupts any at all > they might storm us before we can do that ack. I don't completely > understand this problem just yet. It sounds a little like a bug in the > spl code still. > > So, let's try the following patch. It isn't perfect style-wise, but > let me know. We may need to do a little more than this. No change. Note that the previous patch was still in there, also. Let me know if I should try with just this one applied. Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms78AEFE8C84C33DE123BD22E1 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTEyMTYxMjM1WjAjBgkqhkiG9w0BCQQxFgQU7nacwA3w7Iripv2RVlZ2 SUBDCOkwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYAc 4TT7YODlvDGYk44Th2xwVy4w2u5pMhvn2WktGJ1HINtFaGSZhAOAL8DvE9ENv5z15vfJysvw LQ0cPiJg/MDR0kvth+mZwu/+OXTMHoRyfmt2P4UYQqYS8DsXweBsJW9V3JVZ3AKqw/DLDy9t tccaAnD/nYRRIJ75eBoD2z7Z8Q== --------------ms78AEFE8C84C33DE123BD22E1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 9:14:33 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 1FFAF37B40B for ; Wed, 12 Sep 2001 09:14:30 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CGES614102; Wed, 12 Sep 2001 10:14:29 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CGESt40670; Wed, 12 Sep 2001 10:14:28 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121614.f8CGESt40670@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 09:12:35 PDT." <3B9F8973.C53A0ED4@isi.edu> References: <3B9F8973.C53A0ED4@isi.edu> <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> Date: Wed, 12 Sep 2001 10:14:28 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9F8973.C53A0ED4@isi.edu> Lars Eggert writes: : No change. : : Note that the previous patch was still in there, also. Let me know if I : should try with just this one applied. OK. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 9:47:25 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 02F3037B40A for ; Wed, 12 Sep 2001 09:47:22 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CGlK614251; Wed, 12 Sep 2001 10:47:21 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CGlKt41269; Wed, 12 Sep 2001 10:47:20 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121647.f8CGlKt41269@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 09:12:35 PDT." <3B9F8973.C53A0ED4@isi.edu> References: <3B9F8973.C53A0ED4@isi.edu> <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> Date: Wed, 12 Sep 2001 10:47:20 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9F8973.C53A0ED4@isi.edu> Lars Eggert writes: : No change. : : Note that the previous patch was still in there, also. Let me know if I : should try with just this one applied. Damn. OK. Let's try the following "hail mary" patch. Apply this one and the pcic_teardown_intr patch applied earlier. Warner Index: pcic_pci.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pcic_pci.c,v retrieving revision 1.54.2.16 diff -u -r1.54.2.16 pcic_pci.c --- pcic_pci.c 2001/09/06 20:59:49 1.54.2.16 +++ pcic_pci.c 2001/09/12 16:44:04 @@ -908,10 +908,15 @@ u_int32_t event; u_int32_t stat; int present; + int s; event = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_EVENT); if (event != 0) { stat = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_STATE); + + /* Ack the interrupt */ + bus_space_write_4(sp->bst, sp->bsh, 0, event); + if (bootverbose) device_printf(sc->dev, "Event mask 0x%x stat 0x%x\n", event, stat); @@ -928,14 +933,14 @@ sc->cd_pending = 1; } else { sc->cd_present = 0; + s = splhigh(); pccard_event(sp->slt, card_removed); + splx(s); } } if (stat & CB_SS_BADVCC) device_printf(sc->dev, "BAD Vcc request\n"); - /* Ack the interrupt */ - bus_space_write_4(sp->bst, sp->bsh, 0, event); } /* To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 9:49:40 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 8B07137B406 for ; Wed, 12 Sep 2001 09:49:33 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CGnW614268; Wed, 12 Sep 2001 10:49:32 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CGnWt41331; Wed, 12 Sep 2001 10:49:32 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121649.f8CGnWt41331@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 09:12:35 PDT." <3B9F8973.C53A0ED4@isi.edu> References: <3B9F8973.C53A0ED4@isi.edu> <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> Date: Wed, 12 Sep 2001 10:49:32 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Actually, here's a more complete single patch. Although, to be honest, the code paths involved don't reallyt need the last hunk of this patch. Warner Index: pcic_pci.c =================================================================== RCS file: /home/imp/FreeBSD/CVS/src/sys/pccard/pcic_pci.c,v retrieving revision 1.54.2.16 diff -u -r1.54.2.16 pcic_pci.c --- pcic_pci.c 2001/09/06 20:59:49 1.54.2.16 +++ pcic_pci.c 2001/09/12 16:48:26 @@ -908,10 +908,15 @@ u_int32_t event; u_int32_t stat; int present; + int s; event = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_EVENT); if (event != 0) { stat = bus_space_read_4(sp->bst, sp->bsh, CB_SOCKET_STATE); + + /* Ack the interrupt */ + bus_space_write_4(sp->bst, sp->bsh, 0, event); + if (bootverbose) device_printf(sc->dev, "Event mask 0x%x stat 0x%x\n", event, stat); @@ -928,14 +933,14 @@ sc->cd_pending = 1; } else { sc->cd_present = 0; + s = splhigh(); pccard_event(sp->slt, card_removed); + splx(s); } } if (stat & CB_SS_BADVCC) device_printf(sc->dev, "BAD Vcc request\n"); - /* Ack the interrupt */ - bus_space_write_4(sp->bst, sp->bsh, 0, event); } /* @@ -1314,7 +1319,7 @@ DEVMETHOD(bus_activate_resource, pcic_activate_resource), DEVMETHOD(bus_deactivate_resource, pcic_deactivate_resource), DEVMETHOD(bus_setup_intr, pcic_setup_intr), - DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), + DEVMETHOD(bus_teardown_intr, pcic_teardown_intr), /* Card interface */ DEVMETHOD(card_set_res_flags, pcic_set_res_flags), To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 10:17: 5 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 231E937B40C for ; Wed, 12 Sep 2001 10:17:01 -0700 (PDT) Received: from isi.edu (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8CHGwQ20552; Wed, 12 Sep 2001 10:16:58 -0700 (PDT) Message-ID: <3B9F988A.85306F92@isi.edu> Date: Wed, 12 Sep 2001 10:16:58 -0700 From: Lars Eggert Organization: USC Information Sciences Institute X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en, de MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) References: <3B9F8973.C53A0ED4@isi.edu> <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> <200109121649.f8CGnWt41331@harmony.village.org> Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms14D493D669462A3280D102E8" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a cryptographically signed message in MIME format. --------------ms14D493D669462A3280D102E8 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Warner Losh wrote: > > Actually, here's a more complete single patch. Although, to be > honest, the code paths involved don't reallyt need the last hunk of > this patch. Still no change. BTW, here is the PR with the patch for the icmp_reflect panic: http://www.freebsd.org/cgi/query-pr.cgi?pr=30524 Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California --------------ms14D493D669462A3280D102E8 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIIIEwYJKoZIhvcNAQcCoIIIBDCCCAACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHAaCC BeYwggK1MIICHqADAgECAgMFgUcwDQYJKoZIhvcNAQECBQAwgZIxCzAJBgNVBAYTAlpBMRUw EwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhh d3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwg RnJlZW1haWwgUlNBIDIwMDAuOC4zMDAeFw0wMTA4MjQxNjQwMDBaFw0wMjA4MjQxNjQwMDBa MFQxDzANBgNVBAQTBkVnZ2VydDENMAsGA1UEKhMETGFyczEUMBIGA1UEAxMLTGFycyBFZ2dl cnQxHDAaBgkqhkiG9w0BCQEWDWxhcnNlQGlzaS5lZHUwgZ8wDQYJKoZIhvcNAQEBBQADgY0A MIGJAoGBANALywbA+/J8XFB3h5GjIJd2+KmD534G3/C4fh0D/EYBjERv2G/r06ZBns5cLfaZ CcYg9dbmQ8uAjTSVLt4CsSkm/s0Ve9DvpZMMH7bh6Cx6B+McKNy3ENixg6XfiPebVDeHXyd0 5nhHFEhedHQv0rlCOMPAJYV0PCMa4YHWsk6RAgMBAAGjVjBUMCoGBStlAQQBBCEwHwIBADAa MBgCAQQEE0wydU15ZmZCTlViTkpKY2RaMnMwGAYDVR0RBBEwD4ENbGFyc2VAaXNpLmVkdTAM BgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBAgUAA4GBAIXmYZ9KUAPMyO1NitWSAJddY9GtQysZ 6dxrU7zlKxkQd1r2MYnb3WdZIs4RLFnl1PNU5DQx9A2karThHrukNjoQfo3ihKmOyAwCROP3 yNHvnej5xtYXfrxL2JrCh5JswYT3PeF1DijVjvqlTT9jRsjSN0CA8ucF+H3XDqNUt+K+MIID KTCCApKgAwIBAgIBDDANBgkqhkiG9w0BAQQFADCB0TELMAkGA1UEBhMCWkExFTATBgNVBAgT DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMRowGAYDVQQKExFUaGF3dGUgQ29u c3VsdGluZzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjEkMCIG A1UEAxMbVGhhd3RlIFBlcnNvbmFsIEZyZWVtYWlsIENBMSswKQYJKoZIhvcNAQkBFhxwZXJz b25hbC1mcmVlbWFpbEB0aGF3dGUuY29tMB4XDTAwMDgzMDAwMDAwMFoXDTAyMDgyOTIzNTk1 OVowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNh cGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZpY2F0ZSBTZXJ2aWNl czEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4zMDCBnzANBgkqhkiG 9w0BAQEFAAOBjQAwgYkCgYEA3jMypmPHCSVFPtJueCdngcXaiBmClw7jRCmKYzUqbXA8+tyu 9+50bzC8M5B/+TRxoKNtmPHDT6Jl2w36S/HW3WGl+YXNVZo1Gp2Sdagnrthy+boC9tewkd4c 6avgGAOofENCUFGHgzzwObSbVIoTh/+zm51JZgAtCYnslGvpoWkCAwEAAaNOMEwwKQYDVR0R BCIwIKQeMBwxGjAYBgNVBAMTEVByaXZhdGVMYWJlbDEtMjk3MBIGA1UdEwEB/wQIMAYBAf8C AQAwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBAUAA4GBAHMbbyZli/8VNEtZYortRL5Jx+gN u4+5DWomKmKEH7iHY3QcbbfPGlORS+HN5jjZ7VD0Omw0kqzmkpxuwSMBwgmn70uuct0GZ/VQ by5YuLYLwVBXtewc1+8XttWIm7eiiBrtOVs5fTT8tpYYJU1q9J3Fw5EvqZa4BTxS/N3pYgNI MYIB9TCCAfECAQEwgZowgZIxCzAJBgNVBAYTAlpBMRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUx EjAQBgNVBAcTCUNhcGUgVG93bjEPMA0GA1UEChMGVGhhd3RlMR0wGwYDVQQLExRDZXJ0aWZp Y2F0ZSBTZXJ2aWNlczEoMCYGA1UEAxMfUGVyc29uYWwgRnJlZW1haWwgUlNBIDIwMDAuOC4z MAIDBYFHMAkGBSsOAwIaBQCggbEwGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG 9w0BCQUxDxcNMDEwOTEyMTcxNjU4WjAjBgkqhkiG9w0BCQQxFgQUYl3hf58IzAU+WTvnEj27 I/e00FgwUgYJKoZIhvcNAQkPMUUwQzAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgICAIAwBwYF Kw4DAgcwDQYIKoZIhvcNAwICAUAwDQYIKoZIhvcNAwICASgwDQYJKoZIhvcNAQEBBQAEgYAC 3r22HYV6ZEUDTJsSOoPvOKWHutgIfv/sOqMUg6tF3VZewm0ALpualjKdFo6jnN8O9qdi+YOW 3p3fNMyz4eqCIXy58ljWf1wqkxRU4OpQ+SS2XQYCc8GlnC8uDvQIdIoR3QIiCGCkest9EP6r t1r2AOuby4zAuCnQux3kWlRnxQ== --------------ms14D493D669462A3280D102E8-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 10:19: 7 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id C657137B412 for ; Wed, 12 Sep 2001 10:19:02 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CHIw614370; Wed, 12 Sep 2001 11:18:58 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CHIvt41560; Wed, 12 Sep 2001 11:18:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109121718.f8CHIvt41560@harmony.village.org> To: Lars Eggert Subject: Re: Partial Success! (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 10:16:58 PDT." <3B9F988A.85306F92@isi.edu> References: <3B9F988A.85306F92@isi.edu> <3B9F8973.C53A0ED4@isi.edu> <3B9F85BB.70DE18A6@isi.edu> <3B9EC74D.CF3DECBD@isi.edu> <3B9E81C4.5CB017D@isi.edu> <3B9D0A4C.2090203@isi.edu> <200109111837.f8BIbft34551@harmony.village.org> <200109112134.f8BLYkt35748@harmony.village.org> <3B9E843A.54EA07A7@isi.edu> <200109121453.f8CEr2t39965@harmony.village.org> <200109121604.f8CG45t40527@harmony.village.org> <200109121649.f8CGnWt41331@harmony.village.org> Date: Wed, 12 Sep 2001 11:18:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <3B9F988A.85306F92@isi.edu> Lars Eggert writes: : Still no change. Crap. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 11:56:52 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from tholian.securitydynamics.com (mail.rsasecurity.com [204.167.112.129]) by hub.freebsd.org (Postfix) with SMTP id 990E737B40A for ; Wed, 12 Sep 2001 11:56:35 -0700 (PDT) Received: from sdtihq24.securid.com by tholian.securitydynamics.com via smtpd (for hub.freebsd.org [216.136.204.18]) with SMTP; 12 Sep 2001 18:53:52 UT Received: from spirit.dynas.se (ebola.securid.com [192.168.7.4]) by sdtihq24.securid.com (Pro-8.9.3/Pro-8.9.3) with SMTP id OAA15467 for ; Wed, 12 Sep 2001 14:56:27 -0400 (EDT) Received: (qmail 9784 invoked from network); 12 Sep 2001 18:56:26 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 12 Sep 2001 18:56:26 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.11.6/8.11.3) id f8CIuMf55093; Wed, 12 Sep 2001 11:56:22 -0700 (PDT) (envelope-from mikko) Date: Wed, 12 Sep 2001 11:56:22 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200109121856.f8CIuMf55093@explorer.rsa.com> To: xtof@olympe.dnsalias.com Cc: mobile@freebsd.org Subject: Re: ADSL, PPPoE and Xircom CEM56 Newsgroups: local.freebsd.mobile References: <200109121012.f8CACLY01536@zeus.olympe.fr> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In local.freebsd.mobile you write: >i have the following configuration >- FreeBSD 4.3 >- Toshiba Satellite 320CDT >- Xircom CEM56 ethernet adapter >- ADSL connection through PPP with >the PPPoE protocol >- this box also acts as a router for the >local network >when the box is connected to the Internet, >sometimes it hangs, and since few days i know >how to reproduce: >ping -s 1464 InternetIP : OK >ping -s 1465 InternetIP : HANGS >it seems that when the box receives too 'big' >packets it hangs. Yes, it is a problem with PPPoE (silly protocol...), broken routers and packet sizes. Upgrade to a newer version of ppp, which contains workarounds for this problem. I believe contains both binaries and sources you should be able to use. In , section 6.3 you can find an explanation of what is happening. $.02, /Mikko -- Mikko Työläjärvi_______________________________________mikko@rsasecurity.com RSA Security To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 16:40:12 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 4FBE037B406 for ; Wed, 12 Sep 2001 16:40:03 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8CNe1615295; Wed, 12 Sep 2001 17:40:02 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8CNe1t43800; Wed, 12 Sep 2001 17:40:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109122340.f8CNe1t43800@harmony.village.org> To: David Wolfskill Subject: Re: Problem with DFE-650 cards on 4.4 Cc: aurelien.nephtali@wanadoo.fr, mobile@freebsd.org In-reply-to: Your message of "Wed, 12 Sep 2001 16:35:42 PDT." <200109122335.f8CNZgS60235@bunrab.catwhisker.org> References: <200109122335.f8CNZgS60235@bunrab.catwhisker.org> Date: Wed, 12 Sep 2001 17:40:01 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <200109122335.f8CNZgS60235@bunrab.catwhisker.org> David Wolfskill writes: : which, if I understand things at all correctly, indicates PCI interrupt : routing. Yes. Also, if you are using dhclient, you should put a 5 second or longer sleep before running dhclient due to bugs in the ed driver. I should see about getting the following patch committed: Index: pccard_ether =================================================================== RCS file: /cache/ncvs/src/etc/pccard_ether,v retrieving revision 1.15.2.9 diff -u -r1.15.2.9 pccard_ether --- pccard_ether 2001/08/24 19:47:05 1.15.2.9 +++ pccard_ether 2001/09/12 23:38:25 @@ -46,6 +46,8 @@ startstop=$1 shift +sleep 5 + case ${pccard_ifconfig} in [Nn][Oo] | '') ;; Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 20:25:46 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 9C46837B40E for ; Wed, 12 Sep 2001 20:25:40 -0700 (PDT) Received: from hbo (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with SMTP id f8D3PXQ22485; Wed, 12 Sep 2001 20:25:33 -0700 (PDT) From: "Lars Eggert" To: "Warner Losh" Cc: Subject: RE: Success! (but how?) (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Date: Wed, 12 Sep 2001 20:25:33 -0800 MIME-Version: 1.0 Message-ID: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Content-Type: multipart/signed; micalg=SHA1; boundary="----=_NextPart_000_0019_01C13BC9.12F2ECA0"; protocol="application/x-pkcs7-signature" Importance: Normal In-Reply-To: <200109121718.f8CHIvt41560@harmony.village.org> X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0019_01C13BC9.12F2ECA0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Warner, better sit down for this. I have a solution to the hangs-on-eject, but I don't understand why this should fix it. I've peppered pcic_pci_intr() with device_printf statements, to see if I could figure out where exactly the hangs happen. Funny enough, the noisy debug kernel didn't hang anymore! I've since narrowed it down to one device_printf statement, which seems to make all the difference: --- pcic_pci.c.WARNER Wed Sep 12 20:12:03 2001 +++ pcic_pci.c Wed Sep 12 20:14:03 2001 @@ -951,6 +951,7 @@ * in the CD change. */ sp->getb(sp, PCIC_STAT_CHG); + device_printf(sc->dev, "bingo!\n"); } /* Why this would help, I don't know (looks like a weird timing-related bug). The fix is also a bit noisy for a production machine :-) But maybe this'll give you a clue to really fix it. (The patch above is against the latest pcic_pci.c-patch you sent out.) Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California ------=_NextPart_000_0019_01C13BC9.12F2ECA0 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIF5jCCArUw ggIeoAMCAQICAwWBRzANBgkqhkiG9w0BAQIFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAxMDgyNDE2NDAwMFoXDTAyMDgyNDE2NDAwMFowVDEPMA0GA1UEBBMGRWdnZXJ0 MQ0wCwYDVQQqEwRMYXJzMRQwEgYDVQQDEwtMYXJzIEVnZ2VydDEcMBoGCSqGSIb3DQEJARYNbGFy c2VAaXNpLmVkdTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0AvLBsD78nxcUHeHkaMgl3b4 qYPnfgbf8Lh+HQP8RgGMRG/Yb+vTpkGezlwt9pkJxiD11uZDy4CNNJUu3gKxKSb+zRV70O+lkwwf tuHoLHoH4xwo3LcQ2LGDpd+I95tUN4dfJ3TmeEcUSF50dC/SuUI4w8AlhXQ8IxrhgdayTpECAwEA AaNWMFQwKgYFK2UBBAEEITAfAgEAMBowGAIBBAQTTDJ1TXlmZkJOVWJOSkpjZFoyczAYBgNVHREE ETAPgQ1sYXJzZUBpc2kuZWR1MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQECBQADgYEAheZhn0pQ A8zI7U2K1ZIAl11j0a1DKxnp3GtTvOUrGRB3WvYxidvdZ1kizhEsWeXU81TkNDH0DaRqtOEeu6Q2 OhB+jeKEqY7IDAJE4/fI0e+d6PnG1hd+vEvYmsKHkmzBhPc94XUOKNWO+qVNP2NGyNI3QIDy5wX4 fdcOo1S34r4wggMpMIICkqADAgECAgEMMA0GCSqGSIb3DQEBBAUAMIHRMQswCQYDVQQGEwJaQTEV MBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0 ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQw IgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNv bmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDAwODMwMDAwMDAwWhcNMDIwODI5MjM1OTU5WjCB kjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3du MQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQD Ex9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCB iQKBgQDeMzKmY8cJJUU+0m54J2eBxdqIGYKXDuNEKYpjNSptcDz63K737nRvMLwzkH/5NHGgo22Y 8cNPomXbDfpL8dbdYaX5hc1VmjUanZJ1qCeu2HL5ugL217CR3hzpq+AYA6h8Q0JQUYeDPPA5tJtU ihOH/7ObnUlmAC0JieyUa+mhaQIDAQABo04wTDApBgNVHREEIjAgpB4wHDEaMBgGA1UEAxMRUHJp dmF0ZUxhYmVsMS0yOTcwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAQYwDQYJKoZIhvcN AQEEBQADgYEAcxtvJmWL/xU0S1liiu1EvknH6A27j7kNaiYqYoQfuIdjdBxtt88aU5FL4c3mONnt UPQ6bDSSrOaSnG7BIwHCCafvS65y3QZn9VBvLli4tgvBUFe17BzX7xe21Yibt6KIGu05Wzl9NPy2 lhglTWr0ncXDkS+plrgFPFL83eliA0gxggKqMIICpgIBATCBmjCBkjELMAkGA1UEBhMCWkExFTAT BgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFp bCBSU0EgMjAwMC44LjMwAgMFgUcwCQYFKw4DAhoFAKCCAWUwGAYJKoZIhvcNAQkDMQsGCSqGSIb3 DQEHATAcBgkqhkiG9w0BCQUxDxcNMDEwOTEzMDQyNTMzWjAjBgkqhkiG9w0BCQQxFgQUGhzIEfHj q5yvFmT9+r5hOJM/dP4wWAYJKoZIhvcNAQkPMUswSTAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgIC AIAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4DAhowCgYIKoZIhvcNAgUwgasGCSsGAQQB gjcQBDGBnTCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE BxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZp Y2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwAgMFgUcwDQYJKoZI hvcNAQEBBQAEgYB2qQL10iz90Df7mxgyPTA3FLcbkcPydUmmvmU8J0sLRfflGA4yu512pt5bLjgm UWFYrTZ7D8ndB2XRW1o9j4nPDWRAhrj02CS0HF4smck8DeZGh4HEgNWcea05Prl90Y7PAloXoFWK LtEOVC65puuR4Z0pZfqjacIo8dF6Ndfc7QAAAAAAAA== ------=_NextPart_000_0019_01C13BC9.12F2ECA0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 20:54: 2 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 5103D37B40E for ; Wed, 12 Sep 2001 20:53:58 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8D3rv615800; Wed, 12 Sep 2001 21:53:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8D3rut94789; Wed, 12 Sep 2001 21:53:56 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109130353.f8D3rut94789@harmony.village.org> To: "Lars Eggert" Subject: Re: Success! (but how?) (Re: PC-Card broken: 4.4-RC4 & Dell Latitude C600) Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 12 Sep 2001 20:25:33 -0800." References: Date: Wed, 12 Sep 2001 21:53:56 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message "Lars Eggert" writes: : --- pcic_pci.c.WARNER Wed Sep 12 20:12:03 2001 : +++ pcic_pci.c Wed Sep 12 20:14:03 2001 : @@ -951,6 +951,7 @@ : * in the CD change. : */ : sp->getb(sp, PCIC_STAT_CHG); : + device_printf(sc->dev, "bingo!\n"); : } Try DELAY(15); DELAY(10); and DELAY(50); Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Sep 12 23:43:42 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from zeus.olympe.fr (54.88.242.195.infosources.fr [195.242.88.54]) by hub.freebsd.org (Postfix) with ESMTP id 560BC37B443 for ; Wed, 12 Sep 2001 23:43:35 -0700 (PDT) Received: from localhost (xtof@localhost) by zeus.olympe.fr (8.11.3/8.11.3) with ESMTP id f8D6hK305829; Thu, 13 Sep 2001 08:43:21 +0200 (CEST) (envelope-from xtof@zeus.olympe.fr) Date: Thu, 13 Sep 2001 08:43:20 +0200 (CEST) From: Christophe To: Mikko Tyolajarvi Cc: , Subject: Re: ADSL, PPPoE and Xircom CEM56 In-Reply-To: <200109121856.f8CIuMf55093@explorer.rsa.com> Message-ID: <20010913083746.A5824-100000@zeus.olympe.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, what i mean when i say 'it hangs' is: the FreeBSD box hangs (and not the internet connexion), and i have to power cycle it. I read the documentation you have sent to me and i will give (good i hope) news. Christophe On Wed, 12 Sep 2001, Mikko Tyolajarvi wrote: > In local.freebsd.mobile you write: > > >i have the following configuration > > >- FreeBSD 4.3 > >- Toshiba Satellite 320CDT > >- Xircom CEM56 ethernet adapter > >- ADSL connection through PPP with > >the PPPoE protocol > >- this box also acts as a router for the > >local network > > >when the box is connected to the Internet, > >sometimes it hangs, and since few days i know > >how to reproduce: > > >ping -s 1464 InternetIP : OK > >ping -s 1465 InternetIP : HANGS > > >it seems that when the box receives too 'big' > >packets it hangs. > > Yes, it is a problem with PPPoE (silly protocol...), broken routers > and packet sizes. > > Upgrade to a newer version of ppp, which contains workarounds for this > problem. I believe contains both > binaries and sources you should be able to use. > > In , section 6.3 you can > find an explanation of what is happening. > > $.02, > /Mikko > -- > Mikko Ty=F6l=E4j=E4rvi_______________________________________mikko@rsase= curity.com > RSA Security > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 0:14:58 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from zeus.olympe.fr (54.88.242.195.infosources.fr [195.242.88.54]) by hub.freebsd.org (Postfix) with ESMTP id A67FE37B40F for ; Thu, 13 Sep 2001 00:14:53 -0700 (PDT) Received: from localhost (xtof@localhost) by zeus.olympe.fr (8.11.3/8.11.3) with ESMTP id f8D7EfN05871; Thu, 13 Sep 2001 09:14:41 +0200 (CEST) (envelope-from xtof@zeus.olympe.fr) Date: Thu, 13 Sep 2001 09:14:40 +0200 (CEST) From: Christophe To: Christophe Cc: Mikko Tyolajarvi , Subject: Re: ADSL, PPPoE and Xircom CEM56 In-Reply-To: <20010913083746.A5824-100000@zeus.olympe.fr> Message-ID: <20010913090928.P5824-100000@zeus.olympe.fr> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi , from http://www.daemonnews.org/200101/pppoe.html NOTE: THIS SECTION IS OUTDATED As of December 2000, ppp now understands the option tcpmssfixup which implements what tcpmssd does below. This version of ppp is included in FreeBSD >=3D 4.3. This feature is enabled by default, but you can still add it anyway: enable tcpmssfixup to your ppp.conf. And that's all you have to do! (no need to muck with the kernel configuration either). Of course the explanation of what's going on is still valid. and i have FreeBSD 4.3 and they say that the feature is enable by default :) Christophe On Thu, 13 Sep 2001, Christophe wrote: > Hi, > > what i mean when i say 'it hangs' is: > the FreeBSD box hangs (and not the internet > connexion), and i have to power cycle it. > > I read the documentation you have sent to me > and i will give (good i hope) news. > > Christophe > > On Wed, 12 Sep 2001, Mikko Tyolajarvi wrote: > > > In local.freebsd.mobile you write: > > > > >i have the following configuration > > > > >- FreeBSD 4.3 > > >- Toshiba Satellite 320CDT > > >- Xircom CEM56 ethernet adapter > > >- ADSL connection through PPP with > > >the PPPoE protocol > > >- this box also acts as a router for the > > >local network > > > > >when the box is connected to the Internet, > > >sometimes it hangs, and since few days i know > > >how to reproduce: > > > > >ping -s 1464 InternetIP : OK > > >ping -s 1465 InternetIP : HANGS > > > > >it seems that when the box receives too 'big' > > >packets it hangs. > > > > Yes, it is a problem with PPPoE (silly protocol...), broken routers > > and packet sizes. > > > > Upgrade to a newer version of ppp, which contains workarounds for this > > problem. I believe contains both > > binaries and sources you should be able to use. > > > > In , section 6.3 you can > > find an explanation of what is happening. > > > > $.02, > > /Mikko > > -- > > Mikko Ty=F6l=E4j=E4rvi_______________________________________mikko@rsa= security.com > > RSA Security > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 0:36: 4 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 6A53737B410; Thu, 13 Sep 2001 00:35:59 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8D7Zv616353; Thu, 13 Sep 2001 01:35:58 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8D7Zvt96125; Thu, 13 Sep 2001 01:35:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109130735.f8D7Zvt96125@harmony.village.org> To: mobile@freebsd.org Cc: Ian Dowse Subject: Card eject patch Date: Thu, 13 Sep 2001 01:35:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [[ bcc'd to stable to get the word out for testers ]] Please test and review: http://people.freebsd.org/~imp/card-eject.diff This seems to solve the problem completely for me. I had two ed cards that always hung the machine on eject. Now they work right, modulo some weirdness with pccard_ether if I pop them out too quick and I have a long delay set... I really want these to make it into -stable before 4.4-release. Please please please test. Thank you. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 0:44:17 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 92BB137B409 for ; Thu, 13 Sep 2001 00:44:00 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8D7hx616370; Thu, 13 Sep 2001 01:43:59 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8D7hwt96167; Thu, 13 Sep 2001 01:43:59 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109130743.f8D7hwt96167@harmony.village.org> To: rdmurphy@vt.edu Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge Cc: FreeBSD-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 11 Sep 2001 10:20:11 EDT." <15262.7579.175475.703603@localhost.econ.vt.edu> References: <15262.7579.175475.703603@localhost.econ.vt.edu> <15261.4103.952522.597428@localhost.econ.vt.edu> <200109110232.f8B2W6t29273@harmony.village.org> Date: Thu, 13 Sep 2001 01:43:58 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <15262.7579.175475.703603@localhost.econ.vt.edu> "Russell D. Murphy Jr." writes: : I've reset /boot/loader.conf; it sets none of the hw.pcic sysctls. : Upon re-boot and insertion of the card (3Com 3C589 ethernet card), the : machine locks up solid with no messages displayed on the console. It : does beep. Ejecting the card switches the console (I had pressed : ALT-F2) and displays pnic: page fault on the system console. OK. : I also tried hw.pcic.init_routing=1. When this is set, nothing : happens when the card is inserted or ejected. No beep, no : recognition, (no lockup). Actually, that's a bad one to try :-) hw.pcic.intr_path=1 hw.pcic.irq=0 # values other than 0 don't work would be better. : | What is your laptop? : : It's a Gateway Solo 5100 (vintage 1998). I didn't copy down the BIOS : information, but can if it would help. Are there BIOS setting I : should check? Plug and play OS should be NO if you can set it. Otherwise chances are good that it just doesn't matter. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 0:45:41 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 681E737B412; Thu, 13 Sep 2001 00:45:39 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8D7jc616387; Thu, 13 Sep 2001 01:45:38 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8D7jbt96201; Thu, 13 Sep 2001 01:45:38 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109130745.f8D7jbt96201@harmony.village.org> Subject: Re: Card eject patch Cc: mobile@FreeBSD.ORG, Ian Dowse In-reply-to: Your message of "Thu, 13 Sep 2001 01:35:57 MDT." <200109130735.f8D7Zvt96125@harmony.village.org> References: <200109130735.f8D7Zvt96125@harmony.village.org> Date: Thu, 13 Sep 2001 01:45:37 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <200109130735.f8D7Zvt96125@harmony.village.org> Warner Losh writes: : Please test and review: : http://people.freebsd.org/~imp/card-eject.diff : : This seems to solve the problem completely for me. I had two ed cards : that always hung the machine on eject. Now they work right, modulo : some weirdness with pccard_ether if I pop them out too quick and I : have a long delay set... : : I really want these to make it into -stable before 4.4-release. : Please please please test. Thank you. This also has some code in it to not probe twice. This should fix the single user panic as well as the "let's attach slot 1 3 times." bug that we've seen. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 0:57:30 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by hub.freebsd.org (Postfix) with ESMTP id CBD0F37B409 for ; Thu, 13 Sep 2001 00:57:26 -0700 (PDT) Received: from laptop.6bone.nl (penguin.ripe.net [193.0.1.232]) by birch.ripe.net (8.11.6/8.11.6) with SMTP id f8D7vCG23062; Thu, 13 Sep 2001 09:57:12 +0200 Received: (nullmailer pid 10675 invoked by uid 1000); Thu, 13 Sep 2001 07:57:11 -0000 Date: Thu, 13 Sep 2001 09:57:10 +0200 From: Mark Santcroos To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Card eject patch Message-ID: <20010913095710.A836@laptop.6bone.nl> References: <200109130735.f8D7Zvt96125@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109130735.f8D7Zvt96125@harmony.village.org>; from imp@harmony.village.org on Thu, Sep 13, 2001 at 01:35:57AM -0600 X-Handles: MS6-6BONE, MS18417-RIPE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org How much does the pccard code for -stable and -current differ actually? Do you try to keep them in sync or are they way different? I've applied the patch to my -current. (It had a few rejects but did it by hand, it looked correct) Now compiling. Mark On Thu, Sep 13, 2001 at 01:35:57AM -0600, Warner Losh wrote: > > [[ bcc'd to stable to get the word out for testers ]] > > Please test and review: > http://people.freebsd.org/~imp/card-eject.diff > > This seems to solve the problem completely for me. I had two ed cards > that always hung the machine on eject. Now they work right, modulo > some weirdness with pccard_ether if I pop them out too quick and I > have a long delay set... > > I really want these to make it into -stable before 4.4-release. > Please please please test. Thank you. > > Warner > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message -- Mark Santcroos RIPE Network Coordination Centre http://www.ripe.net/home/mark/ New Projects Group/TTM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 1: 3:43 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 2AEF337B413 for ; Thu, 13 Sep 2001 01:03:38 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8D83a616474; Thu, 13 Sep 2001 02:03:37 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8D83at96655; Thu, 13 Sep 2001 02:03:36 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109130803.f8D83at96655@harmony.village.org> To: Mark Santcroos Subject: Re: Card eject patch Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 13 Sep 2001 09:57:10 +0200." <20010913095710.A836@laptop.6bone.nl> References: <20010913095710.A836@laptop.6bone.nl> <200109130735.f8D7Zvt96125@harmony.village.org> Date: Thu, 13 Sep 2001 02:03:36 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <20010913095710.A836@laptop.6bone.nl> Mark Santcroos writes: : How much does the pccard code for -stable and -current differ actually? : Do you try to keep them in sync or are they way different? I try to keep they very in sync. : I've applied the patch to my -current. (It had a few rejects but did it by : hand, it looked correct) current would have a couple of ejects due to the code freeze in stable. : Now compiling. Please let me know. Wanrer To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 1:42:26 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from birch.ripe.net (birch.ripe.net [193.0.1.96]) by hub.freebsd.org (Postfix) with ESMTP id C8FBE37B40C for ; Thu, 13 Sep 2001 01:42:21 -0700 (PDT) Received: from laptop.6bone.nl (penguin.ripe.net [193.0.1.232]) by birch.ripe.net (8.11.6/8.11.6) with SMTP id f8D8gDG01033; Thu, 13 Sep 2001 10:42:13 +0200 Received: (nullmailer pid 880 invoked by uid 1000); Thu, 13 Sep 2001 08:42:13 -0000 Date: Thu, 13 Sep 2001 10:42:13 +0200 From: Mark Santcroos To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Card eject patch Message-ID: <20010913104213.B574@laptop.6bone.nl> References: <20010913095710.A836@laptop.6bone.nl> <200109130735.f8D7Zvt96125@harmony.village.org> <20010913095710.A836@laptop.6bone.nl> <200109130803.f8D83at96655@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109130803.f8D83at96655@harmony.village.org>; from imp@harmony.village.org on Thu, Sep 13, 2001 at 02:03:36AM -0600 X-Handles: MS6-6BONE, MS18417-RIPE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Sep 13, 2001 at 02:03:36AM -0600, Warner Losh wrote: > : Now compiling. > > Please let me know. woohoo! ;) seems great and no other problems so far! thanks alot, good job! Mark ps. the slightly modified patch for -current is at: http://www.ripe.net/home/mark/files/card-eject_current.diff -- Mark Santcroos RIPE Network Coordination Centre http://www.ripe.net/home/mark/ New Projects Group/TTM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 5: 1:16 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from server0011.freedom2surf.net (server0011.freedom2surf.net [194.106.56.14]) by hub.freebsd.org (Postfix) with ESMTP id 7724337B40D for ; Thu, 13 Sep 2001 05:01:12 -0700 (PDT) Received: from server0006.freedom2surf.net (freedom2surf.net [194.106.56.38]) by server0011.freedom2surf.net (8.9.2/8.9.2/Debian/GNU) with ESMTP id NAA20518 for ; Thu, 13 Sep 2001 13:01:11 +0100 (BST) From: kehl@f2s.com Received: from www by server0006.freedom2surf.net with local (Exim 3.12 #1 (Debian)) id 15hVB9-0000y9-00 for ; Thu, 13 Sep 2001 12:01:11 +0000 To: freebsd-mobile@freebsd.org Subject: How to boot FreeBSD from DOS? Message-ID: <1000382471.3ba0a007838ff@www.freedom2surf.net> Date: Thu, 13 Sep 2001 12:01:11 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit User-Agent: IMP/PHP IMAP webmail program 2.2.1 X-Originating-IP: 212.81.0.10 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hello, I've got notebook with not working floppy and it cannot boot from PCMCIA. How can I boot FreeBSD 4.0 (not PAO) from DOS (then I use PLIP)? fbsdboot.exe wrote "Invalid format!" bsdboot.com loaded kernel, than hanged up. How to do it correctly and to specify MFS root file? With respects, Peter Kehl ------------------------------------------------- Everyone should have http://www.freedom2surf.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 5:34:30 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id D5D5837B403 for ; Thu, 13 Sep 2001 05:34:24 -0700 (PDT) Received: from cain.gsoft.com.au (root@spare0.gsoft.com.au [203.38.152.114]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id WAA28755; Thu, 13 Sep 2001 22:04:06 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <1000382471.3ba0a007838ff@www.freedom2surf.net> Date: Thu, 13 Sep 2001 22:04:03 +0930 (CST) From: "Daniel O'Connor" To: kehl@f2s.com Subject: RE: How to boot FreeBSD from DOS? Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 13-Sep-2001 kehl@f2s.com wrote: > I've got notebook with not working floppy and it cannot boot from PCMCIA. > How > can I boot FreeBSD 4.0 (not PAO) from DOS (then I use PLIP)? > > fbsdboot.exe wrote "Invalid format!" > bsdboot.com loaded kernel, than hanged up. > > How to do it correctly and to specify MFS root file? It is no longer (post FreeBSD 2.2) to do this because fbsdboot.exe doesn't understand elf kernels. Even if it did Windows screws certain BIOS vectors that FreeBSD needs to work (AFAIK). I think your only option would be to put the HD from your laptop into another that can boot off CD or floppy, or get an adapter to attach it to a desktop machine. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 8:32:27 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from knock.econ.vt.edu (knock.econ.vt.edu [128.173.172.240]) by hub.freebsd.org (Postfix) with ESMTP id 7BDDD37B40E for ; Thu, 13 Sep 2001 08:32:13 -0700 (PDT) Received: (from rdmurphy@localhost) by knock.econ.vt.edu (8.11.6/8.11.4) id f8DFW1s49559; Thu, 13 Sep 2001 11:32:01 -0400 (EDT) (envelope-from rdmurphy) From: "Russell D. Murphy Jr." MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15264.53617.698867.84047@localhost.econ.vt.edu> Date: Thu, 13 Sep 2001 11:32:01 -0400 To: Warner Losh Cc: FreeBSD-mobile@FreeBSD.ORG Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge In-Reply-To: <200109130743.f8D7hwt96167@harmony.village.org> References: <15262.7579.175475.703603@localhost.econ.vt.edu> <15261.4103.952522.597428@localhost.econ.vt.edu> <200109110232.f8B2W6t29273@harmony.village.org> <200109130743.f8D7hwt96167@harmony.village.org> X-Mailer: VM 6.92 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Reply-To: rdmurphy@vt.edu Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've set: According to Warner Losh (September 13, 2001): | | hw.pcic.intr_path=1 | hw.pcic.irq=0 # values other than 0 don't work | | would be better. | | Plug and play OS should be NO if you can set it. Otherwise chances | are good that it just doesn't matter. PNP OS is NO. The response is strange; I inserted and ejected the card 3 times: The machine boots up as: Sep 13 10:10:31 kenmare /kernel: pcic0: irq 9 at device 10.0 on pci0 Sep 13 10:10:31 kenmare /kernel: pcic0: PCI Memory allocated: 0x44000000 Sep 13 10:10:31 kenmare /kernel: pcic0: Polling mode Sep 13 10:10:31 kenmare /kernel: pcic0: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] Sep 13 10:10:31 kenmare /kernel: pccard0: on pcic0 Sep 13 10:10:31 kenmare /kernel: pcic1: irq 9 at device 10.1 on pci0 Sep 13 10:10:31 kenmare /kernel: pcic1: PCI Memory allocated: 0x44001000 Sep 13 10:10:31 kenmare /kernel: pcic1: Polling mode Sep 13 10:10:31 kenmare /kernel: pcic1: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] Sep 13 10:10:31 kenmare /kernel: pccard1: on pcic1 1 - I insert the card and it seems to be recognized, but the machine doesn't respond to the keyboard. I eject the card. Sep 13 10:11:00 kenmare /kernel: pccard: card inserted, slot 0 Sep 13 10:11:00 kenmare /kernel: pcic0: reset 1 int is 0 stat is 7f Sep 13 10:11:01 kenmare /kernel: pcic0: reset 2 int is 60 stat is 5f Sep 13 10:11:01 kenmare /kernel: pcic0: reset 3 int is 60 stat is 7f Sep 13 10:11:06 kenmare pccardd[132]: Card "3Com Corporation"("3C589D") [TP/BNC LAN Card Ver. 2a] [000002] matched "3Com Corporation" ("/3C589/") [(null)] [(null)] Sep 13 10:11:11 kenmare /kernel: pccard0: Assigning ep0: io 0x250-0x25f irq 3 mem 0x0-0xffffffff Sep 13 10:11:12 kenmare /kernel: pcic: I/O win 0 flags 17 250-25f Sep 13 10:11:12 kenmare /kernel: pcic: I/O win 0 flags 7 250-25f Sep 13 10:11:12 kenmare /kernel: ep0: <3Com Etherlink III 3C589> at port 0x250-0x25f irq 3 slot 0 on pccard0 Sep 13 10:11:12 kenmare /kernel: pcic: I/O win 0 flags 17 250-25f Sep 13 10:11:12 kenmare /kernel: ep0: Ethernet address 00:60:08:b1:3a:5e Sep 13 10:11:12 kenmare /kernel: bpf: ep0 attached Sep 13 10:11:12 kenmare /kernel: pcic: I/O win 0 flags 7 250-25f Sep 13 10:11:12 kenmare /kernel: ep0: detached Sep 13 10:11:12 kenmare /kernel: pccard: card removed, slot 0 Sep 13 10:11:11 kenmare pccardd[132]: ep0: 3Com Corporation (/3C589/) inserted. Sep 13 10:11:12 kenmare pccardd[132]: ep0: 3Com Corporation (/3C589/) removed. 2 - now the machine responds again; so I re-insert the card. Now, the card isn't recognized, but the machine responds to the keyboard. I eject the card. Sep 13 10:55:02 kenmare /kernel: pccard: card inserted, slot 0 Sep 13 10:55:02 kenmare /kernel: pcic0: reset 1 int is 0 stat is c Sep 13 10:55:02 kenmare /kernel: pcic0: reset 2 int is 60 stat is c Sep 13 10:55:02 kenmare /kernel: pcic0: reset 3 int is 60 stat is c Sep 13 10:55:07 kenmare pccardd[132]: No card in database for "(null)"("(null)") Sep 13 10:56:04 kenmare /kernel: pccard: card removed, slot 0 3 - Re-inserting the card now hangs the machine, after it's recognized. It has to be turned off. Sep 13 10:56:29 kenmare /kernel: pccard: card inserted, slot 0 Sep 13 10:56:29 kenmare /kernel: pcic0: reset 1 int is 0 stat is 7f Sep 13 10:56:29 kenmare /kernel: pcic0: reset 2 int is 60 stat is 5f Sep 13 10:56:29 kenmare /kernel: pcic0: reset 3 int is 60 stat is 7f Sep 13 10:56:34 kenmare pccardd[132]: Card "3Com Corporation"("3C589D") [TP/BNC LAN Card Ver. 2a] [000002] matched "3Com Corporation" ("/3C589/") [(null)] [(null)] Russ M. -- Russell D. Murphy Department of Economics Virginia Polytechnic Institute and State University Blacksburg, Virginia 24061 (540) 231-4537 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 8:55:30 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from msgbas2.cos.agilent.com (msgbas2x.cos.agilent.com [192.25.240.37]) by hub.freebsd.org (Postfix) with ESMTP id 3154137B413 for ; Thu, 13 Sep 2001 08:55:26 -0700 (PDT) Received: from msgrel1.cos.agilent.com (msgrel1.cos.agilent.com [130.29.152.77]) by msgbas2.cos.agilent.com (Postfix) with ESMTP id ADEC61122; Thu, 13 Sep 2001 09:55:25 -0600 (MDT) Received: from mina.soco.agilent.com (mina.soco.agilent.com [141.121.54.157]) by msgrel1.cos.agilent.com (Postfix) with ESMTP id 25693305; Thu, 13 Sep 2001 09:55:25 -0600 (MDT) Received: from mina.soco.agilent.com (darrylo@localhost [127.0.0.1]) by mina.soco.agilent.com (8.9.3 (PHNE_22672)/8.9.3 SMKit7.1.1_Agilent) with ESMTP id IAA22448; Thu, 13 Sep 2001 08:55:24 -0700 (PDT) Message-Id: <200109131555.IAA22448@mina.soco.agilent.com> To: Warner Losh , FreeBSD-mobile@FreeBSD.ORG Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge Reply-To: Darryl Okahata In-Reply-To: Your message of "Thu, 13 Sep 2001 11:32:01 EDT." <15264.53617.698867.84047@localhost.econ.vt.edu> Mime-Version: 1.0 (generated by tm-edit 1.6) Content-Type: text/plain; charset=US-ASCII Date: Thu, 13 Sep 2001 08:55:23 -0700 From: Darryl Okahata Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org "Russell D. Murphy Jr." wrote: > Sep 13 10:10:31 kenmare /kernel: pcic0: irq 9 at device 10.0 on pci0 > Sep 13 10:10:31 kenmare /kernel: pcic0: PCI Memory allocated: 0x44000000 > Sep 13 10:10:31 kenmare /kernel: pcic0: Polling mode > Sep 13 10:10:31 kenmare /kernel: pcic0: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] > Sep 13 10:10:31 kenmare /kernel: pccard0: on pcic0 I'm a bit confused by the newcard messages. Before newcard, if an IRQ was displayed on the pcicX line, the driver was using an IRQ. Now, an IRQ is always displayed, even though the driver is using "Polling mode"? What's the significance of the IRQ in polling mode? -- Darryl Okahata darrylo@soco.agilent.com DISCLAIMER: this message is the author's personal opinion and does not constitute the support, opinion, or policy of Agilent Technologies, or of the little green men that have been following him all day. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 9:24:17 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id CE01837B406; Thu, 13 Sep 2001 09:24:12 -0700 (PDT) Received: from ted.isi.edu (ted.isi.edu [128.9.160.104]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8DGOCQ05555; Thu, 13 Sep 2001 09:24:12 -0700 (PDT) Received: (from faber@localhost) by ted.isi.edu (8.11.4/8.11.4) id f8DGOBL43550; Thu, 13 Sep 2001 09:24:11 -0700 (PDT) (envelope-from faber) Date: Thu, 13 Sep 2001 09:24:11 -0700 From: Ted Faber To: Warner Losh Cc: mobile@freebsd.org, Ian Dowse Subject: Re: Card eject patch Message-ID: <20010913092411.D42961@ted.isi.edu> References: <200109130735.f8D7Zvt96125@harmony.village.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=php-sha1; protocol="application/pgp-signature"; boundary="iVCmgExH7+hIHJ1A" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109130735.f8D7Zvt96125@harmony.village.org>; from imp@harmony.village.org on Thu, Sep 13, 2001 at 01:35:57AM -0600 X-url: http://www.isi.edu/~faber Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --iVCmgExH7+hIHJ1A Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Sep 13, 2001 at 01:35:57AM -0600, Warner Losh wrote: > > [[ bcc'd to stable to get the word out for testers ]] > > Please test and review: > http://people.freebsd.org/~imp/card-eject.diff > > This seems to solve the problem completely for me. I had two ed cards > that always hung the machine on eject. Now they work right, modulo > some weirdness with pccard_ether if I pop them out too quick and I > have a long delay set... Warner, Even with this patch and a -stable from yesterday, things lock hard on card insert or removal on my Fujitsu C-5130 if either the sound driver (snd_ds1) or the usb driver (usb) is loaded. They share irq 9 with the pcic. I've mentioned the problem before with a bunch of debug output, which I'll cheerfully regather if you need it. (I'm the fellow who lost his power supply for a week while on travel). Let me know if I can help. --iVCmgExH7+hIHJ1A Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7oN2raUz3f+Zf+XsRAtx2AKC3uwLwGz3QjjsL4iTMEfIB+DSoxACgq2Tb lRKDItjjqVS7REiELHLixG8= =MgRE -----END PGP SIGNATURE----- --iVCmgExH7+hIHJ1A-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 9:46:49 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id C2F9137B40A for ; Thu, 13 Sep 2001 09:46:44 -0700 (PDT) Received: from hbo (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with SMTP id f8DGkgQ08976; Thu, 13 Sep 2001 09:46:42 -0700 (PDT) From: "Lars Eggert" To: "Warner Losh" , Subject: RE: Card eject patch Date: Thu, 13 Sep 2001 09:46:43 -0800 MIME-Version: 1.0 Message-ID: X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Content-Type: multipart/signed; micalg=SHA1; protocol="application/x-pkcs7-signature"; boundary="----=_NextPart_000_001D_01C13C38.FE938380" In-Reply-To: <200109130735.f8D7Zvt96125@harmony.village.org> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_001D_01C13C38.FE938380 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit > Please test and review: > http://people.freebsd.org/~imp/card-eject.diff Perfect! Works like a charm. All my cards insert and eject fine now, both slots. Beers are on if we meet sometime (next IETF maybe?) Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California ------=_NextPart_000_001D_01C13C38.FE938380 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIF5jCCArUw ggIeoAMCAQICAwWBRzANBgkqhkiG9w0BAQIFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAxMDgyNDE2NDAwMFoXDTAyMDgyNDE2NDAwMFowVDEPMA0GA1UEBBMGRWdnZXJ0 MQ0wCwYDVQQqEwRMYXJzMRQwEgYDVQQDEwtMYXJzIEVnZ2VydDEcMBoGCSqGSIb3DQEJARYNbGFy c2VAaXNpLmVkdTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0AvLBsD78nxcUHeHkaMgl3b4 qYPnfgbf8Lh+HQP8RgGMRG/Yb+vTpkGezlwt9pkJxiD11uZDy4CNNJUu3gKxKSb+zRV70O+lkwwf tuHoLHoH4xwo3LcQ2LGDpd+I95tUN4dfJ3TmeEcUSF50dC/SuUI4w8AlhXQ8IxrhgdayTpECAwEA AaNWMFQwKgYFK2UBBAEEITAfAgEAMBowGAIBBAQTTDJ1TXlmZkJOVWJOSkpjZFoyczAYBgNVHREE ETAPgQ1sYXJzZUBpc2kuZWR1MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQECBQADgYEAheZhn0pQ A8zI7U2K1ZIAl11j0a1DKxnp3GtTvOUrGRB3WvYxidvdZ1kizhEsWeXU81TkNDH0DaRqtOEeu6Q2 OhB+jeKEqY7IDAJE4/fI0e+d6PnG1hd+vEvYmsKHkmzBhPc94XUOKNWO+qVNP2NGyNI3QIDy5wX4 fdcOo1S34r4wggMpMIICkqADAgECAgEMMA0GCSqGSIb3DQEBBAUAMIHRMQswCQYDVQQGEwJaQTEV MBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0 ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQw IgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNv bmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDAwODMwMDAwMDAwWhcNMDIwODI5MjM1OTU5WjCB kjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3du MQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQD Ex9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCB iQKBgQDeMzKmY8cJJUU+0m54J2eBxdqIGYKXDuNEKYpjNSptcDz63K737nRvMLwzkH/5NHGgo22Y 8cNPomXbDfpL8dbdYaX5hc1VmjUanZJ1qCeu2HL5ugL217CR3hzpq+AYA6h8Q0JQUYeDPPA5tJtU ihOH/7ObnUlmAC0JieyUa+mhaQIDAQABo04wTDApBgNVHREEIjAgpB4wHDEaMBgGA1UEAxMRUHJp dmF0ZUxhYmVsMS0yOTcwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAQYwDQYJKoZIhvcN AQEEBQADgYEAcxtvJmWL/xU0S1liiu1EvknH6A27j7kNaiYqYoQfuIdjdBxtt88aU5FL4c3mONnt UPQ6bDSSrOaSnG7BIwHCCafvS65y3QZn9VBvLli4tgvBUFe17BzX7xe21Yibt6KIGu05Wzl9NPy2 lhglTWr0ncXDkS+plrgFPFL83eliA0gxggKqMIICpgIBATCBmjCBkjELMAkGA1UEBhMCWkExFTAT BgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFp bCBSU0EgMjAwMC44LjMwAgMFgUcwCQYFKw4DAhoFAKCCAWUwGAYJKoZIhvcNAQkDMQsGCSqGSIb3 DQEHATAcBgkqhkiG9w0BCQUxDxcNMDEwOTEzMTc0NjQyWjAjBgkqhkiG9w0BCQQxFgQU3YmBIrP1 a/MykHXPS6VJ7A9mQ6QwWAYJKoZIhvcNAQkPMUswSTAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgIC AIAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4DAhowCgYIKoZIhvcNAgUwgasGCSsGAQQB gjcQBDGBnTCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE BxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZp Y2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwAgMFgUcwDQYJKoZI hvcNAQEBBQAEgYC/Zr4323ts3ld3+NeNUICcU1TVG5dafY92iMibj47O7i04LvPhh6wEmoAQ0oEx IzZ58/CZVYWbhzuLj4a48Hjn+Ah0II9zkJq9M60IapnCJUcS/3tqh18U7+ouwgej4ukc2zCLUmle kAu7jr779bdS606eQKOODwp29Gm7PxdGQwAAAAAAAA== ------=_NextPart_000_001D_01C13C38.FE938380-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 9:51:30 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id E23DA37B405 for ; Thu, 13 Sep 2001 09:51:25 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8DGpO618073; Thu, 13 Sep 2001 10:51:25 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8DGpOt06295; Thu, 13 Sep 2001 10:51:24 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109131651.f8DGpOt06295@harmony.village.org> To: Darryl Okahata Subject: Re: pccardd and TI PCI-1250 PCI-CardBus Bridge Cc: FreeBSD-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 13 Sep 2001 08:55:23 PDT." <200109131555.IAA22448@mina.soco.agilent.com> References: <200109131555.IAA22448@mina.soco.agilent.com> Date: Thu, 13 Sep 2001 10:51:24 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <200109131555.IAA22448@mina.soco.agilent.com> Darryl Okahata writes: : "Russell D. Murphy Jr." wrote: : : > Sep 13 10:10:31 kenmare /kernel: pcic0: irq 9 at device 10.0 on pci0 : > Sep 13 10:10:31 kenmare /kernel: pcic0: PCI Memory allocated: 0x44000000 : > Sep 13 10:10:31 kenmare /kernel: pcic0: Polling mode : > Sep 13 10:10:31 kenmare /kernel: pcic0: TI12XX PCI Config Reg: [speaker enable][pwr save][FUNC pci int + CSC serial isa irq] : > Sep 13 10:10:31 kenmare /kernel: pccard0: on pcic0 : : I'm a bit confused by the newcard messages. Before newcard, if an : IRQ was displayed on the pcicX line, the driver was using an IRQ. Now, : an IRQ is always displayed, even though the driver is using "Polling : mode"? What's the significance of the IRQ in polling mode? This just means that the BIOS assigned an interrupt to the device, but you specifically told it to use ISA interrupts and polling mode and ignore that IRQ. The PCI bus part of the system reports the interrupt that's been routed. A little confusing, I know, but hard to fix. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 9:54:34 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 15BD637B40C; Thu, 13 Sep 2001 09:54:30 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8DGsS618094; Thu, 13 Sep 2001 10:54:29 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8DGsSt06348; Thu, 13 Sep 2001 10:54:28 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109131654.f8DGsSt06348@harmony.village.org> To: Ted Faber Subject: Re: Card eject patch Cc: mobile@freebsd.org, Ian Dowse In-reply-to: Your message of "Thu, 13 Sep 2001 09:24:11 PDT." <20010913092411.D42961@ted.isi.edu> References: <20010913092411.D42961@ted.isi.edu> <200109130735.f8D7Zvt96125@harmony.village.org> Date: Thu, 13 Sep 2001 10:54:28 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <20010913092411.D42961@ted.isi.edu> Ted Faber writes: : Even with this patch and a -stable from yesterday, things lock hard on : card insert or removal on my Fujitsu C-5130 if either the sound driver : (snd_ds1) or the usb driver (usb) is loaded. They share irq 9 with : the pcic. I've mentioned the problem before with a bunch of debug : output, which I'll cheerfully regather if you need it. (I'm the : fellow who lost his power supply for a week while on travel). : : Let me know if I can help. OK. I've known about your problems. I asked a little while ago if you'd tried ISA interrupts, but hadn't heard back an answer. hw.pcic.intr_path=1 hw.pcic.irq=0 is what you need in your /boot/loader.conf (or you can type "set b=y" at the ok prompt of the boot loader. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 9:55:47 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 1858237B40E for ; Thu, 13 Sep 2001 09:55:36 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8DGtX618110; Thu, 13 Sep 2001 10:55:34 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8DGtXt06384; Thu, 13 Sep 2001 10:55:33 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109131655.f8DGtXt06384@harmony.village.org> To: "Lars Eggert" Subject: Re: Card eject patch Cc: mobile@freebsd.org In-reply-to: Your message of "Thu, 13 Sep 2001 09:46:43 -0800." References: Date: Thu, 13 Sep 2001 10:55:33 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message "Lars Eggert" writes: : Perfect! Works like a charm. All my cards insert and eject fine now, both : slots. Beers are on if we meet sometime (next IETF maybe?) OK. You are on. MFC coming shortly. I gotta come up with a good, pithy quote for the commit log for sure. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 10: 3: 1 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from mta01-srv.alltel.net (mta01.alltel.net [166.102.165.143]) by hub.freebsd.org (Postfix) with ESMTP id 8E60C37B40D for ; Thu, 13 Sep 2001 10:02:57 -0700 (PDT) Received: from laptop.lambertfam.org ([166.102.201.161]) by mta01-srv.alltel.net with ESMTP id <20010913170256.QKCI28620.mta01-srv.alltel.net@laptop.lambertfam.org> for ; Thu, 13 Sep 2001 12:02:56 -0500 Received: by laptop.lambertfam.org (Postfix, from userid 1000) id 4803828B52; Thu, 13 Sep 2001 11:49:28 -0500 (CDT) Date: Thu, 13 Sep 2001 11:49:28 -0500 From: Scott Lambert To: FreeBSD-Mobile@freebsd.org Subject: Re: Card eject patch Message-ID: <20010913114928.A662@laptop.lambertfam.org> Mail-Followup-To: FreeBSD-Mobile@freebsd.org References: <200109130735.f8D7Zvt96125@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109130735.f8D7Zvt96125@harmony.village.org>; from imp@harmony.village.org on Thu, Sep 13, 2001 at 01:35:57AM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Sep 13, 2001 at 01:35:57AM -0600, Warner Losh wrote: > > [[ bcc'd to stable to get the word out for testers ]] > > Please test and review: > http://people.freebsd.org/~imp/card-eject.diff > > This seems to solve the problem completely for me. I had two ed cards > that always hung the machine on eject. Now they work right, modulo > some weirdness with pccard_ether if I pop them out too quick and I > have a long delay set... > > I really want these to make it into -stable before 4.4-release. > Please please please test. Thank you. This patch seems to cause no harm here. I was not seeing eject hangs with my Linksys (EtherFast 10&100 + 56K PC Card (PCMLM56)) before. I do not see problems after applying the patch. I do still only have use of slot 0 on my Toshiba Satellite 2805-S201. I had both slots before the PCI changes were made. Not an issue for me since I have only the one card. In Slot 1 pccardd sees the card as pccardd[121]: No card in database for "(null)"("(null)") There seem to be no pertinent changes to the dmesg. -- Scott Lambert KC5MLE Unix SysAdmin -- Looking for work. lambert@lambertfam.org http://www.lambertfam.org/~lambert/resume.html 2.5 years Sr. SysAdmin experience with FreeBSD in small & medium size ISPs. The last 5 months have included exposure to Solaris 7, True64 5, and Linux. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 10:12:47 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 95B3937B409; Thu, 13 Sep 2001 10:12:39 -0700 (PDT) Received: from ted.isi.edu (ted.isi.edu [128.9.160.104]) by boreas.isi.edu (8.11.6/8.11.2) with ESMTP id f8DHCdQ12877; Thu, 13 Sep 2001 10:12:39 -0700 (PDT) Received: (from faber@localhost) by ted.isi.edu (8.11.4/8.11.4) id f8DHCcf44143; Thu, 13 Sep 2001 10:12:38 -0700 (PDT) (envelope-from faber) Date: Thu, 13 Sep 2001 10:12:38 -0700 From: Ted Faber To: Warner Losh Cc: mobile@freebsd.org, Ian Dowse Subject: Re: Card eject patch Message-ID: <20010913101238.E42961@ted.isi.edu> References: <20010913092411.D42961@ted.isi.edu> <200109130735.f8D7Zvt96125@harmony.village.org> <20010913092411.D42961@ted.isi.edu> <200109131654.f8DGsSt06348@harmony.village.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=php-sha1; protocol="application/pgp-signature"; boundary="xA/XKXTdy9G3iaIz" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109131654.f8DGsSt06348@harmony.village.org>; from imp@harmony.village.org on Thu, Sep 13, 2001 at 10:54:28AM -0600 X-url: http://www.isi.edu/~faber Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --xA/XKXTdy9G3iaIz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Sep 13, 2001 at 10:54:28AM -0600, Warner Losh wrote: > In message <20010913092411.D42961@ted.isi.edu> Ted Faber writes: > : Even with this patch and a -stable from yesterday, things lock hard on > : card insert or removal on my Fujitsu C-5130 if either the sound driver > : (snd_ds1) or the usb driver (usb) is loaded. They share irq 9 with > : the pcic. I've mentioned the problem before with a bunch of debug > : output, which I'll cheerfully regather if you need it. (I'm the > : fellow who lost his power supply for a week while on travel). > : > : Let me know if I can help. > > OK. I've known about your problems. I asked a little while ago if > you'd tried ISA interrupts, but hadn't heard back an answer. I realize you're juggling a bunch, and as I said, I disappeared for a while, sorry. I thought I responded, but I may have done so from my home address which failed to correlate. In any case: > hw.pcic.intr_path=1 > hw.pcic.irq=0 That's the current configuration I'm using. $ sysctl -a | grep pcic hw.pcic.irq: 0 hw.pcic.ignore_function_1: 0 hw.pcic.intr_path: 1 hw.pcic.init_routing: 1 machdep.pccard.pcic_resume_reset: 1 Toggling hw.pcic.init_routing has no effect - cards work until usb or snd_ds1 is loaded, then the next insert/remove locks the machine tight. --xA/XKXTdy9G3iaIz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE7oOkGaUz3f+Zf+XsRAjcYAKDEpQUxBuXY9ZygbrI3snIbeBjdQACgyEQs txlXkIcI/Hz+u+/iKRRX6S4= =aLK6 -----END PGP SIGNATURE----- --xA/XKXTdy9G3iaIz-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 10:31:35 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id AF89337B40E for ; Thu, 13 Sep 2001 10:31:32 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f8DHVV618256; Thu, 13 Sep 2001 11:31:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f8DHVUt06715; Thu, 13 Sep 2001 11:31:31 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200109131731.f8DHVUt06715@harmony.village.org> To: Mark Santcroos Subject: Re: Card eject patch Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 13 Sep 2001 10:42:13 +0200." <20010913104213.B574@laptop.6bone.nl> References: <20010913104213.B574@laptop.6bone.nl> <20010913095710.A836@laptop.6bone.nl> <200109130735.f8D7Zvt96125@harmony.village.org> <20010913095710.A836@laptop.6bone.nl> <200109130803.f8D83at96655@harmony.village.org> Date: Thu, 13 Sep 2001 11:31:30 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org In message <20010913104213.B574@laptop.6bone.nl> Mark Santcroos writes: : woohoo! ;) : : seems great and no other problems so far! : : thanks alot, good job! Thanks! : Mark : : : ps. the slightly modified patch for -current is at: : http://www.ripe.net/home/mark/files/card-eject_current.diff I've already committed this... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 11: 6:21 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from freeway.dcfinc.com (cx74889-a.phnx3.az.home.com [24.1.193.157]) by hub.freebsd.org (Postfix) with ESMTP id 479D137B415 for ; Thu, 13 Sep 2001 11:06:11 -0700 (PDT) Received: (from chad@localhost) by freeway.dcfinc.com (8.8.8/8.8.8) id LAA08325; Thu, 13 Sep 2001 11:05:53 -0700 (MST) (envelope-from chad) Date: Thu, 13 Sep 2001 11:05:53 -0700 From: "Chad R. Larson" To: Warner Losh Cc: Evan Sarmiento , freebsd-mobile@FreeBSD.ORG Subject: Re: Vaio SR33 -- hang on initializing PCMCIA Message-ID: <20010913110553.E7955@freeway.dcfinc.com> References: <200109112332.f8BNWer10839@csa.bu.edu> <200109121451.f8CEpQt39921@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200109121451.f8CEpQt39921@harmony.village.org>; from imp@harmony.village.org on Wed, Sep 12, 2001 at 08:51:26AM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Sep 12, 2001 at 08:51:26AM -0600, Warner Losh wrote: > In message <200109112332.f8BNWer10839@csa.bu.edu> Evan Sarmiento writes: > : I recently bought a Vaio SR33. It came with a PCGA-51/A cdrom, > : which appears to be supported, when I searched on google. > : However, it freezes on initializing pccard bus. Also, my PCGA-DVD51 works as a 16-bit PCMCIA device when powered by the notebook, and as a 32-bit Cardbus device when given external power. If you've got the AC adapter, try it both ways. -crl -- Chad R. Larson (CRL15) 602-953-1392 Brother, can you paradigm? chad@dcfinc.com chad@larsons.org larson1@home.com DCF, Inc. - 14623 North 49th Place, Scottsdale, Arizona 85254-2207 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 11:45:45 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id 0EA4237B408 for ; Thu, 13 Sep 2001 11:45:40 -0700 (PDT) Received: from hbo (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with SMTP id f8DIjdQ28468 for ; Thu, 13 Sep 2001 11:45:39 -0700 (PDT) From: "Lars Eggert" To: Subject: WinModem support? Date: Thu, 13 Sep 2001 11:45:40 -0800 Message-ID: MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Content-Type: multipart/signed; micalg=SHA1; protocol="application/x-pkcs7-signature"; boundary="----=_NextPart_000_004E_01C13C49.9C7E8120" Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_004E_01C13C49.9C7E8120 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, what's the status of support for these (Win)Modems? Lucent LT Winmodem (vendor=0x11c1, dev=0x0445) 3Com V.90 Mini-PCI Modem (vendor=0x10b7, dev=0x1007) I thought the Lucent one might be supported by the mwave port, but it doesn't seem to be. And I'm not sure if the 3Com one even is a WinModem, but it's not attached in any case. Thanks, Lars -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California ------=_NextPart_000_004E_01C13C49.9C7E8120 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIF5jCCArUw ggIeoAMCAQICAwWBRzANBgkqhkiG9w0BAQIFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAxMDgyNDE2NDAwMFoXDTAyMDgyNDE2NDAwMFowVDEPMA0GA1UEBBMGRWdnZXJ0 MQ0wCwYDVQQqEwRMYXJzMRQwEgYDVQQDEwtMYXJzIEVnZ2VydDEcMBoGCSqGSIb3DQEJARYNbGFy c2VAaXNpLmVkdTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0AvLBsD78nxcUHeHkaMgl3b4 qYPnfgbf8Lh+HQP8RgGMRG/Yb+vTpkGezlwt9pkJxiD11uZDy4CNNJUu3gKxKSb+zRV70O+lkwwf tuHoLHoH4xwo3LcQ2LGDpd+I95tUN4dfJ3TmeEcUSF50dC/SuUI4w8AlhXQ8IxrhgdayTpECAwEA AaNWMFQwKgYFK2UBBAEEITAfAgEAMBowGAIBBAQTTDJ1TXlmZkJOVWJOSkpjZFoyczAYBgNVHREE ETAPgQ1sYXJzZUBpc2kuZWR1MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQECBQADgYEAheZhn0pQ A8zI7U2K1ZIAl11j0a1DKxnp3GtTvOUrGRB3WvYxidvdZ1kizhEsWeXU81TkNDH0DaRqtOEeu6Q2 OhB+jeKEqY7IDAJE4/fI0e+d6PnG1hd+vEvYmsKHkmzBhPc94XUOKNWO+qVNP2NGyNI3QIDy5wX4 fdcOo1S34r4wggMpMIICkqADAgECAgEMMA0GCSqGSIb3DQEBBAUAMIHRMQswCQYDVQQGEwJaQTEV MBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0 ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQw IgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNv bmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDAwODMwMDAwMDAwWhcNMDIwODI5MjM1OTU5WjCB kjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3du MQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQD Ex9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCB iQKBgQDeMzKmY8cJJUU+0m54J2eBxdqIGYKXDuNEKYpjNSptcDz63K737nRvMLwzkH/5NHGgo22Y 8cNPomXbDfpL8dbdYaX5hc1VmjUanZJ1qCeu2HL5ugL217CR3hzpq+AYA6h8Q0JQUYeDPPA5tJtU ihOH/7ObnUlmAC0JieyUa+mhaQIDAQABo04wTDApBgNVHREEIjAgpB4wHDEaMBgGA1UEAxMRUHJp dmF0ZUxhYmVsMS0yOTcwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAQYwDQYJKoZIhvcN AQEEBQADgYEAcxtvJmWL/xU0S1liiu1EvknH6A27j7kNaiYqYoQfuIdjdBxtt88aU5FL4c3mONnt UPQ6bDSSrOaSnG7BIwHCCafvS65y3QZn9VBvLli4tgvBUFe17BzX7xe21Yibt6KIGu05Wzl9NPy2 lhglTWr0ncXDkS+plrgFPFL83eliA0gxggKqMIICpgIBATCBmjCBkjELMAkGA1UEBhMCWkExFTAT BgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFp bCBSU0EgMjAwMC44LjMwAgMFgUcwCQYFKw4DAhoFAKCCAWUwGAYJKoZIhvcNAQkDMQsGCSqGSIb3 DQEHATAcBgkqhkiG9w0BCQUxDxcNMDEwOTEzMTk0NTM5WjAjBgkqhkiG9w0BCQQxFgQUNyImfV6j EXiBLnLK1O1oMISG1+8wWAYJKoZIhvcNAQkPMUswSTAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgIC AIAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4DAhowCgYIKoZIhvcNAgUwgasGCSsGAQQB gjcQBDGBnTCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE BxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZp Y2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwAgMFgUcwDQYJKoZI hvcNAQEBBQAEgYC3rouhcfCvRjgegu93UkrY87mSywcbjqjdqfkzSOrA/qoUw6+L+IivXTbPeph1 TrVTC/oYjx+0Cmn90IL4pIQ1QQsUaeNBSKmTzOJnhLC5TzJhljmCjfdkzvOSTzn4W1MT8ooHjder hh5XmTlX63NdeFiNS5+rc/2J+N5alho2rwAAAAAAAA== ------=_NextPart_000_004E_01C13C49.9C7E8120-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 12: 0:10 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from sys708.peregrine.com (nat-361.peregrine.com [63.82.231.107]) by hub.freebsd.org (Postfix) with ESMTP id 2103937B408 for ; Thu, 13 Sep 2001 12:00:07 -0700 (PDT) Received: from ucsd.edu (erichb2b.peregrine.com [10.3.5.83]) by sys708.peregrine.com (8.11.4/8.11.3) with ESMTP id f8DJ6oM16481; Thu, 13 Sep 2001 12:06:50 -0700 (PDT) (envelope-from erich@ucsd.edu) Message-ID: <3BA10244.6050207@ucsd.edu> Date: Thu, 13 Sep 2001 12:00:20 -0700 From: unsafe at any speed User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:0.9.3+) Gecko/20010910 X-Accept-Language: en-us MIME-Version: 1.0 To: Lars Eggert Cc: mobile@FreeBSD.ORG Subject: Re: WinModem support? References: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org See http://www.geocities.com/wtnbkysh/ . There's a wrapper around Lucent's binary-only driver for Linux. I believe 3com uses the same Lucent chipset on their miniPCI modem cards, but haven't tried the driver on my T21 yet. Eric Hedstrom erich@ucsd.edu Lars Eggert wrote: > Hi, > > what's the status of support for these (Win)Modems? > > Lucent LT Winmodem (vendor=0x11c1, dev=0x0445) > 3Com V.90 Mini-PCI Modem (vendor=0x10b7, dev=0x1007) > > I thought the Lucent one might be supported by the mwave port, but it > doesn't seem to be. And I'm not sure if the 3Com one even is a WinModem, > but it's not attached in any case. > > Thanks, > Lars > -- > Lars Eggert Information Sciences Institute > http://www.isi.edu/larse/ University of Southern California > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 12: 9:19 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id 7371D37B40A for ; Thu, 13 Sep 2001 12:09:17 -0700 (PDT) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f8DJ9AR15027; Thu, 13 Sep 2001 12:09:10 -0700 (PDT) Message-Id: <200109131909.f8DJ9AR15027@ptavv.es.net> To: "Lars Eggert" Cc: mobile@FreeBSD.ORG Subject: Re: WinModem support? In-reply-to: Your message of "Thu, 13 Sep 2001 11:45:40 -0800." Date: Thu, 13 Sep 2001 12:09:10 -0700 From: "Kevin Oberman" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Lars, The mWave port is limited to the IBM DSP found on various ThinkPads. It is not appropriate for either Lucent or 3Com parts. There is a project to "shim" the LinModem kernel module provided by Lucent to allow it to be used under FreeBSD. I can vouch that this was working under 4.3. Whether it still works with -stable, I don't know. Unless the 3Com device uses the Lucent DSP, it probably won't work. The last location I have for the Lucent driver is: http://www.geocities.com/wtnbkysh/ R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 12:26: 2 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from 100m.mpr200-1.esr.lvcm.net (100m.mpr200-1.esr.lvcm.net [24.234.0.80]) by hub.freebsd.org (Postfix) with ESMTP id 27D1137B407 for ; Thu, 13 Sep 2001 12:25:59 -0700 (PDT) Received: from nevada.edu (cm110.19.234.24.lvcm.com [24.234.19.110]) by 100m.mpr200-1.esr.lvcm.net (Mirapoint) with ESMTP id AOU21529; Thu, 13 Sep 2001 12:25:50 -0700 (PDT) Message-Id: <200109131925.AOU21529@100m.mpr200-1.esr.lvcm.net> To: mobile@FreeBSD.ORG Subject: Re: Card eject patch In-Reply-To: Message from Warner Losh of "Thu, 13 Sep 2001 01:35:57 MDT." <200109130735.f8D7Zvt96125@harmony.village.org> Date: Thu, 13 Sep 2001 12:22:32 -0700 From: Steve Lumos Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I was fooling around trying to get WEP working on my SMC2632W with 4.4RC4 last night and noticed that it also has this problem. One thing I noticed which I haven't seen mentioned is that it also hangs just by doing pccardc power 1 0. Maybe that's obvious because it's the same code path, but I wanted to mention it just in case in matters. I'll try to test the patch tonight. Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 12:30:57 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from slappy.plambert.net (slappy.plambert.net [167.216.255.198]) by hub.freebsd.org (Postfix) with ESMTP id 08CD837B405 for ; Thu, 13 Sep 2001 12:30:56 -0700 (PDT) Received: (from plambert@localhost) by slappy.plambert.net (8.11.3/8.11.3) id f8DJUtX45538; Thu, 13 Sep 2001 12:30:55 -0700 (PDT) (envelope-from plambert) Date: Thu, 13 Sep 2001 12:30:55 -0700 From: "Paul M . Lambert" To: freebsd-mobile@freebsd.org Subject: Orinoco Silver and ISA adapter losing network Message-ID: <20010913123055.N66256@slappy.plambert.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I recently (about two weeks ago) upgraded a FreeBSD system to 4-STABLE, and was hoping it'd fix problems I'm having with the orinoco card in it, using the Lucent ISA adapter. The wireless network works perfectly after boot, for about 2-48 hours. Then, the machine falls off the network, and nothing I've tried on console gets it back. (I've done everything short of ejecting and re-inserting the card...) A tcpdump sees traffic on the wireless network. The _card_ must be working. But sending packets fails (a ping says "sendto failed" or something similar) and so nothing actually works. I've tried everything I can think of, and I'm out of ideas. Unfortunately, the box is in a remote location, and so I don't have easy access to it. Any suggestions for troubleshooting would be greatly appreciated! --plambert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 13:36:18 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cecov.masternet.it (cecov.masternet.it [194.184.65.7]) by hub.freebsd.org (Postfix) with ESMTP id 95E3F37B40D for ; Thu, 13 Sep 2001 13:36:14 -0700 (PDT) Received: from usul.scotty.masternet.it (modem23.masternet.it [194.184.65.218]) by cecov.masternet.it (8.11.4/8.11.4) with ESMTP id f8DKbox88959; Thu, 13 Sep 2001 22:37:51 +0200 (CEST) (envelope-from gmarco@scotty.masternet.it) Message-Id: <5.1.0.14.2.20010913223404.00a04518@194.184.65.7> X-Sender: gmarco@194.184.65.7 X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Thu, 13 Sep 2001 22:36:09 +0200 To: "Lars Eggert" , From: Gianmarco Giovannelli Subject: Re: WinModem support? In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org At 13/09/2001, Lars Eggert wrote: >Hi, > >what's the status of support for these (Win)Modems? > > Lucent LT Winmodem (vendor=0x11c1, dev=0x0445) > 3Com V.90 Mini-PCI Modem (vendor=0x10b7, dev=0x1007) > >I thought the Lucent one might be supported by the mwave port, but it >doesn't seem to be. And I'm not sure if the 3Com one even is a WinModem, >but it's not attached in any case. Lucent winmodem works very well... I put a skeleton + a summary to make the build process easier at: http://www.gufi.org/~gmarco/files/distfiles/lucent.tgz about 190kb. Best Regards, Gianmarco Giovannelli , "Unix expert since yesterday" http://www.giovannelli.it/~gmarco http://www2.masternet.it To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 14:51:10 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cs.bu.edu (CS.BU.EDU [128.197.10.2]) by hub.freebsd.org (Postfix) with ESMTP id 1602237B418 for ; Thu, 13 Sep 2001 14:51:06 -0700 (PDT) Received: from csa.bu.edu (evms@csa [128.197.12.3]) by cs.bu.edu (8.10.1/8.10.1) with ESMTP id f8DLosA21763; Thu, 13 Sep 2001 17:50:54 -0400 (EDT) Received: (from evms@localhost) by csa.bu.edu (8.10.1/8.10.1) id f8DLonu10212; Thu, 13 Sep 2001 17:50:49 -0400 (EDT) From: Evan Sarmiento MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15265.10809.16548.400555@csa.bu.edu> Date: Thu, 13 Sep 2001 17:50:49 -0400 (EDT) To: Warner Losh , freebsd-mobile@freebsd.org Subject: Re: Vaio SR33 -- hang on initializing PCMCIA In-Reply-To: <200109121451.f8CEpQt39921@harmony.village.org> References: <200109112332.f8BNWer10839@csa.bu.edu> <200109121451.f8CEpQt39921@harmony.village.org> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hey, Thanks guys. This seemed to work for me. However, I received it too late, and I was impatient. So I copied all the contens from the CD to a temporary partition made by an OpenBSD boot disk (OpenBSD seemed to support it right off the bat) and then used the option "install from FS" in /stand/sysinstall. It was a painful process, but, atleast I have a working laptop :) Thanks again, Warner Losh writes: > In message <200109112332.f8BNWer10839@csa.bu.edu> Evan Sarmiento writes: > : I recently bought a Vaio SR33. It came with a PCGA-51/A cdrom, > : which appears to be supported, when I searched on google. > : However, it freezes on initializing pccard bus. > : The pccard bus is a Ricoh cardbus->pci. > > Try the following in the boot loader: > > ok set hw.pcic.intr_path=1 > ok set hw.pcic.irq=0 > ok boot > > Warner > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 15:17:13 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id DEFBF37B409 for ; Thu, 13 Sep 2001 15:17:08 -0700 (PDT) Received: from hbo (hbo.isi.edu [128.9.160.75]) by boreas.isi.edu (8.11.6/8.11.2) with SMTP id f8DMH6Q10251; Thu, 13 Sep 2001 15:17:06 -0700 (PDT) From: "Lars Eggert" To: "Warner Losh" , Subject: RE: Card eject patch Date: Thu, 13 Sep 2001 15:17:06 -0800 Message-ID: MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: Content-Type: multipart/signed; micalg=SHA1; protocol="application/x-pkcs7-signature"; boundary="----=_NextPart_000_015F_01C13C67.266ED3E0" Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_015F_01C13C67.266ED3E0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit FYI, tried it on a Compaq Armada M300: Works fine, too, without any sysctl magic. -- Lars Eggert Information Sciences Institute http://www.isi.edu/larse/ University of Southern California ------=_NextPart_000_015F_01C13C67.266ED3E0 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIF5jCCArUw ggIeoAMCAQICAwWBRzANBgkqhkiG9w0BAQIFADCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdl c3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsT FENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAw MC44LjMwMB4XDTAxMDgyNDE2NDAwMFoXDTAyMDgyNDE2NDAwMFowVDEPMA0GA1UEBBMGRWdnZXJ0 MQ0wCwYDVQQqEwRMYXJzMRQwEgYDVQQDEwtMYXJzIEVnZ2VydDEcMBoGCSqGSIb3DQEJARYNbGFy c2VAaXNpLmVkdTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0AvLBsD78nxcUHeHkaMgl3b4 qYPnfgbf8Lh+HQP8RgGMRG/Yb+vTpkGezlwt9pkJxiD11uZDy4CNNJUu3gKxKSb+zRV70O+lkwwf tuHoLHoH4xwo3LcQ2LGDpd+I95tUN4dfJ3TmeEcUSF50dC/SuUI4w8AlhXQ8IxrhgdayTpECAwEA AaNWMFQwKgYFK2UBBAEEITAfAgEAMBowGAIBBAQTTDJ1TXlmZkJOVWJOSkpjZFoyczAYBgNVHREE ETAPgQ1sYXJzZUBpc2kuZWR1MAwGA1UdEwEB/wQCMAAwDQYJKoZIhvcNAQECBQADgYEAheZhn0pQ A8zI7U2K1ZIAl11j0a1DKxnp3GtTvOUrGRB3WvYxidvdZ1kizhEsWeXU81TkNDH0DaRqtOEeu6Q2 OhB+jeKEqY7IDAJE4/fI0e+d6PnG1hd+vEvYmsKHkmzBhPc94XUOKNWO+qVNP2NGyNI3QIDy5wX4 fdcOo1S34r4wggMpMIICkqADAgECAgEMMA0GCSqGSIb3DQEBBAUAMIHRMQswCQYDVQQGEwJaQTEV MBMGA1UECBMMV2VzdGVybiBDYXBlMRIwEAYDVQQHEwlDYXBlIFRvd24xGjAYBgNVBAoTEVRoYXd0 ZSBDb25zdWx0aW5nMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMSQw IgYDVQQDExtUaGF3dGUgUGVyc29uYWwgRnJlZW1haWwgQ0ExKzApBgkqhkiG9w0BCQEWHHBlcnNv bmFsLWZyZWVtYWlsQHRoYXd0ZS5jb20wHhcNMDAwODMwMDAwMDAwWhcNMDIwODI5MjM1OTU5WjCB kjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3du MQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQD Ex9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCB iQKBgQDeMzKmY8cJJUU+0m54J2eBxdqIGYKXDuNEKYpjNSptcDz63K737nRvMLwzkH/5NHGgo22Y 8cNPomXbDfpL8dbdYaX5hc1VmjUanZJ1qCeu2HL5ugL217CR3hzpq+AYA6h8Q0JQUYeDPPA5tJtU ihOH/7ObnUlmAC0JieyUa+mhaQIDAQABo04wTDApBgNVHREEIjAgpB4wHDEaMBgGA1UEAxMRUHJp dmF0ZUxhYmVsMS0yOTcwEgYDVR0TAQH/BAgwBgEB/wIBADALBgNVHQ8EBAMCAQYwDQYJKoZIhvcN AQEEBQADgYEAcxtvJmWL/xU0S1liiu1EvknH6A27j7kNaiYqYoQfuIdjdBxtt88aU5FL4c3mONnt UPQ6bDSSrOaSnG7BIwHCCafvS65y3QZn9VBvLli4tgvBUFe17BzX7xe21Yibt6KIGu05Wzl9NPy2 lhglTWr0ncXDkS+plrgFPFL83eliA0gxggKqMIICpgIBATCBmjCBkjELMAkGA1UEBhMCWkExFTAT BgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUx HTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZpY2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFp bCBSU0EgMjAwMC44LjMwAgMFgUcwCQYFKw4DAhoFAKCCAWUwGAYJKoZIhvcNAQkDMQsGCSqGSIb3 DQEHATAcBgkqhkiG9w0BCQUxDxcNMDEwOTEzMjMxNzA2WjAjBgkqhkiG9w0BCQQxFgQUPtsBa+qd 6hb6MX7wqtvqS8tsG8EwWAYJKoZIhvcNAQkPMUswSTAKBggqhkiG9w0DBzAOBggqhkiG9w0DAgIC AIAwBwYFKw4DAgcwDQYIKoZIhvcNAwICASgwBwYFKw4DAhowCgYIKoZIhvcNAgUwgasGCSsGAQQB gjcQBDGBnTCBmjCBkjELMAkGA1UEBhMCWkExFTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UE BxMJQ2FwZSBUb3duMQ8wDQYDVQQKEwZUaGF3dGUxHTAbBgNVBAsTFENlcnRpZmljYXRlIFNlcnZp Y2VzMSgwJgYDVQQDEx9QZXJzb25hbCBGcmVlbWFpbCBSU0EgMjAwMC44LjMwAgMFgUcwDQYJKoZI hvcNAQEBBQAEgYAkZGZvFbzsui/0wsl0UuoxSw+PgV7/V2o817bTFsnHAnSFruYDflP2aDCG5IEQ w0HEnhvDYJqfTwWEPxEEo+rJIBJH9FwDwW7nWajzwGzmoyoYlyY8YylnfMiYjxg9VTpr1g/NrLlD ddKkNOemj7BewllKF9zuEfTVVluOJI9/VQAAAAAAAA== ------=_NextPart_000_015F_01C13C67.266ED3E0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 18:45:28 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 5567037B406 for ; Thu, 13 Sep 2001 18:45:06 -0700 (PDT) Received: from cain.gsoft.com.au (root@spare0.gsoft.com.au [203.38.152.114]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA06687; Fri, 14 Sep 2001 11:14:39 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200109131909.f8DJ9AR15027@ptavv.es.net> Date: Fri, 14 Sep 2001 11:14:38 +0930 (CST) From: "Daniel O'Connor" To: Kevin Oberman Subject: Re: WinModem support? Cc: mobile@FreeBSD.ORG, Lars Eggert Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 13-Sep-2001 Kevin Oberman wrote: > There is a project to "shim" the LinModem kernel module provided by > Lucent to allow it to be used under FreeBSD. I can vouch that this was > working under 4.3. Whether it still works with -stable, I don't > know. Unless the 3Com device uses the Lucent DSP, it probably won't > work. I have it running in 4.4-RC :) If you have trouble getting it let me know and I'll send you a tarball. I have a modifying Makefile + uuencoded binary only object file which allows it to work with buildkernel etc.. (make clean used to delete the linux module object file :) I guess this could be made a port but I haven't got around to it yet. --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 21: 2:27 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from mailin5.bigpond.com (juicer02.bigpond.com [139.134.6.78]) by hub.freebsd.org (Postfix) with ESMTP id ECB7E37B40F for ; Thu, 13 Sep 2001 21:02:17 -0700 (PDT) Received: from stallion.slingo.nq.nu ([139.134.4.57]) by mailin5.bigpond.com (Netscape Messaging Server 4.15) with SMTP id GJMWU400.7KI for ; Fri, 14 Sep 2001 14:08:28 +1000 Received: from ESS-p-144-138-81-186.mega.tmns.net.au ([144.138.81.186]) by mail2.bigpond.com(MailRouter V2.9i 3/7505042); 14 Sep 2001 14:02:18 Content-Type: text/plain; charset="iso-8859-1" From: Mark Slingo Reply-To: mark@slingo.nq.nu To: mobile@FreeBSD.ORG Subject: Re: WinModem support? Date: Fri, 14 Sep 2001 14:02:06 +1000 X-Mailer: KMail [version 1.2] References: <200109131909.f8DJ9AR15027@ptavv.es.net> In-Reply-To: <200109131909.f8DJ9AR15027@ptavv.es.net> MIME-Version: 1.0 Message-Id: <01091414020600.00394@stallion.slingo.nq.nu> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Friday 14 September 2001 05:09, Kevin Oberman wrote: > Lars, > > The mWave port is limited to the IBM DSP found on various > ThinkPads. It is not appropriate for either Lucent or 3Com parts. > > There is a project to "shim" the LinModem kernel module provided by > Lucent to allow it to be used under FreeBSD. I can vouch that this was > working under 4.3. Whether it still works with -stable, I don't > know. Unless the 3Com device uses the Lucent DSP, it probably won't > work. > > The last location I have for the Lucent driver is: > http://www.geocities.com/wtnbkysh/ > > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net Phone: +1 510 486-8634 > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message I had problems after cvsup to 4.4-RC. to get it working I had to re-compile the ltmdm.ko module. Mark. -- Mark Slingo mark@slingo.nq.nu http://www.slingo.nq.nu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Sep 13 21:17:56 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 6836637B406 for ; Thu, 13 Sep 2001 21:17:37 -0700 (PDT) Received: from cain.gsoft.com.au (root@spare0.gsoft.com.au [203.38.152.114]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id NAA08314; Fri, 14 Sep 2001 13:47:30 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.5.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <01091414020600.00394@stallion.slingo.nq.nu> Date: Fri, 14 Sep 2001 13:47:29 +0930 (CST) From: "Daniel O'Connor" To: Mark Slingo Subject: Re: WinModem support? Cc: mobile@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 14-Sep-2001 Mark Slingo wrote: > On Friday 14 September 2001 05:09, Kevin Oberman wrote: > > Lars, > > > > The mWave port is limited to the IBM DSP found on various > > ThinkPads. It is not appropriate for either Lucent or 3Com parts. > > > > There is a project to "shim" the LinModem kernel module provided by > > Lucent to allow it to be used under FreeBSD. I can vouch that this was > > working under 4.3. Whether it still works with -stable, I don't > > know. Unless the 3Com device uses the Lucent DSP, it probably won't > > work. > > > > The last location I have for the Lucent driver is: > > http://www.geocities.com/wtnbkysh/ > > > > R. Kevin Oberman, Network Engineer > > Energy Sciences Network (ESnet) > > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > > E-mail: oberman@es.net Phone: +1 510 486-8634 > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-mobile" in the body of the message > > I had problems after cvsup to 4.4-RC. > to get it working I had to re-compile the ltmdm.ko module. Try fetching this -> http://www.gsoft.com.au/~doconnor/ltmdm-driver.tgz And unpacking it in /usr/src. You will need to patch sys/modules/Makefile by hand.. This diff should work -> Index: Makefile =================================================================== RCS file: /usr/CVS-Repository/src/sys/modules/Makefile,v retrieving revision 1.110.2.30 diff -u -r1.110.2.30 Makefile --- Makefile 2001/08/11 00:54:14 1.110.2.30 +++ Makefile 2001/09/04 10:03:27 @@ -34,6 +34,7 @@ lge \ libmchain \ linux \ + ltmdm \ md \ mfs \ mii \ I am not totally certain I am allowed to distribute the linux binary in this fashion, but I've seen similar distributions for linux... Once you've unpacked the archive and applied the patch the module will be build next time you compile your kernel. You can also compile it manually by doing -> cd /usr/src/sys/modules/ltmdm make make install --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 7:30:45 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from arjun.niksun.com (gwnew.niksun.com [63.148.27.34]) by hub.freebsd.org (Postfix) with ESMTP id B451537B40B for ; Fri, 14 Sep 2001 07:30:30 -0700 (PDT) Received: from stiegl.niksun.com (stiegl.niksun.com [10.0.0.44]) by arjun.niksun.com (8.9.3/8.9.3) with ESMTP id KAA71001; Fri, 14 Sep 2001 10:30:27 -0400 (EDT) (envelope-from ath@stiegl.niksun.com) Received: (from ath@localhost) by stiegl.niksun.com (8.9.2/8.8.7) id KAA00431; Fri, 14 Sep 2001 10:30:27 -0400 (EDT) (envelope-from ath) To: Gianmarco Giovannelli Cc: "Lars Eggert" , Subject: Re: WinModem support? References: <5.1.0.14.2.20010913223404.00a04518@194.184.65.7> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Andrew Heybey Date: 14 Sep 2001 10:30:27 -0400 In-Reply-To: Gianmarco Giovannelli's message of "Thu, 13 Sep 2001 22:36:09 +0200" Message-ID: <85vgil975o.fsf@stiegl.niksun.com> Lines: 24 X-Mailer: Gnus v5.5/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Gianmarco Giovannelli writes: > At 13/09/2001, Lars Eggert wrote: > >Hi, > > > >what's the status of support for these (Win)Modems? > > > > Lucent LT Winmodem (vendor=0x11c1, dev=0x0445) > > 3Com V.90 Mini-PCI Modem (vendor=0x10b7, dev=0x1007) > > > >I thought the Lucent one might be supported by the mwave port, but it > >doesn't seem to be. And I'm not sure if the 3Com one even is a WinModem, > >but it's not attached in any case. > > Lucent winmodem works very well... > I put a skeleton + a summary to make the build process easier at: > http://www.gufi.org/~gmarco/files/distfiles/lucent.tgz > about 190kb. Thank you very much for the instructions and the tarball. Seems to work fine for me on an IBM thinkpad 600X running 4.2R. On mine, the Lucent Winmodem is vendor 0x11c1, dev 0x0449. andrew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 7:53:27 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from air.linkclub.or.jp (air.linkclub.or.jp [210.250.19.40]) by hub.freebsd.org (Postfix) with ESMTP id 3E65637B414 for ; Fri, 14 Sep 2001 07:53:21 -0700 (PDT) Received: from localhost.jp.FreeBSD.org (1Cust101.tnt1.hanno.jp.da.uu.net [63.12.195.101]) by air.linkclub.or.jp (8.11.4/8.11.4) with ESMTP id f8EEoRW54487 for ; Fri, 14 Sep 2001 23:50:27 +0900 (JST) (envelope-from toshi@jp.FreeBSD.org) Date: Fri, 14 Sep 2001 23:52:19 +0900 (JST) Message-Id: <200109141452.f8EEqJF33125.toshi@jp.FreeBSD.org> From: Toshihiko ARAI To: nate@yogotech.com (Nate Williams) Cc: freebsd-mobile@FreeBSD.org Subject: Re: [PATCH] pccard_ether and removable_* variables In-Reply-To: <15256.60442.758729.299336@nomad.yogotech.com> References: <15245.13394.275183.61715@nomad.yogotech.com> <200109011153.f81BrZL93078.toshi@jp.FreeBSD.org> <15253.10889.977127.513674@nomad.yogotech.com> <200109051230.f85CUGQ39840.toshi@jp.FreeBSD.org> <15254.22900.863293.94059@nomad.yogotech.com> <200109071244.f87Cib011728.toshi@jp.FreeBSD.org> <15256.60442.758729.299336@nomad.yogotech.com> X-Mailer: VM 5.96 (beta) / Mule 2.3 (SUETSUMUHANA) based on 19.34.1 Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org + <15256.60442.758729.299336@nomad.yogotech.com>, Nate Williams wrote: >> >> You may be just right. However, 'static_routes_' is null >> >> and void with DHCP. Implementation of dhclient seems to surely deal >> >> with 'dhclient-script', but I don't so know a lot about DHCP. >> >> > True, but with DHCP, the routes are flushed automatically via the DHCP >> > scripts. Someone who is using DHCP to get their addresses is certainly >> > not going to be running as a router. >> >> I examined it. As a result, I understood that removable_route_flush >> was unnecessary now. When there was not dhclient with FreeBSD >> standard, it was necessary. >> >> I updated a patch below. Please review and test. >> >> http://home.jp.FreeBSD.org/~toshi/pccard-current-20010907.diff > Very close. This is essentially the same patch as exists in -stable. My patches became same. However, this is a patch for -current. And, in -stable, I think that we need a correction of sysinstall. > Unfortunately, with this patch, no 'static' routes are ever flushed. It > would be nice to be able to flush the routes add via > static_route_interface. Though 'static' route is not done 'flush' of, it is done 'delete'. I'm sorry. I cannot understand problems. -- Toshihiko ARAI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 7:57:14 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 1255237B401 for ; Fri, 14 Sep 2001 07:57:11 -0700 (PDT) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id IAA17196; Fri, 14 Sep 2001 08:57:09 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id IAA00508; Fri, 14 Sep 2001 08:57:08 -0600 (MDT) (envelope-from nate) From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15266.6852.389169.298534@nomad.yogotech.com> Date: Fri, 14 Sep 2001 08:57:08 -0600 To: Toshihiko ARAI Cc: nate@yogotech.com (Nate Williams), freebsd-mobile@FreeBSD.ORG Subject: Re: [PATCH] pccard_ether and removable_* variables In-Reply-To: <200109141452.f8EEqJF33125.toshi@jp.FreeBSD.org> References: <15245.13394.275183.61715@nomad.yogotech.com> <200109011153.f81BrZL93078.toshi@jp.FreeBSD.org> <15253.10889.977127.513674@nomad.yogotech.com> <200109051230.f85CUGQ39840.toshi@jp.FreeBSD.org> <15254.22900.863293.94059@nomad.yogotech.com> <200109071244.f87Cib011728.toshi@jp.FreeBSD.org> <15256.60442.758729.299336@nomad.yogotech.com> <200109141452.f8EEqJF33125.toshi@jp.FreeBSD.org> X-Mailer: VM 6.95 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > >> >> You may be just right. However, 'static_routes_' is null > >> >> and void with DHCP. Implementation of dhclient seems to surely deal > >> >> with 'dhclient-script', but I don't so know a lot about DHCP. > >> > >> > True, but with DHCP, the routes are flushed automatically via the DHCP > >> > scripts. Someone who is using DHCP to get their addresses is certainly > >> > not going to be running as a router. > >> > >> I examined it. As a result, I understood that removable_route_flush > >> was unnecessary now. When there was not dhclient with FreeBSD > >> standard, it was necessary. > >> > >> I updated a patch below. Please review and test. > >> > >> http://home.jp.FreeBSD.org/~toshi/pccard-current-20010907.diff > > > Very close. This is essentially the same patch as exists in -stable. > > My patches became same. However, this is a patch for -current. > And, in -stable, I think that we need a correction of sysinstall. Agreed. > > Unfortunately, with this patch, no 'static' routes are ever flushed. It > > would be nice to be able to flush the routes add via > > static_route_interface. > > Though 'static' route is not done 'flush' of, it is done 'delete'. Where is this done? Never mind, I see that it's done in the 'Stop the interface' code. I'm not seeing very well these days. I have no issues at this point, but I don't have time to get this done. Can you re-send the diff to me in private email, and I'll try and get it into the tree? (Unfortunately, it's too late for the patches to sysinstall for FreeBSD 4.4-RELEASE, but it should be in for later releases.) Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 8:38:35 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from air.linkclub.or.jp (air.linkclub.or.jp [210.250.19.40]) by hub.freebsd.org (Postfix) with ESMTP id 41D5037B408 for ; Fri, 14 Sep 2001 08:38:31 -0700 (PDT) Received: from localhost.jp.FreeBSD.org (1Cust110.tnt1.hanno.jp.da.uu.net [63.12.195.110]) by air.linkclub.or.jp (8.11.4/8.11.4) with ESMTP id f8EFZbW75305 for ; Sat, 15 Sep 2001 00:35:37 +0900 (JST) (envelope-from toshi@jp.FreeBSD.org) Date: Sat, 15 Sep 2001 00:33:49 +0900 (JST) Message-Id: <200109141533.f8EFXna33291.toshi@jp.FreeBSD.org> From: Toshihiko ARAI To: "Daniel O'Connor" Cc: kehl@f2s.com, freebsd-mobile@FreeBSD.org Subject: Re: How to boot FreeBSD from DOS? In-Reply-To: References: <1000382471.3ba0a007838ff@www.freedom2surf.net> X-Mailer: VM 5.96 (beta) / Mule 2.3 (SUETSUMUHANA) based on 19.34.1 Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org + , Daniel O'Connor wrote: > On 13-Sep-2001 kehl@f2s.com wrote: >> I've got notebook with not working floppy and it cannot boot from PCMCIA. >> How >> can I boot FreeBSD 4.0 (not PAO) from DOS (then I use PLIP)? >> >> fbsdboot.exe wrote "Invalid format!" >> bsdboot.com loaded kernel, than hanged up. >> >> How to do it correctly and to specify MFS root file? > It is no longer (post FreeBSD 2.2) to do this because fbsdboot.exe doesn't > understand elf kernels. Even if it did Windows screws certain BIOS vectors that > FreeBSD needs to work (AFAIK). bsdboot.com(*1) supports elf kernel. The kernel of boot.flp before a little was usable at least (Probably it was FreeBSD 4.2). However, a kind of machine may not be usable. *1 http://www.nurs.or.jp/~kurati/bsd/index-en.html -- Toshihiko ARAI To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 9:34: 8 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.numachi.com (numachi.numachi.com [198.175.254.2]) by hub.freebsd.org (Postfix) with SMTP id 694E837B407 for ; Fri, 14 Sep 2001 09:34:03 -0700 (PDT) Received: (qmail 1585 invoked by uid 3001); 14 Sep 2001 16:34:00 -0000 Received: from natto.numachi.com (198.175.254.216) by numachi.numachi.com with SMTP; 14 Sep 2001 16:34:00 -0000 Received: (qmail 8126 invoked by uid 1001); 14 Sep 2001 16:34:00 -0000 Date: Fri, 14 Sep 2001 12:34:00 -0400 From: Brian Reichert To: Nick Hibma Cc: Alan B Clegg , freebsd-mobile@freebsd.org Subject: Re: USB Query Message-ID: <20010914123400.S95272@numachi.com> References: <20010910222321.D33987@shell.wetworks.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from n_hibma@qubesoft.com on Tue, Sep 11, 2001 at 08:27:05AM +0100 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, Sep 11, 2001 at 08:27:05AM +0100, Nick Hibma wrote: > Linux people have for sure. I don't know about any driver on FreeBSD. > Ask on usb-bsd@eleetbsd.org, they should know. I see a collection of USB serial devices mentioned on this page: Are _any_ such products useable under FreeBSD? I'm very new to using USB peripherals, and don't have a handle on how to conduct the research... > > Nick -- Brian 'you Bastard' Reichert 37 Crystal Ave. #303 Daytime number: (603) 434-6842 Derry NH 03038-1713 USA Intel architecture: the left-hand path To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 14 11: 8:52 2001 Delivered-To: freebsd-mobile@freebsd.org Received: from ptavv.es.net (ptavv.es.net [198.128.4.29]) by hub.freebsd.org (Postfix) with ESMTP id A932937B406 for ; Fri, 14 Sep 2001 11:08:45 -0700 (PDT) Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (8.10.1/8.10.1) with ESMTP id f8EI8jR20036 for ; Fri, 14 Sep 2001 11:08:45 -0700 (PDT) Message-Id: <200109141808.f8EI8jR20036@ptavv.es.net> To: freebsd-mobile@freebsd.org Subject: Odd card removal events on stable Date: Fri, 14 Sep 2001 11:08:45 -0700 From: "Kevin Oberman" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org OK. I'm probably wasting time with this as it is so irregular and unpredictable. But maybe others have seen something that might help track this down. Every once in a while, usually at an interval of several days, the Orinoco Gold cards on my ThinkPad 600E will simply vanish! Here is what I see in the log: /kernel: wi0: timeout in wi_seek to fc80/0; last status ffff /kernel: wi0: timeout in wi_seek to fc80/0; last status ffff /kernel: wi0: detached /kernel: pccard: card removed, slot 1 dhclient: receive_packet failed on wi0: Device not configured pccardd[107]: wi0: Lucent Technologies (WaveLAN/IEEE) removed. dhclient: receive_packet failed on wi0: Device not configured last message repeated 42 times ntpd[168]: sendto(198.128.1.13): No route to host [I remove and insert the card and things return to normal] /kernel: pccard: card inserted, slot 1 I have seen these events several times with nothing to correlate them. No sysctl magic. Just running "out of the box". Here is my dmesg: Copyright (c) 1992-2001 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.4-RC #20: Fri Aug 31 22:37:54 PDT 2001 oberman@puppeteer.es.net:/scratch/obj/scratch/src/sys/THINKPAD Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Pentium II Xeon/Celeron (363.96-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x66a Stepping = 10 Features=0x183f9ff real memory = 201129984 (196416K bytes) config> en apm0 config> q avail memory = 192507904 (187996K bytes) Preloaded elf kernel "kernel" at 0xc032a000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc032a09c. Preloaded elf module "mwavedd.ko" at 0xc032a0ec. Pentium Pro MTRR support enabled md0: Malloc disk pcibios: No call entry point apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 pcic0: mem 0x50102000-0x50102fff irq 11 at device 2.0 on pci0 pcic0: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][CSC parallel isa irq] pccard0: on pcic0 pcic1: mem 0x50101000-0x50101fff irq 11 at device 2.1 on pci0 pcic1: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][CSC parallel isa irq] pccard1: on pcic1 csa0: mem 0x50000000-0x500fffff,0x50100000-0x50100fff irq 11 at device 6.0 on pci0 csa: card is Unknown/invalid SSID (CS4610) device_probe_and_attach: csa0 attach returned 6 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcf0-0xfcff at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 pci0: at 7.2 irq 11 chip1: port 0xefa0-0xefaf at device 7.3 on pci0 orm0: