From owner-freebsd-mobile Sun Aug 27 5: 3:17 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id CBF6537B42C for ; Sun, 27 Aug 2000 05:03:11 -0700 (PDT) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #4) id 13T19a-000Ibc-00 for freebsd-mobile@freebsd.org; Sun, 27 Aug 2000 12:03:10 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.9.3/8.9.3) id OAA01509 for freebsd-mobile@freebsd.org; Sun, 27 Aug 2000 14:03:25 +0200 (CEST) (envelope-from wkb) Date: Sun, 27 Aug 2000 14:03:25 +0200 From: Wilko Bulte To: freebsd-mobile@freebsd.org Subject: Compaq Armada E700 on -current Message-ID: <20000827140325.A1480@freebie.demon.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i X-OS: FreeBSD 4.1-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I just brought my Compaq Armada E700 to -current. The dmesg bit on the pccard stuff goes like: pcic0: at port 0x3e0 iomem 0xd0000 on isa0 pcic0: Polling mode pccard0: on pcic0 pccard1: on pcic0 ppc0: at port 0x378-0x37f irq 7 on isa0 Everything works fine, I love the internal 10/100 fxp ethernet. But as soon as I plugin a PCMCIA card the machine locks up solid. A boot with a PC card installed also hangs. Interestingly enough the lockup occurs regardless whether pccardd runs or not. I've tested with a Psion V34 modem card and an Adaptec 1460B SCSI card. Any fellow E700 owners that can comment on this phenomenon? Wilko NB please keep me CC:ed, I don't subscribe to -mobile -- Wilko Bulte wilko@freebsd.org Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 27 8:36:44 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lavender.sanpei.org (ppp152.dialup.st.keio.ac.jp [131.113.27.152]) by hub.freebsd.org (Postfix) with ESMTP id 4E27A37B423 for ; Sun, 27 Aug 2000 08:36:28 -0700 (PDT) Received: (from sanpei@localhost) by lavender.sanpei.org (8.11.0/3.7W) id e7RFaa207582; Mon, 28 Aug 2000 00:36:36 +0900 (JST) Message-Id: <200008271536.e7RFaa207582@lavender.sanpei.org> To: mobile@FreeBSD.org Subject: Re: [PCCARD,PATCH] IOC_GET_RESOURCE_RANGE patch In-Reply-To: Your message of "Sun, 20 Aug 2000 17:48:28 +0900" References: <20000820174828I.iwasaki@jp.FreeBSD.org> X-Mailer: Mew version 1.70 on Emacs 19.34.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Mon, 28 Aug 2000 00:36:36 +0900 From: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks Warner-san and IWASAKI-san. Sorry, last patch was too experimental to commit into 5-current. I re-write PIOCSRESOURCE ioctl with below point. - use pcic_devclass, not use ``ed3'' (I tried pccarddev, but it does not have softc, so we never allocate resources with pccarddev....) - RF_ACTIVE --> 0 in bus_alloc_resource - do not use MALLOC By the way, I statically set rid=1 for dummy resources. Is that right? ---------- I already created usr.sbin/pccard/pccardd patch for PIOCSRESOURCE from PAO3 code. http://home.jp.FreeBSD.org/~sanpei/5-current/usr.sbin-pccard-pccardd-kernel-resource-2000820.diff But I think it needs to re-write. Because this pccardd patch does not consider other dynamic allocated devices (for example, OSS/FreeBSD sound driver). --- MIHIRA, Sanpei Yoshiro Yokohama, Japan. --- pccard.c.orig Mon Aug 21 01:16:56 2000 +++ pccard.c Sun Aug 27 23:40:49 2000 @@ -460,7 +460,12 @@ struct slot *slt = pccard_slots[minor(dev)]; struct mem_desc *mp; struct io_desc *ip; + struct pccard_resource *pr; + struct resource *r; + device_t pcicdev; int s, err; + int rid = 1; + int i; int pwval; if (slt == 0 && cmd != PIOCRWMEM) @@ -611,6 +616,45 @@ case PIOCSBEEP: if (pccard_beep_select(*(int *)data)) { return EINVAL; + } + break; + case PIOCSRESOURCE: + pr = (struct pccard_resource *)data; + pr->resource_addr = ~0ul; + /* pccard_devclass does not have softc + * so we use pcic_devclass + */ + pcicdev = devclass_get_device(pcic_devclass, 0); + switch(pr->type) { + default: + return EINVAL; + case SYS_RES_IOPORT: + case SYS_RES_MEMORY: + for (i = pr->min; i + pr->size <= pr->max; i++) { + err = bus_set_resource(pcicdev, pr->type, rid, i, pr->size); + if (!err) { + r = bus_alloc_resource(pcicdev, pr->type, &rid, 0ul, ~0ul, pr->size, 0); + if (r) { + pr->resource_addr = (u_long)rman_get_start(r); + bus_release_resource(pcicdev, pr->type, rid, r); + break; + } + } + } + break; + case SYS_RES_IRQ: + for (i = pr->min; i <= pr->max; i++) { + err = bus_set_resource(pcicdev, SYS_RES_IRQ, rid, i, 1); + if (!err) { + r = bus_alloc_resource(pcicdev, SYS_RES_IRQ, &rid, 0ul, ~0ul, 1, 0); + if (r) { + pr->resource_addr = (u_long)rman_get_start(r); + bus_release_resource(pcicdev, SYS_RES_IRQ, rid, r); + break; + } + } + } + break; } break; } --- cardinfo.h.orig Mon Aug 21 01:16:56 2000 +++ cardinfo.h Sun Aug 27 18:41:35 2000 @@ -49,6 +49,7 @@ #define PIOCSPOW _IOW('P', 9, struct power) /* Set power structure */ #define PIOCSVIR _IOW('P', 10, int) /* Virtual insert/remove */ #define PIOCSBEEP _IOW('P', 11, int) /* Select Beep */ +#define PIOCSRESOURCE _IOWR('P', 12, struct pccard_resource) /* get resource info */ /* * Debug codes. */ @@ -135,6 +136,18 @@ int vcc; int vpp; }; + +/* + * Th PC-Card resource IOC_GET_RESOURCE_RANGE + */ +struct pccard_resource { + int type; + u_long size; + u_long min; + u_long max; + u_long resource_addr; +}; + /* * Other system limits --- pcic.h.org Sun Aug 27 23:41:48 2000 +++ pcic.h Sun Aug 27 23:31:28 2000 @@ -41,3 +41,4 @@ #define PCIC_RF_MDF_WS1 (0x08 << 16) #define PCIC_RF_MDF_ATTR (0x10 << 16) #define PCIC_RF_MDF_WP (0x20 << 16) +extern devclass_t pcic_devclass; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 27 20: 0:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hermes.rz.fhtw-berlin.de (hermes.rz.fhtw-berlin.de [141.45.5.100]) by hub.freebsd.org (Postfix) with ESMTP id 34F2C37B422 for ; Sun, 27 Aug 2000 20:00:36 -0700 (PDT) Received: from oxid01.rz.fhtw-berlin.de (oxid01.rz.fhtw-berlin.de [141.45.4.201]) by hermes.rz.fhtw-berlin.de (8.9.3/8.9.3) with ESMTP id FAA13387 for ; Mon, 28 Aug 2000 05:00:30 +0200 (MET DST) Received: from localhost (s0233343@localhost) by oxid01.rz.fhtw-berlin.de (SGI-SGI-8.9.3/8.9.3) with ESMTP id FAA30402 for ; Mon, 28 Aug 2000 05:00:28 +0200 (MESZ) Date: Mon, 28 Aug 2000 05:00:27 +0200 From: Christian Peter Gruendemann To: freebsd-mobile@freebsd.org Subject: Netgear FA410TX device time out In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I know similar questions have already been asked, but I am not able to find any answers, neither in the usenet nor in the mailinglists. I use 4.1 stable from 08/22/00 The card works sometimes fine after I used the fa_select (fa_select ed1 3) programm und a restart of pccardd. Otherwise pccardd can't initialize the card. If eyerthing is ok, the kernel tells me: ed1 at port 0x300-0x31f irq 3 slot 1 on pccard1 ed1: NETGEAR (FA410TX) inserted. After I used ifconfig to set up ed1 everything is fine. I can ping and telnet my machine using the ed1 network. But I can not connect to the internet. When I use dhclient to get dynamic stuff i got the following errors: /dhclient: send_packet: Adress family not supported by protocol family /kernel ed1: device timeout repeats very often. I use an empty /etc/dhclient.conf ( but tried several things) The same laptop with windows and DHCP works fine. My kernel config : ed0 at isa? port 0x280 irq 10 iomen 0xd8000 Whats going wrong here? I hope, I do not make to many mistakes. Thanks in advance Christian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 27 20:58:53 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 9F0A337B43C for ; Sun, 27 Aug 2000 20:58:50 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id VAA86364; Sun, 27 Aug 2000 21:58:49 -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.9.3/8.8.3) with ESMTP id VAA98764; Sun, 27 Aug 2000 21:58:36 -0600 (MDT) Message-Id: <200008280358.VAA98764@harmony.village.org> To: Christian Peter Gruendemann Subject: Re: Netgear FA410TX device time out Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 28 Aug 2000 05:00:27 +0200." References: Date: Sun, 27 Aug 2000 21:58:36 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Christian Peter Gruendemann writes: : Whats going wrong here? There's a special program that kludges the card into a state that should work. Someone should integrate that into the driver so that things are easier :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 27 21:49:15 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (Postfix) with ESMTP id 9F72337B424 for ; Sun, 27 Aug 2000 21:49:13 -0700 (PDT) Received: from localhost (suleyman@localhost) by echonyc.com (8.9.3/8.9.3) with ESMTP id AAA27057 for ; Mon, 28 Aug 2000 00:49:13 -0400 (EDT) Date: Mon, 28 Aug 2000 00:49:13 -0400 (EDT) From: Ken Seggerman To: freebsd-mobile@freebsd.org Subject: Linksys works with ftp but not nfs Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings: I have just installed 4.1 on my Toshiba 305 CDS laptop. Under 3.4 with PAO everything worked fine including a Linksys 10/100 EtherFast NIC, a Xircom CreditCard Modem, and a 3Com Megahertz 574B. The Linksys seemed to be working fine, it could ping, telnet ftp and do nfs file system mounts fine. I could tar up and move large directories from one machine to another by ftp, but as soon as I tried to move anything big over an nfs mount, it would hang. An empty file with no permssion attributes would be created on the receiving system, the lights would stop blinking and the process could not be killed. I thought I had a nfs configuration problem, but when I swapped the 3Com NIC for the Linksys, everything worked. nfs with identical configuration works fine between my two desktop machines with different NICs. Any suggestions would be welcome. Ken Seggerman ken_seggerman@suleyman.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Aug 27 22:15: 7 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (Postfix) with ESMTP id CE27E37B43C for ; Sun, 27 Aug 2000 22:15:05 -0700 (PDT) Received: from localhost (suleyman@localhost) by echonyc.com (8.9.3/8.9.3) with ESMTP id BAA00387 for ; Mon, 28 Aug 2000 01:15:05 -0400 (EDT) Date: Mon, 28 Aug 2000 01:15:05 -0400 (EDT) From: Ken Seggerman To: freebsd-mobile@freebsd.org Subject: two ethernet cards, two addresses Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello: I was wonderng if it would be possible to configure two PCMCIA ethernet cards (different interfaces) with different addresses in /etc/rc.conf, without rewriting the /etc/pccard_ether that came with 4.1. Thanks, Ken Seggerman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 4:19:28 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from gate.consol.de (gate.consol.de [194.221.87.10]) by hub.freebsd.org (Postfix) with ESMTP id A762837B43C for ; Mon, 28 Aug 2000 04:19:23 -0700 (PDT) X-Envelope-Sender-Is: Michael.Elbel@consol.de (at relayer gate.consol.de) Received: from msgsrv.bb.consol.de (msgsrv.bb.consol.de [10.250.0.100]) by gate.consol.de (8.9.3/8.9.3) with ESMTP id NAA88119; Mon, 28 Aug 2000 13:19:20 +0200 (CEST) (envelope-from Michael.Elbel@consol.de) Received: from vscanner.bb.consol.de (root@vscanner.bb.consol.de [10.250.0.120]) by msgsrv.bb.consol.de (8.8.8/8.8.8) with ESMTP id MAA02491; Mon, 28 Aug 2000 12:22:49 +0200 Received: from fourier.int.consol.de (fourier.int.consol.de [10.0.1.17]) by vscanner.bb.consol.de (8.9.3/8.9.3) with ESMTP id NAA30889; Mon, 28 Aug 2000 13:19:08 +0200 Received: (from me@localhost) by fourier.int.consol.de (8.11.0/8.9.3) id e7SBJ6V98468; Mon, 28 Aug 2000 13:19:06 +0200 (CEST) (envelope-from me) Date: Mon, 28 Aug 2000 13:19:06 +0200 X-Amavis-approved: Yes From: Michael Elbel To: Warner Losh Cc: "Sean O'Connell" , mobile@freebsd.org Subject: Re: Ricoh RL5C476 PCI-CardBus Bridge doesn't see card changes Message-ID: <20000828131906.B96786@consol.de> References: <20000824161639.C35337@consol.de> <200008241836.MAA11265@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: <200008241836.MAA11265@harmony.village.org>; from imp@village.org on Thu, Aug 24, 2000 at 12:36:40PM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Aug 24, 2000 at 12:36:40PM -0600, Warner Losh wrote: > In message <20000824161639.C35337@consol.de> Michael Elbel writes: > : or so. However, if I remove the card, pccardc doesn't see it. Insertions > : don't get detected either. > > Yuo are assinging a IRQ that's used for something else to the > management IRQ of pcic. Try polling mode. Did that, now the box simply hung when a card is in the machine. Didn't matter whether it was present when the boot occured or inserted later. Have you seen something like this before? The boot process correctly stated that the driver was in polling mode upon boot. Thanks for your hint though - i got it to work: There was a unknown device on irq 10 that I couldn't get rid of. I enabled the configuration for pcic1 on irq 11, got that recognized and now everything works. Again, thanks to everybody who responded. Michael -- \|/ -O- Michael Elbel, ConSol* GmbH, - me@consol.de - 089 / 45841-256 /|\ Fermentation fault (coors dumped) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 5:52:27 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from reliant.nielsenmedia.com (reliant.nielsenmedia.com [205.129.32.15]) by hub.freebsd.org (Postfix) with ESMTP id 2316B37B422 for ; Mon, 28 Aug 2000 05:52:20 -0700 (PDT) Received: from nmrusdunsxg0.nielsenmedia.com (nmrusdunsxg0.nielsenmedia.com [10.9.11.120]) by reliant.nielsenmedia.com (8.9.3/8.9.3) with ESMTP id IAA05127; Mon, 28 Aug 2000 08:50:52 -0400 (EDT) Received: by nmrusdunsxg0.nielsenmedia.com with Internet Mail Service (5.5.2651.58) id ; Mon, 28 Aug 2000 08:50:51 -0400 Message-ID: <01D4D419B1A4D111A30400805FE65B13070ABFD5@nmrusdunsx1.nielsenmedia.com> From: "Gray, David W." To: "'Ken Seggerman'" , freebsd-mobile@freebsd.org Subject: RE: Linksys works with ftp but not nfs Date: Mon, 28 Aug 2000 08:50:49 -0400 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2651.58) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This looks like an old problem that we used to see a few years ago. You might try reducing the read and write sizes for the nfs mount (see nfs_mount(8), re the -r and -w options.) Basically, the problem happened that a fast server could deliver packets faster than the machine could process them. The NFS packet was several wire packets long (8K?) and the fast, grouped-together packets would consistantly over-run the NIC's buffer. But, since it could ONLY re-try in terms of the whole NFS packet, it would overrun, fail, retry ad infinitum... -----Original Message----- From: Ken Seggerman [mailto:suleyman@echonyc.com] Sent: Monday, August 28, 2000 12:49 AM To: freebsd-mobile@freebsd.org Subject: Linksys works with ftp but not nfs Greetings: I have just installed 4.1 on my Toshiba 305 CDS laptop. Under 3.4 with PAO everything worked fine including a Linksys 10/100 EtherFast NIC, a Xircom CreditCard Modem, and a 3Com Megahertz 574B. The Linksys seemed to be working fine, it could ping, telnet ftp and do nfs file system mounts fine. I could tar up and move large directories from one machine to another by ftp, but as soon as I tried to move anything big over an nfs mount, it would hang. An empty file with no permssion attributes would be created on the receiving system, the lights would stop blinking and the process could not be killed. I thought I had a nfs configuration problem, but when I swapped the 3Com NIC for the Linksys, everything worked. nfs with identical configuration works fine between my two desktop machines with different NICs. Any suggestions would be welcome. Ken Seggerman ken_seggerman@suleyman.com 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 Mon Aug 28 8:19:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sianna.shopkeeper.de (sianna.shopkeeper.de [195.27.246.228]) by hub.freebsd.org (Postfix) with ESMTP id 95DF437B43E for ; Mon, 28 Aug 2000 08:19:35 -0700 (PDT) Received: from blueice.shopkeeper.de (root@blueice.shopkeeper.de [195.27.246.232]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id RAA10475; Mon, 28 Aug 2000 17:19:35 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by blueice.shopkeeper.de (8.9.3/8.9.3) id RAA41644; Mon, 28 Aug 2000 17:19:33 +0200 (CEST) From: Sascha Klauder Message-Id: <200008281519.RAA41644@blueice.shopkeeper.de> Subject: Re: Netgear FA410TX device time out To: chris.chris@fhtw-berlin.de (Christian Peter Gruendemann) Date: Mon, 28 Aug 2000 17:19:33 +0200 (CEST) Cc: freebsd-mobile@FreeBSD.ORG In-Reply-To: from "Christian Peter Gruendemann" at Aug 28, 2000 05:00:27 am X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org +--- on Mon Aug 28 05:00:27 2000, Christian Peter Gruendemann wrote: --- | ed1 at port 0x300-0x31f irq 3 slot 1 on pccard1 | ed1: NETGEAR (FA410TX) inserted. IRQ 3 ist usally used by the PCIC controller, so that could be a problem. Try using polling mode, ie just use device card device pcic0 at isa? device ed in your kernel config file. Try to use another irq line and make sure you have drivers for all your devices in the kernel, even if you don't need them (eg USB support). | But I can not connect to the internet. When I use dhclient to get dynamic | stuff i got the following errors: Make sure the card is working before playing around with DHCP (assign an IP address manually with ifconfig). Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 11: 5:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from po3.wam.umd.edu (po3.wam.umd.edu [128.8.10.165]) by hub.freebsd.org (Postfix) with ESMTP id D694037B423 for ; Mon, 28 Aug 2000 11:05:28 -0700 (PDT) Received: from rac4.wam.umd.edu (rac4.wam.umd.edu [128.8.10.144]) by po3.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA14233; Mon, 28 Aug 2000 14:05:18 -0400 (EDT) Received: from rac4.wam.umd.edu (localhost [127.0.0.1]) by rac4.wam.umd.edu (8.9.3/8.9.3) with SMTP id OAA15228; Mon, 28 Aug 2000 14:05:18 -0400 (EDT) Received: from localhost (culverk@localhost) by rac4.wam.umd.edu (8.9.3/8.9.3) with ESMTP id OAA15212; Mon, 28 Aug 2000 14:05:17 -0400 (EDT) X-Authentication-Warning: rac4.wam.umd.edu: culverk owned process doing -bs Date: Mon, 28 Aug 2000 14:05:17 -0400 (EDT) From: Kenneth Wayne Culver To: Jonathan Chen Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fe575 (again) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'll be installing FreeBSD from CD soon, and then applying your patches from a floppy disk, (along with my chages that made it at least detect. Then I'll send you the outputs of all the commands you asked for. ================================================================= | Kenneth Culver | FreeBSD: The best NT upgrade | | Unix Systems Administrator | ICQ #: 24767726 | | and student at The | AIM: muythaibxr | | The University of Maryland, | Website: (Under Construction) | | College Park. | http://www.wam.umd.edu/~culverk/| ================================================================= On Fri, 25 Aug 2000, Kenneth Wayne Culver wrote: > > AFAIK, the PCI specs *REQUIRES* the PCI bus to pre allocate space that the > > attached devices requests. I don't have access to the PCI spec right now > > (why can't everybody put spec sheets online for free?!) but this should > > apply to the PCI-Cardbus bridge as well. (If I'm wrong, please correct me) > > In anycase, I might be able to figure out what exactly is the problem if > > you show me your bootup dmesg as well as the output to the following > > comands: > > Well, I do'nt really know about the pci spec... but I do know that > bus_alloc_resource is returning NULL, so I guess maybe it's just the fact > That I'm using the ti1225 chip (although netbsd's drivers treat it the > same. as the 1251) I can't give you a boot dmesg or the output to any > commands because I have yet to install FreeBSD. I built my own boot > floppies with your hack, and with the correct things done to the generic > kernel conf file (took out pccard stuff, added your device, changed the > pci id's to detect both my ti1225, and my fe575c, based on the id's in the > netbsd drivers) > > > > pciconf -r pci0:X:Y 0x10 > > pciconf -r pci0:X:Y 0x14 > > pciconf -r pci0:X:Y 0x18 > > pciconf -w pci0:X:Y 0x10 0xffffffff > > pciconf -r pci0:X:Y 0x10 > > > > substitute the correct device numbers for X and Y - you can find that on > > the kernel bootup output when it says something like: > > > > pccbbhack0: mem blah-blah irq blah on at device X.Y pci0 > > > > > When it boots up and gives the above messege .. it says > pccbb: Could not map register memory > > under your above messege, and doesn't have anything for "mem" but only for > irq and device. > > That is really all I can tell you until I either get a 4.1 CD burnt by > someone, or hack the driver enough to make it work :-) (I don't think I > can hack the driver, maybe I gave you enough info?) > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 16:20:13 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from defiant.quansoo.com (adsl-216-158-26-30.cust.oldcity.dca.net [216.158.26.30]) by hub.freebsd.org (Postfix) with ESMTP id 37DAA37B422 for ; Mon, 28 Aug 2000 16:20:10 -0700 (PDT) Received: from localhost (cgriffiths@localhost) by defiant.quansoo.com (8.9.3/8.9.3) with ESMTP id TAA00529 for ; Mon, 28 Aug 2000 19:20:07 -0400 (EDT) (envelope-from cgriffiths@quansoo.com) X-Authentication-Warning: defiant.quansoo.com: cgriffiths owned process doing -bs Date: Mon, 28 Aug 2000 19:20:07 -0400 (EDT) From: "Christopher T. Griffiths" To: mobile@freebsd.org Subject: PCMCIA support for Symphony wireless networking? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am running 4.1 -stable and it does not seem to have support under pccard for this card. I am looking for a pretty low cost solution for wireless lan connectivity and this looks pretty good. Is there any plan to support this network card under FreeBSD? Any help or direction would be great. Thanks Chris --- Christopher T. Griffiths Quansoo Group Inc. cgriffiths@quansoo.com Phone: (302) 777-4141 Fax: (302) 777-4142 Mobile: (302) 521-3436 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 17: 2:46 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp.screaming.net (smtp.screaming.net [212.49.224.20]) by hub.freebsd.org (Postfix) with ESMTP id 61AC337B423 for ; Mon, 28 Aug 2000 17:02:43 -0700 (PDT) Received: from dyn12-ras4.screaming.net (dyn12-ras4.screaming.net [212.49.227.12]) by smtp.screaming.net (8.9.3/8.9.3) with ESMTP id AAA27603 for ; Tue, 29 Aug 2000 00:05:28 GMT Date: Mon, 28 Aug 2000 23:13:42 +0100 From: X HOU X-Mailer: The Bat! (v1.45) Personal Reply-To: X HOU X-Priority: 3 (Normal) Message-ID: <1572098686.20000828231342@fnmail.com> To: freebsd-mobile@FreeBSD.ORG Subject: 4.0?? Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org is there a PAO's version working with FREEBSD 4.0? i'm using a DELL Inspiron 3000, do i need PAO? thanx To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 17: 4:49 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id F092737B422 for ; Mon, 28 Aug 2000 17:04:47 -0700 (PDT) Received: from randy by rip.psg.com with local (Exim 3.13 #1) id 13TYtM-000CZx-00; Mon, 28 Aug 2000 17:04:40 -0700 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: X HOU Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 4.0?? References: <1572098686.20000828231342@fnmail.com> Message-Id: Date: Mon, 28 Aug 2000 17:04:40 -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > is there a PAO's version working with FREEBSD 4.0? no. nor 4.1, which is the -stable release. > i'm using a DELL Inspiron 3000, do i need PAO? depends on the pccards you wish to use with it. pccard support seems more mature in 3.5+pao. randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 17: 6: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from watson.ficsgrp.com (watson.ficsgrp.com [194.74.111.3]) by hub.freebsd.org (Postfix) with ESMTP id 6054C37B43C for ; Mon, 28 Aug 2000 17:06:04 -0700 (PDT) Received: from mail.au.ficsgrp.com ([194.74.111.35]) by watson.ficsgrp.com (Netscape Messaging Server 3.6) with ESMTP id AAA18D6 for ; Tue, 29 Aug 2000 02:05:59 +0200 Received: from S1.com ([172.16.48.219]) by mail.au.ficsgrp.com (Netscape Messaging Server 3.6) with ESMTP id 215; Tue, 29 Aug 2000 10:08:52 +1000 Message-ID: <39AAFE7D.8BBA0B65@S1.com> Date: Tue, 29 Aug 2000 11:06:21 +1100 From: Harry Woodward-Clarke X-Mailer: Mozilla 4.72 [en] (X11; I; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: X HOU Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 4.0?? References: <1572098686.20000828231342@fnmail.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi HOU, > > is there a PAO's version working with FREEBSD 4.0? > > i'm using a DELL Inspiron 3000, do i need PAO? > No, PAO is not (AFAIK) required for V4.0. I have V4.0-R#11 on a Dell Latitude CPx Laptop, and I didn't require PAO. In fact, the whole setup was pretty painless. There's still the hassle that Cardbus is not (very well) supported, but I can live with that for the moment. hth, haxxa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Aug 28 17: 6:12 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from condor.peregrine.com (condor.peregrine.com [192.72.253.98]) by hub.freebsd.org (Postfix) with ESMTP id 4653237B424 for ; Mon, 28 Aug 2000 17:06:09 -0700 (PDT) Received: from gluttony.peregrine.com (nat-11.peregrine.com [63.82.230.11]) by condor.peregrine.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id RAA07977; Mon, 28 Aug 2000 17:02:50 -0700 (PDT) Received: from peregrine.com (sys499.peregrine.com [172.18.1.99]) by gluttony.peregrine.com (8.9.3/8.9.3) with ESMTP id RAA48502; Mon, 28 Aug 2000 17:11:39 -0700 (PDT) (envelope-from erich@peregrine.com) Message-ID: <39AAFEF8.B3AF330F@peregrine.com> Date: Mon, 28 Aug 2000 17:08:24 -0700 From: Eric Hedstrom X-Mailer: Mozilla 4.7 [fr] (WinNT; U) X-Accept-Language: fr MIME-Version: 1.0 To: X HOU Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 4.0?? References: <1572098686.20000828231342@fnmail.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Most of the PAO functionality has been merged into 4.x. Try out 4.1-RELEASE. eric erich@ucsd.edu X HOU a écrit : > > is there a PAO's version working with FREEBSD 4.0? > > i'm using a DELL Inspiron 3000, do i need PAO? > > thanx > > 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 Mon Aug 28 23: 5:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 6F75137B443 for ; Mon, 28 Aug 2000 23:05:21 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id XAA28354; Mon, 28 Aug 2000 23:05:05 -0700 Date: Mon, 28 Aug 2000 23:05:05 -0700 From: Arun Sharma Message-Id: <200008290605.XAA28354@sharmas.dhs.org> To: freebsd-mobile@freebsd.org Subject: Fwd: Suggestion for laptop suspension Reply-To: adsharma@sharmas.dhs.org (Arun Sharma) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Interesting idea. Does anyone here have any comments ? -Arun From: rms@gnu.org (Richard Stallman) Newsgroups: muc.lists.linux-kernel Subject: Suggestion for laptop suspension Date: 27 Aug 2000 12:24:07 +0200 Organization: Newsgate at muc.de e.V. On my laptop, suspending to disk is slow. It takes a whole minute, and another minute to unsuspend--if all of core is in use. But it is much faster when I do it not too long after the system was booted, when it has not yet managed to use up most of core. This suggests that it could be nice to make the kernel empty its caches, and mark all that core "unused", when a suspend is about to happen. I don't know the details of how suspension works, so I am not sure this is possible, but I think there are hooks for doing something in the kernel before a suspend. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 12:21:50 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hermes.rz.fhtw-berlin.de (hermes.rz.fhtw-berlin.de [141.45.5.100]) by hub.freebsd.org (Postfix) with ESMTP id 4112637B43E for ; Tue, 29 Aug 2000 12:21:46 -0700 (PDT) Received: from oxid01.rz.fhtw-berlin.de (oxid01.rz.fhtw-berlin.de [141.45.4.201]) by hermes.rz.fhtw-berlin.de (8.9.3/8.9.3) with ESMTP id VAA23392 for ; Tue, 29 Aug 2000 21:21:45 +0200 (MET DST) Received: from localhost (s0233343@localhost) by oxid01.rz.fhtw-berlin.de (SGI-SGI-8.9.3/8.9.3) with ESMTP id VAA32487 for ; Tue, 29 Aug 2000 21:21:44 +0200 (MESZ) Date: Tue, 29 Aug 2000 21:21:44 +0200 From: Christian Peter Gruendemann To: mobile@freebsd.org Subject: Re: Netgear FA410TX device time out In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I really don't know what I should do now. I tried serveral configs yesterday and all the hints you gave me, but all I'm doing I get device timeouts of my ed0 device. My networks works fine e.g I can ping and telnet my computer using the ed0 device. But I still cannot connect to the internet. I got a static IP from my University, so I don't need DHCP anymore. But it doesn't work either. SOmetimes the card is matched correctly, sometimes not. Maybe one of you have an idea. By using Polling Mode I got a irq 3 for my network card. But the timeouts still existed. Here is the the output of dmesg, kernelconfig etc. ------ dmesg: ----- pcic0: at port 0x3e0-0x3e1 on isa0 pcic0: Polling Mode --- pccard: card inserted, slot 1 ata1-slave: ata_command: timeout waiting for intr ata1-slave: identify failed --- ed0: at port 0x300-0x31f irq 10 slot 1 on pccard1 ed0: address 00:e0:98:83:73:86, typw Linksys ( 16 bit) ed0: device timeout ed0: device timeout ----------------- Kernel Config File ------------------ PCCARD SUPPORT device card device pcic0 at isa? #irq 10 port 0x3e0 iomen 0xd0000 device pcic1 at isa? irq 11 port 0x3e2 iomem oxd4000 diasable #ISA Eterhernet NICs. device ed0 at isa? port 0x280 irq 3 iomem 0xd8000 #device ed With Polling Mode I got a irq 3 for the Ethernet card, but the timeout still existed. -------------- uname -a -------------- FreeBSD xxxxx 4.1-20000824-stable ------------- /etc/rc.conf ------------ ... pccardd_flags="-i 10 -i 11" pccard_mem="DEfault" network_interfaces="auto" ifconfig_lo0="inet 127.0.0.1" hostname="xxx" ifconfig_ed0+"xxx" ifconfig_ed1="xxx" defaultrouter="xxx" ------------- etc/defaults/pccardd.conf ------------- card "Netgear" "FA410TX" config auto "ed" ? insert /net/bin/fa_select $device 3 insert into /etc/pccard_ether $device remove kill -9 `cut /var/run/dhclient.pid` remove /sbin/ifconfig $device delete -------------- /var/log/messages --------------- pccardd: Card "Netgear"("FA410TX") [FAst Ethernet] [(null)] matches "NetGEAR" ("FA410TX") [(null)] [(null)] ed1 at port 0x300-0x31f irq 10 slot 1 on pccard1 ed1 adress 00:e0:98:83:73:86, type Linksys ( 16 bit) pccardd: ed1 NETGEAR (FA410TX) inserted pccardd: pccardd started /kernel: ed1: device timeout all the time I use the network Thanks in advance, CHristian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 13:20:32 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from bart.callnet0800.com (bart.callnet0800.com [212.67.128.108]) by hub.freebsd.org (Postfix) with ESMTP id 8CF6537B423 for ; Tue, 29 Aug 2000 13:20:21 -0700 (PDT) Received: from smtp.f1racing.co.uk [212.67.128.141] by bart.callnet0800.com with ESMTP (SMTPD32-5.05) id AB98BD500150; Tue, 29 Aug 2000 21:22:51 +0100 Received: from DEE [212.67.145.16] by smtp.f1racing.co.uk (SMTPD32-5.05) id AAF8BA60248; Tue, 29 Aug 2000 21:20:08 +0100 From: Ian J Greely To: freebsd-mobile@freebsd.org Subject: Enable PCCard support Date: Tue, 29 Aug 2000 21:19:26 +0100 Message-ID: X-Mailer: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm trying to get a spare laptop I have up and working as a firewall internet connection machine. The unit has no floppy or CD (rather well used old unit). I've installed 4.1 onto it using a different machine and then moved the Hard disc into the target machine. It's all worked fine except that I am now unable to get any sort of a response from PCCard dmesg shows the following... atapci0: Busmastering DMA not configured ata0: at 0x1f0 irq 14 on atapci0 pcic-pci0: port 0xfcfc-0xfcff at device 19.0 on pci0 Towards the end of the boot I get two /dev/card0 not configured : messages. On the advice of a friend I've added the following to the loader.conf /boot/loader.conf: machdep.pccard.pcic_irq=3D"0" Anyone got any suggestions on how I might attempt to get this sucker running? regards, Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 14:45:30 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from condor.peregrine.com (condor.peregrine.com [192.72.253.98]) by hub.freebsd.org (Postfix) with ESMTP id 4550137B43C for ; Tue, 29 Aug 2000 14:45:24 -0700 (PDT) Received: from gluttony.peregrine.com (nat-11.peregrine.com [63.82.230.11]) by condor.peregrine.com (Pro-8.9.3/Pro-8.9.3) with ESMTP id OAA06850; Tue, 29 Aug 2000 14:42:04 -0700 (PDT) Received: from peregrine.com (sys499.peregrine.com [172.18.1.99]) by gluttony.peregrine.com (8.9.3/8.9.3) with ESMTP id OAA49865; Tue, 29 Aug 2000 14:50:47 -0700 (PDT) (envelope-from erich@peregrine.com) Message-ID: <39AC2F69.187D0568@peregrine.com> Date: Tue, 29 Aug 2000 14:47:21 -0700 From: Eric Hedstrom X-Mailer: Mozilla 4.7 [fr] (WinNT; U) X-Accept-Language: fr MIME-Version: 1.0 To: Ian J Greely Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Enable PCCard support References: Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What kind of PCCard is it? Do you have lines in your /etc/rc.conf along the lines of .. pccard_enable="YES" pccard_ifconfig="inet x.y.z.t netmask 255.255.255.0" ? Eric Hedstrom erich@peregrine.com Ian J Greely a écrit : > > Hi, > > I'm trying to get a spare laptop I have up and working as a firewall > internet connection machine. The unit has no floppy or CD (rather well > used old unit). > > I've installed 4.1 onto it using a different machine and then moved > the Hard disc into the target machine. > > It's all worked fine except that I am now unable to get any sort of a > response from PCCard > > dmesg shows the following... > > atapci0: Busmastering DMA not configured > ata0: at 0x1f0 irq 14 on atapci0 > pcic-pci0: port > 0xfcfc-0xfcff at device 19.0 on pci0 > > > Towards the end of the boot I get two /dev/card0 not configured : > messages. > > On the advice of a friend I've added the following to the loader.conf > > /boot/loader.conf: > > machdep.pccard.pcic_irq="0" > > Anyone got any suggestions on how I might attempt to get this sucker > running? > > regards, > Ian > > 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 Aug 29 15: 2:41 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from bart.callnet0800.com (bart.callnet0800.com [212.67.128.108]) by hub.freebsd.org (Postfix) with ESMTP id EB59F37B440 for ; Tue, 29 Aug 2000 15:02:31 -0700 (PDT) Received: from smtp.f1racing.co.uk [212.67.128.141] by bart.callnet0800.com with ESMTP (SMTPD32-5.05) id A3911DCD0138; Tue, 29 Aug 2000 23:05:05 +0100 Received: from DEE [212.67.151.62] by smtp.f1racing.co.uk (SMTPD32-5.05) id A2F01CD1013E; Tue, 29 Aug 2000 23:02:24 +0100 From: Ian J Greely To: freebsd-mobile@freebsd.org Subject: Re: Enable PCCard support Date: Tue, 29 Aug 2000 23:01:39 +0100 Message-ID: References: <39AC2F69.187D0568@peregrine.com> In-Reply-To: <39AC2F69.187D0568@peregrine.com> X-Mailer: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The card in the machine is a DLink DE660. But it's not getting that far. If I do a pccardc dumpcis it tells me that there are no slots... I have put a 98 config on a different partition and it's able to use the network card without problem so I'm relatively sure that the controller is ok. My kernel has the following entry device card device pcic0 at isa? the following message at boot up had me remove the card devices from /dev and remake them... pccardc: /dev/card0: Device not configured pccardc: /dev/card0: Device not configured And the lines you suggest are in my rc.conf. I'm unsure where else to go with this... regards Ian On Tue, 29 Aug 2000 14:47:21 -0700, you wrote: >What kind of PCCard is it? > >Do you have lines in your /etc/rc.conf along the lines of .. > >pccard_enable=3D"YES" >pccard_ifconfig=3D"inet x.y.z.t netmask 255.255.255.0" > >? > >Eric Hedstrom >erich@peregrine.com > >Ian J Greely a =E9crit : >>=20 >> Hi, >>=20 >> I'm trying to get a spare laptop I have up and working as a firewall >> internet connection machine. The unit has no floppy or CD (rather well >> used old unit). >>=20 >> I've installed 4.1 onto it using a different machine and then moved >> the Hard disc into the target machine. >>=20 >> It's all worked fine except that I am now unable to get any sort of a >> response from PCCard >>=20 >> dmesg shows the following... >>=20 >> atapci0: Busmastering DMA not configured >> ata0: at 0x1f0 irq 14 on atapci0 >> pcic-pci0: port >> 0xfcfc-0xfcff at device 19.0 on pci0 >> >>=20 >> Towards the end of the boot I get two /dev/card0 not configured : >> messages. >>=20 >> On the advice of a friend I've added the following to the loader.conf >>=20 >> /boot/loader.conf: >>=20 >> machdep.pccard.pcic_irq=3D"0" >>=20 >> Anyone got any suggestions on how I might attempt to get this sucker >> running? >>=20 >> regards, >> Ian >>=20 >> 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 15:32: 0 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from bart.callnet0800.com (bart.callnet0800.com [212.67.128.108]) by hub.freebsd.org (Postfix) with ESMTP id 828A737B9CC for ; Tue, 29 Aug 2000 15:31:54 -0700 (PDT) Received: from smtp.f1racing.co.uk [212.67.128.141] by bart.callnet0800.com with ESMTP (SMTPD32-5.05) id AA74179501FE; Tue, 29 Aug 2000 23:34:28 +0100 Received: from DEE [212.67.151.62] by smtp.f1racing.co.uk (SMTPD32-5.05) id A9D658A00A0; Tue, 29 Aug 2000 23:31:50 +0100 From: Ian J Greely To: freebsd-mobile@freebsd.org Cc: "Sean O'Connell" Subject: Re: Enable PCCard support Date: Tue, 29 Aug 2000 23:31:06 +0100 Message-ID: <66doqsg7uvjps2i8t4olnt687c2rrag6ts@4ax.com> References: <39AC2F69.187D0568@peregrine.com> <20000829180528.R48364@stat.Duke.EDU> In-Reply-To: <20000829180528.R48364@stat.Duke.EDU> X-Mailer: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 29 Aug 2000 18:05:28 -0400, you wrote: >Ian- > >You might want to pass along the output from dmesg. Also, make >sure that the pcic is enabled in its bios. What does 98 have to >say for the machine? > >S >----------------------------------------------------------------------- >Sean O'Connell Email: sean@stat.Duke.EDU >Institute of Statistics and Decision Sciences Phone: (919) 684-5419 >Duke University Fax: (919) 684-8594 Here goes. CPU: Pentium/P54C (133.32-MHz 586-class CPU) Origin GenuineIntel" Id - 0x52c Stepping =3D 12 Features-0x1bf real memory =3D 50331648 (49152K bytes) avail memory =3D 45322240 (44260K bytes) Preloaded elf kernel "kernel" at 0xc03a2000. Intel Pentium detected, installing workaround for F00F bug md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pci0: at 12.0 isab0: at device 18.0 on pci0 isa: on isab0 atapci0: port 0x370-0x373, 0x3f0-0x3f3 at device 18.1 on pci0 atapci0: Busmastering DMA not configured ata0:at 0x1f0 irq 14 on atapci0 pcic-pci0: port 0xfcfc-0xfcff at device 19.0 on pci0 atkbdc0: at port 0x60, 0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> sio0: at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 ad0: 4887MB [10592/15/63] at ata0-master using BIOSPIO Mounting root from ufs:/dev/ad0s3a ad0s2: raw parition size !=3D slice size ad0s2: start 2101680, end 2237759, size 136080 ad0s2c: start 2101680, end 10009439, size 7907760 ad0s2: truncating raw parition ........... PHEW... The bios on this machine does not appear to have a switch for the PCMCIA other than maintain power during suspend.... regards, Ian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 17: 8:45 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hotmail.com (f239.law9.hotmail.com [64.4.9.239]) by hub.freebsd.org (Postfix) with ESMTP id 6227037B424 for ; Tue, 29 Aug 2000 17:08:44 -0700 (PDT) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 29 Aug 2000 17:08:44 -0700 Received: from 63.195.114.87 by lw9fd.law9.hotmail.msn.com with HTTP; Wed, 30 Aug 2000 00:08:44 GMT X-Originating-IP: [63.195.114.87] From: "Greg Smith" To: Ian@tirnanog.org Cc: freebsd-mobile@freebsd.org Subject: Re: Enable PCCard support Date: Wed, 30 Aug 2000 00:08:44 GMT Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 30 Aug 2000 00:08:44.0166 (UTC) FILETIME=[75D22260:01C01216] Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ian, I resolved the very same problem, on a Winbook FX with the same PC-Card Controller, by changing my config file to read: device card device pcic0 at isa? port 0xfcec Since my dmesg said 0xfcec-0xfcef, not 0xfcfc-0xfcff, I would recommend that YOU USE: device card device pcic0 at isa? port 0xfcfc Greg >pcic-pci0: port >0xfcfc-0xfcff at device 19.0 on pci0 _________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information about yourself, create your own public profile at http://profiles.msn.com. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Aug 29 17:28:12 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from bart.callnet0800.com (bart.callnet0800.com [212.67.128.108]) by hub.freebsd.org (Postfix) with ESMTP id C63E337B423 for ; Tue, 29 Aug 2000 17:28:05 -0700 (PDT) Received: from smtp.f1racing.co.uk [212.67.128.141] by bart.callnet0800.com with ESMTP (SMTPD32-5.05) id A5AE20B40138; Wed, 30 Aug 2000 01:30:38 +0100 Received: from DEE [212.67.151.223] by smtp.f1racing.co.uk (SMTPD32-5.05) id A51223BB00A8; Wed, 30 Aug 2000 01:28:02 +0100 From: Ian J Greely To: "Greg Smith" Cc: freebsd-mobile@freebsd.org Subject: Re: Enable PCCard support Date: Wed, 30 Aug 2000 01:27:29 +0100 Message-ID: References: In-Reply-To: X-Mailer: Forte Agent 1.7/32.534 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nice one Greg! That appears to have done the trick. :) Now all I have to do is write an entry for the DE-660.=20 Thanks for all your help guys. regards, Ian On Wed, 30 Aug 2000 00:08:44 GMT, you wrote: >Ian, > I resolved the very same problem, on a Winbook FX with the same = PC-Card=20 >Controller, by changing my config file to read: > >device card >device pcic0 at isa? port 0xfcec > >Since my dmesg said 0xfcec-0xfcef, not 0xfcfc-0xfcff, I would recommend = that=20 >YOU USE: > >device card >device pcic0 at isa? port 0xfcfc > >Greg > >>pcic-pci0: port >>0xfcfc-0xfcff at device 19.0 on pci0 > >________________________________________________________________________= _ >Get Your Private, Free E-mail from MSN Hotmail at = http://www.hotmail.com. > >Share information about yourself, create your own public profile at=20 >http://profiles.msn.com. > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 0:50:31 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id A9E3837B424 for ; Wed, 30 Aug 2000 00:50:28 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA96714; Wed, 30 Aug 2000 01:50: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.9.3/8.8.3) with ESMTP id BAA14335; Wed, 30 Aug 2000 01:50:06 -0600 (MDT) Message-Id: <200008300750.BAA14335@harmony.village.org> To: Wilko Bulte Subject: Re: Compaq Armada E700 on -current Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Sun, 27 Aug 2000 14:03:25 +0200." <20000827140325.A1480@freebie.demon.nl> References: <20000827140325.A1480@freebie.demon.nl> Date: Wed, 30 Aug 2000 01:50:06 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000827140325.A1480@freebie.demon.nl> Wilko Bulte writes: : PC card installed also hangs. Interestingly enough the lockup occurs : regardless whether pccardd runs or not. I've tested with a Psion V34 modem : card and an Adaptec 1460B SCSI card. Hmmmm. Sounds like an interrupt problem. I would have suggested that pccardd is causng the problem, but it sounds like the cardbus bridge is generating an interrupt that isn't fielded. beyond that, i'm not sure what is going on. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 0:54:15 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id DF0D237B43F for ; Wed, 30 Aug 2000 00:54:09 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA96731; Wed, 30 Aug 2000 01:54:08 -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.9.3/8.8.3) with ESMTP id BAA14369; Wed, 30 Aug 2000 01:53:48 -0600 (MDT) Message-Id: <200008300753.BAA14369@harmony.village.org> To: adsharma@sharmas.dhs.org (Arun Sharma) Subject: Re: Fwd: Suggestion for laptop suspension Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 28 Aug 2000 23:05:05 PDT." <200008290605.XAA28354@sharmas.dhs.org> References: <200008290605.XAA28354@sharmas.dhs.org> Date: Wed, 30 Aug 2000 01:53:48 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200008290605.XAA28354@sharmas.dhs.org> Arun Sharma writes: : On my laptop, suspending to disk is slow. It takes a whole minute, and : another minute to unsuspend--if all of core is in use. But it is much : faster when I do it not too long after the system was booted, when it has : not yet managed to use up most of core. : : This suggests that it could be nice to make the kernel empty its caches, and : mark all that core "unused", when a suspend is about to happen. I don't : know the details of how suspension works, so I am not sure this is possible, : but I think there are hooks for doing something in the kernel before a : suspend. no. that's not how things work. suspend is in the bios and has no clue about what is or isn't used, so it always does the whole thing. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 0:57: 1 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id A56A937B424 for ; Wed, 30 Aug 2000 00:56:58 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id BAA96747; Wed, 30 Aug 2000 01:56:56 -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.9.3/8.8.3) with ESMTP id BAA14399; Wed, 30 Aug 2000 01:56:31 -0600 (MDT) Message-Id: <200008300756.BAA14399@harmony.village.org> To: Ian J Greely Subject: Re: Enable PCCard support Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 29 Aug 2000 21:19:26 BST." References: Date: Wed, 30 Aug 2000 01:56:31 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Ian J Greely writes: : pcic-pci0: port : 0xfcfc-0xfcff at device 19.0 on pci0 if there are no other pcic lines, then the 4.1 code isn't initializing your cardbus bridge to legacy mode correctly. Maybe your BIOS can help. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 1: 5:38 2000 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 DF3A737B423 for ; Wed, 30 Aug 2000 01:05:33 -0700 (PDT) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id RAA19578; Wed, 30 Aug 2000 17:35:12 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.4.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: <200008300753.BAA14369@harmony.village.org> Date: Wed, 30 Aug 2000 17:35:12 +0930 (CST) From: "Daniel O'Connor" To: Warner Losh Subject: Re: Fwd: Suggestion for laptop suspension Cc: freebsd-mobile@FreeBSD.ORG, (Arun Sharma) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 30-Aug-00 Warner Losh wrote: > no. that's not how things work. suspend is in the bios and has no > clue about what is or isn't used, so it always does the whole thing. Perhaps it does simple compression (eg RLE) and if your memory is zero'd to begin with it would compress that very well.. --- 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 Wed Aug 30 1:21:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from Mail.ZEDAT.FU-Berlin.DE (mail.zedat.fu-berlin.de [130.133.1.48]) by hub.freebsd.org (Postfix) with ESMTP id BB16C37B42C for ; Wed, 30 Aug 2000 01:21:56 -0700 (PDT) Received: by Mail.ZEDAT.FU-Berlin.DE (Smail3.2.0.98) from komma.zedat.fu-berlin.de (130.133.1.46) with esmtp id ; Wed, 30 Aug 2000 10:21:55 +0200 (MEST) Date: Wed, 30 Aug 2000 10:21:54 +0200 From: Martin Dieringer To: freebsd-mobile@FreeBSD.ORG Subject: Re: Fwd: Suggestion for laptop suspension In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 30 Aug 2000, Daniel O'Connor wrote: > > On 30-Aug-00 Warner Losh wrote: > > no. that's not how things work. suspend is in the bios and has no > > clue about what is or isn't used, so it always does the whole thing. > > Perhaps it does simple compression (eg RLE) and if your memory is zero'd to > begin with it would compress that very well.. you could perhaps write a small program that fills up your RAM, and when you stop it, most of the others should have been swapped out - martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 2:24:26 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from ntua.gr (achilles.noc.ntua.gr [147.102.222.210]) by hub.freebsd.org (Postfix) with ESMTP id 7D54137B423 for ; Wed, 30 Aug 2000 02:24:19 -0700 (PDT) Received: from netmode.ece.ntua.gr (dolly.netmode.ece.ntua.gr [147.102.13.10]) by ntua.gr (8.9.3/8.9.3) with ESMTP id MAA09718; Wed, 30 Aug 2000 12:24:15 +0300 (EET DST) Received: by netmode.ece.ntua.gr (Postfix, from userid 410) id 2EB2485C3; Wed, 30 Aug 2000 12:09:45 +0300 (EET DST) Date: Wed, 30 Aug 2000 12:09:45 +0300 From: Panagiotis Astithas To: Christian Peter Gruendemann Cc: mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000830120945.A12040@netmode.ece.ntua.gr> Reply-To: past@netmode.ntua.gr References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: ; from chris.chris@fhtw-berlin.de on Tue, Aug 29, 2000 at 09:21:44PM +0200 X-Organizational-Unit: Network Management and Optimal Design Laboratory X-Organization: National Technical University of Athens, GREECE X-Work-Phone: +30-1-772-1-450 X-Work-FAX: +30-1-772-1-452 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Aug 29, 2000 at 09:21:44PM +0200, Christian Peter Gruendemann wrote: > SOmetimes the card is matched correctly, sometimes not. > Maybe one of you have an idea. I have encountered the same problem with pccardd matching the card, when I was using slot 1 instead of slot 0. After switching things worked like a charm. > By using Polling Mode I got a irq 3 for my network card. But the timeouts > still existed. Where did you see that irq 3 was selected? In the logs you provide I see that irq 10 is picked up all the time. -past To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 8:27:46 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sharmas.dhs.org (c62443-a.frmt1.sfba.home.com [24.0.69.165]) by hub.freebsd.org (Postfix) with ESMTP id 4DC7237B449 for ; Wed, 30 Aug 2000 08:27:45 -0700 (PDT) Received: (from adsharma@localhost) by sharmas.dhs.org (8.9.3/8.9.3) id IAA31362; Wed, 30 Aug 2000 08:27:13 -0700 Date: Wed, 30 Aug 2000 08:27:12 -0700 From: Arun Sharma To: "Daniel O'Connor" Cc: Warner Losh , freebsd-mobile@FreeBSD.ORG Subject: Re: Fwd: Suggestion for laptop suspension Message-ID: <20000830082712.A31339@sharmas.dhs.org> References: <200008300753.BAA14369@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: ; from doconnor@gsoft.com.au on Wed, Aug 30, 2000 at 05:35:12PM +0930 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 30, 2000 at 05:35:12PM +0930, Daniel O'Connor wrote: > > On 30-Aug-00 Warner Losh wrote: > > no. that's not how things work. suspend is in the bios and has no > > clue about what is or isn't used, so it always does the whole thing. > > Perhaps it does simple compression (eg RLE) and if your memory is zero'd to > begin with it would compress that very well.. Yes, the discussion on linux-kernel suggested that there was some empirical evidence about this. So zero'ing as much memory as possible could result in faster suspend/resume. -Arun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 8:44:45 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id CE44E37B424 for ; Wed, 30 Aug 2000 08:44:42 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id JAA98295; Wed, 30 Aug 2000 09:44:33 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost [127.0.0.1]) by billy-club.village.org (8.11.0/8.8.3) with ESMTP id e7UFigG06857; Wed, 30 Aug 2000 09:44:42 -0600 (MDT) Message-Id: <200008301544.e7UFigG06857@billy-club.village.org> To: "Daniel O'Connor" Subject: Re: Fwd: Suggestion for laptop suspension Cc: freebsd-mobile@FreeBSD.ORG, adsharma@sharmas.dhs.org (Arun Sharma) In-reply-to: Your message of "Wed, 30 Aug 2000 17:35:12 +0930." References: Date: Wed, 30 Aug 2000 09:44:42 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Daniel O'Connor" writes: : On 30-Aug-00 Warner Losh wrote: : > no. that's not how things work. suspend is in the bios and has no : > clue about what is or isn't used, so it always does the whole thing. : : Perhaps it does simple compression (eg RLE) and if your memory is zero'd to : begin with it would compress that very well.. You do not understand. The BIOS knows how much memory there is. The BIOS writes it to disk. The kernel gets what the BIOS gives it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 8:50:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 24EAA37B422 for ; Wed, 30 Aug 2000 08:50:20 -0700 (PDT) Received: from billy-club.village.org (billy-club.village.org [10.0.0.3]) by rover.village.org (8.9.3/8.9.3) with ESMTP id JAA98332; Wed, 30 Aug 2000 09:50:18 -0600 (MDT) (envelope-from imp@billy-club.village.org) Received: from billy-club.village.org (localhost [127.0.0.1]) by billy-club.village.org (8.11.0/8.8.3) with ESMTP id e7UFoSG06876; Wed, 30 Aug 2000 09:50:28 -0600 (MDT) Message-Id: <200008301550.e7UFoSG06876@billy-club.village.org> To: Arun Sharma Subject: Re: Fwd: Suggestion for laptop suspension Cc: "Daniel O'Connor" , freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 30 Aug 2000 08:27:12 PDT." <20000830082712.A31339@sharmas.dhs.org> References: <20000830082712.A31339@sharmas.dhs.org> <200008300753.BAA14369@harmony.village.org> Date: Wed, 30 Aug 2000 09:50:28 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000830082712.A31339@sharmas.dhs.org> Arun Sharma writes: : Yes, the discussion on linux-kernel suggested that there was some empirical : evidence about this. So zero'ing as much memory as possible could result : in faster suspend/resume. I seriously doubt that this is the case. In the past I've looked at these image files, and they are just images. No compression, just bits slammed to the disk. A suspend to disk on my Sony VAIO at least always takes the same amount of time, no matter if it was just booted, or had been running to the point of needing swap. I'd be extremely suspicious of any attempts to optimize this as being a waste of time. However, you are free to write a driver that will, when it gets the suspend request, goes through the buffer cache, invalidating everything and bzeroing it. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 9:48:19 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from moek.pir.net (moek.pir.net [209.192.237.190]) by hub.freebsd.org (Postfix) with ESMTP id 50B9537B443 for ; Wed, 30 Aug 2000 09:48:17 -0700 (PDT) Received: from pir by moek.pir.net with local (Exim) id 13UB1x-0004fj-00 for freebsd-mobile@FreeBSD.ORG; Wed, 30 Aug 2000 12:48:05 -0400 Date: Wed, 30 Aug 2000 12:48:04 -0400 From: Peter Radcliffe To: freebsd-mobile@FreeBSD.ORG Subject: Re: Fwd: Suggestion for laptop suspension Message-ID: <20000830124804.A17183@pir.net> Mail-Followup-To: freebsd-mobile@FreeBSD.ORG References: <20000830082712.A31339@sharmas.dhs.org> <200008300753.BAA14369@harmony.village.org> <20000830082712.A31339@sharmas.dhs.org> <200008301550.e7UFoSG06876@billy-club.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008301550.e7UFoSG06876@billy-club.village.org>; from imp@village.org on Wed, Aug 30, 2000 at 09:50:28AM -0600 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh probably said: > I seriously doubt that this is the case. In the past I've looked at > these image files, and they are just images. No compression, just > bits slammed to the disk. A suspend to disk on my Sony VAIO at least > always takes the same amount of time, no matter if it was just booted, > or had been running to the point of needing swap. Whereas I noted on my Vaio that it suspends to disk considerably faster if it's just booted. It seems to be less blatant on my newer Z505HS, but it was quite obvious on my 505TR with 128Mb. Just a datapoint. P. -- pir pir@pir.net pir@net.tufts.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 10:33:47 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id 61F4037B422 for ; Wed, 30 Aug 2000 10:33:45 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA98780; Wed, 30 Aug 2000 11:33:44 -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.9.3/8.8.3) with ESMTP id LAA17169; Wed, 30 Aug 2000 11:33:22 -0600 (MDT) Message-Id: <200008301733.LAA17169@harmony.village.org> To: Peter Radcliffe Subject: Re: Fwd: Suggestion for laptop suspension Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 30 Aug 2000 12:48:04 EDT." <20000830124804.A17183@pir.net> References: <20000830124804.A17183@pir.net> <20000830082712.A31339@sharmas.dhs.org> <200008300753.BAA14369@harmony.village.org> <20000830082712.A31339@sharmas.dhs.org> <200008301550.e7UFoSG06876@billy-club.village.org> Date: Wed, 30 Aug 2000 11:33:22 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000830124804.A17183@pir.net> Peter Radcliffe writes: : Whereas I noted on my Vaio that it suspends to disk considerably : faster if it's just booted. It seems to be less blatant on my newer : Z505HS, but it was quite obvious on my 505TR with 128Mb. I have a VAIO 505TS. I'll do timing later today, but I can detect no difference in suspend time with it. I'll post a small program for testing purposes that writes 0's to large hunks of memory as well as random bytes. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 10:34:29 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id D70EB37B423 for ; Wed, 30 Aug 2000 10:34:27 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id LAA98797; Wed, 30 Aug 2000 11:34:26 -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.9.3/8.8.3) with ESMTP id LAA17205; Wed, 30 Aug 2000 11:34:05 -0600 (MDT) Message-Id: <200008301734.LAA17205@harmony.village.org> To: Christian Peter Gruendemann Subject: Re: Netgear FA410TX device time out Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 29 Aug 2000 21:21:44 +0200." References: Date: Wed, 30 Aug 2000 11:34:05 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Until the driver is updated, you'll need the faselect program mentioned in the archives to make the FA410TX work. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Aug 30 11:20:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (Postfix) with ESMTP id ACCAD37B424 for ; Wed, 30 Aug 2000 11:20:51 -0700 (PDT) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.9.3/8.9.3) with ESMTP id MAA98997; Wed, 30 Aug 2000 12:20:50 -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.9.3/8.8.3) with ESMTP id MAA17686; Wed, 30 Aug 2000 12:20:28 -0600 (MDT) Message-Id: <200008301820.MAA17686@harmony.village.org> Subject: Re: Fwd: Suggestion for laptop suspension Cc: Peter Radcliffe , freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 30 Aug 2000 11:33:22 MDT." <200008301733.LAA17169@harmony.village.org> References: <200008301733.LAA17169@harmony.village.org> <20000830124804.A17183@pir.net> <20000830082712.A31339@sharmas.dhs.org> <200008300753.BAA14369@harmony.village.org> <20000830082712.A31339@sharmas.dhs.org> <200008301550.e7UFoSG06876@billy-club.village.org> Date: Wed, 30 Aug 2000 12:20:28 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200008301733.LAA17169@harmony.village.org> Warner Losh writes: : In message <20000830124804.A17183@pir.net> Peter Radcliffe writes: : : Whereas I noted on my Vaio that it suspends to disk considerably : : faster if it's just booted. It seems to be less blatant on my newer : : Z505HS, but it was quite obvious on my 505TR with 128Mb. : : I have a VAIO 505TS. I'll do timing later today, but I can detect no : difference in suspend time with it. : : I'll post a small program for testing purposes that writes 0's to : large hunks of memory as well as random bytes. OK. Here's what I did. I wrote a program, attached, and used it to zero or randomize chunks of memory. I timed this using date on another system, so the times are +- 1-2 seconds 0 16MB 64M 128M suspend zero 24 24 22 19 random 28 resume zero 56 57 50 48 random 60 OK. All numbers are +- 1 or 2 seconds due to my experimental setup. However, this does show a slight speedup for large blocks of zeros. And I do mean LARGE blocks of zeros. On the order of 10%-15% considering uncertainty and the small sample size (you need about 1500 samples to have a 99% confidence in the actual value, and I didn't want to do that) improvement. I did notice that I paid a heavy price for this. When I zeroed 128M, lots of things swapped out, and had to swap back into memory when I needed them. I have 128M of RAM on this box. The zero of 64MB of RAM took about 1-2 seconds (I didn't time it, but there was a pause), which negates at least some of the savings from the suspend. So if someone wants to write a driver that will flush trash memory in the kernel and measure the results, have fun. I just did the first order estimates here. The savings looks to be too small to be worth the effort, imho, but others can push this idea further if they feel like it. Warner /* * simple program to fill memory with zeros or random junk. * -s N -r -z * -s N allocate 2^N bytes * -r use random byte values (well, 1, 2, 3, ...) in the memory * -z user zeros in the memory * Released to the public domain AS IS. Fully understand the code * or do not run it. */ #include #include #include #include #include #include int main(int argc, char **argv) { char buffer[10]; /* Size doesn't matter */ int z_flag = 0; size_t size = 1 << 20; char *mem; size_t i; int ch; while ((ch = getopt(argc, argv, "rs:z")) != -1) { switch (ch) { case 'r': z_flag = 0; break; case 'z': z_flag = 1; break; case 's': size = 1 << strtoul(optarg, NULL, 0); break; } } printf("Allocating %d bytes\n", size); mem = malloc(size); if (!mem) err(1, "Cannot get %lu bytes", size); if (z_flag) memset(mem, 0, size); else for (i = 0; i < size; i++) mem[i] = i % 0xff; printf("Memory initialized. Press return to continue\n"); fgets(buffer, sizeof(buffer), stdin); free(mem); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 0:57: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from bells.cs.ucl.ac.uk (bells.cs.ucl.ac.uk [128.16.5.31]) by hub.freebsd.org (Postfix) with SMTP id D6A5337B423; Thu, 31 Aug 2000 00:57:02 -0700 (PDT) Received: from ginger.cs.ucl.ac.uk by bells.cs.ucl.ac.uk with local SMTP id ; Thu, 31 Aug 2000 08:56:49 +0100 Message-ID: <39AE0FBE.6CD145C4@cs.ucl.ac.uk> Date: Thu, 31 Aug 2000 08:56:46 +0100 From: Theo PAGTZIS Reply-To: t.pagtzis@cs.ucl.ac.uk Organization: UCL X-Mailer: Mozilla 4.75 [en] (X11; U; SunOS 5.8 sun4u) X-Accept-Language: el, en MIME-Version: 1.0 To: Jim Flowers Cc: Atsushi Onoe , freebsd-hackers , freebsd-net , freebsd-mobile@FreeBSD.ORG Subject: Re: fbsd box acting as a wavelan BS (Yes it can) References: <39A9E49D.A79BF6FD@softweyr.com> <200008280703.e7S732S01248@duplo.sm.sony.co.jp> <002101c012cd$0b4a53b0$81d396ce@ezo.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jim, Jim Flowers wrote: > The 6.04 firmware does, indeed, allow establishing a network with an ISA > card in a FreeBSD box, however, when doing the PCCard upgrade with a Windows > machine it requires the drivers to be upgraded to 4.01 first and if you want > to talk to it with the IEEE/Wave Manager Client update it, as well. > Everything seems to be backward compatible (ad-hoc, Infrastructure, > WaveManageer/Client, Manager. > > The good news is that it works farily well and will setup a network netname, > with the procedure you indicated. You can also move away from the default > frequency in either direction and the remote stations will follow it so the > beacons must work. Works with multiple clients (simultaneously) but the > cache (-C) only reports levels on a single remote. Haven't tried multiple > throughput tests yet. Statistics (-o) don't show any values but these are > on 4.1-STABLE #0 and maybe that is the same problem reported by Theo > Pagtzis. > thanks for checking it out. I tried to print a single statistic from the wavelan card after experiencing the 0ed wi_counters from within the kernel (device_print)... for some reason once I did that the machine...rebooted...(not beneignly :) Could someone point me on info about kernel debugging? Do I get the impression that there is something wrong with the interrupt assigned to the card. Jim mentioned that it is probably best to have the interrupt assigned to the card isolated (at least that was my impression from what Jim mentioned as grandfathering) Also in some of the new fbsd boxes (4.1 stable + KAME snap) we have here the wavelan card although detected when inserted (which is a pccardd function) it keeps giving a "no such card in database". The card is in the database of pccard.conf, I use interrupt 9 which is not in use by another device. Can anyone understand the dumpcis info from the pccardc request? I dunno if that helps in understanding the problem as I cannot understand what it means..(at least a good part of it..) Any hints? Theo To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 6:20: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from serv.polbox.pl (serv.polbox.pl [195.116.5.2]) by hub.freebsd.org (Postfix) with ESMTP id 1AB8737B43C for ; Thu, 31 Aug 2000 06:20:05 -0700 (PDT) Received: from krypta.office.polbox.pl (krypta.office.polbox.pl [213.241.6.35]) by serv.polbox.pl id PAA29013 for ; Thu, 31 Aug 2000 15:20:02 +0200 Date: Thu, 31 Aug 2000 15:23:03 +0200 (CEST) From: Adam Obszynski X-Sender: awo@krypta.office.polbox.pl To: freebsd-mobile@freebsd.org Subject: toshiba libretto and hibernation mode Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org when my libretto 100ct going to hibernation mode i lose my partiotion information... i heard about let 100MB free at the hdd end is it true ? what exactly this size shuld be ? --=20 POLBOX ON-Line Network Admin (CCDA, CCNA 2.0) "Zabobon przynosi nieszcz=EA=B6cie." "(Raymond Smullyan, 5000 B.C., 1.3.)" PGP-key http://www.szczecin.mtl.pl/~awo/awo-asc.pgp D2 E3 0B B4 D8 F0 EE A6 48 33 AD 33 F7 B5 E9 B1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 6:53:50 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lunatic.oneinsane.net (lunatic.oneinsane.net [207.113.133.231]) by hub.freebsd.org (Postfix) with ESMTP id 22A6437B42C for ; Thu, 31 Aug 2000 06:53:46 -0700 (PDT) Received: by lunatic.oneinsane.net (Postfix, from userid 1000) id 881F415510; Thu, 31 Aug 2000 06:53:45 -0700 (PDT) Date: Thu, 31 Aug 2000 06:53:45 -0700 From: Ron 'The InSaNe One' Rosson To: freebsd-mobile@freebsd.org Subject: USB Message-ID: <20000831065345.A76545@lunatic.oneinsane.net> Reply-To: Ron Rosson Mail-Followup-To: freebsd-mobile@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD lunatic.oneinsane.net 4.0-STABLE X-Moon: The Moon is Waxing Crescent (7% of Full) X-Opinion: What you read here is my IMHO X-WWW: http://www.oneinsane.net X-GPG-FINGERPRINT: 3F11 DB43 F080 C037 96F0 F8D3 5BD2 652B 171C 86DB X-Uptime: 6:47AM up 29 days, 14:26, 1 user, load averages: 1.11, 1.08, 1.02 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am trying to get USB working on my laptop (Fujitsu E-360) running 4.1-STABLE. Here is a snippit from dmesg concerning USB: uhci0: irq 9 at device 7.2 on pci0 uhci0: Could not map ports device_probe_and_attach: uhci0 attach returned 6 Here is what I get when I run usbdevs: insane-mental> sudo usbdevs -v usbdevs: no USB controllers found Currently nothing is attatched to the USB port. So what I am seeing is normal or not? Help, advice, pointers to help me get this working would be appreciated. TIA -- ------------------------------------------------------------------------------ Ron Rosson ... and a UNIX user said ... The InSaNe One rm -rf * insane@oneinsane.net and all was /dev/null and *void() ------------------------------------------------------------------------------ Ceci n'est pas une | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 10:18:19 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by hub.freebsd.org (Postfix) with ESMTP id 4520237B422 for ; Thu, 31 Aug 2000 10:18:17 -0700 (PDT) Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.11.0/8.11.0) id e7VHHKs02122; Thu, 31 Aug 2000 10:17:20 -0700 Date: Thu, 31 Aug 2000 10:17:20 -0700 From: Brooks Davis To: "Ron 'The InSaNe One' Rosson" Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: USB Message-ID: <20000831101720.A507@Odin.AC.HMC.Edu> References: <20000831065345.A76545@lunatic.oneinsane.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <20000831065345.A76545@lunatic.oneinsane.net>; from insane@lunatic.oneinsane.net on Thu, Aug 31, 2000 at 06:53:45AM -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Aug 31, 2000 at 06:53:45AM -0700, Ron 'The InSaNe One' Rosson wrote: > I am trying to get USB working on my laptop (Fujitsu E-360) running > 4.1-STABLE. Here is a snippit from dmesg concerning USB: > > uhci0: irq 9 at device 7.2 on pci0 > uhci0: Could not map ports > device_probe_and_attach: uhci0 attach returned 6 > > Here is what I get when I run usbdevs: > > insane-mental> sudo usbdevs -v > usbdevs: no USB controllers found > > Currently nothing is attatched to the USB port. So what I am seeing is > normal or not? > > Help, advice, pointers to help me get this working would be appreciated. You may be suffering from the same problem as HP Omnibooks suffer from (BISO doesn't enable the I/O Port of the USB controler). If that's actually the problem, a variation of the Omnibook patch at http://www.etla.net/~n_hibma/usb/usb.pl should do it. The Omnibook.patch file should work on stable and older currents which the Omnibook-20000829.patch file is needed after dfr's recent rewrite of the PCI bus code. -- Brooks -- Any statement of the form "X is the one, true Y" is FALSE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 13:16:43 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.osd.bsdi.com (mass.osd.bsdi.com [204.216.28.234]) by hub.freebsd.org (Postfix) with ESMTP id 8CDA837B42C for ; Thu, 31 Aug 2000 13:16:40 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id NAA01274; Thu, 31 Aug 2000 13:30:55 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200008312030.NAA01274@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Ron Rosson Cc: freebsd-mobile@freebsd.org Subject: Re: USB In-reply-to: Your message of "Thu, 31 Aug 2000 06:53:45 PDT." <20000831065345.A76545@lunatic.oneinsane.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 31 Aug 2000 13:30:55 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We've been seeing this problem (the I/O ports for your USB controller don't appear to be being set) a little on -current for a while now, but we haven't pinned the actual problem down. On my laptop, I can check the base address register for this: mass# pciconf -r pci0:7:2: 32 0x00001061 Please check the above (I expect it to be correct), just in case your BIOS is doing something odd. > I am trying to get USB working on my laptop (Fujitsu E-360) running > 4.1-STABLE. Here is a snippit from dmesg concerning USB: > > uhci0: irq 9 at device 7.2 on pci0 > uhci0: Could not map ports > device_probe_and_attach: uhci0 attach returned 6 > > Here is what I get when I run usbdevs: > > insane-mental> sudo usbdevs -v > usbdevs: no USB controllers found > > Currently nothing is attatched to the USB port. So what I am seeing is > normal or not? > > Help, advice, pointers to help me get this working would be appreciated. > > > TIA > -- > ------------------------------------------------------------------------------ > Ron Rosson ... and a UNIX user said ... > The InSaNe One rm -rf * > insane@oneinsane.net and all was /dev/null and *void() > ------------------------------------------------------------------------------ > Ceci n'est pas une | > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message > -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 13:22:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lunatic.oneinsane.net (lunatic.oneinsane.net [207.113.133.231]) by hub.freebsd.org (Postfix) with ESMTP id BCC7537B424; Thu, 31 Aug 2000 13:22:35 -0700 (PDT) Received: by lunatic.oneinsane.net (Postfix, from userid 1000) id 5E38815513; Thu, 31 Aug 2000 13:22:34 -0700 (PDT) Date: Thu, 31 Aug 2000 13:22:34 -0700 From: Ron Rosson To: Mike Smith Cc: freebsd-mobile@freebsd.org Subject: Re: USB Message-ID: <20000831132234.A86433@lunatic.oneinsane.net> Reply-To: Ron Rosson Mail-Followup-To: Mike Smith , freebsd-mobile@freebsd.org References: <20000831065345.A76545@lunatic.oneinsane.net> <200008312030.NAA01274@mass.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200008312030.NAA01274@mass.osd.bsdi.com>; from msmith@freebsd.org on Thu, Aug 31, 2000 at 01:30:55PM -0700 X-Operating-System: FreeBSD lunatic.oneinsane.net 4.0-STABLE X-Moon: The Moon is Waxing Crescent (8% of Full) X-Opinion: What you read here is my IMHO X-WWW: http://www.oneinsane.net X-GPG-FINGERPRINT: 3F11 DB43 F080 C037 96F0 F8D3 5BD2 652B 171C 86DB X-Uptime: 1:20PM up 29 days, 20:59, 2 users, load averages: 1.10, 1.09, 1.08 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike Smith (msmith@freebsd.org) wrote: > > We've been seeing this problem (the I/O ports for your USB controller > don't appear to be being set) a little on -current for a while now, but > we haven't pinned the actual problem down. > > On my laptop, I can check the base address register for this: > > mass# pciconf -r pci0:7:2: 32 > 0x00001061 > > Please check the above (I expect it to be correct), just in case your > BIOS is doing something odd. Here is what I get when I do it: mental# pciconf -r pci0:7:2: 32 0x0000f4c1 > > > I am trying to get USB working on my laptop (Fujitsu E-360) running > > 4.1-STABLE. Here is a snippit from dmesg concerning USB: > > > > uhci0: irq 9 at device 7.2 on pci0 > > uhci0: Could not map ports > > device_probe_and_attach: uhci0 attach returned 6 > > > > Here is what I get when I run usbdevs: > > > > insane-mental> sudo usbdevs -v > > usbdevs: no USB controllers found > > > > Currently nothing is attatched to the USB port. So what I am seeing is > > normal or not? > > > > Help, advice, pointers to help me get this working would be appreciated. > > > > -- ------------------------------------------------------------------------------ Ron Rosson ... and a UNIX user said ... The InSaNe One rm -rf * insane@oneinsane.net and all was /dev/null and *void() ------------------------------------------------------------------------------ I don't have an overactive imagination--I live in an underactive universe. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 13:37:38 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.osd.bsdi.com (mass.osd.bsdi.com [204.216.28.234]) by hub.freebsd.org (Postfix) with ESMTP id 3820D37B422 for ; Thu, 31 Aug 2000 13:37:35 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id NAA01582; Thu, 31 Aug 2000 13:51:55 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200008312051.NAA01582@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Ron Rosson Cc: freebsd-mobile@freebsd.org Subject: Re: USB In-reply-to: Your message of "Thu, 31 Aug 2000 13:22:34 PDT." <20000831132234.A86433@lunatic.oneinsane.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 31 Aug 2000 13:51:55 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Mike Smith (msmith@freebsd.org) wrote: > > > > We've been seeing this problem (the I/O ports for your USB controller > > don't appear to be being set) a little on -current for a while now, but > > we haven't pinned the actual problem down. > > > > On my laptop, I can check the base address register for this: > > > > mass# pciconf -r pci0:7:2: 32 > > 0x00001061 > > > > Please check the above (I expect it to be correct), just in case your > > BIOS is doing something odd. > > Here is what I get when I do it: > > mental# pciconf -r pci0:7:2: 32 > 0x0000f4c1 Ok, it looks like this is the same PCI configuration space parsing bug that we're seeing in -current. I have *no* idea what's causing this yet. If you're feeling inspired, can you print the value of cfg->nummaps at the beginning of pci_add_resources in sys/pci/pci.c ? The value we're interested in is the one that would be printed just before the USB controller's output. Thanks! -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 14:11: 2 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.internet2.edu (mail.internet2.edu [209.211.239.218]) by hub.freebsd.org (Postfix) with ESMTP id 9AE3937B42C for ; Thu, 31 Aug 2000 14:10:58 -0700 (PDT) Received: from cain.internet2.edu (localhost [127.0.0.1]) by mail.internet2.edu (8.9.3/8.9.1) with ESMTP id RAA18595 for ; Thu, 31 Aug 2000 17:10:57 -0400 (EDT) Received: by cain.internet2.edu (Postfix, from userid 1000) id 6AA5C5BC; Thu, 31 Aug 2000 17:10:56 -0400 (EDT) To: freebsd-mobile@FreeBSD.org Subject: sound on IBM ThinkPad 600x 26455fu From: stanislav shalunov Date: 31 Aug 2000 17:10:56 -0400 Message-ID: <87snrlkufz.fsf@cain.internet2.edu> Lines: 16 X-Mailer: Gnus v5.7/Emacs 20.4 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to get sound to work on IBM ThinkPad 600x 26455fu. It looks like I have tried every configuration I could find on the archives, but the sound card is still not detected. I have 3.4-RELEASE installed. It's a built-in CS sound card. I understand it would not work well, but I cannot even get it recognized by the kernel! Can somebody with this or similar model of laptop post his kernel config for sound? What else might I be missing? -- Stanislav Shalunov Internet2 Sex is the mathematics urge sublimated. -- M. C. Reed. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 14:38:22 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.gulp.org (mail.gulp.org [204.245.54.134]) by hub.freebsd.org (Postfix) with ESMTP id 07B9E37B424 for ; Thu, 31 Aug 2000 14:38:16 -0700 (PDT) Received: (from scarter@localhost) by mail.gulp.org (8.9.3/8.9.3) id OAA18645; Thu, 31 Aug 2000 14:38:13 -0700 (MST) (envelope-from scarter@gblx.net) X-Authentication-Warning: mail.gulp.org: scarter set sender to scarter@gblx.net using -f Date: Thu, 31 Aug 2000 14:38:13 -0700 From: Steve Carter To: stanislav shalunov Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: sound on IBM ThinkPad 600x 26455fu Message-ID: <20000831143813.A18592@gblx.net> References: <87snrlkufz.fsf@cain.internet2.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <87snrlkufz.fsf@cain.internet2.edu>; from shalunov@internet2.edu on Thu, Aug 31, 2000 at 05:10:56PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Install 4.1-RELEASE (the Crystal Audio chips in the Thinkpads are not supported under 3.x AFAIK) and use the following kernel options: options PNPBIOS device csa0 device pcm It works dandy ... -Steve * stanislav shalunov [000831 14:12]: > I'm trying to get sound to work on IBM ThinkPad 600x 26455fu. > It looks like I have tried every configuration I could find on the > archives, but the sound card is still not detected. > > I have 3.4-RELEASE installed. > > It's a built-in CS sound card. I understand it would not work well, > but I cannot even get it recognized by the kernel! > > Can somebody with this or similar model of laptop post his kernel > config for sound? What else might I be missing? > > -- > Stanislav Shalunov Internet2 > > Sex is the mathematics urge sublimated. -- M. C. Reed. > > > 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 Thu Aug 31 15:52: 4 2000 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 2728637B424 for ; Thu, 31 Aug 2000 15:52:02 -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 e7VMpwU24317; Thu, 31 Aug 2000 15:51:58 -0700 (PDT) Message-Id: <200008312251.e7VMpwU24317@ptavv.es.net> To: Steve Carter Cc: stanislav shalunov , freebsd-mobile@FreeBSD.ORG Subject: Re: sound on IBM ThinkPad 600x 26455fu In-reply-to: Your message of "Thu, 31 Aug 2000 14:38:13 PDT." <20000831143813.A18592@gblx.net> Date: Thu, 31 Aug 2000 15:51:58 -0700 From: "Kevin Oberman" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Date: Thu, 31 Aug 2000 14:38:13 -0700 > From: Steve Carter > Sender: owner-freebsd-mobile@FreeBSD.ORG > > Install 4.1-RELEASE (the Crystal Audio chips in the Thinkpads are not > supported under 3.x AFAIK) and use the following kernel options: > > options PNPBIOS > device csa0 > device pcm > > It works dandy ... I suspect that it does, but the csa driver is totally unneeded. The pcm driver is the one that does the job and that's all that is required. (Of course, the cost is just a bit of memory and kernel size.) The other requirement is ./MAKEDEV sndX, where 'X' is the number of the pcm interface from the boot. You can check dmesg to find out which one to use. 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 Aug 31 16:51:49 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rumba.clave.gr.jp (rumba.clave.gr.jp [202.248.115.186]) by hub.freebsd.org (Postfix) with ESMTP id 36E4537B42C for ; Thu, 31 Aug 2000 16:51:43 -0700 (PDT) Received: from localhost (rumba.clave.gr.jp [202.248.115.186]) by rumba.clave.gr.jp (8.9.3+3.2W/3.7W) with ESMTP id IAA07020; Fri, 1 Sep 2000 08:51:36 +0900 (JST) To: freebsd-mobile@FreeBSD.ORG Cc: insane@lunatic.oneinsane.net Subject: Re: USB In-Reply-To: <20000831065345.A76545@lunatic.oneinsane.net> References: <20000831065345.A76545@lunatic.oneinsane.net> X-Mailer: Mew version 1.94.2 on Emacs 20.7 / Mule 4.0 (HANANOEN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000901085008Z.mac@clave.gr.jp> Date: Fri, 01 Sep 2000 08:50:08 +0900 From: Masahide -mac- NODA X-Dispatcher: imput version 20000228(IM140) Lines: 14 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org insane> I am trying to get USB working on my laptop (Fujitsu E-360) running insane> 4.1-STABLE. Here is a snippit from dmesg concerning USB: insane> uhci0: irq 9 at device 7.2 on pci0 insane> uhci0: Could not map ports insane> device_probe_and_attach: uhci0 attach returned 6 Set BIOS to "PNP OS" is "NO", if you can. I had meet same problem on Fujitsu Laptop, and I solve it. Sorry my broken English. -- mac@clave.gr.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Aug 31 21: 1:17 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from public.bta.net.cn (public.bta.net.cn [202.96.0.97]) by hub.freebsd.org (Postfix) with SMTP id EBE0E37B424; Thu, 31 Aug 2000 21:01:12 -0700 (PDT) Received: from netrinsics.com([202.108.133.5]) by public.bta.net.cn(JetMail 2.5.3.0) with SMTP id jm1b39af2ccd; Fri, 1 Sep 2000 04:01:28 -0000 Received: (from robinson@localhost) by netrinsics.com (8.9.3/8.9.3) id MAA00589; Fri, 1 Sep 2000 12:02:26 +0800 (+0800) (envelope-from robinson) Date: Fri, 1 Sep 2000 12:02:26 +0800 (+0800) From: Michael Robinson Message-Id: <200009010402.MAA00589@netrinsics.com> To: freebsd-mobile@FreeBSD.ORG Subject: Re: 4.1-STABLE locks up TP770X hard on "ed" attach Cc: jmb@FreeBSD.ORG, ps@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On August 3, I wrote: >I have a Thinkpad 770X. Under 4.0-STABLE (ca. mid-July), everything works >great. With current 4.1-STABLE sources, though, when I insert my PCMCIA >ethernet card, it locks up the system so hard even the power switch doesn't >work. > >The console messages are as follows: > > pccard: card inserted, slot 1 > pccardd[49]: Card "IBM Corp."("Ethernet") [0933495] [PC-NIC ENCC 990010759-001A] matched "IBM Corp."("Ethernet") [(null)][(null)] > pccardd[49]: Ether=08:00:5a:3a:a9:50 > ed1 at port 0x240-0x25f iomem 0xd4000-0xd7fff irq 9 slot 1 on pccard1 > >The part that it doesn't get to is this (from the 4.0-STABLE kernel): > > ed1: address 08:00:5a:3a:a9:50, type NE2000 (16 bit) I finally got some free time to dig into this, and discovered that revision 1.173.2.5 to if_ed.c cancelled out revision 1.170: revision 1.173.2.5 date: 2000/07/01 05:51:38; author: ps; state: Exp; lines: +10 -17 MFC: Only detect Linksys PCMCIA cards when in a pccard environment. revision 1.170 date: 1999/11/01 01:16:56; author: jmb; state: Exp; lines: +22 -18 rearrange order of tests for NE1000, NE2000, and Linksys cards. previous order caused computers with NE2000 cards to hang during boot. Specifically, the function ed_get_Linksys() causes the NE2000 to hang. In revision 1.170, this function was moved inside a conditional block. In revision 1.173.2.5, this function was moved out of the conditional block and into ed_pccard_attach() with no condition checking. Oops. Now all I have to do is figure out who broke my serial port, and I'll be back to where I was with FreeBSD 3.4 -Michael Robinson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 0:17:28 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mustang.nitrous.net (nitrous.net [63.78.15.50]) by hub.freebsd.org (Postfix) with ESMTP id B649D37B423 for ; Fri, 1 Sep 2000 00:17:15 -0700 (PDT) Received: (from denver@localhost) by mustang.nitrous.net (8.10.0/w00t-1.2) id e8171tj29696 for freebsd-mobile@freebsd.org; Fri, 1 Sep 2000 00:01:55 -0700 (MST) Date: Fri, 1 Sep 2000 00:01:55 -0700 From: Denver Maddux To: freebsd-mobile@freebsd.org Subject: Stinkpad 600E running 4.1 woes Message-ID: <20000901000155.A8180@nitrous.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Howdy. Sorry for the length of this, but I've recently upgraded my Thinkpad 600E from 3.4 w/ PAO to 4.1-RELEASE. It's working for most things, (sound, ethernet) but I'm having some problems with PCCard stuffs (go figure). So, I've got the Lucent Wavelan 802.11 IEEE card, which is working like a champ, and a Xircom 56T modem card... which is not working... or may be working but something else is hosed up. I had to play with the kernel config for quite a while to even get to this point, as where before upon insertion of the modem the system was locking up hard. I couldn't get any good output from it to determine the cause of the lockup, but I can assume it was IRQ related. Upon insertion of the card, I see: Aug 31 22:27:48 deviant pccardd[49]: Card "Xircom"("CreditCard Modem CM-56T") [CM-56T] [1.00] matched "Xircom" ("CreditCard Modem CM-56T") [(null)] [(null)] Aug 31 22:27:53 deviant /kernel: sio4 at port 0x2f8-0x2ff irq 3 slot 1 on pccard1 Aug 31 22:27:53 deviant /kernel: sio4: type 16550A with a bogus IIR_TXRDY register Aug 31 22:27:53 deviant pccardd[49]: sio4: Xircom (CreditCard Modem CM-56T) inserted. This looks fishy to me. When running 3.4 PAO the modem card was working just fine. It was being configured on sio3 though. From the old logs: Aug 22 11:16:41 deviant pccardd[55]: Card "Xircom"("CreditCard Modem CM-56T") [CM-56T] [1.00] has function ID 2 Aug 22 11:16:46 deviant /kernel: card0: assign sio3 iobase 0x2e8 irq 3 flags 0x80 Aug 22 11:16:46 deviant /kernel: sio3: type 16550A Aug 22 11:16:46 deviant root: PCMCIA Modem inserted I'm not sure if the "bogus" messages are anything to be worried about, but the confusion on my part is that sio4 is not configured in the kernel. So, I've installed minicom to see if I can talk to the modem, but I can't seem to find a working com port to do so. Accessing cuaa0 causes the system to freeze, and all other com ports give me the error: minicom: cannot open /dev/cuaa3: Device not configured Also noteworthy: I cannot boot the system with the card in. I can insert the card once the system is up, but I cannot gracefully power it down (pccardc power 1 0) and then power it up (pccardc power 1 1) without it locking the system hard. A twin laptop with the exact same configuration (but 32MB less memory) crashes when the card is inserted, period. It's using the same kernel config as this laptop. Below is output from boot -v and my kernel config. I have not changed my pccard.conf file significantly, other than to remove IRQ 5 (sound) from the available IRQs. I have tried using sio in polling mode, but that just makes things worse (wi0 won't work, get- wi0: No irq?!). Same goes for pcic in polling mode. Thanks for any help you can provide, -Denver # 4.1 kernel config for laptop machine i386 cpu I686_CPU ident DEVIANT maxusers 32 options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Enable FFS soft updates support options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, NFS required options CD9660 #ISO 9660 Filesystem options CD9660_ROOT #CD-ROM usable as root, CD9660 required options PROCFS #Process filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor options KTRACE #ktrace(1) support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores options P1003_1B #Posix P1003_1B real-time extensions options _KPOSIX_PRIORITY_SCHEDULING options ICMP_BANDLIM #Rate limit bad replies options KBD_INSTALL_CDEV # install a CDEV entry in /dev options MROUTING options TCPDEBUG options TCP_DROP_SYNFIN options TCP_RESTRICT_RST options "ICMP_BANDLIM" options INCLUDE_CONFIG_FILE options PCIC_RESUME_RESET options PNPBIOS device isa device pci # Floppy drives device fdc0 at isa? port IO_FD1 irq 6 drq 2 device fd0 at fdc0 drive 0 # ATA and ATAPI devices device ata0 at isa? port IO_WD1 irq 14 device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives options ATA_STATIC_ID #Static device numbering options ATA_ENABLE_ATAPI_DMA #Enable DMA on ATAPI devices # atkbdc0 controls both the keyboard and the PS/2 mouse device atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 flags 0x1 device psm0 at atkbdc? irq 12 device vga0 at isa? # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? flags 0x100 # Floating point support - do not disable. device npx0 at nexus? port IO_NPX irq 13 # Power management support (see LINT for more options) #device apm0 at nexus? flags 0x20 device apm0 at nexus? # PCCARD (PCMCIA) support device card device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 #device pcic1 at isa? irq 11 port 0x3e2 iomem 0xd4000 disable # Serial (COM) ports #device sio device sio0 at isa? port IO_COM1 flags 0x10 irq 4 device sio1 at isa? port IO_COM2 irq 3 device sio2 at isa? disable port IO_COM3 irq 5 device sio3 at isa? disable port IO_COM4 irq 9 # Parallel port device ppc device ppbus # Parallel port bus (required) device lpt # Printer device ppi # Parallel port interface device # ISA Ethernet NICs. device ep # WaveLAN/IEEE 802.11 wireless NICs. Note: the WaveLAN/IEEE really # exists only as a PCMCIA device, so there is no ISA attatement needed # and resources will always be dynamically assigned by the pccard code. device wi # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device ppp 1 # Kernel PPP pseudo-device tun # Packet tunnel. pseudo-device pty 256 # Pseudo-ttys (telnet etc) # The `bpf' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! pseudo-device bpf #Berkeley packet filter # Audio support device pcm ---------------------------------------------------------- Copyright (c) 1992-2000 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.1-RELEASE #0: Thu Aug 31 22:13:00 MST 2000 root@deviant:/usr/src/sys/compile/DEVIANT Calibrating clock(s) ... TSC clock: 297779735 Hz, i8254 clock: 1193159 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 II/Pentium II Xeon/Celeron (297.79-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x66a Stepping = 10 Features=0x187f9ff real memory = 167575552 (163648K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x0032a000 - 0x09fc7fff, 164225024 bytes (40094 pages) config> en pcic1 No such device: pcic1 Invalid command or syntax. Type `?' for help. config> po pcic1 0x3e2 No such device: pcic1 Invalid command or syntax. Type `?' for help. config> ir pcic1 11 No such device: pcic1 Invalid command or syntax. Type `?' for help. config> iom pcic1 0xd4000 No such device: pcic1 Invalid command or syntax. Type `?' for help. config> f pcic1 0 No such device: pcic1 Invalid command or syntax. Type `?' for help. config> q avail memory = 159686656 (155944K bytes) bios32: Found BIOS32 Service Directory header at 0xc00fd800 bios32: Entry = 0xfd820 (c00fd820) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x0 pnpbios: Found PnP BIOS data at 0xc00fe700 pnpbios: Entry = f0000:e724 Rev = 1.0 pnpbios: Event flag at 415 Other BIOS signatures found: ACPI: 000fd6e0 Preloaded elf kernel "kernel" at 0xc0311000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc03110a8. Pentium Pro MTRR support enabled pci_open(1): mode 1 addr port (0x0cf8) is 0x000038c8 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) npx0: on motherboard npx0: INT 16 interface apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 pci_open(1): mode 1 addr port (0x0cf8) is 0x00000000 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=71908086) 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 40000000, 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=0xac1d, revid=0x00 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=4 secondarybus=2 intpin=a, irq=11 map[10]: type 1, range 32, base 50102000, size 12 found-> vendor=0x104c, dev=0xac1d, revid=0x00 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=7 secondarybus=5 intpin=b, irq=11 map[10]: type 1, range 32, base 50101000, size 12 found-> vendor=0x1013, dev=0x6001, revid=0x01 class=04-01-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 50100000, size 12 map[14]: type 1, range 32, base 50000000, size 20 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 0000fcf0, 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 00008400, size 5 found-> vendor=0x8086, dev=0x7113, revid=0x02 class=06-80-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[90]: type 1, range 32, base 0000efa0, size 4 pci0: on pcib0 pcib1: at device 1.0 on pci0 found-> vendor=0x10c8, dev=0x0005, revid=0x12 class=03-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base d0000000, size 24 map[14]: type 1, range 32, base 70000000, size 22 map[18]: type 1, range 32, base 70400000, size 20 pci1: on pcib1 pci1: (vendor=0x10c8, dev=0x0005) at 0.0 irq 11 pcic-pci0: mem 0x50102000-0x50102fff irq 11 at device 2.0 on pci0 pcic-pci0: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][CSC parallel isa irq] pcic-pci0: Legacy address set to 0x3e0 PCI Config space: 00: ac1d104c 02100007 06070000 0082a808 10: 50102000 020000a0 b0040200 00000000 20: 00000000 00000000 00000000 00000000 30: 00000000 00000000 00000000 03c0010b 40: 00eb1014 000003e1 00000000 00000000 50: 00000000 00000000 00000000 00000000 60: 00000000 00000000 00000000 00000000 70: 00000000 00000000 00000000 00000000 80: 00449060 00000000 01818948 fba97543 90: 606282c0 00000000 00000000 00000000 Cardbus Socket registers: 00: 0000000f: 00000000: 30000510: 00000000: 10: 00000000: 00000000: 00000000: 00000000: ExCa registers: 00: 83 0c 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10: 00 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 pcic-pci1: mem 0x50101000-0x50101fff irq 11 at device 2.1 on pci0 pcic-pci1: TI12XX PCI Config Reg: [ring enable][speaker enable][pwr save][CSC parallel isa irq] PCI Config space: 00: ac1d104c 02100007 06070000 0082a808 10: 50101000 020000a0 b0070500 00000000 20: 00000000 00000000 00000000 00000000 30: 00000000 00000000 00000000 03c0020b 40: 00eb1014 000003e1 00000000 00000000 50: 00000000 00000000 00000000 00000000 60: 00000000 00000000 00000000 00000000 70: 00000000 00000000 00000000 00000000 80: 00449060 00000000 01818948 fba97543 90: 606282c0 00000000 00000000 00000000 Cardbus Socket registers: 00: 00000000: 00000000: 30000306: 00000000: 10: 00000000: 00000000: 00000000: 00000000: ExCa registers: 00: 83 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 10: 00 00 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 csa0: mem 0x50000000-0x500fffff,0x50100000-0x50100fff irq 11 at device 6.0 on pci0 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: iobase=0x01f0 altiobase=0x03f6 bmaddr=0xfcf0 ata0: mask=03 status0=50 status1=00 ata0: mask=03 status0=50 status1=00 ata0: devices = 0x1 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0xfcf8 ata1: mask=00 status0=ff status1=ff ata1: probe allocation failed pci0: (vendor=0x8086, dev=0x7112) at 7.2 irq 11 chip1: port 0xefa0-0xefaf at device 7.3 on pci0 pnpbios: 22 devices, largest 980 bytes PNP0000: adding fixed io range 0x20-0x21, size=0x2, align=0x1 PNP0000: adding fixed io range 0xa0-0xa1, size=0x2, align=0x1 PNP0000: adding irq mask 00x4 PNP0000: end config pnpbios: handle 0 device ID PNP0000 (0000d041) PNP0200: adding fixed io range 0-0xf, size=0x10, align=0x1 PNP0200: adding fixed io range 0x80-0x8f, size=0x10, align=0x1 PNP0200: adding fixed io range 0xc0-0xdf, size=0x20, align=0x1 PNP0200: adding dma mask 0x10 PNP0200: end config pnpbios: handle 1 device ID PNP0200 (0002d041) PNP0100: adding irq mask 00x1 PNP0100: adding fixed io range 0x40-0x43, size=0x4, align=0x1 PNP0100: end config pnpbios: handle 2 device ID PNP0100 (0001d041) PNP0b00: adding irq mask 0x100 PNP0b00: adding fixed io range 0x70-0x73, size=0x4, align=0x1 PNP0b00: end config pnpbios: handle 3 device ID PNP0b00 (000bd041) PNP0800: adding fixed io range 0x61-0x61, size=0x1, align=0x1 PNP0800: end config pnpbios: handle 4 device ID PNP0800 (0008d041) PNP0303: adding irq mask 00x2 PNP0303: adding fixed io range 0x60-0x60, size=0x1, align=0x1 PNP0303: adding fixed io range 0x64-0x64, size=0x1, align=0x1 PNP0303: end config pnpbios: handle 5 device ID PNP0303 (0303d041) IBM3780: adding irq mask 0x1000 IBM3780: end config pnpbios: handle 6 device ID IBM3780 (80374d24) PNP0c04: adding fixed io range 0xf0-0xff, size=0x10, align=0x1 PNP0c04: adding irq mask 0x2000 PNP0c04: end config pnpbios: handle 7 device ID PNP0c04 (040cd041) PNP0700: adding irq mask 0x40 PNP0700: adding io range 0x3f0-0x3f5, size=0x6, align=0x80 PNP0700: adding dma mask 0x4 PNP0700: end config pnpbios: handle 8 device ID PNP0700 (0007d041) PNP0a03: adding io range 0xcf8-0xcff, size=0x8, align=0 PNP0a03: end config pnpbios: handle 9 device ID PNP0a03 (030ad041) PNP0c02: adding io range 0x22-0x22, size=0x1, align=0 PNP0c02: adding io range 0x2e-0x2f, size=0x2, align=0 PNP0c02: adding io range 0x92-0x92, size=0x1, align=0 PNP0c02: adding io range 0xb2-0xb3, size=0x2, align=0 PNP0c02: adding io range 0x4d0-0x4d1, size=0x2, align=0 PNP0c02: adding io range 0x15e0-0x15ef, size=0x10, align=0 PNP0c02: adding io range 0xef00-0xefaf, size=0xb0, align=0 PNP0c02: adding fixed memory32 range 0-0x9ffff, size=0xa0000 PNP0c02: adding fixed memory32 range 0xf0000-0xfffff, size=0x10000 PNP0c02: adding fixed memory32 range 0x100000-0x9ffffff, size=0x9f00000 PNP0c02: adding fixed memory32 range 0xffff0000-0xffffffff, size=0x10000 PNP0c02: end config pnpbios: handle 10 device ID PNP0c02 (020cd041) PNP0400: adding irq mask 0x80 PNP0400: adding io range 0x3bc-0x3bf, size=0x4, align=0 PNP0400: end config pnpbios: handle 11 device ID PNP0400 (0004d041) PNP0501: adding irq mask 0000 PNP0501: adding io range 0-0xffffffff, size=0, align=0 PNP0501: end config pnpbios: handle 13 device ID PNP0501 (0105d041) CSC0100: adding io range 0x530-0x537, size=0x8, align=0 CSC0100: adding io range 0x388-0x38b, size=0x4, align=0 CSC0100: adding io range 0x220-0x233, size=0x14, align=0x20 CSC0100: adding irq mask 0x20 CSC0100: adding dma mask 0x2 CSC0100: adding dma mask 0x1 CSC0100: end config pnpbios: handle 14 device ID CSC0100 (0001630e) CSC0110: adding io range 0x538-0x53f, size=0x8, align=0 CSC0110: end config pnpbios: handle 15 device ID CSC0110 (1001630e) CSC0101: adding io range 0x200-0x207, size=0x8, align=0 CSC0101: end config pnpbios: handle 16 device ID CSC0101 (0101630e) CSC0103: adding io range 0-0xffffffff, size=0, align=0x10 CSC0103: adding irq mask 0000 CSC0103: end config pnpbios: handle 17 device ID CSC0103 (0301630e) IBM3765: adding io range 0x130-0x13f, size=0x10, align=0 IBM3765: adding io range 0x2f8-0x2ff, size=0x8, align=0 IBM3765: adding irq mask 00x8 IBM3765: adding irq mask 0x400 IBM3765: adding dma mask 0x80 IBM3765: end config pnpbios: handle 18 device ID IBM3765 (65374d24) IBM0071: adding irq mask 0000 IBM0071: adding io range 0-0xffffffff, size=0, align=0x1 IBM0071: adding dma mask 00 IBM0071: end config pnpbios: handle 19 device ID IBM0071 (71004d24) PNP0e03: adding io range 0x3e0-0x3e1, size=0x2, align=0 PNP0e03: end config pnpbios: handle 20 device ID PNP0e03 (030ed041) PNP0680: adding irq mask 0x4000 PNP0680: adding io range 0x1f0-0x1f7, size=0x8, align=0 PNP0680: adding io range 0x3f6-0x3f7, size=0x2, align=0 PNP0680: adding io range 0xfcf0-0xfcf7, size=0x8, align=0 PNP0680: end config pnpbios: handle 23 device ID PNP0680 (8006d041) PNP0c02: skipping empty range PNP0c02: end config pnpbios: handle 27 device ID PNP0c02 (020cd041) 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 ata-: ata0 exists, using next available unit number isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold atkbdc0: at port 0x60,0x64 on isa0 atkbd0: flags 0x1 irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0045 atkbd: keyboard ID 0x54ab (2) kbdc: RESET_KBD return code:00fa kbdc: RESET_KBD status:00aa kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x1, flags:0x3d0000 psm0: current command byte:0045 kbdc: TEST_AUX_PORT status:0000 kbdc: RESET_AUX return code:00fa kbdc: RESET_AUX status:00aa kbdc: RESET_AUX ID:0000 psm: status 00 02 64 psm: status 00 00 64 psm: status 00 03 64 psm: status 00 03 64 psm: data 08 00 00 psm: status 10 00 64 psm: status 00 02 64 psm: data 08 00 00 psm: status 00 02 64 psm0: irq 12 on atkbdc0 psm0: model Generic PS/2 mouse, device ID 0-00, 2 buttons psm0: config:00000000, flags:00000000, packet size:3 psm0: syncmask:c0, syncbits:00 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 fb0: vga0, vga, type:VGA (5), flags:0x7007f fb0: port:0x3c0-0x3df, crtc:0x3d4, mem:0xa0000 0x20000 fb0: init mode:24, bios mode:3, current mode:24 fb0: window:0xc00b8000 size:32k gran:32k, buf:0 size:32k VGA parameters upon power-up 50 18 10 00 00 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 07 80 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff VGA parameters in BIOS for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff EGA/VGA parameters to be used for mode 24 50 18 10 00 10 00 03 00 02 67 5f 4f 50 82 55 81 bf 1f 00 4f 0d 0e 00 00 00 00 9c 8e 8f 28 1f 96 b9 a3 ff 00 01 02 03 04 05 14 07 38 39 3a 3b 3c 3d 3e 3f 0c 00 0f 08 00 00 00 00 00 10 0e 00 ff sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd0, terminal emulator: sc (syscons terminal) pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 sio0: configured irq 4 not in bitmap of probed irqs 0 sio0: irq maps: 0x445 0x445 0x445 0x445 sio0: probe failed test(s): 0 1 2 4 6 7 9 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 8250 sio1: configured irq 3 not in bitmap of probed irqs 0 sio1: irq maps: 0x41 0x41 0x41 0x41 sio1: probe failed test(s): 0 1 2 4 6 7 9 sio2: not probed (disabled) sio3: not probed (disabled) isa_probe_children: probing PnP devices unknown: can't assign resources unknown0: at port 0-0xf,0x80-0x8f,0xc0-0xdf drq 4 on isa0 unknown1: at port 0x40-0x43 irq 0 on isa0 unknown2: at port 0x70-0x73 irq 8 on isa0 unknown3: at port 0x61 on isa0 unknown: can't assign resources unknown: can't assign resources unknown4: at port 0xf0-0xff irq 13 on isa0 unknown: can't assign resources unknown5: at port 0xcf8-0xcff on isa0 unknown6: at port 0x22,0x2e-0x2f,0x92,0xb2-0xb3,0x4d0-0x4d1,0x15e0-0x15ef,0xef00-0xefaf iomem 0-0x9ffff,0xf0000-0xfffff,0x100000-0x9ffffff,0xffff0000-0xffffffff on isa0 ppc0: using normal I/O port range ppc0: SPP ppc0: at port 0x3bc-0x3bf irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port unknown: can't assign resources pcm0: at port 0x530-0x537,0x388-0x38b,0x220-0x233 irq 5 drq 1,0 on isa0 pcm: setmap 30000, ff00; 0xc8751000 -> 30000 pcm: setmap 40000, ff00; 0xc8761000 -> 40000 unknown7: at port 0x538-0x53f on isa0 unknown8: at port 0x200-0x207 on isa0 unknown: can't assign resources unknown: can't assign resources unknown: can't assign resources unknown9: at port 0x3e1-0x3e2 on isa0 unknown: can't assign resources unknown10: on isa0 BIOS Geometries: 0:03df7f3f 0..991=992 cylinders, 0..127=128 heads, 1..63=63 sectors 0 accounted for Device configuration finished. bpf: ppp0 attached new masks: bio 684040, tty 6318b2, net 6718b2 bpf: lo0 attached ata0-master: success setting up UDMA2 mode on PIIX4 chip ad0: ATA-4 disk at ata0 as master ad0: 3909MB (8007552 sectors), 7944 cyls, 16 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 1 depth queue, UDMA33 ad0: piomode=4 dmamode=2 udmamode=2 cblid=0 Creating DISK ad0 Creating DISK wd0 Mounting root from ufs:/dev/ad0s1a ad0s1: type 0xa5, start 63, end = 4201343, size 4201281 : OK ad0s2: type 0xa5, start 4201344, end = 8007551, size 3806208 : OK start_init: trying /sbin/init pccard: card inserted, slot 0 pcic: I/O win 0 flags 15 240-27f pcic: I/O win 0 flags 5 240-27f wi0: at port 0x240-0x27f irq 3 slot 0 on pccard0 pcic: I/O win 0 flags 15 240-27f wi0: Ethernet address: 00:60:1d:f2:c9:15 bpf: wi0 attached Linux-ELF exec handler installed To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 2:25: 6 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lavender.sanpei.org (nat06.st.keio.ac.jp [131.113.17.16]) by hub.freebsd.org (Postfix) with ESMTP id 049FF37B424; Fri, 1 Sep 2000 02:24:58 -0700 (PDT) Received: (from sanpei@localhost) by lavender.sanpei.org (8.11.0/3.7W) id e819Op406611; Fri, 1 Sep 2000 18:24:51 +0900 (JST) Date: Fri, 1 Sep 2000 18:24:51 +0900 (JST) Message-Id: <200009010924.e819Op406611@lavender.sanpei.org> To: robinson@netrinsics.com Cc: freebsd-mobile@FreeBSD.ORG, jmb@FreeBSD.ORG, ps@FreeBSD.ORG Subject: Re: 4.1-STABLE locks up TP770X hard on "ed" attach In-Reply-To: Your message of "Fri, 1 Sep 2000 13:02:26 JST". <200009010402.MAA00589@netrinsics.com> From: sanpei@sanpei.org (MIHIRA Yoshiro) X-Mailer: mnews [version 1.21] 1997-12/23(Tue) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> I finally got some free time to dig into this, and discovered that >> revision 1.173.2.5 to if_ed.c cancelled out revision 1.170: >> >> revision 1.173.2.5 >> date: 2000/07/01 05:51:38; author: ps; state: Exp; lines: +10 -17 >> MFC: Only detect Linksys PCMCIA cards when in a pccard environment. >> >> revision 1.170 >> date: 1999/11/01 01:16:56; author: jmb; state: Exp; lines: +22 -18 >> rearrange order of tests for NE1000, NE2000, and Linksys >> cards. previous order caused computers with NE2000 cards >> to hang during boot. >> >> Specifically, the function ed_get_Linksys() causes the NE2000 to hang. In >> revision 1.170, this function was moved inside a conditional block. In >> revision 1.173.2.5, this function was moved out of the conditional block >> and into ed_pccard_attach() with no condition checking. I have same problem with PLANET-SMART-COM-CREDITCARD-2000 PC-Card Ether(NE2000 compaatible). I hope to fix this problem. Does someone have any plan to fix? Thank you. ---- MIHIRA Yoshiro Yokohama, Japan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 3:44: 9 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.xnet.com (quake.xnet.com [198.147.221.67]) by hub.freebsd.org (Postfix) with ESMTP id E238C37B423; Fri, 1 Sep 2000 03:44:05 -0700 (PDT) Received: from dcarmich.xnet.com (dcarmich.xnet.com [205.243.153.129]) by mail.xnet.com (8.9.3+Sun/XNet-3.0R) with ESMTP id FAA26495; Fri, 1 Sep 2000 05:44:03 -0500 (CDT) Received: (from dcarmich@localhost) by dcarmich.xnet.com (8.10.2/8.10.2) id e815aMZ04262; Fri, 1 Sep 2000 05:36:22 GMT From: Douglas Carmichael Message-Id: <200009010536.e815aMZ04262@dcarmich.xnet.com> Subject: Best laptop for FreeBSD 4.x? To: freebsd-questions@freebsd.org Date: Fri, 1 Sep 2000 05:36:21 +0000 (/etc/localtime) Cc: freebsd-mobile@freebsd.org Reply-To: dcarmich@xnet.com X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What laptop model would work best with FreeBSD 4.x? (I tried installing FreeBSD 4.0 on my NEC Versa LX, but it would not recognize any PCMCIA cards.) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 12:21:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from post.mail.nl.demon.net (post-11.mail.nl.demon.net [194.159.73.21]) by hub.freebsd.org (Postfix) with ESMTP id 4325937B424 for ; Fri, 1 Sep 2000 12:21:21 -0700 (PDT) Received: from [212.238.54.101] (helo=freebie.demon.nl) by post.mail.nl.demon.net with smtp (Exim 3.14 #4) id 13UwNM-000Hbx-00; Fri, 01 Sep 2000 19:21:20 +0000 Received: (from wkb@localhost) by freebie.demon.nl (8.9.3/8.9.3) id UAA02944; Fri, 1 Sep 2000 20:43:30 +0200 (CEST) (envelope-from wkb) Date: Fri, 1 Sep 2000 20:43:30 +0200 From: Wilko Bulte To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Compaq Armada E700 on -current Message-ID: <20000901204330.A2916@freebie.demon.nl> References: <20000827140325.A1480@freebie.demon.nl> <200008300750.BAA14335@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <200008300750.BAA14335@harmony.village.org>; from imp@village.org on Wed, Aug 30, 2000 at 01:50:06AM -0600 X-OS: FreeBSD 4.1-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Aug 30, 2000 at 01:50:06AM -0600, Warner Losh wrote: > In message <20000827140325.A1480@freebie.demon.nl> Wilko Bulte writes: > : PC card installed also hangs. Interestingly enough the lockup occurs > : regardless whether pccardd runs or not. I've tested with a Psion V34 modem > : card and an Adaptec 1460B SCSI card. > > Hmmmm. Sounds like an interrupt problem. I would have suggested that > pccardd is causng the problem, but it sounds like the cardbus bridge > is generating an interrupt that isn't fielded. beyond that, i'm not > sure what is going on. Well, as it has a working on-board fxp ethernet I'm not too worried about it. Only the internal Winmodem (ugh) would need to be replaced/sidestepped by a PC card. I'll keep an eye on -current updates to see if ongoing development of Cardbus fixes it. -- Wilko Bulte wilko@freebsd.org Arnhem, the Netherlands To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 12:58:48 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.osd.bsdi.com (adsl-63-202-177-115.dsl.snfc21.pacbell.net [63.202.177.115]) by hub.freebsd.org (Postfix) with ESMTP id 4607337B423; Fri, 1 Sep 2000 12:58:37 -0700 (PDT) Received: from mass.osd.bsdi.com (localhost [127.0.0.1]) by mass.osd.bsdi.com (8.9.3/8.9.3) with ESMTP id MAA05534; Fri, 1 Sep 2000 12:39:57 -0700 (PDT) (envelope-from msmith@mass.osd.bsdi.com) Message-Id: <200009011939.MAA05534@mass.osd.bsdi.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: Ron Rosson Cc: wpaul@freebsd.org, mobile@freebsd.org Subject: Re: USB In-reply-to: Your message of "Fri, 01 Sep 2000 08:56:24 PDT." <20000901085624.A8328@lunatic.oneinsane.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 01 Sep 2000 12:39:57 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > > Can you instead give me the output of 'pciconf -r pci0:7:2 4' ? I would > > hazard a guess that the least significant bit will be zero, indicating > > that I/O port access is not enabled for this device, and we don't honour > > the register allocation in that case. > > > > mental# pciconf -r pci0:7:2 4 > 0x02800000 > > Hope this helps Yup. Your PCI BIOS is buggy; it's assigning resources to the device but not bothering to set the 'enable' bit for the resource type. You can try hacking around this for now, Bill will probably fix it properly in a few days. In /sys/pci/pci.c around line 1080 you have this code (without the line numbers, obviously 8): 1082 if (type == SYS_RES_IOPORT && !pci_porten(cfg)) 1083 return 1; 1084 if (type == SYS_RES_MEMORY && !pci_memen(cfg)) 1085 return 1; Change it to read: if (type == SYS_RES_IOPORT && !pci_porten(cfg)) pci_cfgwrite(cfg, PCIR_COMMAND, cfg->cmdreg | PCIM_CMD_PORTEN, 2); if (type == SYS_RES_MEMORY && !pci_memen(cfg)) pci_cfgwrite(cfg, PCIR_COMMAND, cfg->cmdreg | PCIM_CMD_MEMEN, 2); This ignores the fact that the BIOS hasn't enabled the relevant access types, and takes care of it instead. Let me know how you go with this. Regards, -- ... every activity meets with opposition, everyone who acts has his rivals and unfortunately opponents also. But not because people want to be opponents, rather because the tasks and relationships force people to take different points of view. [Dr. Fritz Todt] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 13:34:22 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mout1.silyn-tek.de (mout1.silyn-tek.de [194.25.165.69]) by hub.freebsd.org (Postfix) with ESMTP id DE9C837B423 for ; Fri, 1 Sep 2000 13:34:19 -0700 (PDT) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13UxVu-0007AA-00; Fri, 01 Sep 2000 22:34:14 +0200 Received: from p3e9e2659.dip0.t-ipconnect.de ([62.158.38.89] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13UxVo-0001aB-00; Fri, 01 Sep 2000 22:34:10 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id A12A3AB91; Fri, 1 Sep 2000 22:35:57 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id CD6F214A9B; Fri, 1 Sep 2000 22:33:47 +0200 (CEST) Date: Fri, 1 Sep 2000 22:33:47 +0200 To: Warner Losh Cc: Christian Peter Gruendemann , freebsd-mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000901223347.A2486@cichlids.cichlids.com> References: <200008280358.VAA98764@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: <200008280358.VAA98764@harmony.village.org>; from imp@village.org on Sun, Aug 27, 2000 at 09:58:36PM -0600 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. From: alex@big.endian.de (Alexander Langer) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Warner Losh (imp@village.org): > There's a special program that kludges the card into a state that > should work. Someone should integrate that into the driver so that How is this tool called? Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 13:58:33 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mout2.silyn-tek.de (mout2.silyn-tek.de [194.25.165.70]) by hub.freebsd.org (Postfix) with ESMTP id 5BDBF37B422 for ; Fri, 1 Sep 2000 13:58:30 -0700 (PDT) Received: from [192.168.32.34] (helo=mx2.silyn-tek.de) by mout2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13UxtI-0007oN-00; Fri, 01 Sep 2000 22:58:24 +0200 Received: from p3e9e2659.dip0.t-ipconnect.de ([62.158.38.89] helo=neutron.cichlids.com) by mx2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13UxtE-0001uu-00; Fri, 01 Sep 2000 22:58:20 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id B4050AB91; Fri, 1 Sep 2000 23:00:16 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id C673614A9B; Fri, 1 Sep 2000 22:58:18 +0200 (CEST) Date: Fri, 1 Sep 2000 22:58:18 +0200 From: Alexander Langer To: Warner Losh Cc: Christian Peter Gruendemann , freebsd-mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000901225818.A3395@cichlids.cichlids.com> References: <200008280358.VAA98764@harmony.village.org> <20000901223347.A2486@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000901223347.A2486@cichlids.cichlids.com>; from alex@big.endian.de on Fri, Sep 01, 2000 at 10:33:47PM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Alexander Langer (alex@big.endian.de): > > There's a special program that kludges the card into a state that > > should work. Someone should integrate that into the driver so that > How is this tool called? n/m, the answer was in my September-Archiv already :) Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Sep 1 16:41:50 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from karon.dynas.se (karon.dynas.se [192.71.43.4]) by hub.freebsd.org (Postfix) with SMTP id EB8E137B422 for ; Fri, 1 Sep 2000 16:41:47 -0700 (PDT) Received: (qmail 17061 invoked from network); 1 Sep 2000 23:41:46 -0000 Received: from spirit.sto.dynas.se (HELO spirit.dynas.se) (172.16.1.10) by karon.sto.dynas.se with SMTP; 1 Sep 2000 23:41:46 -0000 Received: (qmail 9061 invoked from network); 1 Sep 2000 23:41:48 -0000 Received: from explorer.rsa.com (10.81.217.59) by spirit.dynas.se with SMTP; 1 Sep 2000 23:41:48 -0000 Received: (from mikko@localhost) by explorer.rsa.com (8.9.3/8.9.3) id QAA00811; Fri, 1 Sep 2000 16:41:44 -0700 (PDT) (envelope-from mikko) Date: Fri, 1 Sep 2000 16:41:44 -0700 (PDT) From: Mikko Tyolajarvi Message-Id: <200009012341.QAA00811@explorer.rsa.com> To: alex@big.endian.de Cc: freebsd-mobile@freebsd.org Subject: Re: Netgear FA410TX device time out Newsgroups: local.freebsd-mobile References: <200008280358.VAA98764@harmony.village.org>; from imp@village.org on Sun, Aug 27, 2000 at 09:58:36PM -0600 <20000901223347.A2486@cichlids.cichlids.com> X-Newsreader: NN version 6.5.6 (NOV) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org alex@big.endian.de (Alexander Langer): >Thus spake Warner Losh (imp@village.org): >> There's a special program that kludges the card into a state that >> should work. Someone should integrate that into the driver so that >How is this tool called? "fa_select". Search the -mobile archives for it. I did a minor effort to include some black magic into the driver, which made the card work for me, but I don't think it will work with all auto-negotiating switches and other funky network equipment. /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 Fri Sep 1 22:41:15 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from snafu.adept.org (adsl-63-201-63-44.dsl.snfc21.pacbell.net [63.201.63.44]) by hub.freebsd.org (Postfix) with ESMTP id 8208E37B42C for ; Fri, 1 Sep 2000 22:41:08 -0700 (PDT) Received: by snafu.adept.org (Postfix, from userid 1002) id 50E5B9EE01; Fri, 1 Sep 2000 22:40:28 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by snafu.adept.org (Postfix) with ESMTP id 4BBDA9B001 for ; Fri, 1 Sep 2000 22:40:28 -0700 (PDT) Date: Fri, 1 Sep 2000 22:40:28 -0700 (PDT) From: Sandy Le To: freebsd-mobile@freebsd.org Subject: unsubscribe Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org unsubscribe freebsd-mobile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 1:42:24 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from zmail6.easynet.fr (email.easynet.fr [195.114.64.207]) by hub.freebsd.org (Postfix) with SMTP id A5B1C37B43F for ; Sat, 2 Sep 2000 01:42:21 -0700 (PDT) Received: (qmail 92084 invoked from network); 2 Sep 2000 08:42:19 -0000 Received: from mailgate3.easynet.fr (192.168.1.4) by mailserver.easynet.fr with QMQP; 2 Sep 2000 08:42:19 -0000 Received: from adsl-92-1-170.pops.easynet.fr (HELO vobiscum.styx.org) (212.11.34.170) by mrelay3.easynet.fr with SMTP; 2 Sep 2000 08:46:23 -0000 Received: (from marc@localhost) by vobiscum.styx.org (8.11.0/8.9.3/ - 6/08/98) id e828fsx01302; Sat, 2 Sep 2000 10:41:54 +0200 (CEST) (envelope-from marc) Date: Sat, 2 Sep 2000 10:41:53 +0200 From: Marc Fonvieille To: Alexander Langer Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000902104153.A646@vobiscum.styx.org> References: <200008280358.VAA98764@harmony.village.org> <20000901223347.A2486@cichlids.cichlids.com> <20000901225818.A3395@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000901225818.A3395@cichlids.cichlids.com>; from alex@big.endian.de on Fri, Sep 01, 2000 at 10:58:18PM +0200 X-Useless-Header: Black Metal inc. X-Operating-System: FreeBSD 4.1-STABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 01, 2000 at 10:58:18PM +0200, Alexander Langer wrote: > Thus spake Alexander Langer (alex@big.endian.de): > > > > There's a special program that kludges the card into a state that > > > should work. Someone should integrate that into the driver so that > > How is this tool called? > > n/m, the answer was in my September-Archiv already :) > > Alex Have a look to http://www.freebsddiary.org/last-netgear.html i put all instructions there. Marc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 4:24:10 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from serv.polbox.pl (serv.polbox.pl [195.116.5.2]) by hub.freebsd.org (Postfix) with ESMTP id 14E9E37B43C for ; Sat, 2 Sep 2000 04:24:06 -0700 (PDT) Received: from krypta.office.polbox.pl (krypta.office.polbox.pl [213.241.6.35]) by serv.polbox.pl id NAA02828 for ; Sat, 2 Sep 2000 13:23:59 +0200 Date: Sat, 2 Sep 2000 13:26:57 +0200 (CEST) From: Adam Obszynski X-Sender: awo@krypta.office.polbox.pl To: freebsd-mobile@freebsd.org Subject: PCMCIA - Proxim radio/lan card Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-2 Content-Transfer-Encoding: QUOTED-PRINTABLE Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org is some body roun correctly symphony or rangelan2 series ? --=20 POLBOX ON-Line Network Admin (CCDA, CCNA 2.0) "Gdyby=B6my potrafili przenikn=B1=E6 wzrokiem ziemi=EA od bie-" "guna do bieguna albo naszych st=F3p po antypody, w" "=B6rodku z przera=BFeniem ujrzeliby=B6my gmach straszliwie po-" "dziurawiony szczelinami i pieczarami." http://www.szczecin.mtl.pl/~awo/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 4:46:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id E3B8137B422 for ; Sat, 2 Sep 2000 04:46:54 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id HAA07121 for mobile@freebsd.org; Sat, 2 Sep 2000 07:46:54 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200009021146.HAA07121@blackhelicopters.org> Subject: pccardd woes To: mobile@freebsd.org Date: Sat, 2 Sep 2000 07:46:54 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, The system is a new Toshiba laptop (2210CDT), with 4.1-release. It picks up pcic0 on boot, in polling mode. I have a variety of NICs. No matter which one I put in, pccardc dumpcis gives me: code=0xff(terminator), length=0 Anyone recognize this? I can copy over the dmesg if you need it, but since I'm not on the net I was hoping someone would know it. Thanks, Michael -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 7:50:14 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mout2.silyn-tek.de (mout2.silyn-tek.de [194.25.165.70]) by hub.freebsd.org (Postfix) with ESMTP id 77AC637B43E for ; Sat, 2 Sep 2000 07:50:12 -0700 (PDT) Received: from [192.168.32.33] (helo=mx1.silyn-tek.de) by mout2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13VEcU-0000sp-00; Sat, 02 Sep 2000 16:50:10 +0200 Received: from p3e9e2659.dip0.t-ipconnect.de ([62.158.38.89] helo=neutron.cichlids.com) by mx1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13VEcQ-0006z4-00; Sat, 02 Sep 2000 16:50:06 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id C9323AB91; Sat, 2 Sep 2000 16:52:03 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 45C6914A9B; Sat, 2 Sep 2000 16:49:56 +0200 (CEST) Date: Sat, 2 Sep 2000 16:49:56 +0200 From: Alexander Langer To: Marc Fonvieille Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000902164956.A3817@cichlids.cichlids.com> References: <200008280358.VAA98764@harmony.village.org> <20000901223347.A2486@cichlids.cichlids.com> <20000901225818.A3395@cichlids.cichlids.com> <20000902104153.A646@vobiscum.styx.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000902104153.A646@vobiscum.styx.org>; from fonvi@easynet.fr on Sat, Sep 02, 2000 at 10:41:53AM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Marc Fonvieille (fonvi@easynet.fr): > Have a look to http://www.freebsddiary.org/last-netgear.html > i put all instructions there. Hello! I still get device timeouts. I'm using the latest -current possible (with the newbusified ed driver). The card is detected correctly. Then I use fa_select, and that works: the card leds show, that it selected the correct type (100MBit). However, after I ifconfig it and then do ping 192.168.0.1, the ARP appears on the other end (tcpdump). But after this, I get a new "Device timeout" and nothing happens. Any ideas? Alex -- cat: /home/alex/.sig: No such file or directory To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 8:22:16 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from blackhelicopters.org (geburah.blackhelicopters.org [209.69.178.18]) by hub.freebsd.org (Postfix) with ESMTP id 0BD3237B423 for ; Sat, 2 Sep 2000 08:22:14 -0700 (PDT) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id LAA07545 for mobile@freebsd.org; Sat, 2 Sep 2000 11:22:13 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200009021522.LAA07545@blackhelicopters.org> Subject: re: new laptop To: mobile@freebsd.org Date: Sat, 2 Sep 2000 11:22:13 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks, Never mind. For the archives, the "pccardc dumpcis" that generated the lone "tuple #1: 0x00ff (terminated)" entry was the result of a dual-boot system. Apparently Windows leaves the pccard controller in such a state that a reboot won't fix it. A hard shutdown, wait five seconds, and bringing it back up made everything work. Of course, I found this in the archives from a while back, after I fixed the problem. Sigh. ==ml -- Michael Lucas mwlucas@blackhelicopters.org http://www.blackhelicopters.org/~mwlucas/ Big Scary Daemons: http://www.oreillynet.com/pub/q/Big_Scary_Daemons To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 8:50: 5 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mout2.silyn-tek.de (mout2.silyn-tek.de [194.25.165.70]) by hub.freebsd.org (Postfix) with ESMTP id BC85C37B43C for ; Sat, 2 Sep 2000 08:50:01 -0700 (PDT) Received: from [192.168.32.33] (helo=mx1.silyn-tek.de) by mout2.silyn-tek.de with esmtp (Exim 3.13 #1) id 13VFYJ-0000ys-00; Sat, 02 Sep 2000 17:49:55 +0200 Received: from p3e9e2659.dip0.t-ipconnect.de ([62.158.38.89] helo=neutron.cichlids.com) by mx1.silyn-tek.de with esmtp (Exim 3.13 #1) id 13VFYI-00084L-00; Sat, 02 Sep 2000 17:49:54 +0200 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id E871CAB91; Sat, 2 Sep 2000 17:51:52 +0200 (CEST) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id 9E2D914A9B; Sat, 2 Sep 2000 17:49:46 +0200 (CEST) Date: Sat, 2 Sep 2000 17:49:46 +0200 From: Alexander Langer To: Marc Fonvieille Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Netgear FA410TX device time out Message-ID: <20000902174946.A4914@cichlids.cichlids.com> References: <200008280358.VAA98764@harmony.village.org> <20000901223347.A2486@cichlids.cichlids.com> <20000901225818.A3395@cichlids.cichlids.com> <20000902104153.A646@vobiscum.styx.org> <20000902164956.A3817@cichlids.cichlids.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20000902164956.A3817@cichlids.cichlids.com>; from alex@big.endian.de on Sat, Sep 02, 2000 at 04:49:56PM +0200 X-PGP-Fingerprint: 44 28 CA 4C 46 5B D3 A8 A8 E3 BA F3 4E 60 7D 7F X-PGP-at: finger alex@big.endian.de X-Verwirrung: Dieser Header dient der allgemeinen Verwirrung. Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thus spake Alexander Langer (alex@big.endian.de): > I still get device timeouts. Reading the source code of ed helps: The solution is to pick a free IRQ and not IRQ 3 for this device (though IRQ 3 works for other devices!) Now everything works fine. I added fa_select to pccard_ether and now it even setups itself correctly on its own :-) Thanks! Alex PS: would it be a nice thing to have ED_NETGEAR_HACK="2" as option to enable this hack in the ed-driver? I could try to do it. (where 2 is the last arg to fa_select) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Sep 2 20: 7:19 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sabre.velocet.net (sabre.velocet.net [198.96.118.66]) by hub.freebsd.org (Postfix) with ESMTP id EF69D37B424 for ; Sat, 2 Sep 2000 20:07:16 -0700 (PDT) Received: from office.tor.velocet.net (trooper.velocet.net [216.126.82.226]) by sabre.velocet.net (Postfix) with ESMTP id D6F92137F05 for ; Sat, 2 Sep 2000 23:07:15 -0400 (EDT) Received: (from dgilbert@localhost) by office.tor.velocet.net (8.9.3/8.9.3) id XAA01500; Sat, 2 Sep 2000 23:07:15 -0400 (EDT) (envelope-from dgilbert) From: David Gilbert MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14769.49251.198090.138177@trooper.velocet.net> Date: Sat, 2 Sep 2000 23:07:15 -0400 (EDT) To: freebsd-mobile@freebsd.org Subject: Laptop doesn't resume-from-suspend when CDROM removed. X-Mailer: VM 6.75 under 20.4 "Emerald" XEmacs Lucid Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have a Fujitsu E-6150. I've been quite happy with it. The only non-working thing so far has been the sound card... which I'm sure is close (it almost probes). However, I've found a new problem. The CDROM drive is removable. Among the options are replacing it with a filler (for minimum weight) or with a second battery (for ~6 hours run time). The machine resumes from suspend fine with the CDROM in place, but it locks up after resuming from a suspend if the CDROM is absent. This is true even if the unit was booted from scratch with the CDROM absent. Dave. -- ============================================================================ |David Gilbert, Velocet Communications. | Two things can only be | |Mail: dgilbert@velocet.net | equal if and only if they | |http://www.velocet.net/~dgilbert | are precisely opposite. | =========================================================GLO================ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message