From owner-freebsd-mobile Sun Apr 23 8:36: 5 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id 0F37B37B558; Sun, 23 Apr 2000 08:36:00 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn24.imasy.or.jp [202.227.24.216]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id AAA21020; Mon, 24 Apr 2000 00:35:56 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: sanpei@sanpei.org Cc: mobile@FreeBSD.ORG, mdodd@FreeBSD.org Subject: Re: [Patch] multi io window patch for usr/sbin/pccardd In-Reply-To: <200004211238.VAA01117@lavender.yy.cs.keio.ac.jp> References: <200004211238.VAA01117@lavender.yy.cs.keio.ac.jp> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000424003557K.iwasaki@jp.FreeBSD.org> Date: Mon, 24 Apr 2000 00:35:57 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 53 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hi > FreeBSD-mobile mailing list > > I have a NE2000 compatible/Ethernet PC-Card(Planex 2000). This > card has multi io window like this. Great! I've tested this patch with my ed cards and other kind of card which uses multi io (such as SunDisk) w/ no problems. > > ----- pccardc dumpcis > Tuple #6, code = 0x1b (Configuration entry), length = 25 > 000: c1 81 78 ca 61 00 03 0f 10 03 0f 30 fc be c9 04 > 010: 00 00 40 0d 40 40 00 40 0d > Config index = 0x1(default) > Interface byte = 0x81 (I/O) wait signal supported > Card decodes 10 address lines, limited 8/16 Bit I/O > I/O address # 1: block start = 0x300 block length = 0x10<------ > I/O address # 2: block start = 0x310 block length = 0x10<------ > IRQ modes: Level > IRQs: 2 3 4 5 6 7 9 10 11 12 13 15 > Memory descriptor 1 > blk length = 0x400 card addr = 0x000 host addr = 0xd4000 > Memory descriptor 2 > blk length = 0x4000 card addr = 0x4000 host addr = 0xd4000 > ---------- > Current usr/sbin/pccardd does not support multi io window, only > support single io window. > > So I merged multi io window code from PAO3 into 5-current. With > this patch, we can use below PC-Card/NIC(and this patch also support > single io window). > > Accton UE2212 > PLANET-SMART-COM-CREDITCARD-2000 > Melco LPC-T > ME-3000II > Laneed LD-CDY > Melco LPC3-TX > > http://home.jp.FreeBSD.org/~sanpei/5-current/usr.sbin-pccard-pccardd-multiio-20000421.diff > P.S. > But if you attach UE2212 PC-Card, you need below patch for > sys/dev/ed/if_ed_pccard.c. Without below patch, it would be hang-up > in ed_probe_WD80x3. And this problem was already reported to Matt > Dodd-san by Warner-san. It will be fix soon :-) > > http://home.jp.FreeBSD.org/~sanpei/5-current/sys-dev-ed_if_ed_pccard-multiio.c-20000411.diff i'll commit these patches 2 or 3 days later if no objections. Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Apr 23 10:51:27 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id CD82C37B595; Sun, 23 Apr 2000 10:51:25 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn24.imasy.or.jp [202.227.24.216]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id CAA63739; Mon, 24 Apr 2000 02:51:23 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: mobile@FreeBSD.ORG Cc: mdodd@FreeBSD.org Subject: [Experimental patch] ex driver PCCard support X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000424025122F.iwasaki@jp.FreeBSD.org> Date: Mon, 24 Apr 2000 02:51:22 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 24 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I've got Olicom GOCARD OC-2220-CP ethernet card yesterday and wrote experimental pccard support code for ex driver by quick hack including some fixes. The patche is available at http://people.freebsd.org/~iwasaki/pccard/if_ex-pccard.diff The entry for this card in pccard.conf is something like this # Olicom OC2220 card "Olicom" "Ethernet" config auto "ex0" ? # ether 0x018 insert logger -t pccard:$device -s Olicom OC2220 inserted insert /etc/pccard_ether $device remove logger -t pccard:$device -s Olicom OC2220 removed remove /sbin/ifconfig $device delete The probe/attach code was based on ex_isa_* code eliminating unnecessary code for pccard. Maybe some additional code will be required for probe routine, but I don't have enough info. on this. I hope this will help re-organization of ex driver, I can be a tester :-) Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Apr 23 11:51:29 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id D771F37BA18 for ; Sun, 23 Apr 2000 11:51:12 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn24.imasy.or.jp [202.227.24.216]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id DAA75371 for ; Mon, 24 Apr 2000 03:51:09 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: mobile@FreeBSD.ORG Subject: [MFPAO patch] readcis enhancement X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000424035108M.iwasaki@jp.FreeBSD.org> Date: Mon, 24 Apr 2000 03:51:08 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 190 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I've just made the patches for the enhancement of pccard cis tuple dump capability, available at http://people.freebsd.org/~iwasaki/pccard/pccardd-readcis.diff I'll commit this 2 or 3 days later if no objections. With this, we can share cis dump data between PAO and non-PAO system including a lot of dump files at http://www.linkclub.or.jp/~clover/cis/ Also this include telling drivers ethernet address if Network node ID tuple is available. This is usefull for some bogus ehter cards which can't get correct ethernet address from CIS tupple. The following sample is diffs of `pccardc dumpcis' command output between pccardc w/o the patches and w/ the patches. It seems there were some bugs in CIS parsing of current pccardc (and pccardd). I hope this also help people to migrate from PAO to plain FreeBSD. Thanks --- OC2220-NonPAO.cis Mon Apr 24 02:55:46 2000 +++ OC2220-PAO.cis Mon Apr 24 03:00:11 2000 @@ -9,11 +9,11 @@ Network/LAN adapter Tuple #3, code = 0x22 (Functional EXT), length = 8 000: 04 06 00 00 24 81 10 d4 - Voice services available: + Network node ID: 00 00 24 81 10 d4 Tuple #4, code = 0x15 (Version 1 info), length = 31 000: 04 01 4f 6c 69 63 6f 6d 00 45 74 68 65 72 6e 65 010: 74 00 4f 43 32 32 32 30 00 4e 4f 4e 45 00 ff - Version = 4.1, Manuf = [Olicom],card vers = [Ethernet] + Version = 4.1, Manuf = [Olicom], card vers = [Ethernet] Addit. info = [OC2220],[NONE] Tuple #5, code = 0x1a (Configuration map), length = 5 000: 01 00 f8 03 03 @@ -27,128 +27,129 @@ Nominal operating supply voltage: 5 x 1V Max current average over 1 second: 2.5 x 100mA Wait scale Speed = Reserved x 1 ms, scaled by 100 - Card decodes 6 address lines - IRQ modes: - IRQ level = 6 + External scale Speed = 8.0 x 10 us, scaled by 10 + Card decodes 3 address lines, 8 Bit I/O only + IRQ modes: Pulse + IRQ level = 4 Tuple #7, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 00 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x300 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #8, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 20 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x320 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #9, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 40 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x340 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #10, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 60 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x360 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #11, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 40 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x240 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #12, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 60 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x260 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #13, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 80 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x280 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #14, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 a0 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x2a0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #15, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 c0 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x2c0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #16, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 e0 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x2e0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #17, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 00 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x200 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #18, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 20 02 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x220 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #19, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 80 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x380 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #20, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 a0 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x3a0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #21, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 c0 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x3c0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #22, code = 0x1b (Configuration entry), length = 10 000: 01 18 c4 60 e0 03 0f 30 a8 ce Config index = 0x1 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x3e0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #23, code = 0x1b (Configuration entry), length = 10 000: 00 18 c4 60 e0 03 0f 30 a8 ce Config index = 0x0 Card decodes 4 address lines, limited 8/16 Bit I/O I/O address # 1: block start = 0x3e0 block length = 0x10 IRQ modes: Level - IRQs: 4 5 11 13 15 + IRQs: 3 5 7 9 10 11 14 15 Tuple #24, code = 0x20 (Manufacturer ID), length = 4 000: 21 01 01 01 PCMCIA ID = 0x121, OEM ID = 0x101 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 6:49:23 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hurricane.columbus.rr.com (m5.columbus.rr.com [204.210.252.249]) by hub.freebsd.org (Postfix) with ESMTP id B93AB37B58B; Mon, 24 Apr 2000 06:49:18 -0700 (PDT) (envelope-from caa@columbus.rr.com) Received: from columbus.rr.com ([24.95.63.210]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Mon, 24 Apr 2000 09:49:29 -0400 Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id JAA51053; Mon, 24 Apr 2000 09:49:18 -0400 (EDT) (envelope-from caa) Date: Mon, 24 Apr 2000 09:49:18 -0400 From: "Charles Anderson" To: FreeBSD Mobile , FreeBSD Config Subject: 3Com 3CXFE575BT Megahertz xjack cardbus adapter Message-ID: <20000424094918.D92746@midgard.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I installed 4.0-current on my Thinkpad 600X that I got from work, and I am trying to get the pccard adapter recognized. It is a 3Com 3CXFE575BT cardbus 10/100 adapter with an xjack. Nothing seems to match in pccard.conf.sample and when it tries to detect it says - pccardd[50]:No card in database for ""("") Is this card supported at all? I spend most of my day running NT with FreeBSD running under vmware, and vmware emulates a lnc card so that works just fine. But I'd like to run it under FreeBSD native when I take it home. Oh I'm running 4.0-Release. I also looked on my home box running 5.0-Current and I didn't see anything about this card there either. Any help would be appreciated. thanks, -Charlie -- Charles Anderson caa@columbus.rr.com No quote, no nothin' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 7: 5:55 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from ns1.pacers.org (ns1.pacers.ua.edu [130.160.179.20]) by hub.freebsd.org (Postfix) with ESMTP id 4475837B73C; Mon, 24 Apr 2000 07:05:51 -0700 (PDT) (envelope-from cdavis@ns1.pacers.org) Received: from localhost (cdavis@localhost) by ns1.pacers.org (8.9.3/8.9.3) with ESMTP id JAA27205; Mon, 24 Apr 2000 09:08:15 -0500 (CDT) (envelope-from cdavis@ns1.pacers.org) Date: Mon, 24 Apr 2000 09:08:15 -0500 (CDT) From: Chris Davis To: Charles Anderson Cc: FreeBSD Mobile , FreeBSD Config Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter In-Reply-To: <20000424094918.D92746@midgard.dhs.org> 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 Currently there isn't any support for the 575's although I would love to move out of the 10 Megabit scene myself. ------------------------------------------------------------------------ Christopher Edward Davis Why do we ask rhetorical questions... ------------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 7:12:43 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id D7FF837BAFE for ; Mon, 24 Apr 2000 07:12:36 -0700 (PDT) (envelope-from sthaug@nethelp.no) Received: (qmail 69461 invoked by uid 1001); 24 Apr 2000 14:12:32 +0000 (GMT) To: cdavis@ns1.pacers.org Cc: caa@columbus.rr.com, freebsd-mobile@FreeBSD.ORG, freebsd-config@FreeBSD.ORG Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter From: sthaug@nethelp.no In-Reply-To: Your message of "Mon, 24 Apr 2000 09:08:15 -0500 (CDT)" References: X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 24 Apr 2000 16:12:31 +0200 Message-ID: <69459.956585551@verdi.nethelp.no> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Currently there isn't any support for the 575's although I would love to > move out of the 10 Megabit scene myself. The Linux driver for the 575 uses the same code as the 905 driver (xl for FreeBSD). Thus it should be fairly easy to get the 575 working as soon as Cardbus is usable. I'm currently running Linux on a Dell Inspiron 5000 - both because of the 575 card and because of the graphics (still haven't been able to get this working properly with FreeBSD). Steinar Haug, Nethelp consulting, sthaug@nethelp.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 7:23:21 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from obie.softweyr.com (obie.softweyr.com [204.68.178.33]) by hub.freebsd.org (Postfix) with ESMTP id 2F42E37BB3C; Mon, 24 Apr 2000 07:23:15 -0700 (PDT) (envelope-from wes@softweyr.com) Received: from softweyr.com (Foolstrustident!@homer.softweyr.com [204.68.178.39]) by obie.softweyr.com (8.8.8/8.8.8) with ESMTP id IAA07532; Mon, 24 Apr 2000 08:23:10 -0600 (MDT) (envelope-from wes@softweyr.com) Message-ID: <390458DF.790B078D@softweyr.com> Date: Mon, 24 Apr 2000 08:23:27 -0600 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Charles Anderson Cc: FreeBSD Mobile , FreeBSD Config Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter References: <20000424094918.D92746@midgard.dhs.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Charles Anderson wrote: > > I installed 4.0-current on my Thinkpad 600X that I got from work, and I am trying > to get the pccard adapter recognized. It is a 3Com 3CXFE575BT cardbus 10/100 > adapter with an xjack. Nothing seems to match in pccard.conf.sample and when > it tries to detect it says - > pccardd[50]:No card in database for ""("") > > Is this card supported at all? I spend most of my day running NT with FreeBSD > running under vmware, and vmware emulates a lnc card so that works just fine. > But I'd like to run it under FreeBSD native when I take it home. > > Oh I'm running 4.0-Release. I also looked on my home box running 5.0-Current > and I didn't see anything about this card there either. > > Any help would be appreciated. CardBus? Sorry, not yet. It's cool that VMWare handles it so well. Send money, encouragement, and hard salami to imp@freebsd.org to encourage him to finish the cardbus subsystem and get it committed. ;^) -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 9: 8: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from finch-post-11.mail.demon.net (finch-post-11.mail.demon.net [194.217.242.39]) by hub.freebsd.org (Postfix) with ESMTP id 617C937BBA5; Mon, 24 Apr 2000 09:07:49 -0700 (PDT) (envelope-from dmlb@ragnet.demon.co.uk) Received: from ragnet.demon.co.uk ([158.152.46.40]) by finch-post-11.mail.demon.net with esmtp (Exim 2.12 #1) id 12jlOd-000EFb-0B; Mon, 24 Apr 2000 16:07:40 +0000 Received: from dmlb by ragnet.demon.co.uk with local (Exim 3.03 #1) id 12jlMP-000Dk5-00; Mon, 24 Apr 2000 17:05:21 +0100 Content-Length: 1698 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Mon, 24 Apr 2000 17:05:20 +0100 (BST) From: Duncan Barclay To: freebsd-mobile@freebsd.org, Nigel Roles , Mike Smith , Ted Buswell , Rob Seaman Subject: New version of Webgear driver Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all I've updated the driver for the Webgear Wireless LAN cards (orginally ported from NetBSD) Download from http://www.ragnet.demon.co.uk/raylink-1.1.tar.gz or http://www.ragnet.demon.co.uk/raylink.tar.gz It's still only for FreeBSD-3.x, but as soon as I've finished writing this announcement I'm going to put together a 4.0 and a -current box with the intention of starting work on porting it. Changes since the last announced verson (0.9) Version 1.1: 24/4/00 Updates since 0.91: A major re-write of the driver so that controlling the card is fully synchronous. This means that dhcp will work. Much faster transmit, a P75 can max out the 2Mb/s bandwidth. Improvements all over the code. Multi-cast is currenltly broken. All code knf. N.B. Version 1 never exisited, 0.91 was the last version before the re-write. The driver is now heading for version 2 to be a stable release for all FreeBSD kernels later than 3.1. Version 0.91: 4/4/00 Updates since 0.9: Fix mbuf leaking on tranmsit (thanks to rob@pioneernet.net for pointing out the bug). Fix IFQ_MAXLEN (thanks to ngr@9fs.org and rob@pioneernet.net for pointing out the bug). Added signal strength cache and antenna switching (untested as verison 4 firmware doesn't seem to return the right value). Duncan --- ________________________________________________________________________ Duncan Barclay | God smiles upon the little children, dmlb@ragnet.demon.co.uk | the alcoholics, and the permanently stoned. ________________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 9:52:26 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [169.237.7.38]) by hub.freebsd.org (Postfix) with ESMTP id BBCB737B88B for ; Mon, 24 Apr 2000 09:52:21 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (root@c04-194.006.popsite.net [216.126.137.194]) by relay.nuxi.com (8.9.3/8.9.3) with ESMTP id JAA35424; Mon, 24 Apr 2000 09:52:15 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.9.3/8.9.1) id JAA03588; Mon, 24 Apr 2000 09:51:59 -0700 (PDT) (envelope-from obrien) Date: Mon, 24 Apr 2000 09:51:58 -0700 From: "David O'Brien" To: sthaug@nethelp.no Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter Message-ID: <20000424095158.A2606@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <69459.956585551@verdi.nethelp.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <69459.956585551@verdi.nethelp.no>; from sthaug@nethelp.no on Mon, Apr 24, 2000 at 04:12:31PM +0200 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 24, 2000 at 04:12:31PM +0200, sthaug@nethelp.no wrote: > I'm currently running Linux on a Dell Inspiron 5000 - both because of > the 575 card and because of the graphics (still haven't been able to > get this working properly with FreeBSD). Why haven't you been able to get graphics working properly with FreeBSD? Both Linux and FreeBSD use the same *exact* codebase for it's X11 -- it comes from XFree86. The same XF86Config file should work under both (maybe with minor path tweaking). Also Xi Graphics Laptop Accerated X offering is the exact same for Linux and FreeBSD. -- -- David (obrien@NUXI.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 10: 9:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id CF5B537BB9F for ; Mon, 24 Apr 2000 10:09:37 -0700 (PDT) (envelope-from sthaug@nethelp.no) Received: (qmail 71578 invoked by uid 1001); 24 Apr 2000 17:09:34 +0000 (GMT) To: obrien@FreeBSD.ORG Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter From: sthaug@nethelp.no In-Reply-To: Your message of "Mon, 24 Apr 2000 09:51:58 -0700" References: <20000424095158.A2606@dragon.nuxi.com> X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 24 Apr 2000 19:09:34 +0200 Message-ID: <71576.956596174@verdi.nethelp.no> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I'm currently running Linux on a Dell Inspiron 5000 - both because of > > the 575 card and because of the graphics (still haven't been able to > > get this working properly with FreeBSD). > > Why haven't you been able to get graphics working properly with FreeBSD? > Both Linux and FreeBSD use the same *exact* codebase for it's X11 -- it > comes from XFree86. The same XF86Config file should work under both > (maybe with minor path tweaking). Also Xi Graphics Laptop Accerated X > offering is the exact same for Linux and FreeBSD. Unfortunately, life isn't quite that simple. See http://www.FreeBSD.org/cgi/getmsg.cgi?fetch=234054+237210+/usr/local/www/db/text/1999/freebsd-mobile/19991226.freebsd-mobile for information about what Darryl Okahata needed to do to get X running on his 7500 (which is similar to, but not exactly the same as, the 5000). I tried Darryl Okahata's recipe on my 5000, and got basic X (1400x1050!) up and running. However, there is so much flickering as to make the screen basically unusable. With Linux I was able to follow the instructions on http://intern.linpro.no/~janl/inspiron-5000.html This involves a patched X server, and setting a specific VESA mode on startup. I now have a wonderful, stable, non-flickering 1400x1050 screen. I certainly intend to get it working with FreeBSD too - but it's quite clear that this involves some more work. Steinar Haug, Nethelp consulting, sthaug@nethelp.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 14:48:55 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.cdrom.com (mass.cdrom.com [204.216.28.184]) by hub.freebsd.org (Postfix) with ESMTP id A828837BD41; Mon, 24 Apr 2000 14:48:52 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id OAA00914; Mon, 24 Apr 2000 14:55:30 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200004242155.OAA00914@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: sthaug@nethelp.no Cc: obrien@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter In-reply-to: Your message of "Mon, 24 Apr 2000 19:09:34 +0200." <71576.956596174@verdi.nethelp.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 24 Apr 2000 14:55:30 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > for information about what Darryl Okahata needed to do to get X running > on his 7500 (which is similar to, but not exactly the same as, the 5000). > > I tried Darryl Okahata's recipe on my 5000, and got basic X (1400x1050!) > up and running. However, there is so much flickering as to make the screen > basically unusable. > > With Linux I was able to follow the instructions on > > http://intern.linpro.no/~janl/inspiron-5000.html > > This involves a patched X server, and setting a specific VESA mode on > startup. I now have a wonderful, stable, non-flickering 1400x1050 screen. The Mobility-P support in the XFree86 codebase is miserable, however. I'd strongly suggest that investing in a copy of Xig's Laptop X will make you a happy camper; it's a crime to have such a nice display perform so poorly. (not that Xig's server is without its own problems, but it works OK and performs well). -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 14:56:10 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id 3AA1037BC2E for ; Mon, 24 Apr 2000 14:56:05 -0700 (PDT) (envelope-from sthaug@nethelp.no) Received: (qmail 77054 invoked by uid 1001); 24 Apr 2000 21:56:02 +0000 (GMT) To: msmith@freebsd.org Cc: obrien@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter From: sthaug@nethelp.no In-Reply-To: Your message of "Mon, 24 Apr 2000 14:55:30 -0700" References: <200004242155.OAA00914@mass.cdrom.com> X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 24 Apr 2000 23:56:02 +0200 Message-ID: <77052.956613362@verdi.nethelp.no> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The Mobility-P support in the XFree86 codebase is miserable, however. > I'd strongly suggest that investing in a copy of Xig's Laptop X will make > you a happy camper; it's a crime to have such a nice display perform so > poorly. (not that Xig's server is without its own problems, but it works > OK and performs well). I tried the Xig demo. It looked very nice. Some things I wondered about though: - It didn't have a specific entry for the Inspiron 5000 (it had entries for the 7500 and some others). I used the 7500 entry. - I only got what appeared to be 1024x768 - with a large black band around the whole screen. This may have been on purpose because of the demo, I have no way of knowing. If I knew for sure that Xig would work in 1400x1050 (and 24 or 32 bit), I certainly would consider it. Steinar Haug, Nethelp consulting, sthaug@nethelp.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 15: 6:17 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.cdrom.com (mass.cdrom.com [204.216.28.184]) by hub.freebsd.org (Postfix) with ESMTP id 558B137B72E; Mon, 24 Apr 2000 15:06:13 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id PAA01363; Mon, 24 Apr 2000 15:13:06 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200004242213.PAA01363@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: sthaug@nethelp.no Cc: msmith@freebsd.org, obrien@freebsd.org, freebsd-mobile@freebsd.org Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter In-reply-to: Your message of "Mon, 24 Apr 2000 23:56:02 +0200." <77052.956613362@verdi.nethelp.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 24 Apr 2000 15:13:06 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > - I only got what appeared to be 1024x768 - with a large black band around > the whole screen. This may have been on purpose because of the demo, I > have no way of knowing. The demo probably needs to be heavily patched up; the 7500 support was originally only for the smaller screen. > If I knew for sure that Xig would work in 1400x1050 (and 24 or 32 bit), > I certainly would consider it. I (ab)use my 7500 on a daily basis; I've been running it since before they officially supported the large screen (by hacking their configs directly). I don't use 24-bit mode though, since 16-bit mode is somewhat faster (xengine, a terrible benchmark, runs about twice as fast), but it does work just fine (I just tested it to be sure 8). -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 15:40:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail3.nc.rr.com (fe3.southeast.rr.com [24.93.67.50]) by hub.freebsd.org (Postfix) with ESMTP id 24E5137B5F2 for ; Mon, 24 Apr 2000 15:40:53 -0700 (PDT) (envelope-from blsecres@eos.ncsu.edu) Received: from sifl.elrockomundo ([24.25.17.108]) by mail3.nc.rr.com with Microsoft SMTPSVC(5.5.1877.357.35); Mon, 24 Apr 2000 18:40:05 -0400 Received: (from blsecres@localhost) by sifl.elrockomundo (8.9.3/8.9.3) id SAA07786 for freebsd-mobile@freebsd.org; Mon, 24 Apr 2000 18:40:50 -0400 (EDT) (envelope-from blsecres) From: blsecres@eos.ncsu.edu Message-Id: <200004242240.SAA07786@sifl.elrockomundo> Subject: USB on a Mitac 5033 To: freebsd-mobile@freebsd.org Date: Mon, 24 Apr 2000 18:40:47 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL68 (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 I'm running 4.0-STABLE on an AMS Roadster 15CTA (i.e. a Mitac 5033) and trying to get USB going so I can use a borrowed Iomega Zip drive. However, when I try 'kldload usb' I get the follow error: uhci0: irq 0 at device\ 1.2 on pci0 uhci0: Invalid irq 0 uhci0: Please switch on USB support and switch PNP-OS to 'No' in\ BIOS I've also tried compiling in the uhci device with a known available irq to no avail. I would follow the recommendation of modifying the BIOS, but the CMOS setup provides little to no configurability. There aren't options for USB or PnP. Is anyone familiar with this hardware or problem? Thanks... -- ben To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 15:46: 9 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mass.cdrom.com (mass.cdrom.com [204.216.28.184]) by hub.freebsd.org (Postfix) with ESMTP id 307BF37B5E7 for ; Mon, 24 Apr 2000 15:46:07 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Received: from mass.cdrom.com (localhost [127.0.0.1]) by mass.cdrom.com (8.9.3/8.9.3) with ESMTP id PAA01755; Mon, 24 Apr 2000 15:52:10 -0700 (PDT) (envelope-from msmith@mass.cdrom.com) Message-Id: <200004242252.PAA01755@mass.cdrom.com> X-Mailer: exmh version 2.1.1 10/15/1999 To: blsecres@eos.ncsu.edu Cc: freebsd-mobile@freebsd.org Subject: Re: USB on a Mitac 5033 In-reply-to: Your message of "Mon, 24 Apr 2000 18:40:47 EDT." <200004242240.SAA07786@sifl.elrockomundo> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 24 Apr 2000 15:52:10 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I'm running 4.0-STABLE on an AMS Roadster 15CTA (i.e. a Mitac 5033) and > trying to get USB going so I can use a borrowed Iomega Zip drive. However, > when I try 'kldload usb' I get the follow error: > > uhci0: irq 0 at device\ > 1.2 on pci0 > uhci0: Invalid irq 0 > uhci0: Please switch on USB support and switch PNP-OS to 'No' in\ > BIOS > > I've also tried compiling in the uhci device with a known available irq to > no avail. I would follow the recommendation of modifying the BIOS, but the > CMOS setup provides little to no configurability. There aren't options for > USB or PnP. Is anyone familiar with this hardware or problem? Yes; unfortunately this means that your BIOS hasn't completed the PCI enumeration/resource handout process correctly. We don't at this time actually support doing this ourselves - it's somewhat complicated. If there truly isn't a BIOS option to enable USB and/or allocate an IRQ for it (there usually is), then for the moment at least you are SOL. -- \\ Give a man a fish, and you feed him for a day. \\ Mike Smith \\ Tell him he should learn how to fish himself, \\ msmith@freebsd.org \\ and he'll hate you for a lifetime. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 19: 2: 3 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from spock.org (cm-24-161-5-13.nycap.rr.com [24.161.5.13]) by hub.freebsd.org (Postfix) with ESMTP id 95EBD37B513; Mon, 24 Apr 2000 19:01:54 -0700 (PDT) (envelope-from jon@spock.org) Received: (from jon@localhost) by spock.org serial EF600Q3T-B7F; Mon, 24 Apr 2000 21:57:52 -0400 (EDT) (envelope-from jon) Date: Mon, 24 Apr 2000 21:57:52 -0400 From: Jonathan Chen To: Charles Anderson Cc: FreeBSD Mobile , FreeBSD Config Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter Message-ID: References: <20000424094918.D92746@midgard.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: telnet In-Reply-To: <20000424094918.D92746@midgard.dhs.org>; from caa@columbus.rr.com on Mon, Apr 24, 2000 at 09:49:18AM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Apr 24, 2000 at 09:49:18AM -0400, Charles Anderson wrote: > I installed 4.0-current on my Thinkpad 600X that I got from work, and I am trying > to get the pccard adapter recognized. It is a 3Com 3CXFE575BT cardbus 10/100 > adapter with an xjack. Nothing seems to match in pccard.conf.sample and when > it tries to detect it says - > pccardd[50]:No card in database for ""("") > > Is this card supported at all? I spend most of my day running NT with FreeBSD > running under vmware, and vmware emulates a lnc card so that works just fine. > But I'd like to run it under FreeBSD native when I take it home. Cardbus is not supported under FreeBSD (at all) (yet). However, if you tell me what PCI-Cardbus bridge you have, I just might have a kludge driver you can use for the time being. -- (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) \\\_\ Jonathan Chen jon at spock.org /_/// <____) Will build secret weapons of mass destruction for food. (____> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 19:34: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mercury.illtel.denver.co.us (pn-nat94.genesyslab.com [198.49.180.222]) by hub.freebsd.org (Postfix) with ESMTP id BBB4A37BC6C; Mon, 24 Apr 2000 19:34:03 -0700 (PDT) (envelope-from abelits@phobos.illtel.denver.co.us) Received: from localhost (abelits@localhost) by mercury.illtel.denver.co.us (8.9.3/8.9.3) with ESMTP id TAA03561; Mon, 24 Apr 2000 19:33:10 -0700 X-Authentication-Warning: mercury.illtel.denver.co.us: abelits owned process doing -bs Date: Mon, 24 Apr 2000 19:33:08 -0700 (PDT) From: Alex Belits X-Sender: abelits@mercury To: Jonathan Chen Cc: Charles Anderson , FreeBSD Mobile , FreeBSD Config Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter 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 Mon, 24 Apr 2000, Jonathan Chen wrote: The card itself is supported under Linux (I am using it right now), and its driver is a cardbus-ified 3Com Cyclone one (based on Vortex). -- Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 22:19:40 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from relay20.smtp.psi.net (relay20.smtp.psi.net [38.8.20.2]) by hub.freebsd.org (Postfix) with ESMTP id C18DE37BCA2 for ; Mon, 24 Apr 2000 22:19:35 -0700 (PDT) (envelope-from pgatz@tiac.net) Received: from [38.32.10.215] (helo=tiac.net) by relay20.smtp.psi.net with esmtp (Exim 1.90 #1) id 12jxkw-0004uF-00; Tue, 25 Apr 2000 01:19:31 -0400 Message-ID: <3905291D.2928A197@tiac.net> Date: Tue, 25 Apr 2000 01:11:58 -0400 From: Peter G Organization: Ethernet Solns R&C X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 3.4-RELEASE i386) X-Accept-Language: en, el MIME-Version: 1.0 To: Sean O'Connell Cc: freebsd-mobile@freebsd.org Subject: Re: Netgear FA410TX and 4.0, anyone recall soln? X-Priority: 2 (High) References: <20000421201038.A42757@skriver.dk> <39004EEB.C3803816@seicom.net> <200004211754.LAA18740@harmony.village.org> <200004230157.TAA28002@harmony.village.org> <39026135.369B415B@tiac.net> <20000423205547.A21131@stat.Duke.EDU> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: base64 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org U2VhbiB0aGFueCBmb3IgcmVzcG9uc2UsIHRyaWVkIHdoYXQgeW91IHN1Z2dlc3RlZCBhbmQg c29tZSBjb21ib3MgdGhlcmVvZiwNCmhlcmUncyBzb21lIGFkZGwnIGluZm87DQpUaGUgTkVU R0VBUiBET1MgdXRpbGl0eSB5aWVsZHMgdGhpcyBpbmZvIGZvciB0aGUgRkE0MTA6DQpJL086 IDMwMA0KSVJROiA5DQpIL1cgUmV2IExldmVsOiBDDQoNCkFib3V0IGFsbCBJIGNhbiBkbyBp cyB0dXJuIHRoZSBGQTQxMCdzIHBvd2VyIG9uIGFuZCBvZmYgdy8gcGNjYXJkYyBwb3dlcg0K Li4uICAoQlRXIG5vdGhpbmcgaW4gc2xvdCAxKQ0KDQpkdW1wY2lzIHlpZWxkczoNClJlYWQg cmV0dXJuIC0xIGJ5dGVzIChleHBlY3RlZCAyKQ0KcGNjYXJkYzogQ0lTIGNvZGUgcmVhZDog Q2Fubm90IGFsbG9jYXRlIG1lbW9yeQ0KUmVhZCByZXR1cm4gLTEgYnl0ZXMgKGV4cGVjdGVk IDEwKQ0KQ29uZmlndXJhdGlvbiBkYXRhIGZvciBjYXJkIGluIHNsb3QgMA0KMiBzbG90cyBm b3VuZA0KDQpwY2NhcmRjIGVuYWJsZXIgdy8gdGhlIHJpZ2h0PyBzZXR0aW5ncyB5aWVsZHM6 DQpkcnYgZWQwLCBtZW0gMHhkNDAwMCwgc2l6ZSAzMjc2OCwgaW8gNzY4LCBpcnEgMHgyMDAs IGZsYWdzIDB4MA0KcGNjYXJkYzogc2V0IGRyaXZlcjogRGV2aWNlIG5vdCBjb25maWd1cmVk DQoNCnJkbWFwIHlpZWxkczoNCk1lbSAwOiBmbGFncyAweDA0MSBob3N0IDB4ZDQwMDAgY2Fy ZCAyMDAwIHNpemUgMzI3NjggYnl0ZXMNCk1lbSAxOiBmbGFncyAweDAwMCBob3N0IDB4MCBj YXJkIDAwMDAgc2l6ZSAwIGJ5dGVzDQpNZW0gMjogZmxhZ3MgMHgwMDAgaG9zdCAweDAgY2Fy ZCAwMDAwIHNpemUgMCBieXRlcw0KTWVtIDM6IGZsYWdzIDB4MDAwIGhvc3QgMHgwIGNhcmQg MDAwMCBzaXplIDAgYnl0ZXMNCk1lbSA0OiBmbGFncyAweDAwMCBob3N0IDB4MCBjYXJkIDAw MDAgc2l6ZSAwIGJ5dGVzDQpJL08gMDogZmxhZ3MgMHgwMDQgcG9ydCAweDMwMCBzaXplIDMy IGJ5dGVzDQpJL08gMTogZmxhZ3MgMHgwMDAgcG9ydCAweCAgMCBzaXplIDAgYnl0ZXMNCk1l bSAwOiBmbGFncyAweDAwMCBob3N0IDB4MCBjYXJkIDAwMDAgc2l6ZSAwIGJ5dGVzDQpNZW0g MTogZmxhZ3MgMHgwMDAgaG9zdCAweDAgY2FyZCAwMDAwIHNpemUgMCBieXRlcw0KTWVtIDI6 IGZsYWdzIDB4MDAwIGhvc3QgMHgwIGNhcmQgMDAwMCBzaXplIDAgYnl0ZXMNCk1lbSAzOiBm bGFncyAweDAwMCBob3N0IDB4MCBjYXJkIDAwMDAgc2l6ZSAwIGJ5dGVzDQpNZW0gNDogZmxh Z3MgMHgwMDAgaG9zdCAweDAgY2FyZCAwMDAwIHNpemUgMCBieXRlcw0KSS9PIDA6IGZsYWdz IDB4MDAwIHBvcnQgMHggIDAgc2l6ZSAwIGJ5dGVzDQpJL08gMTogZmxhZ3MgMHgwMDAgcG9y dCAweCAgMCBzaXplIDAgYnl0ZXMNCg0KDQpyZHJlZyB5aWVsZHM6DQpSZWdpc3RlcnMgZm9y IHNsb3QgMA0KMDA6IDgzIDdmIDkwIDYwIDAwIGFmIDAxIDAyIDAwIDAwIDAwIDAwIDAwIDAw IDAwIDAwDQoxMDogZDQgODAgZGIgMDAgMmUgM2YgYzAgMDAgMDAgMDAgMDAgMDAgMDAgMDAg MDAgMDANCjIwOiAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAw MCAwMA0KMzA6IDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAw IDAwDQpSZWdpc3RlcnMgZm9yIHNsb3QgMQ0KMDA6IDgzIDAwIDEwIDAwIDAwIGFmIDAwIDAw IDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwDQoxMDogMDAgMDAgMDAgMDAgMDAgMDAgYzAgMDAg MDAgMDAgMDAgMDAgMDAgMDAgMDAgMDANCjIwOiAwMCAwMCAwMCAwMCAwMCAwMCAwMCAwMCAw MCAwMCAwMCAwMCAwMCAwMCAwMCAwMA0KMzA6IDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAwIDAw IDAwIDAwIDAwIDAwIDAwIDAwIDAwDQoNCmRtZXNnIGhhcyB0aGlzIHJlbGV2YW50IG91dHB1 dCBmb3IgcGNpYzoNCnBjaWMtcGNpMDogPFRJIFBDSS0xMTMwIFBDSS1DYXJkQnVzIEJyaWRn ZT4gbWVtIDB4MTA4MTIwMDAtMHgxMDgxMmZmZiBhdA0KZGV2aWNlIDIuMCBvbiBwY2kwDQpw Y2ljLXBjaTE6IDxUSSBQQ0ktMTEzMCBQQ0ktQ2FyZEJ1cyBCcmlkZ2U+IG1lbSAweDEwODEx MDAwLTB4MTA4MTFmZmYgYXQNCmRldmljZSAyLjEgb24gcGNpMA0KcGNpYzA6IDxJbnRlbCBp ODIzNjU+IGF0IHBvcnQgMHgzZTAgaW9tZW0gMHhkMDAwMCBpcnEgMTAgb24gaXNhMA0KcGNp YzA6IG1hbmFnZW1lbnQgaXJxIDEwDQpwY2NhcmQwOiA8UEMgQ2FyZCBidXMgLS0ga2x1ZGdl IHZlcnNpb24+IG9uIHBjaWMwDQpwY2NhcmQxOiA8UEMgQ2FyZCBidXMgLS0ga2x1ZGdlIHZl cnNpb24+IG9uIHBjaWMwDQoNCm5vdGhpbmcgcmVsZXZhbnQgaW4gbXkgL2Jvb3QvbG9hZGVy LmNvbmYgICh0cmllZCB5b3VyIHN1Z2dlc3Rpb25zIGFuZCBzb21lDQoidHdpc3RzIiBhbHNv KQ0KaW4gbXkgL2V0Yy9yYy5jb25mIEkgZGlkIHN0YXRlIHRoYXQgcGNjYXJkLmNvbmYgd291 bGQgYmUgY29uZmlnIGZpbGUsIGFzDQp5b3Ugc3VnZ2VzdGVkDQoNCm15IC9ib290L2tlcm5l bC5jb25mOw0KZGkgbG5jMA0KZGkgbGUwDQpkaSBpZTANCmRpIGZlMA0KZGkgYnQwDQpkaSBh aWMwDQpkaSBhaGEwDQpkaSBhZHYwDQpkaSBlZDANCmRpIGNudzANCmVuIHV4MA0KcG8gdXgw IDB4MzAwICAjIEkgcHV0IHRoZXNlIGhlcmUgZm9sbG93aW5nIGNvbnZlbnRpb24gZnJvbSAz LjQgUEFPIGFuZCBteQ0KZm9ybWVyIHNldHRpbmdzIHcvIG90aGVyIGNhcmQNCmlyIHV4MCA5 DQpmIHV4MCAwDQpxDQoNCmxhc3RseSB0aGUgcmVsZXZhbnQgcG9ydGlvbnMgb2YgcGNjYXJk LmNvbmY7DQojIEdlbmVyYWxseSBhdmFpbGFibGUgSU8gcG9ydHMNCmlvICAgICAgMHgzMDAt MHgzNjANCiMgR2VuZXJhbGx5IGF2YWlsYWJsZSBJUlFzIChCdWlsdC1pbiBzb3VuZC1jYXJk IG93bmVycyByZW1vdmUgNSkNCmlycSAgICAgMyA5IDEwIDExIDEzIDE1DQppZ25pcnEgNQ0K aWduaXJxIDMNCmlnbmlycSAxNQ0KIyBBdmFpbGFibGUgbWVtb3J5IHNsb3RzDQptZW1vcnkg IDB4ZDQwMDAgIDk2aw0KDQojIEJheU5ldHdvcmtzIE5FVEdFQVIgRkE0MTBUWEMgRmFzdCBF dGhlcm5ldA0KIyBNb2RpZmllZCBieSBQZXRlciAgRyBvbiBBcHJpbCAyMywgMjAwMA0KY2Fy ZCAiTkVUR0VBUiIgIkZBNDEwVFgiDQojICAgICAgIGNvbmZpZyAgMHgyMCAiZWQwIiA/ICAg IyB0cmllZCBpdCBib3RoIHdheXMgZWl0aGVyIHRoaXMgbGluZSBvcg0KdGhlIG5leHQNCiAg ICAgICAgY29uZmlnICAweDIwICJlZDAiIDkNCiAgICAgICAgaW5zZXJ0ICBsb2dnZXIgLXQg cGNjYXJkOiRkZXZpY2UgLXMgTkVUR0VBUiBGQTQxMFRYIEV0aGVybmV0DQppbnNlcnRlZA0K ICAgICAgICBpbnNlcnQgIC9ldGMvcGNjYXJkX2V0aGVyICRkZXZpY2UNCiAgICAgICAgcmVt b3ZlICBsb2dnZXIgLXQgcGNjYXJkOiRkZXZpY2UgLXMgTkVUR0VBUiBGQTQxMFRYIEV0aGVy bmV0DQpyZW1vdmVkDQogICAgICAgIHJlbW92ZSAgL3NiaW4vaWZjb25maWcgJGRldmljZSBk ZWxldGUNCg0KDQpTZWFuIE8nQ29ubmVsbCB3cm90ZToNCg0KPiBQZXRlciBHIHN0YXRlZDoN Cj4gPiBUcnlpbmcgdG8gZ2V0IDIgSUJNIFRoaW5rcGFkcyB0byByZWNrb2duaXplIE5ldGdl YXIgRkE0MTAncyB2aWEgZWQwDQo+ID4gVGhleSBhcmUgNzYwRUQgbm90ZWJvb2tzLCBwL24g OTU0Ni1VOUENCj4gPiB0aGUgcGNpYyBpcyBhIFRJIDExMzANCj4gPg0KPiA+IEkgcmVjYWxs IGEgbWVzc2cgYXdoaWxlIGJhY2sgdGhhdCBkZWFsdCB3aXRoIHRoaXMgc2FtZSBpc3N1ZQ0K PiA+IGFueW9uZSByZWNhbGwgaG93IGl0IHdhcyBzb2x2ZWQ/DQo+DQo+IFBldGVyLQ0KPg0K PiBOb3Qgc3VyZSwgd2hhdCBhcmUgdGhlIGVycm9ycyB5b3UgYXJlIGdldHRpbmc/ICBNb3N0 IHByb2JsZW1zDQo+IGludm9sdmluZyBwY2NhcmQgbmljJ3MgKGFuZCBwY2NhcmQncyBpbiBn ZW5lcmFsKSBjb21lIGRvd24gdG8NCj4gaXJxIGNvbmZsaWN0cy4NCj4NCj4gMSkgbWFrZSBz dXJlIHRoYXQgeW91IHBjaWMgaXMgZWl0aGVyIGluIHBvbGxpbmcgbW9kZSBvciB1c2luZw0K PiAgICBhIHRvdGFsbHkgZnJlZSBpcnEuDQo+DQo+ICAgIFRoZSBiZXN0IHdheSB0byBkbyB0 aGlzIGlzIHRvIGhhdmUgeW91IGtlcm5lbCBjb25maWcgZmlsZQ0KPiAgICBvbmx5IGNvbnRh aW4NCj4NCj4gIyBQQ0NBUkQgKFBDTUNJQSkgc3VwcG9ydA0KPiBkZXZpY2UgICAgICAgICAg Y2FyZA0KPiBkZXZpY2UgICAgICAgICAgcGNpYzAgICBhdCBpc2E/DQo+DQo+ICAgIHRvIGZv cmNlIHBvbGxpbmcsIGFkZA0KPg0KPiBtYWNoZGVwLnBjY2FyZC5wY2ljX2lycT0iMCINCj4N Cj4gdG8gL2Jvb3QvbG9hZGVyLmNvbmYNCj4NCj4gSWYgeW91IHdhbnQgdG8gc3BlY2lmeSBh IGtub3duIGZyZWUgaXJxIChzYXkgNCBpZiB5b3UgZGlzYWJsZSB0aGUNCj4gb25ib2FyZCBz ZXJpYWwgY29uc29sZSBpbiB0aGUgYmlvcyksIHRoZW4gYWRkDQo+DQo+IG1hY2hkZXAucGNj YXJkLnBjaWNfaXJxPSI0Ig0KPg0KPiAyKSBtYWtlIHN1cmUgdGhhdCB5b3UgYW5kIHBjY2Fy ZGQgYWdyZWUgb24gdGhlIHBjY2FyZCBjb25maWcgZmlsZQ0KPiAgICB5b3UgYXJlIHVzaW5n LiAgYnkgZGVmYXVsdCAobGl0ZXJhbGx5LCAvZXRjL2RlZmF1bHRzL3JjLmNvbmYpDQo+ICAg IHBjY2FyZGQgaXMgaW52b2tlZCB3aXRoIC9ldGMvcGNjYXJkLmNvbmYuc2FtcGxlIGFzIGl0 cyBjb25maWcNCj4gICAgZmlsZSAuLi4gYSBtYXNzaXZlIHNvdXJjZSBvZiBjb25mdXNpb24u ICAgQSByZWNlbnQgY29tbWl0IHRvDQo+ICAgIFJFTEVOR180IHVzZXMgYSAvZXRjL2RlZmF1 bHRzL3BjY2FyZC5jb25mIHdpdGggL2V0Yy9wY2NhcmQuY29uZg0KPiAgICBhcyBhbiBvdmVy cmlkZSAuLi4gYXMgYSBib251cyB3aXRoIHRoaXMgY2hhbmdlLCBwY2NhcmRkIGFsc28NCj4g ICAgcmVyZWFkcyBpdHMgY29uZmlnIGZpbGUgb24gYSBTSUdIVVANCj4NCj4gICAgSSB0eXBp Y2FsbHkgdXNlIGEgZ3JlYXRseSBwYXJlZCBkb3duIHBjY2FyZC5jb25mIGFuZCB0aGVyZWZv cmUgYWRkDQo+DQo+ICAgIHBjY2FyZF9jb25mPSIvZXRjL3BjY2FyZC5jb25mIiAgIyBwY2Nh cmRkKDgpIGNvbmZpZyBmaWxlDQo+DQo+ICAgIHRvIC9ldGMvcmMuY29uZg0KPg0KPiAzKSBt YWtlIHN1cmUgdGhhdCB5b3VyIGxpc3Qgb2YgaXJxIGluIC9ldGMvcGNjYXJkLmNvbmYgYXJl IGFsbA0KPiAgICBhdmFpbGFibGUgYW5kIGZyZWUuICBJIG9mdGVuICJjaGVhdCIgYW5kIGhh cmRjb2RlIHRoZSBpcnEgaW50bw0KPiAgICB0aGUgY2FyZCBlbnRyeS4NCj4NCj4gICAgZG1l c2cgfCBncmVwIGlycQ0KPg0KPiAgICB3aWxsIG9mdGVuIHJldmVhbCB0aGUgaXJxJ3MgaW4g dXNlLiAgd2F0Y2ggb3V0IGZvciBzb3VuZCBjYXJkcw0KPiAgICBhbmQgd2lubW9kZW1zIGFu ZCB1c2IgY29udHJvbGxlcnMuDQo+DQo+ICAgIGlibSB1c3VhbGx5IGx1bXBzIGEgbG90IG9m IHRoaXMgb24gaXJxIDExLiAgdW5sZXNzIDkgc2hvd3MgdXANCj4gICAgd2l0aCB5b3VyIHZp ZGVvIGNhcmQsIGJvdGggOSBhbmQgMTAgYXJlIGdvb2QgYmV0cyB0byBiZSBmcmVlLg0KPg0K PiA0KSB3aXRoIHRoZSBpZl9lZCBkcml2ZXIgYW5kIHBjY2FyZHMsIGp1c3QgYWRkDQo+DQo+ ICAgIGRldmljZSBlZA0KPg0KPiAgICB0byB5b3VyIGtlcm5lbCAobm8gMCdzIG9yIGlycXMg b3IgaS9vIHBvcnRzIGV0YykuDQo+DQo+IEhvcGUgdGhpcyBoZWxwcw0KPiBTDQo+IC0tLS0t LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t LS0tLS0tLS0tLS0tDQo+IFNlYW4gTydDb25uZWxsICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICBFbWFpbDogc2VhbkBzdGF0LkR1a2UuRURVDQo+IEluc3RpdHV0ZSBvZiBTdGF0 aXN0aWNzIGFuZCBEZWNpc2lvbiBTY2llbmNlcyBQaG9uZTogKDkxOSkgNjg0LTU0MTkNCj4g RHVrZSBVbml2ZXJzaXR5ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIEZheDogICAo OTE5KSA2ODQtODU5NA0K To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Apr 24 23:10:54 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 AD46037BCA5 for ; Mon, 24 Apr 2000 23:10:49 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id IAA58067 for ; Tue, 25 Apr 2000 08:10:46 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id IAA00229 for freebsd-mobile@freebsd.org; Tue, 25 Apr 2000 08:13:46 +0200 (CEST) From: Sascha Klauder Message-Id: <200004250613.IAA00229@avalon.ibd-web.de> Subject: D-Link DFE-650 screwy MAC address To: freebsd-mobile@freebsd.org Date: Tue, 25 Apr 2000 08:13:46 +0200 (CEST) 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 Hi list, The laptop is a Toshiba Satellite Pro 480CDT. Kernel configuration etc seems to be fine, not sure about pccard config. pccardd successfully recognizes the card plugged in, but it seems there is some problem with the ed driver; I always get a screwy MAC address and "ed0: device timeout" messages. I've loaded Win95 on a partition left free and the card works fine. Now the card is exactly configured as in Win95, but that's what I get in FreeBSD: pccard: card inserted, slot 0 ed0 at port 0x120-0x13f irq 5 slot 0 on pccard0 ed0: address 01:d1:ff:04:d1:ff, type NE2000 (16 bit) and later on, "ed0: device timeout". I'm absolutely sure there are no irq or i/o address collisions. Is it possible that it is some bad clone or something with a different interface than standard NE2000 cards? BTW, the card manual states . Interface controller DL10019C . Transceiver interface LXT970QC, if this helps. I've read some messages in the -mobile archives from people with similiar problems and that the MAC address for this type of card needs to be obtained differently, but I don't found any solution there. Please, if anyone has a glue, I'd be eternally thankful. 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 Apr 24 23:12: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 D23A037BCA0 for ; Mon, 24 Apr 2000 23:12:36 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 AAA85679 for ; Tue, 25 Apr 2000 00:12:35 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: (from imp@localhost) by harmony.village.org (8.9.3/8.8.3) id AAA39121 for mobile@freebsd.org; Tue, 25 Apr 2000 00:11:41 -0600 (MDT) Date: Tue, 25 Apr 2000 00:11:41 -0600 (MDT) From: Warner Losh Message-Id: <200004250611.AAA39121@harmony.village.org> To: mobile@freebsd.org Subject: xe driver committed Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've updated the xe driver to -current. please test it out. I'munable to test it because I have no cards that pccardd likes. I'm also off the grid, so if there have been major, radical changes elsewhere in the system that break pccard, this won't be fixed until I get back. I'm only getting this through due to the generosity of a friend with an email account that I won't have access to on my planned activities until thursday. Please do let me know how this goes. The combo cards are likely going to give us fits until NEWCARD. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 7:19: 2 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hurricane.columbus.rr.com (m5.columbus.rr.com [204.210.252.249]) by hub.freebsd.org (Postfix) with ESMTP id 0BE6437BD53; Tue, 25 Apr 2000 07:18:48 -0700 (PDT) (envelope-from caa@columbus.rr.com) Received: from columbus.rr.com ([24.95.63.210]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Tue, 25 Apr 2000 10:18:59 -0400 Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id KAA55352; Tue, 25 Apr 2000 10:18:45 -0400 (EDT) (envelope-from caa) Date: Tue, 25 Apr 2000 10:18:40 -0400 From: "Charles Anderson" To: Jonathan Chen Cc: Charles Anderson , FreeBSD Mobile , FreeBSD Config Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter Message-ID: <20000425101840.A51324@midgard.dhs.org> References: <20000424094918.D92746@midgard.dhs.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Nq2Wo0NMKNjxTN9z" X-Mailer: Mutt 1.0i In-Reply-To: ; from jon+fbsd@spock.org on Mon, Apr 24, 2000 at 09:57:52PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii How do I tell what the PCI-Cardbus bridge is? Oh here it is. pcic-pci0: mem 0x50103000-0x50103fff irq 11 at device 2.0 on pci0 pcic-pci1: mem 0x50102000-0x50102fff irq 11 at device 2.1 on pci0 The system was installed from a 4.0-Release CD iso. I'll attach the entire boot messages from /var/log/messages, too. Thanks, -Charlie On Mon, Apr 24, 2000 at 09:57:52PM -0400, Jonathan Chen wrote: > On Mon, Apr 24, 2000 at 09:49:18AM -0400, Charles Anderson wrote: > > I installed 4.0-current on my Thinkpad 600X that I got from work, and I am trying > > to get the pccard adapter recognized. It is a 3Com 3CXFE575BT cardbus 10/100 > > adapter with an xjack. Nothing seems to match in pccard.conf.sample and when > > it tries to detect it says - > > pccardd[50]:No card in database for ""("") > > > > Is this card supported at all? I spend most of my day running NT with FreeBSD > > running under vmware, and vmware emulates a lnc card so that works just fine. > > But I'd like to run it under FreeBSD native when I take it home. > > Cardbus is not supported under FreeBSD (at all) (yet). However, if you > tell me what PCI-Cardbus bridge you have, I just might have a kludge driver > you can use for the time being. > > -- > (o_ 1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2-1-2 _o) > \\\_\ Jonathan Chen jon at spock.org /_/// > <____) Will build secret weapons of mass destruction for food. (____> > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -- Charles Anderson caa@columbus.rr.com No quote, no nothin' --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="boot.mesg" Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-RELEASE #1: Mon Apr 3 11:16:18 EDT 2000 root@domino:/usr/src/sys/compile/DOMINO Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon (498.27-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 Features=0x383f9ff real memory = 335347712 (327488K bytes) config> di sn0 No such device: sn0 Invalid command or syntax. Type `?' for help. config> di lnc0 config> di le0 No such device: le0 Invalid command or syntax. Type `?' for help. config> di ie0 No such device: ie0 Invalid command or syntax. Type `?' for help. config> di fe0 No such device: fe0 Invalid command or syntax. Type `?' for help. config> di ed0 No such device: ed0 Invalid command or syntax. Type `?' for help. config> di cs0 No such device: cs0 Invalid command or syntax. Type `?' for help. config> di bt0 No such device: bt0 Invalid command or syntax. Type `?' for help. config> di aic0 No such device: aic0 Invalid command or syntax. Type `?' for help. config> di aha0 No such device: aha0 Invalid command or syntax. Type `?' for help. config> di adv0 No such device: adv0 Invalid command or syntax. Type `?' for help. config> q avail memory = 322113536 (314564K bytes) Preloaded elf kernel "DOMINO" at 0xc02cb000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02cb09c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 pcic-pci0: mem 0x50103000-0x50103fff irq 11 at device 2.0 on pci0 pcic-pci1: mem 0x50102000-0x50102fff irq 11 at device 2.1 on pci0 pci0: (vendor=0x11c1, dev=0x0449) at 3.0 irq 11 pci0: (vendor=0x1013, dev=0x6003) at 6.0 irq 11 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0xfcf0-0xfcff at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0x4000-0x401f irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered intpm0: port 0xefa0-0xefaf irq 9 at device 7.3 on pci0 intpm0: I/O mapped efa0 intpm0: intr IRQ 9 enabled revision 0 smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped ef00 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold atkbdc0: at port 0x60-0x6f on isa0 atkbd0: 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: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: cannot reserve I/O port range ad0: 11509MB [24944/15/63] at ata0-master using UDMA33 acd0: DVD-ROM at ata1-master using WDMA2 Mounting root from ufs:/dev/ad0s3a pccard: card inserted, slot 0 --Nq2Wo0NMKNjxTN9z-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 8:14: 5 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 2528737BD4F for ; Tue, 25 Apr 2000 08:14:02 -0700 (PDT) (envelope-from sklauder@ibd-web.de) 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 RAA59572; Tue, 25 Apr 2000 17:14:00 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by blueice.shopkeeper.de (8.9.3/8.9.3) id RAA01438; Tue, 25 Apr 2000 17:13:59 +0200 (CEST) From: Sascha Klauder Message-Id: <200004251513.RAA01438@blueice.shopkeeper.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Tue, 25 Apr 2000 17:13:59 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000425095308.U19246@stat.Duke.EDU> from "Sean O'Connell" at Apr 25, 2000 09:53:08 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 Tue Apr 25 15:53:08 2000, Sean O'Connell wrote: > I still would suspect that you have an IRQ problem. What version of > FreeBSD are you using? I find that the output from Sorry, forgot that. System is 4.0-STABLE from sources from just a few days ago. > and also a peak at the Windows Device Manager are useful starting > points. FreeBSD doesn't like to use shared irq's for either the > pcic_irq or for pccard's (esp. NICs and modems). Ok, I'll double-check it again and I hope to find something... I've enabled everything in the kernel, sound is working fine as well as USB. The only thing I'm not sure of at the moment is the IrDA interface, but I think it's at COM2, though FreeBSD doesn't find anything there. > It could also be that since you are using a Toshiba, all you need > to do is kick your cardbus controller into legacy mode either from > within the BIOS or from with in windows (assuming you have loaded > the toshiba drivers for your particular machine). Um, the BIOS setting is "PCIC-Compatible", is it that what you mean? There is also "Auto Selected" and "CardBus/16-Bit" available, but Warner (Losh) told me some weeks ago I need PCIC compatible. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 9: 2:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hurricane.columbus.rr.com (m5.columbus.rr.com [204.210.252.249]) by hub.freebsd.org (Postfix) with ESMTP id 62C1A37BD49 for ; Tue, 25 Apr 2000 09:02:35 -0700 (PDT) (envelope-from caa@columbus.rr.com) Received: from columbus.rr.com ([24.95.63.210]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com for ; Tue, 25 Apr 2000 12:02:45 -0400 Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id MAA55737 for freebsd-mobile@FreeBSD.ORG; Tue, 25 Apr 2000 12:02:32 -0400 (EDT) (envelope-from caa) Date: Tue, 25 Apr 2000 12:02:32 -0400 From: "Charles Anderson" To: FreeBSD Mobile Subject: XFree on 600X with Neomagic 256ZX? Message-ID: <20000425120232.B51324@midgard.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Can it be done? I've looked through the archives and found nothing mentioning this chipset. I've seen reference to the 256AV running as NM2200, so I tried this, and it was not a pretty sight. I did get a display, but it was definitely not working right. Any help would be appreciated. Thanks, -Charlie -- Charles Anderson caa@columbus.rr.com No quote, no nothin' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 9:24:43 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from socrates.nmia.com (socrates.nmia.com [198.59.166.170]) by hub.freebsd.org (Postfix) with SMTP id CB89F37BE8C for ; Tue, 25 Apr 2000 09:24:40 -0700 (PDT) (envelope-from ripper@nmia.com) Received: from plato.nmia.com(really [198.59.166.165]) by socrates.nmia.com via sendmail with smtp id for ; Tue, 25 Apr 2000 10:24:40 -0600 (MDT) (Smail-3.2.0.106 1999-Mar-31 #3 built 1999-Apr-19) Received: by plato.nmia.com id m12k88e-0011c9C; Tue, 25 Apr 2000 10:24:40 -0600 (MDT) Message-Id: Subject: docs on amd.map To: freebsd-mobile@freebsd.org Date: Tue, 25 Apr 2000 10:24:40 -0600 (MDT) From: "Ross A Lippert" X-Mailer: ELM [version 2.5 PL2] 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 Hi. I'm trying to mount NFS using amd. I can't find good docs on the format os amd.map other than the two lines for /defaults in /etc/amd.map. Can someone point me to some documentation on amd.map? Maybe even just an example is all I need. -r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 9:29:32 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lightship.internal.homeport.org (breakwater.homeport.org [216.67.13.2]) by hub.freebsd.org (Postfix) with ESMTP id 1631637BDB7; Tue, 25 Apr 2000 09:29:24 -0700 (PDT) (envelope-from shevett@stonekeep.com) Received: from localhost (shevett@localhost) by lightship.internal.homeport.org (8.9.3/8.9.3) with ESMTP id QAA00262; Tue, 25 Apr 2000 16:30:46 -0400 (EDT) (envelope-from shevett@stonekeep.com) X-Authentication-Warning: lightship.internal.homeport.org: shevett owned process doing -bs Date: Tue, 25 Apr 2000 16:30:46 -0400 (EDT) From: Dave Belfer-Shevett X-Sender: shevett@localhost To: freebsd-current@freebsd.org, freebsd-mobile@freebsd.org Subject: Problems configuring Vadem VG-469 PCMCIA controller. 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 Hiya folks. I'm running on FreeBSD 4.0-RELEASE, trying to get a Lucent Wavelan card (wi) working via an ActionTec PC700 PCMCIA controller (detail on this controller: http://www.actiontec.com/support/readers/pc700.html) I've been chatting with Bill (who wrote the 'wi' driver), and we can't seem to get this controller, which is apparently Plug N Play, to come up in the kernel. pnpinfo shows... [root@lightship]:~# pnpinfo Checking for Plug-n-Play devices... Card assigned CSN #1 Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567 PnP Version 1.0, Vendor Version 0 Device Description: ACTIONTEC PNP PCMCIA ADAPTER Logical Device ID: AEI0218 0x1802a904 #0 Vendor register funcs 00 I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2 [16-bit addr] End Tag Successfully got 4 resources, 1 logical fdevs -- card select # 0x0001 CSN AEI0218 (0x1802a904), Serial Number 0x01234567 Logical device #0 IO: 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 0x03e0 IRQ 0 0 DMA 4 4 IO range check 0x00 activate 0x01 The kernel reports: unknown0: at port 0x3e0-0x3e1 on isa0 I have this in my kernel config file: device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 I've tried changing the IRQ around by altering this line in the kernel file, to no avail. Any suggestions? Please? :) -------------------. Web-based problem management: www.stonekeep.com Dave Belfer-Shevett >----------------------------------------------------. shevett@pobox.com / 2.) HIRE YEW - complete sentence. remainder of \ ------------------< greeting. Usage: "Heidi, hire yew?" (from | | 'Hickphonics') | \______________________________________________________/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 9:39:38 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 4BE4B37B810 for ; Tue, 25 Apr 2000 09:39:15 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 12k8MV-0001Pf-00 for freebsd-mobile@freebsd.org; Tue, 25 Apr 2000 12:38:59 -0400 Date: Tue, 25 Apr 2000 12:38:59 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Message-ID: <20000425123858.D3930@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from shevett@stonekeep.com on Tue, Apr 25, 2000 at 04:30:46PM -0400 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi dave :) Dave Belfer-Shevett probably said: > unknown0: at port 0x3e0-0x3e1 on isa0 > > I have this in my kernel config file: > > device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 > > I've tried changing the IRQ around by altering this line in the kernel > file, to no avail. > > Any suggestions? Please? :) Have you tried just; device pcic0 at isa? ? If pcic isn't picking it up it might be because the pcmcia controller isn't supported ... 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 Tue Apr 25 10:59:54 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 AE20637B553 for ; Tue, 25 Apr 2000 10:59:49 -0700 (PDT) (envelope-from sklauder@ibd-web.de) 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 TAA60065; Tue, 25 Apr 2000 19:59:48 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by blueice.shopkeeper.de (8.9.3/8.9.3) id TAA02475; Tue, 25 Apr 2000 19:59:48 +0200 (CEST) From: Sascha Klauder Message-Id: <200004251759.TAA02475@blueice.shopkeeper.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Tue, 25 Apr 2000 19:59:47 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000425112133.X19246@stat.Duke.EDU> from "Sean O'Connell" at Apr 25, 2000 11:21:33 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 Tue Apr 25 17:21:33 2000, Sean O'Connell wrote: > You may want to disable any unused sio entries in your kernel... if I only have sio0 in the kernel. > I remember correctly, sio3 uses irq 5 ... this entry may be enough > to confuse things. Also, if you disable the irda in the BIOS, you > can buy yourself irq 3 :) IIRC (don't have the laptop at hand right now), the IrDA port cannot be disabled. > > Um, the BIOS setting is "PCIC-Compatible", is it that what you mean? > That's the option that I meant: cool. Are you using a management > irq or are you in polling mode? I usually recommend just having I have a management irq, IRQ3. > device card > device pcic at isa? > > in your kernel and then using the > > machdep.pccard.pcic_irq="N" > > in /boot/loader.conf where N=0 -> polling and N=free_irq -> managed Ah, that sounds interesting. I'll test that out and come back with results. Thank you for helping me out so far, Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 11:23:11 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from freesbee.wheel.dk (freesbee.wheel.dk [193.162.159.97]) by hub.freebsd.org (Postfix) with ESMTP id E253137B964 for ; Tue, 25 Apr 2000 11:23:08 -0700 (PDT) (envelope-from jesper@skriver.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1001) id 1157F3E42; Tue, 25 Apr 2000 20:23:06 +0200 (CEST) Date: Tue, 25 Apr 2000 20:23:06 +0200 From: Jesper Skriver To: Charles Anderson Cc: FreeBSD Mobile Subject: Re: XFree on 600X with Neomagic 256ZX? Message-ID: <20000425202305.C5423@skriver.dk> References: <20000425120232.B51324@midgard.dhs.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000425120232.B51324@midgard.dhs.org>; from caa@columbus.rr.com on Tue, Apr 25, 2000 at 12:02:32PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Apr 25, 2000 at 12:02:32PM -0400, Charles Anderson wrote: > Can it be done? > > I've looked through the archives and found nothing mentioning this > chipset. I've seen reference to the 256AV running as NM2200, so I > tried this, and it was not a pretty sight. I did get a display, but > it was definitely not working right. > > Any help would be appreciated. On my 600E (which has the same video controller) I use the following XF86Config with XFree86 4.0 http://freesbee.wheel.dk/~jesper/XF86Config.600E /Jesper -- Jesper Skriver, jesper(at)skriver(dot)dk - CCIE #5456 Work: Network manager @ AS3292 (Tele Danmark DataNetworks) Private: Geek @ AS2109 (A much smaller network ;-) One Unix to rule them all, One Resolver to find them, One IP to bring them all and in the zone to bind them. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 11:33:37 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hurricane.columbus.rr.com (m5.columbus.rr.com [204.210.252.249]) by hub.freebsd.org (Postfix) with ESMTP id B6F1337B507 for ; Tue, 25 Apr 2000 11:33:34 -0700 (PDT) (envelope-from caa@columbus.rr.com) Received: from columbus.rr.com ([24.95.63.210]) by hurricane.columbus.rr.com (Post.Office MTA v3.5.3 release 223 ID# 0-53939U80000L80000S0V35) with ESMTP id com; Tue, 25 Apr 2000 14:33:41 -0400 Received: (from caa@localhost) by columbus.rr.com (8.9.3/8.9.3) id OAA56155; Tue, 25 Apr 2000 14:33:28 -0400 (EDT) (envelope-from caa) Date: Tue, 25 Apr 2000 14:33:28 -0400 From: "Charles Anderson" To: Jesper Skriver Cc: Charles Anderson , FreeBSD Mobile Subject: Re: XFree on 600X with Neomagic 256ZX? Message-ID: <20000425143328.C51324@midgard.dhs.org> References: <20000425120232.B51324@midgard.dhs.org> <20000425202305.C5423@skriver.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000425202305.C5423@skriver.dk>; from jesper@skriver.dk on Tue, Apr 25, 2000 at 08:23:06PM +0200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks, I'm compiling 4.0, (after clearing up enough space.) I'll give it a try. -Charlie On Tue, Apr 25, 2000 at 08:23:06PM +0200, Jesper Skriver wrote: > On Tue, Apr 25, 2000 at 12:02:32PM -0400, Charles Anderson wrote: > > Can it be done? > > > > I've looked through the archives and found nothing mentioning this > > chipset. I've seen reference to the 256AV running as NM2200, so I > > tried this, and it was not a pretty sight. I did get a display, but > > it was definitely not working right. > > > > Any help would be appreciated. > > On my 600E (which has the same video controller) I use the following > XF86Config with XFree86 4.0 > > http://freesbee.wheel.dk/~jesper/XF86Config.600E > > /Jesper -- Charles Anderson caa@columbus.rr.com No quote, no nothin' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 17:23:43 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.interserver.com.ar (mail.interserver.com.ar [200.0.208.142]) by hub.freebsd.org (Postfix) with ESMTP id E37FE37B56A for ; Tue, 25 Apr 2000 17:23:37 -0700 (PDT) (envelope-from horowiczc@psi.com) Received: from psi.com (sat.isol.net.ar [200.0.208.73]) by mail.interserver.com.ar (8.9.3/8.9.3) with ESMTP id VAA44758 for ; Tue, 25 Apr 2000 21:21:43 -0300 (ART) Message-ID: <3906360C.21A031F8@psi.com> Date: Tue, 25 Apr 2000 21:19:24 -0300 From: Carlos Horowicz Reply-To: horowiczc@psi.com Organization: PSINet X-Mailer: Mozilla 4.72 [en] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Subject: IBM Etherjet 10/100 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, has anybody been successful installing FreeBSD 4.0-RELEASE with an IBM 10/100 EtherJet cardbus adapter ? Before launching /stand/sysinstall from the diskettes, the OS claims to recognize the card, it asks for an I/O address range and for reserved IRQ's. After that, I select NFS as install media and it doesn't show cs0 as a device option. Does anybody have any idea ? Is the card supported at all after installing with other media ? Thanks in advance, Carlos Horowicz PSINet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 17:43:12 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 887FD37B5B2 for ; Tue, 25 Apr 2000 17:43:07 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id CAA60920; Wed, 26 Apr 2000 02:43:03 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id CAA00251; Wed, 26 Apr 2000 02:46:03 +0200 (CEST) From: Sascha Klauder Message-Id: <200004260046.CAA00251@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Wed, 26 Apr 2000 02:46:03 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000425154545.I21606@stat.Duke.EDU> from "Sean O'Connell" at Apr 25, 2000 03:45:45 pm 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 Tue Apr 25 21:45:45 2000, Sean O'Connell wrote: > > IIRC (don't have the laptop at hand right now), the IrDA port cannot > > be disabled. > Bummer. Stupid BIOS... funny that they let you set the mode of the > pccard controller, but won't let you nuke the irda port. You can say that. I've already updated the BIOS but this doesn't helped either. > If your IRDA (or, gasp, a winmodem) is also thinks it is on 3, this > could be the source of your problem. the polling mode may help you > out here. (if 3 really is in use, make sure it's not listed as a > free irq in your pccard.conf file) I'm absolutely sure there is no modem. I've played a bit with the device manager in Win95 and checked for irq's and conflicts. Nothing. The IrDA port use the following resources: I/O 0x2F8-0x2FF, 0x300-0x30F, IRQ 10, DMA 7. No conflicts. BTW, is there any way to use IrDA capabilities in FreeBSD? What's interesting though, if I click on the small pc-card icon in the systray and select "Global Settings" the following is displayed for the shared memory area: start 000C0000 ende 00FFFFFF length 00001000 Is that important in any way? Now I've tried polling mode as suggested, no luck. I've attached the full dmesg output below. Sorry for long lines. Besides, a friend of mine has the _very_ same problem with this card using a different laptop (AFAIK it is a Toshiba too, dunno about the model). Now, at least the soundcard and X is working fine. ;) Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-STABLE #8: Wed Apr 26 01:01:01 CEST 2000 sascha@vivi.ibd-web.de:/usr/src/sys/compile/VIVI Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (quarter-micron) (233.29-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x581 Stepping = 1 Features=0x8001bf real memory = 67239936 (65664K bytes) config> q avail memory = 62308352 (60848K bytes) Preloaded elf kernel "kernel" at 0xc0311000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc031109c. Intel Pentium detected, installing workaround for F00F bug npx0: on motherboard npx0: INT 16 interface apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 pcib0: on motherboard pci0: on pcib0 pci0: at 4.0 ohci0: mem 0xfcfff000-0xfcffffff irq 11 at device 11.0 on pci0 usb0: OHCI version 1.0 usb0: on ohci0 usb0: USB revision 1.0 uhub0: NEC OHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered isa0: on motherboard fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 ata0 at port 0x1f0-0x1f7,0x3f6 irq 14 on isa0 ata1 at port 0x170-0x177,0x376 irq 15 on isa0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> pcic0: at port 0x3e0-0x3e1 on isa0 pcic0: Polling mode pccard0: on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: Generic chipset (NIBBLE-only) in COMPATIBLE mode ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 pcm0: at port 0x530-0x537,0x370-0x371 irq 9 drq 1 flags 0xc100 on isa0 sbc0: at port 0x220-0x22f irq 9 drq 1 flags 0x15 on isa0 sbc0: alloc_resource device_probe_and_attach: sbc0 attach returned 6 ad0: 3909MB [7944/16/63] at ata0-master using BIOSPIO acd0: CDROM at ata1-master using BIOSPIO Mounting root from ufs:/dev/ad0s2a pccard: card inserted, slot 0 ed0 at port 0x120-0x13f irq 5 slot 0 on pccard0 ed0: address 01:d1:ff:04:d1:ff, type NE2000 (16 bit) ed0: device timeout Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Apr 25 19: 4:17 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 76CFB37BB3D for ; Tue, 25 Apr 2000 19:04:14 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 12kHBM-0004kK-00 for freebsd-mobile@freebsd.org; Tue, 25 Apr 2000 22:04:04 -0400 Date: Tue, 25 Apr 2000 22:04:03 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: IBM Etherjet 10/100 Message-ID: <20000425220403.A18193@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: <3906360C.21A031F8@psi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3906360C.21A031F8@psi.com>; from horowiczc@psi.com on Tue, Apr 25, 2000 at 09:19:24PM -0300 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Carlos Horowicz probably said: > has anybody been successful installing FreeBSD 4.0-RELEASE with an IBM > 10/100 EtherJet cardbus adapter ? Before launching /stand/sysinstall There is currently no FreeBSD cardbus support. This fact has been mentioned a dozen times in this mailing list recently. Please read the archives ... 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 Tue Apr 25 23:23:37 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from quack.kfu.com (quack.kfu.com [170.1.70.2]) by hub.freebsd.org (Postfix) with ESMTP id B67E837B76D for ; Tue, 25 Apr 2000 23:23:35 -0700 (PDT) (envelope-from nsayer@medusa.kfu.com) Received: from medusa.kfu.com (medusa.kfu.com [170.1.70.5]) by quack.kfu.com (8.9.2/8.9.3) with ESMTP id XAA32348 for ; Tue, 25 Apr 2000 23:23:30 -0700 (PDT) (envelope-from nsayer@medusa.kfu.com) Received: (from nsayer@localhost) by medusa.kfu.com (8.9.3/8.8.8) id XAA00630 for freebsd-mobile@freebsd.org; Tue, 25 Apr 2000 23:23:00 -0700 (PDT) (envelope-from nsayer) Date: Tue, 25 Apr 2000 23:23:00 -0700 (PDT) From: Nick Sayer Message-Id: <200004260623.XAA00630@medusa.kfu.com> To: freebsd-mobile@freebsd.org Subject: pccard & ipv6 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have put this at the end of my /etc/pccard_ether for the lack of something better: case ${ipv6_enable} in [Yy][Ee][Ss]) ipv6_network_interfaces=${interface} ipv6_default_interface=${interface} . /etc/rc.network6 network6_pass1 ;; esac It works for the simple cases, and it got me thinking about modifying pccard_ether to do the same for ipv4. It would simplify things a lot if network configuration at pccard insert time was merely made a special case of the ordinary configuration steps. We wouldn't have two scripts to maintain. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 1: 1:36 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by hub.freebsd.org (Postfix) with ESMTP id 794BE37B859 for ; Wed, 26 Apr 2000 01:00:59 -0700 (PDT) (envelope-from michel@lpthe.jussieu.fr) Received: from parthe.lpthe.jussieu.fr (parthe.lpthe.jussieu.fr [134.157.10.1]) by shiva.jussieu.fr (8.10.0/jtpda-5.3.3) with ESMTP id e3Q80fU52985 for ; Wed, 26 Apr 2000 10:00:41 +0200 (CEST) Received: from rose.lpthe.jussieu.fr ([134.157.10.102]) by parthe.lpthe.jussieu.fr (8.9.1a/jtpda-5.3.1) with ESMTP id KAA18430 for ; Wed, 26 Apr 2000 10:00:41 +0200 (MET DST) Received: (from michel@localhost) by rose.lpthe.jussieu.fr (8.9.3/8.9.3) id KAA00444 for freebsd-mobile@FreeBSD.ORG; Wed, 26 Apr 2000 10:00:41 +0200 (CEST) (envelope-from michel) Date: Wed, 26 Apr 2000 10:00:41 +0200 From: Michel Talon To: freebsd-mobile@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Message-ID: <20000426100041.B398@lpthe.jussieu.fr> Mail-Followup-To: freebsd-mobile@FreeBSD.ORG References: <20000425123858.D3930@pir.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <20000425123858.D3930@pir.net> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Apr 25, 2000 at 12:38:59PM -0400, Peter Radcliffe wrote: > Hi dave :) > > Dave Belfer-Shevett probably said: > > unknown0: at port 0x3e0-0x3e1 on isa0 > > > > I have this in my kernel config file: > > > > device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 > > > > I've tried changing the IRQ around by altering this line in the kernel > > file, to no avail. > > > > Any suggestions? Please? :) > > Have you tried just; > device pcic0 at isa? > ? > > If pcic isn't picking it up it might be because the pcmcia controller > isn't supported ... And there is a chance that pcic may be able to work either in polling mode (device pcic0 at isa?) or on a completely different IRQ. In some laptops IRQ 10 11 are shared between many devices (USB, Soundcard, etc.) and you end up with pcic not seeeing the interrupts. On my laptop i have used IRQ 9 for the pcic and i have never been able to make USB to work. -- Michel Talon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 6: 7: 3 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lily.ezo.net (lily.ezo.net [206.102.130.13]) by hub.freebsd.org (Postfix) with ESMTP id EC17C37B563 for ; Wed, 26 Apr 2000 06:06:59 -0700 (PDT) (envelope-from jflowers@ezo.net) Received: from lily.ezo.net (jflowers@localhost.ezo.net [127.0.0.1]) by lily.ezo.net (8.8.7/8.8.7) with SMTP id JAA06291; Wed, 26 Apr 2000 09:05:57 -0400 (EDT) Date: Wed, 26 Apr 2000 09:05:57 -0400 (EDT) From: Jim Flowers To: Michel Talon Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. In-Reply-To: <20000426100041.B398@lpthe.jussieu.fr> 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 just went through this with a Lucent Wavelan that uses a Vadem controller. What I found was that the Lucent ISA card was strapped for 0x3e2. Changing the kernel config to 0x3e2 allowed the ISA card to be initialized but the PCCard did not initialize (no slots). All started working when I set legacy ISA for irq10 and 11 in the BIOS, set the kernel config to 0x3e2 and irq11 and hard-coded irq10 in the pccard.conf file. Jim Flowers #4 ISP on C|NET, #1 in Ohio On Wed, 26 Apr 2000, Michel Talon wrote: > On Tue, Apr 25, 2000 at 12:38:59PM -0400, Peter Radcliffe wrote: > > Hi dave :) > > > > Dave Belfer-Shevett probably said: > > > unknown0: at port 0x3e0-0x3e1 on isa0 > > > > > > I have this in my kernel config file: > > > > > > device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 > > > > > > I've tried changing the IRQ around by altering this line in the kernel > > > file, to no avail. > > > > > > Any suggestions? Please? :) > > > > Have you tried just; > > device pcic0 at isa? > > ? > > > > If pcic isn't picking it up it might be because the pcmcia controller > > isn't supported ... > > And there is a chance that pcic may be able to work either in polling mode > (device pcic0 at isa?) or on a completely different IRQ. In some laptops > IRQ 10 11 are shared between many devices (USB, Soundcard, etc.) and you > end up with pcic not seeeing the interrupts. On my laptop i have used IRQ 9 > for the pcic and i have never been able to make USB to work. > > -- > Michel Talon > > > 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 Wed Apr 26 7:43:14 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 707B337B789 for ; Wed, 26 Apr 2000 07:43:10 -0700 (PDT) (envelope-from mwlucas@blackhelicopters.org) Received: (from mwlucas@localhost) by blackhelicopters.org (8.9.3/8.9.3) id KAA66972 for mobile@freebsd.org; Wed, 26 Apr 2000 10:43:09 -0400 (EDT) (envelope-from mwlucas) From: Michael Lucas Message-Id: <200004261443.KAA66972@blackhelicopters.org> Subject: two NICs, one laptop, on -current To: mobile@freebsd.org Date: Wed, 26 Apr 2000 10:43:09 -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, I'm trying to use two NICs on my laptop. The first one, a 3com ep, is picked up just fine. The second one, a Netgear, doesn't. Apr 26 10:17:17 moneysink pccardd[46]: Card "3Com Corporation"("3C589D") matched "3Com Corporation" ("3C589D") Apr 26 10:17:22 moneysink /kernel: ep0: <3Com Etherlink III 3C589> at port 0x240-0x24f irq 3 slot 0 on pccard0 Apr 26 10:17:22 moneysink /kernel: ep0: Ethernet address 00:10:4b:ec:68:82 Apr 26 10:17:22 moneysink pccard:ep0: 3Com Etherlink III inserted Apr 26 10:17:27 moneysink pccardd[46]: Card "NETGEAR"("FA410TX") matched "NETGEAR" ("FA410TX") Apr 26 10:17:32 moneysink pccardd[46]: driver allocation failed for NETGEAR(FA410TX): Device not configured Apr 26 10:17:32 moneysink pccardd[46]: pccardd started When I boot with just the Netgear card, and not the 3com, the same problem appears. The Netgear seems to want IRQ 3. I'm not that familiar with the new pccard system. Any suggestions on what to check? Also, should ejecting a card lock up my system? Thanks, ==ml To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 9:12:40 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id AC25737C0F7; Wed, 26 Apr 2000 09:12:35 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn27.imasy.or.jp [202.227.24.219]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id BAA20335; Thu, 27 Apr 2000 01:12:30 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: mobile@FreeBSD.ORG Cc: iwasaki@jp.freebsd.org, mdodd@FreeBSD.org, kato@ganko.eps.nagoya-u.ac.jp Subject: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: <20000424025122F.iwasaki@jp.FreeBSD.org> References: <20000424025122F.iwasaki@jp.FreeBSD.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000427011230G.iwasaki@jp.FreeBSD.org> Date: Thu, 27 Apr 2000 01:12:30 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 51 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I've made patch for fe driver PCCard support and updated patch for ex driver against -CURRENT. The patches are available at; http://people.freebsd.org/~iwasaki/pccard/if_fe-pccard.diff http://people.freebsd.org/~iwasaki/pccard/if_ex-pccard.diff For fe driver, you'll need a card entry in /etc/pccard.conf; # TDK LAC-CD021, LAC-CD021A card "TDK" "LAC-CD02x" config auto "fe0" ? insert logger -s TDK LAC-CD021 inserted insert /etc/pccard_ether $device remove logger -s TDK LAC-CD021 removed remove /etc/pccard_ether_remove $device and device entry in your kernel config file; device fe0 # yes, this fe patch is the kludge version, just added new-bus pccard # front-end :) For ex driver, many bug-fixes have been made. It works just fine so far. Please test them and inform me if any problems. Thanks > I've got Olicom GOCARD OC-2220-CP ethernet card yesterday and > wrote experimental pccard support code for ex driver by quick hack > including some fixes. The patche is available at > http://people.freebsd.org/~iwasaki/pccard/if_ex-pccard.diff > > The entry for this card in pccard.conf is something like this > > # Olicom OC2220 > card "Olicom" "Ethernet" > config auto "ex0" ? > # ether 0x018 > insert logger -t pccard:$device -s Olicom OC2220 inserted > insert /etc/pccard_ether $device > remove logger -t pccard:$device -s Olicom OC2220 removed > remove /sbin/ifconfig $device delete > > The probe/attach code was based on ex_isa_* code eliminating > unnecessary code for pccard. Maybe some additional code will be > required for probe routine, but I don't have enough info. on this. > I hope this will help re-organization of ex driver, I can be a tester :-) > > Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 11:54: 3 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from info.iet.unipi.it (info.iet.unipi.it [131.114.9.184]) by hub.freebsd.org (Postfix) with ESMTP id 22EB037B72A for ; Wed, 26 Apr 2000 11:53:53 -0700 (PDT) (envelope-from luigi@info.iet.unipi.it) Received: (from luigi@localhost) by info.iet.unipi.it (8.9.3/8.9.3) id UAA24948; Wed, 26 Apr 2000 20:54:26 +0200 (CEST) (envelope-from luigi) From: Luigi Rizzo Message-Id: <200004261854.UAA24948@info.iet.unipi.it> Subject: Re: Wavelan-Ethernet make a bridge (?) In-Reply-To: <41506A941272D311BBB10060089E2BB1287148@EXCHANGESVRITC> from Samuel Almachar at "Apr 26, 2000 01:13:34 pm" To: Samuel Almachar Date: Wed, 26 Apr 2000 20:54:26 +0200 (CEST) Cc: freebsd-mobile@freebsd.org X-Mailer: ELM [version 2.4ME+ PL61 (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 [Charset iso-8859-1 unsupported, filtering to ASCII...] > Hi, everybody > > Somebody could give me some help, some information, anything about a bridge > with Ethernet and Wavelan (Lucente, pccard/isa adapter) ? > > I make any test without progress, but the WavePoint, is Lucent's product, > that make the same fuction (bridge).... i don;t have the hardware, sorry, so i cannot comment on whether this might work or not. cheers luigi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 13:44:54 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from schooner.svjava.com (schooner.svjava.com [204.75.228.3]) by hub.freebsd.org (Postfix) with ESMTP id 602EE37BE34 for ; Wed, 26 Apr 2000 13:44:48 -0700 (PDT) (envelope-from kozowski@svjava.com) Received: (from kozowski@localhost) by schooner.svjava.com (8.9.1a/svjava.com) id NAA25057 for freebsd-mobile@FreeBSD.ORG; Wed, 26 Apr 2000 13:44:40 -0700 (PDT) Date: Wed, 26 Apr 2000 13:44:40 -0700 From: Eric Kozowski To: freebsd-mobile@FreeBSD.ORG Subject: Re: Wavelan-Ethernet make a bridge (?) Message-ID: <20000426134440.O23254@schooner.svjava.com> References: <41506A941272D311BBB10060089E2BB1287148@EXCHANGESVRITC> <200004261854.UAA24948@info.iet.unipi.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004261854.UAA24948@info.iet.unipi.it>; from luigi@info.iet.unipi.it on Wed, Apr 26, 2000 at 08:54:26PM +0200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 26, 2000 at 08:54:26PM +0200, Luigi Rizzo wrote: > [Charset iso-8859-1 unsupported, filtering to ASCII...] > > Hi, everybody > > > > Somebody could give me some help, some information, anything about a bridge > > with Ethernet and Wavelan (Lucente, pccard/isa adapter) ? > > > > I make any test without progress, but the WavePoint, is Lucent's product, > > that make the same fuction (bridge).... > > i don;t have the hardware, sorry, so i cannot comment on whether > this might work or not. i haven't tried bridging, but i'm routing between an isa ethernet card and a roamabout (915mhz) isa card under 2.2.8. i've also routed between a pcmcia ethernet and a pcmcia roamabout card. no problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 15: 4:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 95C9A37BB67 for ; Wed, 26 Apr 2000 15:04:39 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id SAA89035; Wed, 26 Apr 2000 18:04:19 -0400 (EDT) Date: Wed, 26 Apr 2000 18:04:19 -0400 (EDT) From: "Matthew N. Dodd" To: Mitsuru IWASAKI Cc: mobile@FreeBSD.ORG, kato@ganko.eps.nagoya-u.ac.jp Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: <20000427011230G.iwasaki@jp.FreeBSD.org> 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 Thu, 27 Apr 2000, Mitsuru IWASAKI wrote: > http://people.freebsd.org/~iwasaki/pccard/if_ex-pccard.diff ... > For ex driver, many bug-fixes have been made. It works just fine so far. I'll commit this in a slightly altered form (PCCARD bits in their own file) after I split out the ISA specific stuff. Thanks for doing the work. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 15:24:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from horizon.barak-online.net (horizon.barak.net.il [206.49.94.218]) by hub.freebsd.org (Postfix) with ESMTP id C57A137B72A for ; Wed, 26 Apr 2000 15:24:38 -0700 (PDT) (envelope-from bk532@iname.com) Received: from localhost.local.net (pop09-1-ras1-p175.barak.net.il [212.150.8.175]) by horizon.barak-online.net (8.9.3/8.9.1) with ESMTP id BAA26805; Thu, 27 Apr 2000 01:23:29 +0300 (IDT) Message-ID: <3906ADDF.8828D218@iname.com> Date: Wed, 26 Apr 2000 11:50:40 +0300 From: Boris Karnaukh Organization: Private person X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 3.4-STABLE i386) X-Accept-Language: en, ru MIME-Version: 1.0 To: Ross A Lippert Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: docs on amd.map References: Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ross A Lippert wrote: > > Hi. I'm trying to mount NFS using amd. I can't find good > docs on the format os amd.map other than the two lines for > /defaults in /etc/amd.map. > > Can someone point me to some documentation on amd.map? Maybe > even just an example is all I need. > info am-utils -- Boris Karnaukh (mailto:bk532@iname.com) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 16:59:58 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 DE78D37BA5C for ; Wed, 26 Apr 2000 16:59:53 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id BAA64669; Thu, 27 Apr 2000 01:59:50 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id CAA00460; Thu, 27 Apr 2000 02:03:39 +0200 (CEST) From: Sascha Klauder Message-Id: <200004270003.CAA00460@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Thu, 27 Apr 2000 02:03:39 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000426000833.A21796@stat.Duke.EDU> from "Sean O'Connell" at Apr 26, 2000 12:08:33 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 Wed Apr 26 06:08:33 2000, Sean O'Connell wrote: > device sio1 at isa? port IO_COM2 irq 10 > do anything? sio1: configured irq 10 not in bitmap of probed irqs 0 > > BTW, is there any way to use IrDA capabilities in FreeBSD? > Not to the full advantage of it, but I thought you could use [snip] > You may want to do an archive search of -mobile for more details. OK, I'll do that. > Yay... but no networking. How about one of those US$30-40 > USB network cards? Yeah, I'm at the point to throw the damn thing away! Anybody know of a PC Card NIC that is known to work well? > Are you using the stock entry from /etc/pccard.conf.sample? Yep. > I have a thought... what if you used irq 3 instead of 5? Maybe > the sound card is setting up a legacy soundblaster something or > another on 5 that freebsd isn't aware of. Alternatively, can > you disable (even temporarily) your onboard serial port and > free up irq 4 for testing ... Doesn't helps. I've tried almost all configurations I can think of. Disabling sound, sio0, lpt, ata1 or various combinations of enabled and disabled devices. It doesn't work. *argh* > option PNPBIOS Mhm, I'll test that tomorrow :) A quick test of "pnpinfo" says no pnp devices found... So much for to be "In Touch with Tomorrow" ;) Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 17:45:39 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 383FA37BC9B for ; Wed, 26 Apr 2000 17:45:37 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 12kcQm-00053I-00 for freebsd-mobile@freebsd.org; Wed, 26 Apr 2000 20:45:24 -0400 Date: Wed, 26 Apr 2000 20:45:24 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: No audio until a volume change under 4.0 Message-ID: <20000426204524.C18453@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: <200004221832.e3MIW8m13360@wally.eecs.harvard.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004221832.e3MIW8m13360@wally.eecs.harvard.edu>; from karp@eecs.harvard.edu on Sat, Apr 22, 2000 at 02:32:08PM -0400 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brad Karp probably said: > I've seen the "beepless" behavior on my 505TR under 4.0, too. > > For me, the secret turned out to be changing the *synth* level in the mixer > app. It appears that the ESS driver in 4.0 incorrectly identifies the > "speaker" channel of the 505TR as "synth". > > I'd expect this to be the same way on your machine, as well. Wow, the ESS driver is pretty screwed up in general. The mic level doesn't work (if I unmute it I get evil feedback since it's full up) as well as the synth level controlling only the system beep volume, nothing bar main controls the actual pcm output. Very messed up. 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 Apr 26 19:53:31 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lightship.internal.homeport.org (breakwater.homeport.org [216.67.13.2]) by hub.freebsd.org (Postfix) with ESMTP id 2CFA837B781 for ; Wed, 26 Apr 2000 19:53:28 -0700 (PDT) (envelope-from shevett@stonekeep.com) Received: from localhost (shevett@localhost) by lightship.internal.homeport.org (8.9.3/8.9.3) with ESMTP id CAA00257; Thu, 27 Apr 2000 02:54:59 -0400 (EDT) (envelope-from shevett@stonekeep.com) X-Authentication-Warning: lightship.internal.homeport.org: shevett owned process doing -bs Date: Thu, 27 Apr 2000 02:54:59 -0400 (EDT) From: Dave Belfer-Shevett X-Sender: shevett@localhost To: pir@pir.net Cc: freebsd-mobile@freebsd.org Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. 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 pir@pir.net wrote: >Dave Belfer-Shevett probably said: >> unknown0: at port 0x3e0-0x3e1 on isa0 >> device pcic0 at isa? irq 10 port 0x3e0 iomem 0xd0000 >> >> I've tried changing the IRQ around by altering this line in the kernel >> file, to no avail. >> >> Any suggestions? Please? :) > >Have you tried just; > device pcic0 at isa? Didn't work. :) >If pcic isn't picking it up it might be because the pcmcia controller >isn't supported ... The Vadem controller is most definatly supported - it's the one in the Lucent Wavelan ISA card. The difference here seems to be that it's a PNP device, which seems to be the big hassle. :( -------------------. Web-based problem management: www.stonekeep.com Dave Belfer-Shevett >----------------------------------------------------. shevett@pobox.com / 90's Vocab: Generica - Features of the American \ ------------------< landscape that are exactly the same no matter where | | one is. "We were so lost in generica, I actually | | forgot what city we were in." | \______________________________________________________/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20: 4:18 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lightship.internal.homeport.org (breakwater.homeport.org [216.67.13.2]) by hub.freebsd.org (Postfix) with ESMTP id D395237BE33 for ; Wed, 26 Apr 2000 20:04:12 -0700 (PDT) (envelope-from shevett@stonekeep.com) Received: from localhost (shevett@localhost) by lightship.internal.homeport.org (8.9.3/8.9.3) with ESMTP id DAA00298; Thu, 27 Apr 2000 03:05:42 -0400 (EDT) (envelope-from shevett@stonekeep.com) X-Authentication-Warning: lightship.internal.homeport.org: shevett owned process doing -bs Date: Thu, 27 Apr 2000 03:05:42 -0400 (EDT) From: Dave Belfer-Shevett X-Sender: shevett@localhost To: jflowers@ezo.net Cc: freebsd-mobile@freebsd.org Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. 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 jflowers@ezo.net wrote: > I just went through this with a Lucent Wavelan that uses a Vadem > controller. What I found was that the Lucent ISA card was strapped for > 0x3e2. Changing the kernel config to 0x3e2 allowed the ISA card to be > initialized but the PCCard did not initialize (no slots). All started > working when I set legacy ISA for irq10 and 11 in the BIOS, set the > kernel config to 0x3e2 and irq11 and hard-coded irq10 in the pccard.conf > file. The Vadem controller I have is not the one that's physically attached to the Wavelan cards as they come from Lucent. This Vadem controller is from Actiontec - a PC700. (http://www.actiontec.com/support/readers/pc700.html#tech). Remember that 'pnpinfo' comes up with: Logical Device ID: AEI0218 0x1802a904 #0 Vendor register funcs 00 I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2 [16-bit addr] So the board is definately at 0x3e0... What's puzzling me is that the kernel -definately- knows there's a device there: unknown0: at port 0x3e0-0x3e1 on isa0 Is it that that signature 'ACTIONTEC...' isn't matching a configuration the kernel identifies as a Vadem cnotroller? How can I say "No! Really! That's a Vadem 469! I swear!" Desperate... :) dave. -------------------. Web-based problem management: www.stonekeep.com Dave Belfer-Shevett >----------------------------------------------------. shevett@pobox.com / [He] crafts his debate with the professionally honed \ ------------------< edge of a plastic snack spork." | \______________________________________________________/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:24: 7 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 D361E37B671 for ; Wed, 26 Apr 2000 20:24:03 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92676; Wed, 26 Apr 2000 21:24:01 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA49026; Wed, 26 Apr 2000 21:23:02 -0600 (MDT) Message-Id: <200004270323.VAA49026@harmony.village.org> To: Peter Radcliffe Subject: Re: Linear PCMCIA memory Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Fri, 21 Apr 2000 19:51:44 EDT." <20000421195144.A9797@pir.net> References: <20000421195144.A9797@pir.net> <39004EEB.C3803816@seicom.net> <200004211754.LAA18740@harmony.village.org> <20000421201038.A42757@skriver.dk> Date: Wed, 26 Apr 2000 21:23:02 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000421195144.A9797@pir.net> Peter Radcliffe writes: : I've got an intel type2 card kicking around I could lend for : development if someone was interested in looking into this. I'd be : useful for work for my group (networking :) I have about a dozen of these cards knocking around. And I have docs on them. I have no time to deal, so the only way I see to support is for someone else to write a driver, or for someone else to pay me to write a driver. I'd be happy to pass copies of what I have to someone that writes or tries to write a driver. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:27:12 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 7203037B856; Wed, 26 Apr 2000 20:27:08 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92702; Wed, 26 Apr 2000 21:27:03 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA49077; Wed, 26 Apr 2000 21:26:01 -0600 (MDT) Message-Id: <200004270326.VAA49077@harmony.village.org> To: "Charles Anderson" Subject: Re: 3Com 3CXFE575BT Megahertz xjack cardbus adapter Cc: FreeBSD Mobile , FreeBSD Config In-reply-to: Your message of "Mon, 24 Apr 2000 09:49:18 EDT." <20000424094918.D92746@midgard.dhs.org> References: <20000424094918.D92746@midgard.dhs.org> Date: Wed, 26 Apr 2000 21:26:01 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <20000424094918.D92746@midgard.dhs.org> "Charles Anderson" writes: : Is this card supported at all? I spend most of my day running NT with FreeBSD Nope. Cardbus isn't supported in 4.x. This is a cardbus card... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:28:52 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 6211D37B793; Wed, 26 Apr 2000 20:28:47 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92710; Wed, 26 Apr 2000 21:28:46 -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 VAA49097; Wed, 26 Apr 2000 21:27:45 -0600 (MDT) Message-Id: <200004270327.VAA49097@harmony.village.org> To: Mike Smith Subject: Re: USB on a Mitac 5033 Cc: blsecres@eos.ncsu.edu, freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 24 Apr 2000 15:52:10 PDT." <200004242252.PAA01755@mass.cdrom.com> References: <200004242252.PAA01755@mass.cdrom.com> Date: Wed, 26 Apr 2000 21:27:45 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200004242252.PAA01755@mass.cdrom.com> Mike Smith writes: : If there truly isn't a BIOS option to enable USB and/or allocate an IRQ : for it (there usually is), then for the moment at least you are SOL. Maby BIOSs just need PnP OS turned to "no" and this starts worknig. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:31: 1 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from rock.ghis.net (rock.ghis.net [209.222.164.7]) by hub.freebsd.org (Postfix) with ESMTP id D2AD237BDB5 for ; Wed, 26 Apr 2000 20:30:58 -0700 (PDT) (envelope-from will@blackdawn.com) Received: from argon.blackdawn.com (04-128.dial.008.popsite.net [209.69.197.128]) by rock.ghis.net (8.9.3/8.9.3) with ESMTP id UAA47993; Wed, 26 Apr 2000 20:30:49 -0700 (PDT) Received: by argon.blackdawn.com (Postfix, from userid 1000) id AC44B195D; Wed, 26 Apr 2000 23:30:31 -0400 (EDT) Date: Wed, 26 Apr 2000 23:30:31 -0400 From: Will Andrews To: Warner Losh Cc: Peter Radcliffe , freebsd-mobile@FreeBSD.ORG Subject: Re: Linear PCMCIA memory Message-ID: <20000426233031.H1070@argon.blackdawn.com> References: <20000421195144.A9797@pir.net> <39004EEB.C3803816@seicom.net> <200004211754.LAA18740@harmony.village.org> <20000421201038.A42757@skriver.dk> <20000421195144.A9797@pir.net> <200004270323.VAA49026@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <200004270323.VAA49026@harmony.village.org>; from imp@village.org on Wed, Apr 26, 2000 at 09:23:02PM -0600 X-Operating-System: FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Apr 26, 2000 at 09:23:02PM -0600, Warner Losh wrote: > I have about a dozen of these cards knocking around. And I have docs > on them. I have no time to deal, so the only way I see to support is > for someone else to write a driver, or for someone else to pay me to > write a driver. I'd be happy to pass copies of what I have to someone > that writes or tries to write a driver. I can take documentation + card to write the driver during my project. Anyone who has cards (and documentation) they can donate, please contact me privately. Thanks. -- Will Andrews GCS/E/S @d- s+:+>+:- a--->+++ C++ UB++++ P+ L- E--- W+++ !N !o ?K w--- ?O M+ V-- PS+ PE++ Y+ PGP+>+++ t++ 5 X++ R+ tv+ b++>++++ DI+++ D+ G++>+++ e->++++ h! r-->+++ y? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:31:34 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 E1D7B37B722 for ; Wed, 26 Apr 2000 20:31:30 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92734; Wed, 26 Apr 2000 21:31:29 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA49139; Wed, 26 Apr 2000 21:30:29 -0600 (MDT) Message-Id: <200004270330.VAA49139@harmony.village.org> To: Sascha Klauder Subject: Re: D-Link DFE-650 screwy MAC address Cc: sean@stat.Duke.EDU, freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 25 Apr 2000 17:13:59 +0200." <200004251513.RAA01438@blueice.shopkeeper.de> References: <200004251513.RAA01438@blueice.shopkeeper.de> Date: Wed, 26 Apr 2000 21:30:29 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200004251513.RAA01438@blueice.shopkeeper.de> Sascha Klauder writes: : Um, the BIOS setting is "PCIC-Compatible", is it that what you mean? : There is also "Auto Selected" and "CardBus/16-Bit" available, but : Warner (Losh) told me some weeks ago I need PCIC compatible. Yes. The code in 5.0 handles cardbus bridges better than it did before (my modem's speaker started working on my 505-TS). Until that gets merged back into 4.x, you'll have to arrange for the card to be in pcic mode at boot. That's also legacy mode or 16-bit mode in some bioses. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:32:48 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 58C0737B677; Wed, 26 Apr 2000 20:32:44 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92748; Wed, 26 Apr 2000 21:32:43 -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 VAA49166; Wed, 26 Apr 2000 21:31:43 -0600 (MDT) Message-Id: <200004270331.VAA49166@harmony.village.org> To: Dave Belfer-Shevett Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Cc: freebsd-current@FreeBSD.ORG, freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 25 Apr 2000 16:30:46 EDT." References: Date: Wed, 26 Apr 2000 21:31:43 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Dave Belfer-Shevett writes: : Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567 You'll have to add this ID to the list of IDs in the pcic driver for 4.0. I'll try to do this when I get back if you can wait. And if you can't then you'll have to do it yourself :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:34: 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 64B0D37B781 for ; Wed, 26 Apr 2000 20:33:59 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92752; Wed, 26 Apr 2000 21:33:57 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA49179; Wed, 26 Apr 2000 21:32:57 -0600 (MDT) Message-Id: <200004270332.VAA49179@harmony.village.org> To: horowiczc@psi.com Subject: Re: IBM Etherjet 10/100 Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 25 Apr 2000 21:19:24 -0300." <3906360C.21A031F8@psi.com> References: <3906360C.21A031F8@psi.com> Date: Wed, 26 Apr 2000 21:32:57 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The etherjet card is either a xircom based card, which isn't supported in 4.0 or a cardbus card, which isn't supported in 4.0. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:36:17 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 08A9737BDBB for ; Wed, 26 Apr 2000 20:36:14 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92763; Wed, 26 Apr 2000 21:36:12 -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 VAA49202; Wed, 26 Apr 2000 21:35:12 -0600 (MDT) Message-Id: <200004270335.VAA49202@harmony.village.org> To: Michael Lucas Subject: Re: two NICs, one laptop, on -current Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 26 Apr 2000 10:43:09 EDT." <200004261443.KAA66972@blackhelicopters.org> References: <200004261443.KAA66972@blackhelicopters.org> Date: Wed, 26 Apr 2000 21:35:12 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <200004261443.KAA66972@blackhelicopters.org> Michael Lucas writes: : I'm not that familiar with the new pccard system. Any suggestions on : what to check? It is effectively the old system. Sounds like an IRQ problem of some sort. : Also, should ejecting a card lock up my system? No. It is definitely an irq problem. Maybe pccardd isn't doing the right thing with multiple IRQs? Maybe you don't have all the free irqs you think you have. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 20:38: 9 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 E0D6837BECB for ; Wed, 26 Apr 2000 20:38:06 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 VAA92772; Wed, 26 Apr 2000 21:38:05 -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 VAA49222; Wed, 26 Apr 2000 21:37:05 -0600 (MDT) Message-Id: <200004270337.VAA49222@harmony.village.org> To: Dave Belfer-Shevett Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Cc: jflowers@ezo.net, freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 03:05:42 EDT." References: Date: Wed, 26 Apr 2000 21:37:05 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I think you'll need to add the Pnp ID to the pcic driver. I had to do this to my pcic card that I got recently, and was squeeked in just under the 4.0 deadline. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 21: 2: 2 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 1F95B37BEE1 for ; Wed, 26 Apr 2000 21:02:00 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 WAA92933 for ; Wed, 26 Apr 2000 22:01:58 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id WAA49597 for ; Wed, 26 Apr 2000 22:00:58 -0600 (MDT) Message-Id: <200004270400.WAA49597@harmony.village.org> To: mobile@freebsd.org Subject: Xircom cards Date: Wed, 26 Apr 2000 22:00:58 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anybody had a chance to try the xircom cards with the new patches yet? These cards should work in the "OLDCARD" kernels such as GENERIC. I wish I could easily download iwasaki-san's pccardd readcis patches to see if they would help the xircom combo card that I have. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Apr 26 22:50: 9 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 BA1BA37BEA3 for ; Wed, 26 Apr 2000 22:50:06 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 12khBZ-0006xr-00 for freebsd-mobile@freebsd.org; Thu, 27 Apr 2000 01:50:01 -0400 Date: Thu, 27 Apr 2000 01:50:00 -0400 From: Peter Radcliffe To: freebsd-mobile@freebsd.org Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Message-ID: <20000427015000.A26735@pir.net> Mail-Followup-To: freebsd-mobile@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from shevett@stonekeep.com on Thu, Apr 27, 2000 at 02:54:59AM -0400 X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dave Belfer-Shevett probably said: > pir@pir.net wrote: > >Have you tried just; > > device pcic0 at isa? > Didn't work. :) Rats. > The Vadem controller is most definatly supported - it's the one in the > Lucent Wavelan ISA card. The difference here seems to be that it's a PNP > device, which seems to be the big hassle. :( The Lucent ISA card needs a different address under freebsd, 0x3e2 I think. 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 Apr 26 22:56:46 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tasogare.imasy.or.jp (tasogare.imasy.or.jp [202.227.24.5]) by hub.freebsd.org (Postfix) with ESMTP id B13E537B856 for ; Wed, 26 Apr 2000 22:56:43 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn26.imasy.or.jp [202.227.24.218]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id OAA58364; Thu, 27 Apr 2000 14:56:38 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) To: winter@jurai.net Cc: iwasaki@jp.FreeBSD.org, mobile@FreeBSD.ORG Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: References: <20000427011230G.iwasaki@jp.FreeBSD.org> X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000427145634U.iwasaki@jp.FreeBSD.org> Date: Thu, 27 Apr 2000 14:56:34 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 20000228(IM140) Lines: 31 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > > For ex driver, many bug-fixes have been made. It works just fine so far. > > I'll commit this in a slightly altered form (PCCARD bits in their own > file) after I split out the ISA specific stuff. Thanks. I've one more request for you. Sanpei-san have reported some ed cards have hangup problem with ed PCcard probing. He suggested deleting ed_probe_WD80x3() because it seems none of cards were detected by ed_probe_WD80x3(), PAO3 has no this already. I would like to suggest changing prove order of ed_probe_Novell() and ed_probe_WD80x3() for safty. Could you please consider this patch? --- if_ed_pccard.c- Thu Apr 27 14:35:57 2000 +++ if_ed_pccard.c Thu Apr 27 14:36:15 2000 @@ -109,12 +109,12 @@ int flags = device_get_flags(dev); int error; - error = ed_probe_WD80x3(dev, 0, flags); + error = ed_probe_Novell(dev, 0, flags); if (error == 0) goto end; ed_release_resources(dev); - error = ed_probe_Novell(dev, 0, flags); + error = ed_probe_WD80x3(dev, 0, flags); if (error == 0) goto end; ed_release_resources(dev); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 4:20:54 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from angmar.mel.vet.com.au (angmar.mel.vet.com.au [203.103.154.62]) by hub.freebsd.org (Postfix) with ESMTP id 477C137B725 for ; Thu, 27 Apr 2000 04:20:50 -0700 (PDT) (envelope-from thutton@vet.com.au) Received: from foo.mel.vet.com.au (foo.mel.vet.com.au [203.103.154.60]) by angmar.mel.vet.com.au (8.9.3/8.9.3) with SMTP id VAA48292 for ; Thu, 27 Apr 2000 21:20:47 +1000 (EST) From: Toby Hutton MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14600.8846.764563.886065@foo.mel.vet.com.au> Date: Thu, 27 Apr 2000 21:20:46 +1000 (EST) To: freebsd-mobile@freebsd.org Subject: sio0 silo overflows? X-Mailer: VM 6.72 under 21.1 (patch 8) "Bryce Canyon" XEmacs Lucid Reply-To: Toby Hutton Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello people, I have a digital camera hooked up cuaa0 to download the images. I also have a cheapo pccard eth running on irq 3. Ever since setting up the eth card I get silo overflows when downloading images and the transfer is aborted. If I reboot the machine with the pccard out it will work fine. Is there a simple way to get around this? -- Toby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 5:21: 1 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from distortion.dk (distortion.dk [195.249.147.156]) by hub.freebsd.org (Postfix) with ESMTP id 3A58B37B75C for ; Thu, 27 Apr 2000 05:20:57 -0700 (PDT) (envelope-from nppmf@swamp.dk) Received: from localhost (nppmf@localhost) by distortion.dk (8.9.3/8.9.1) with ESMTP id OAA06951 for ; Thu, 27 Apr 2000 14:21:50 +0200 (CEST) (envelope-from nppmf@swamp.dk) Date: Thu, 27 Apr 2000 14:21:50 +0200 (CEST) From: "Nicolai Petri (ML)" X-Sender: nppmf@distortion.dk To: freebsd-mobile@freebsd.org Subject: Problem with NEWCARD 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 compiled NEWCARD on my notebook and was very pleased with the current progress. But a fun thing is that 1st time I insert my pcmcia card the cis cannot be read (looks like a wrong IO window!) but after the first time I can unplug and plug the card forever and the cis is read correct (Yahoo). Is this a generic bug or is it just my notebook / pccard ? -Nicolai Petri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 5:44:12 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lightship.internal.homeport.org (breakwater.homeport.org [216.67.13.2]) by hub.freebsd.org (Postfix) with ESMTP id DFCF737BA51 for ; Thu, 27 Apr 2000 05:44:09 -0700 (PDT) (envelope-from shevett@homeport.org) Received: from localhost (shevett@localhost) by lightship.internal.homeport.org (8.9.3/8.9.3) with ESMTP id MAA01173; Thu, 27 Apr 2000 12:45:31 -0400 (EDT) (envelope-from shevett@homeport.org) X-Authentication-Warning: lightship.internal.homeport.org: shevett owned process doing -bs Date: Thu, 27 Apr 2000 12:45:31 -0400 (EDT) From: Dave Belfer-Shevett X-Sender: shevett@localhost To: Warner Losh Cc: Dave Belfer-Shevett , jflowers@ezo.net, freebsd-mobile@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. In-Reply-To: <200004270337.VAA49222@harmony.village.org> 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, 26 Apr 2000, Warner Losh wrote: > I think you'll need to add the Pnp ID to the pcic driver. I had to do > this to my pcic card that I got recently, and was squeeked in just > under the 4.0 deadline. Okay, I'll bite. How do I do this? I'm -not- a kernel developer at all (I barely know C)... I see the pcic_p.h file, which seems to list the PCI device id's... but that doesn't look right... Suggestions? Again, here's the pnpinfo: Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567 PnP Version 1.0, Vendor Version 0 Device Description: ACTIONTEC PNP PCMCIA ADAPTER Logical Device ID: AEI0218 0x1802a904 #0 Vendor register funcs 00 I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2 [16-bit addr] -------------------. Web-based problem management: www.stonekeep.com Dave Belfer-Shevett >----------------------------------------------------. shevett@pobox.com / 8. Your Colon Can Moo--Can You? (Dr Suesses lesser \ ------------------< known books) | \______________________________________________________/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 5:47: 0 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lucky.medicusnet.de (ns.medicusnet.de [195.63.222.140]) by hub.freebsd.org (Postfix) with ESMTP id 5AC2537B831 for ; Thu, 27 Apr 2000 05:46:57 -0700 (PDT) (envelope-from maulwurf@subloch.medicusnet.de) Received: from subloch.medicusnet.de (uucp@localhost) by lucky.medicusnet.de (8.9.3/8.9.3) with UUCP id OAA10614 for freebsd-mobile@freebsd.org; Thu, 27 Apr 2000 14:46:55 +0200 Received: by subloch.medicusnet.de (CrossPoint v3.12d R/C2188); 27 Apr 2000 14:43:50 +0200 Date: 27 Apr 2000 14:43:00 +0200 From: maulwurf@subloch.medicusnet.de (Stefan Huerter) To: freebsd-mobile@freebsd.org Message-ID: <7cfudG-EoRB@subloch.medicusnet.de> Subject: TP 770ED Sound-driver problems X-Mailer: CrossPoint v3.12d R/C2188 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Organization: die wahre Antwort: 42 oder 23? Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Guckux I have a TP 770ED, built in s.th. Crystal sound chip-Hardware, Windoof says ISA-Plug'n'Play. I've tried the pcm (newpcm, FreeBSD 4-STABLE) from FreeBSD and think about plug'n'pray, doesn't matter if I choose pcm (for PnP) or if I try the ports (530/534/538), it will not be recognized. Same with csa0 (part of pcm, but in the kernel-config it will shown as unknown and not When I tried the Soundblaster-driver sbc0 (pcm-part), it will be recognized and shown, configured for pcm1, I create the devices, but the result is only distortion, not more... These are the boot-msgs: sbc0: at port 0x220-0x22f irq 5 drq 1 flags 0x15 on isa0 pcm1: on sbc0 pca0 at port 0x40 on isa0 any hint/help to get Sound from my TP? Bye Stefan Microsoft: Where do you want to go today? Linux: Where do you want to go tomorrow? BSD: Are you guys coming, or what? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 7:57:33 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 32E0537B834 for ; Thu, 27 Apr 2000 07:57:20 -0700 (PDT) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es (lxpxdx.lx.ehu.es [158.227.99.201]) by polaris.we.lc.ehu.es (8.9.1/8.9.1) with ESMTP id QAA00275; Thu, 27 Apr 2000 16:56:02 +0200 (MET DST) Message-ID: <39085501.C1CAF6B0@we.lc.ehu.es> Date: Thu, 27 Apr 2000 16:56:01 +0200 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.0.36 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Xircom cards References: <200004270400.WAA49597@harmony.village.org> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > > Has anybody had a chance to try the xircom cards with the new patches > yet? These cards should work in the "OLDCARD" kernels such as > GENERIC. > Warner, could you generate a patchset for 4.0-STABLE, if this is possible at all? I have a Xircom RealPort 100BTX card, but I cannot install -CURRENT on my laptop. I reviewed the CVS history log of your changes to xe, pccard and pcic, and I don't think that they are directly applicable to 4.0-STABLE. -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | mailto:jmas@FreeBSD.org Dpto. de Electricidad y Electrónica | http://www.we.lc.ehu.es/~jose Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-946013071 ----------------------------------------------------------------------- "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 9:13: 2 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.nyct.net (bsd4.nyct.net [204.141.86.6]) by hub.freebsd.org (Postfix) with ESMTP id C025237B62E for ; Thu, 27 Apr 2000 09:12:57 -0700 (PDT) (envelope-from efutch@nyct.net) Received: from bsd1.nyct.net (efutch@bsd1.nyct.net [204.141.86.3]) by mail.nyct.net (8.9.3/8.8.7) with ESMTP id MAA24864; Thu, 27 Apr 2000 12:15:16 -0400 (EDT) (envelope-from efutch@nyct.net) Date: Thu, 27 Apr 2000 12:12:43 -0400 (EDT) From: "Eric D. Futch" To: Dave Belfer-Shevett Cc: Warner Losh , freebsd-mobile@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. 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 generated a patch for this. The patch against pcic_p.c revision 1.20 and pcic_p.h revision 1.10. I'm pretty sure this is all you'll need, but I haven't been playing with PC Card stuff for a while :) Let me know if I got it right or not :) http://quake.nyct.net/~efutch/FreeBSD/pcic_p.patch -- Eric Futch New York Connect.Net, Ltd. efutch@nyct.net Technical Support Staff http://www.nyct.net (212) 293-2620 "Bringing New York The Internet Access It Deserves" On Thu, 27 Apr 2000, Dave Belfer-Shevett wrote: > >Okay, I'll bite. How do I do this? I'm -not- a kernel developer at all >(I barely know C)... I see the pcic_p.h file, which seems to list the PCI >device id's... but that doesn't look right... > >Suggestions? Again, here's the pnpinfo: > >Vendor ID AEI0218 (0x1802a904), Serial Number 0x01234567 >PnP Version 1.0, Vendor Version 0 >Device Description: ACTIONTEC PNP PCMCIA ADAPTER >Logical Device ID: AEI0218 0x1802a904 #0 > Vendor register funcs 00 > I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2 > [16-bit addr] > > >-------------------. Web-based problem management: www.stonekeep.com >Dave Belfer-Shevett >----------------------------------------------------. >shevett@pobox.com / 8. Your Colon Can Moo--Can You? (Dr Suesses lesser \ >------------------< known books) | > \______________________________________________________/ > > > >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 Apr 27 10:20: 9 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.mugnolo.com (ns.mugnolo.com [209.133.83.160]) by hub.freebsd.org (Postfix) with ESMTP id 7CEB137C07A for ; Thu, 27 Apr 2000 10:20:07 -0700 (PDT) (envelope-from adrian@mugnolo.com) Received: from libre (alma-mex.corp.yahoo.com [206.132.90.181]) by mail.mugnolo.com (8.10.1/8.10.1) with SMTP id e3RHK5r74933 for ; Thu, 27 Apr 2000 14:20:06 -0300 (ART) Message-ID: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> From: "Adrian Mugnolo" To: Subject: Q: proven 100 Mbps cards for 4.0, 5.0? Date: Thu, 27 Apr 2000 10:20:32 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I am considering getting a 100 Mbps card to use w/ a Toshiba Libretto 70CT *exclusively* for FreeBSD (currently I use an unsupported 3Com combo for Windoze). The card should run "as is" w/o tweaks in order to perform pcmcia installations w/ it. The list includes: 3Com 3C574TX Netgear FA410TXC Linksys EC2T/PCMPC100 Should I add or remove from the list? Comments? TIA Regards. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 10:30:32 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from anchor-post-34.mail.demon.net (anchor-post-34.mail.demon.net [194.217.242.92]) by hub.freebsd.org (Postfix) with ESMTP id 5FD5D37BD2C for ; Thu, 27 Apr 2000 10:30:28 -0700 (PDT) (envelope-from dmlb@ragnet.demon.co.uk) Received: from ragnet.demon.co.uk ([158.152.46.40]) by anchor-post-34.mail.demon.net with esmtp (Exim 2.12 #1) id 12ks7M-000LBX-0Y; Thu, 27 Apr 2000 18:30:24 +0100 Received: from dmlb by ragnet.demon.co.uk with local (Exim 3.03 #1) id 12kiRj-000GUT-00; Thu, 27 Apr 2000 08:10:47 +0100 Content-Length: 1058 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200004270400.WAA49597@harmony.village.org> Date: Thu, 27 Apr 2000 08:10:47 +0100 (BST) From: Duncan Barclay To: Warner Losh Subject: RE: Xircom cards Cc: mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Warner On 27-Apr-00 Warner Losh wrote: > > Has anybody had a chance to try the xircom cards with the new patches > yet? These cards should work in the "OLDCARD" kernels such as > GENERIC. By the weekend I'll have a 4.0 and a -current box up and running. I've got a Xircom REM56G-100, am familiar with the old if_xe and need to track what you're doing for if_ray (which will start porting RSN) so count me as a tester. I've got ISA-PCCard converters (Rioch RF5C296's with datasheets). Can you explain how NEWCARD relates to -current and 4-stable (i.e. what should I cvsup to?) > I wish I could easily download iwasaki-san's pccardd readcis patches > to see if they would help the xircom combo card that I have. Keep me upto date on this please. > Warner Duncan --- ________________________________________________________________________ Duncan Barclay | God smiles upon the little children, dmlb@ragnet.demon.co.uk | the alcoholics, and the permanently stoned. ________________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 10:44: 1 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.nyct.net (bsd4.nyct.net [204.141.86.6]) by hub.freebsd.org (Postfix) with ESMTP id E95F437BA9A for ; Thu, 27 Apr 2000 10:43:56 -0700 (PDT) (envelope-from efutch@nyct.net) Received: from bsd1.nyct.net (efutch@bsd1.nyct.net [204.141.86.3]) by mail.nyct.net (8.9.3/8.8.7) with ESMTP id NAA46956; Thu, 27 Apr 2000 13:46:22 -0400 (EDT) (envelope-from efutch@nyct.net) Date: Thu, 27 Apr 2000 13:43:49 -0400 (EDT) From: "Eric D. Futch" To: Adrian Mugnolo Cc: mobile@FreeBSD.ORG Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? In-Reply-To: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> 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've had good luck with my 3Com OfficeConnect 572BT. I works nicely. The only thing that sucks is that I broke the XJack off of the first one. Model number is 3CXSH572BT. -- Eric Futch New York Connect.Net, Ltd. efutch@nyct.net Technical Support Staff http://www.nyct.net (212) 293-2620 "Bringing New York The Internet Access It Deserves" On Thu, 27 Apr 2000, Adrian Mugnolo wrote: >Hi, > >I am considering getting a 100 Mbps card to use w/ a Toshiba Libretto 70CT >*exclusively* for FreeBSD (currently I use an unsupported 3Com combo for >Windoze). The card should run "as is" w/o tweaks in order to perform pcmcia >installations w/ it. The list includes: > >3Com 3C574TX >Netgear FA410TXC >Linksys EC2T/PCMPC100 > >Should I add or remove from the list? Comments? > >TIA > >Regards. > > > > >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 Apr 27 11:16:32 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from cwb.pacific.net.hk (cwb.pacific.net.hk [202.14.67.92]) by hub.freebsd.org (Postfix) with ESMTP id A450F37BEDC for ; Thu, 27 Apr 2000 11:16:28 -0700 (PDT) (envelope-from alexkwan@pacific.net.hk) Received: from kwaifong.pacific.net.hk (kwaifong.pacific.net.hk [202.14.67.7]) by cwb.pacific.net.hk with ESMTP id CAA24340 for ; Fri, 28 Apr 2000 02:16:26 +0800 (HKT) Received: from alexkwan (ppp75.dyn30.pacific.net.hk [202.64.30.75]) by kwaifong.pacific.net.hk with SMTP id CAA23013 for ; Fri, 28 Apr 2000 02:16:25 +0800 (HKT) Message-ID: <000701bfb074$e704a740$4b1e40ca@alexkwan> From: "Alex Kwan" To: Subject: Re: Why only the CD-R/RW not work? Date: Fri, 28 Apr 2000 02:16:57 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="big5" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I copy the pccard.conf from a Toshiba Tecra510CDT to aToshiba Libretto-60, all the pc card are working well (compact flash, ethernet, modem card) like under the original Laptop, but it is only the cdrom not work and got following error message: /kernel: ata3-slave: CDROM device - NO DRIVER! the entry of pccard.conf is: card "PC CARD MANUFACTURER" "PCMCIA ATA/ATAPI Adapter" config auto "ata3" ? insert logger -t pccard:$device -s PCMCIA CDROM inserted remove logger -t pccard:$device -s PCMCIA CDROM removed What is the problem and how to solve, please? Thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 12:55:56 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 0FAC437B551 for ; Thu, 27 Apr 2000 12:55:53 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 NAA95593; Thu, 27 Apr 2000 13:55:48 -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 NAA53641; Thu, 27 Apr 2000 13:54:44 -0600 (MDT) Message-Id: <200004271954.NAA53641@harmony.village.org> To: "Eric D. Futch" Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Cc: Dave Belfer-Shevett , freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 12:12:43 EDT." References: Date: Thu, 27 Apr 2000 13:54:44 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Eric D. Futch" writes: : I generated a patch for this. The patch against pcic_p.c revision 1.20 : and pcic_p.h revision 1.10. I'm pretty sure this is all you'll need, but : I haven't been playing with PC Card stuff for a while :) Let me know if I : got it right or not :) : : http://quake.nyct.net/~efutch/FreeBSD/pcic_p.patch But this is a isa device, so you'd need to patch pccard/pcic.c. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13: 0:49 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 0F34937B818 for ; Thu, 27 Apr 2000 13:00:47 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 OAA95629; Thu, 27 Apr 2000 14:00:45 -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 NAA53713; Thu, 27 Apr 2000 13:59:43 -0600 (MDT) Message-Id: <200004271959.NAA53713@harmony.village.org> To: "Nicolai Petri (ML)" Subject: Re: Problem with NEWCARD Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 14:21:50 +0200." References: Date: Thu, 27 Apr 2000 13:59:43 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Nicolai Petri (ML)" writes: : I compiled NEWCARD on my notebook and was very pleased with the current : progress. But a fun thing is that 1st time I insert my pcmcia card the cis : cannot be read (looks like a wrong IO window!) but after the first time I : can unplug and plug the card forever and the cis is read correct (Yahoo). : : Is this a generic bug or is it just my notebook / pccard ? Hmmm, I have had no problems reading in 5 different cards. One multifunction card did give me some fits, however. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13: 2:24 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 B588C37B523 for ; Thu, 27 Apr 2000 13:02:18 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 OAA95638; Thu, 27 Apr 2000 14:02:17 -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 OAA53736; Thu, 27 Apr 2000 14:01:14 -0600 (MDT) Message-Id: <200004272001.OAA53736@harmony.village.org> To: Dave Belfer-Shevett Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. Cc: Dave Belfer-Shevett , jflowers@ezo.net, freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 12:45:31 EDT." References: Date: Thu, 27 Apr 2000 14:01:14 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Add the vendor ID to pccard/pcic.c: static struct isa_pnp_id pcic_ids[] = { {PCIC_PNP_82365, NULL}, /* PNP0E00 */ {PCIC_PNP_CL_PD6720, NULL}, /* PNP0E01 */ {PCIC_PNP_VLSI_82C146, NULL}, /* PNP0E02 */ {PCIC_PNP_82365_CARDBUS, NULL}, /* PNP0E03 */ {0} }; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13: 4: 7 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 9F70237B999 for ; Thu, 27 Apr 2000 13:04:04 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 OAA95647; Thu, 27 Apr 2000 14:04:03 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id OAA53756; Thu, 27 Apr 2000 14:03:01 -0600 (MDT) Message-Id: <200004272003.OAA53756@harmony.village.org> To: "Jose M. Alcaide" Subject: Re: Xircom cards Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 16:56:01 +0200." <39085501.C1CAF6B0@we.lc.ehu.es> References: <39085501.C1CAF6B0@we.lc.ehu.es> <200004270400.WAA49597@harmony.village.org> Date: Thu, 27 Apr 2000 14:03:01 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <39085501.C1CAF6B0@we.lc.ehu.es> "Jose M. Alcaide" writes: : Warner, could you generate a patchset for 4.0-STABLE, if this is : possible at all? I have a Xircom RealPort 100BTX card, but I cannot : install -CURRENT on my laptop. I reviewed the CVS history log of : your changes to xe, pccard and pcic, and I don't think that they : are directly applicable to 4.0-STABLE. I will do that when I get xe working. fe and ex drivers are also headed into the tree and some fixes to ed. All of this will be MFC'd to 4.0-stable. But not for a couple of weeks yet. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13: 9:39 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 4138E37B551 for ; Thu, 27 Apr 2000 13:09:36 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 OAA95671; Thu, 27 Apr 2000 14:09:34 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id OAA53798; Thu, 27 Apr 2000 14:08:33 -0600 (MDT) Message-Id: <200004272008.OAA53798@harmony.village.org> To: Duncan Barclay Subject: Re: Xircom cards Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 08:10:47 BST." References: Date: Thu, 27 Apr 2000 14:08:32 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Duncan Barclay writes: : By the weekend I'll have a 4.0 and a -current box up and running. I've got : a Xircom REM56G-100, am familiar with the old if_xe and need to track what : you're doing for if_ray (which will start porting RSN) so count me as a tester. The if_ray stuff will need the ability to set offsets, which I don't currently have the code in place to do. Adding it would be easy. Is the this port that's already running 3.x or a different one? : Can you explain how NEWCARD relates to -current and 4-stable (i.e. what should : I cvsup to?) NEWCARD is the port of the NetBSD pccard system, with tweaks from the newconfig people, to FreeBSD. It is in the -current tree and also an earlier version is in -stable right now. For the if_xe stuff, you'll need to build a -current newer than tuesday or so when I committed the patches. I wouldn't try NEWCARD for a little while yet. I'm still getting the kinks worked out of it. Well, you could try it if you wanted to help me get the kinks out, you could give it a spin and fix what you find broken. I'm getting close to needing a whole lot of drivers converted, so now might be a good time to familiarize yourself with the code. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13:11:56 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from pebkac.owp.csus.edu (pebkac.owp.csus.edu [130.86.232.245]) by hub.freebsd.org (Postfix) with ESMTP id 24AE237B957 for ; Thu, 27 Apr 2000 13:11:54 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Received: from localhost (scottj@localhost) by pebkac.owp.csus.edu (8.9.3/8.9.3) with ESMTP id NAA56986; Thu, 27 Apr 2000 13:11:50 -0700 (PDT) (envelope-from joseph.scott@owp.csus.edu) Date: Thu, 27 Apr 2000 13:11:50 -0700 (PDT) From: Joseph Scott X-Sender: scottj@pebkac.owp.csus.edu To: Adrian Mugnolo Cc: mobile@FreeBSD.ORG Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? In-Reply-To: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> 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 Thu, 27 Apr 2000, Adrian Mugnolo wrote: > Hi, > > I am considering getting a 100 Mbps card to use w/ a Toshiba Libretto 70CT > *exclusively* for FreeBSD (currently I use an unsupported 3Com combo for > Windoze). The card should run "as is" w/o tweaks in order to perform pcmcia > installations w/ it. The list includes: > > 3Com 3C574TX > Netgear FA410TXC > Linksys EC2T/PCMPC100 I've been very happy with my Netgear FA410, running 4-STABLE. Plugged it, adjusted rc.conf accordingly (to start pccardd) and it came right up, first time. --- Joseph Scott joseph.scott@owp.csus.edu The Office Of Water Programs - CSU Sacramento To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13:12:37 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.nyct.net (bsd4.nyct.net [204.141.86.6]) by hub.freebsd.org (Postfix) with ESMTP id 0E9DA37B99E for ; Thu, 27 Apr 2000 13:12:32 -0700 (PDT) (envelope-from efutch@nyct.net) Received: from bsd1.nyct.net (efutch@bsd1.nyct.net [204.141.86.3]) by mail.nyct.net (8.9.3/8.8.7) with ESMTP id QAA87105; Thu, 27 Apr 2000 16:14:59 -0400 (EDT) (envelope-from efutch@nyct.net) Date: Thu, 27 Apr 2000 16:12:23 -0400 (EDT) From: "Eric D. Futch" To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. In-Reply-To: <200004271954.NAA53641@harmony.village.org> 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 Sorry not paying enough attention again. Pass the point hat :) -- Eric Futch New York Connect.Net, Ltd. efutch@nyct.net Technical Support Staff http://www.nyct.net (212) 293-2620 "Bringing New York The Internet Access It Deserves" On Thu, 27 Apr 2000, Warner Losh wrote: > >But this is a isa device, so you'd need to patch pccard/pcic.c. > >Warner > > > >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 Apr 27 13:18: 6 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 AD47837BA31 for ; Thu, 27 Apr 2000 13:17:58 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id WAA67661; Thu, 27 Apr 2000 22:17:55 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id WAA00617; Thu, 27 Apr 2000 22:12:52 +0200 (CEST) From: Sascha Klauder Message-Id: <200004272012.WAA00617@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Thu, 27 Apr 2000 22:12:52 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000427144249.A21606@stat.Duke.EDU> from "Sean O'Connell" at Apr 27, 2000 02:42:49 pm 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 Thu Apr 27 20:42:49 2000, Sean O'Connell wrote: > Seriously, did you see the posting about switching the > order of the probes in if_ed_pccard.c No luck. I've tried both polling and irq mode and various irq's (3,4,5). I still get that scrambled MAC address. PNPBIOS yields a bunch of unknown devices but it doesn't seem to help to configure either pc-card stuff or the IrDA port. Can I even have a "sio0" and a "sio" device together? Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13:18: 6 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 14D4537B999 for ; Thu, 27 Apr 2000 13:17:59 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id WAA67664; Thu, 27 Apr 2000 22:17:56 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id WAA00635; Thu, 27 Apr 2000 22:17:52 +0200 (CEST) From: Sascha Klauder Message-Id: <200004272017.WAA00635@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Thu, 27 Apr 2000 22:17:52 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000427150253.B21606@stat.Duke.EDU> from "Sean O'Connell" at Apr 27, 2000 03:02:53 pm 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 Thu Apr 27 21:02:53 2000, Sean O'Connell wrote: > > sio1: configured irq 10 not in bitmap of probed irqs 0 > Bummer. Maybe its on the pci bus (or perhaps PNPBIOS will > pick it up) in which case having just (device sio1 or maybe > even sio ... not sure). Well, see other mail. > > Yeah, I'm at the point to throw the damn thing away! Anybody know > > of a PC Card NIC that is known to work well? > 3Com 3c589D > Linksys EC2T Thanks, maybe I'll pick up one of them. > PNPBIOS just means that it makes the BIOS configure the devices > rather than OS. It will find things like soundcards if you use > this option and "device pcm". Yeah, but it seems newpcm doesn't need PNPBIOS anymore. In another computer I have a SoundBlaster 32 PnP and it works fine with just "device pcm". Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 13:18: 7 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from boreas.isi.edu (boreas.isi.edu [128.9.160.161]) by hub.freebsd.org (Postfix) with ESMTP id CE0E137B739 for ; Thu, 27 Apr 2000 13:18:00 -0700 (PDT) (envelope-from faber@ISI.EDU) Received: from ted.isi.edu (ted.isi.edu [128.9.160.104]) by boreas.isi.edu (8.8.7/8.8.6) with ESMTP id NAA01417; Thu, 27 Apr 2000 13:17:59 -0700 (PDT) Received: from ted.isi.edu (localhost [127.0.0.1]) by ted.isi.edu (8.9.3/8.9.3) with ESMTP id NAA25629; Thu, 27 Apr 2000 13:17:59 -0700 (PDT) (envelope-from faber@ted.isi.edu) Message-Id: <200004272017.NAA25629@ted.isi.edu> X-Mailer: exmh version 2.1.1 10/15/1999 To: Joseph Scott Cc: Adrian Mugnolo , mobile@FreeBSD.ORG Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? In-Reply-To: Your message of "Thu, 27 Apr 2000 13:11:50 PDT." X-Url: http://www.isi.edu/~faber Date: Thu, 27 Apr 2000 13:17:59 -0700 From: Ted Faber Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Content-Type: text/plain; charset=us-ascii Joseph Scott wrote: > I've been very happy with my Netgear FA410, running >4-STABLE. Plugged it, adjusted rc.conf accordingly (to start pccardd) and >it came right up, first time. I would exercise some caution with the Netgear FA410. I had Netgear 410TX work beautifully under 4-stable. I bought another Netgear 410 card to replace it (damaged the dongle connection) and had no luck with it. The second card had an extra letter in the name (TAX maybe??), and that made all the difference. Same system, same config, plug one in - connectivity, the other, can't see it. I'm currently using a LinkSys Etherfast model PCMPC100 and it worked right out of the box. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.1 (FreeBSD) Comment: Exmh version 2.1.1 10/15/1999 iD8DBQE5CKB3aUz3f+Zf+XsRAi4yAJ9DFMGdwzlpQ/uJr6nK4rHoYWKGVgCg57rq azn+pbq7zU6uN8Ctq6BwACg= =Hn5v -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 14: 4:29 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from distortion.dk (distortion.dk [195.249.147.156]) by hub.freebsd.org (Postfix) with ESMTP id A4BE037C028 for ; Thu, 27 Apr 2000 14:04:24 -0700 (PDT) (envelope-from nppmf@swamp.dk) Received: from localhost (nppmf@localhost) by distortion.dk (8.9.3/8.9.1) with ESMTP id XAA13946; Thu, 27 Apr 2000 23:05:11 +0200 (CEST) (envelope-from nppmf@swamp.dk) Date: Thu, 27 Apr 2000 23:05:11 +0200 (CEST) From: "Nicolai Petri (ML)" X-Sender: nppmf@distortion.dk To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Problem with NEWCARD In-Reply-To: <200004271959.NAA53713@harmony.village.org> 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 The card is a 3Com 3c589 like card. The notebook is a ThinkPad 760 XL Another thing is that if the card is not recognized while booting... I must unplug and plug it back in before it's recognized ! The problem is show below (I quicky skipped through the source code but could not find the magic bits) : ----- 1st insertion (FAILED) ------ pcic0: intr pccard0: 00 CD 0 pcic0: intr pccard0: 00 CD c pccard0: enqueing INSERTION event pccard0: insertion event pcic_attach_card h 0xc095e044 h->dev 0xc0958500 pccard pcic pccard0: pccard_card_attach pccard0: chip_socket_enable pccard0: pcic_chip_socket_enable cardtype mem 40 pccard0: read_cis Calling scan_cis pcic_chip_mem_map window 0 bus 0+0+400 at card addr 0 pcic_chip_do_mem_map window 0: 0000 8000 0000 0xc0956400 0xc0958500 3 0 0x1 pcic_chip_do_mem_map window 0: 00d2 80d2 4000 cis mem map c00d2000 pccard0: CIS tuple chain: unhandled CISTPL 40 40 00 CISTPL_NONE 00 CISTPL_NONE 00 CISTPL_NONE 00 (.... Looots of garbage CIS) CISTPL_END ff pccard0: chip_socket_disable pcic_chip_socket_disable pccard0: check_cis_quirks pcic0: intr pccard0: 00 CD 0 pccard0: detaching card pccard0: enqueing REMOVAL event pccard0: removal event pcic_detach_card: already detached ------ End of 1st ------ Start of 2nd ( Working) pcic0: intr pccard0: 00 CD c pccard0: enqueing INSERTION event pccard0: insertion event pcic_attach_card h 0xc095e044 h->dev 0xc0958500 pccard pcic pccard0: pccard_card_attach pccard0: chip_socket_enable pccard0: pcic_chip_socket_enable cardtype mem 40 pccard0: read_cis Calling scan_cis pcic_chip_mem_map window 0 bus d2000+0+400 at card addr 0 pcic_chip_do_mem_map window 0: 00d2 80d2 3f2e 0xc0956400 0xc0958500 3 0 0x1 pcic_chip_do_mem_map window 0: 00d2 80d2 7f2e cis mem map c00d2000 pccard0: CIS tuple chain: CISTPL_DEVICE type=null speed=null 01 02 00 ff CISTPL_DEVICE_A type=eeprom speed=150ns 17 03 43 02 ff CISTPL_MANFID 20 04 01 01 89 05 CISTPL_FUNCID 21 02 06 00 CISTPL_VERS_1 15 2e 04 01 33 43 6f 6d 00 4d 65 67 61 68 65 72 74 7a 20 35 38 39 45 00 54 50 2f 42 4e 43 20 4c 41 4e 20 50 43 20 43 61 72 64 00 30 30 35 00 ff CISTPL_CONFIG 1a 06 02 03 00 00 01 03 CISTPL_CFTABLE_ENTRY 1b 14 c1 01 1d 71 55 35 55 54 e0 72 5d 64 30 ff ff 80 80 80 80 0f CISTPL_CFTABLE_ENTRY 1b 07 03 01 71 55 26 26 54 unhandled CISTPL 19 19 03 00 00 ff CISTPL_NO_LINK 14 00 CISTPL_CHECKSUM addr=0 len=7a cksum=0 ok 10 05 8f ff 7a 00 00 CISTPL_END ff pccard0: chip_socket_disable pcic_chip_socket_disable pccard0: check_cis_quirks pccard0: functions scanning ---- End of second attempt! Looks funny, doesnt it ? --- Nicolai Petri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 15: 4: 0 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 29C4737B999 for ; Thu, 27 Apr 2000 15:03:57 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id AAA67842; Fri, 28 Apr 2000 00:03:54 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id AAA00931; Fri, 28 Apr 2000 00:06:53 +0200 (CEST) From: Sascha Klauder Message-Id: <200004272206.AAA00931@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Fri, 28 Apr 2000 00:06:53 +0200 (CEST) Cc: freebsd-mobile@FreeBSD.org In-Reply-To: <20000427162150.C21606@stat.Duke.EDU> from "Sean O'Connell" at Apr 27, 2000 04:21:50 pm 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 Thu Apr 27 22:21:50 2000, Sean O'Connell wrote: > They have an icky big dongle, though. they have a new 10bT > card Net Everywhere NP10T or something like that. No experience. Hm, I'll see to it. > > Yeah, but it seems newpcm doesn't need PNPBIOS anymore. In another > > computer I have a SoundBlaster 32 PnP and it works fine with just > > "device pcm". > Running 5.0 or 4.0? PNPBIOS is on by default under 5.0. 4.0-STABLE, works like a charm. BTW, perhaps offtopic, but does anyone know what isa0: too many dependant configs (8) means? Pops up in this context (I didn't want to post full dmesg): de0: 21041 [10Mb/s] pass 2.1 de0: address 00:80:c8:58:15:3a pci0: at 15.0 irq 0 isa0: too many dependant configs (8) fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 18: 7:22 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from cwb.pacific.net.hk (cwb.pacific.net.hk [202.14.67.92]) by hub.freebsd.org (Postfix) with ESMTP id E06C837B7DC for ; Thu, 27 Apr 2000 18:07:18 -0700 (PDT) (envelope-from alexkwan@pacific.net.hk) Received: from kwaifong.pacific.net.hk (kwaifong.pacific.net.hk [202.14.67.7]) by cwb.pacific.net.hk with ESMTP id JAA20480; Fri, 28 Apr 2000 09:07:13 +0800 (HKT) Received: from alexkwan (ppp216.dyn30.pacific.net.hk [202.64.30.216]) by kwaifong.pacific.net.hk with SMTP id JAA20218; Fri, 28 Apr 2000 09:07:12 +0800 (HKT) Message-ID: <000801bfb0ae$4981baa0$d81e40ca@alexkwan> From: "Alex Kwan" To: "Sean O'Connell" Cc: References: <000701bfb074$e704a740$4b1e40ca@alexkwan> <20000427142219.Y21606@stat.Duke.EDU> Subject: Re: Why only the CD-R/RW not work? Date: Fri, 28 Apr 2000 09:08:37 +0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Sean, I use the GENERIC kernel, it has device atapicd, my kernel: device ata0 at isa? port IO_WD1 irq14 device ata1 at isa? port IO_WD2 irq15 device atadisk device atapicd device atapifd device atapist options ATA_STATIC_ID Thanks > Alex Kwan stated: > > Hi! > > > > I copy the pccard.conf from a Toshiba Tecra510CDT to aToshiba Libretto-60, > > all the pc card are working well (compact flash, ethernet, modem card) like > > under the original Laptop, but it is only the cdrom not work and got > > following > > error message: > > > > /kernel: ata3-slave: CDROM device - NO DRIVER! > > > > the entry of pccard.conf is: > > card "PC CARD MANUFACTURER" "PCMCIA ATA/ATAPI Adapter" > > config auto "ata3" ? > > insert logger -t pccard:$device -s PCMCIA CDROM inserted > > remove logger -t pccard:$device -s PCMCIA CDROM removed > > > > What is the problem and how to solve, please? > > Alex- > > Is > > device atapicd > > in your kernel? > > 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 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 21:55: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 08F7D37B8C2 for ; Thu, 27 Apr 2000 21:55:13 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 WAA96854; Thu, 27 Apr 2000 22:55:11 -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 WAA55789; Thu, 27 Apr 2000 22:54:08 -0600 (MDT) Message-Id: <200004280454.WAA55789@harmony.village.org> To: "Nicolai Petri (ML)" Subject: Re: Problem with NEWCARD Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 23:05:11 +0200." References: Date: Thu, 27 Apr 2000 22:54:08 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Nicolai Petri (ML)" writes: : Another thing is that if the card is not recognized while booting... I : must unplug and plug it back in before it's recognized ! Yes. That's a known problem, and will be rectified. I'm off tonight in the middle of hooking up the probe/attach routines and hope to have at least one driver attaching soon. I gotta understand the MF cards better and also need to fix support for the parsing of CIS for MF cards which I know is broken. : The problem is show below (I quicky skipped through the source : code but could not find the magic bits) : Wow! That's odd. I've not seen that here, but my 589 bought the farm not too long ago and Matt Dodd hasn't had the time to add the support for the C1 that I have. Since I have other cards I'm not a all worried about it. I'll see what I can see in the limited amount of time I can make for this. I also have to do real work as well as some minor side work while I'm up here in this beautiful country. Thanks for trying this out. My goal is to be able to start integrating cardbus before my trip to Japan scheduled for Jun 6. Eg, the ed, ep and sio drivers will have been converted by then to NEWCARD (while remaining compatible with oldcard, which is a goal until I can get all the kinks worked out of newcard). I also have some compatibility issues to deal with NetBSD I'd like to at least look at by then. I'm sure that cardbus will come up while I'm in Japan and I'll likely not get a chance to actually start until I get back. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 21:59: 6 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 B815537B799 for ; Thu, 27 Apr 2000 21:59:03 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 WAA96863; Thu, 27 Apr 2000 22:59:02 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id WAA55832; Thu, 27 Apr 2000 22:57:58 -0600 (MDT) Message-Id: <200004280457.WAA55832@harmony.village.org> To: Mitsuru IWASAKI Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) Cc: winter@jurai.net, mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 14:56:34 +0900." <20000427145634U.iwasaki@jp.FreeBSD.org> References: <20000427145634U.iwasaki@jp.FreeBSD.org> <20000427011230G.iwasaki@jp.FreeBSD.org> Date: Thu, 27 Apr 2000 22:57:58 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Since Matt already said yes, I'll go ahead and commit this right now. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 22: 4:45 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 7812D37B6DA for ; Thu, 27 Apr 2000 22:04:43 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id BAA09240; Fri, 28 Apr 2000 01:04:25 -0400 (EDT) Date: Fri, 28 Apr 2000 01:04:25 -0400 (EDT) From: "Matthew N. Dodd" To: Warner Losh Cc: Mitsuru IWASAKI , mobile@FreeBSD.ORG Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: <200004280457.WAA55832@harmony.village.org> 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 Thu, 27 Apr 2000, Warner Losh wrote: > Since Matt already said yes, I'll go ahead and commit this right now. The 'ex' stuff? I'd prefer that you didn't. I'm going to split out the driver into if_ex_isa.c and if_ex_pccard.c like the 'ep' driver. -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 22: 8: 3 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 6851B37B963 for ; Thu, 27 Apr 2000 22:08:00 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 XAA96895; Thu, 27 Apr 2000 23:07:59 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id XAA55884; Thu, 27 Apr 2000 23:06:56 -0600 (MDT) Message-Id: <200004280506.XAA55884@harmony.village.org> To: "Matthew N. Dodd" Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) Cc: Mitsuru IWASAKI , mobile@FreeBSD.ORG In-reply-to: Your message of "Fri, 28 Apr 2000 01:04:25 EDT." References: Date: Thu, 27 Apr 2000 23:06:56 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Matthew N. Dodd" writes: : On Thu, 27 Apr 2000, Warner Losh wrote: : > Since Matt already said yes, I'll go ahead and commit this right now. : : The 'ex' stuff? I'd prefer that you didn't. : : I'm going to split out the driver into if_ex_isa.c and if_ex_pccard.c like : the 'ep' driver. No, the patch to the ed driver that you and I talked about before. I'm leaving the ex stuff up to ou. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 22:30:37 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from anchor-post-31.mail.demon.net (anchor-post-31.mail.demon.net [194.217.242.89]) by hub.freebsd.org (Postfix) with ESMTP id 1E61737B6E2 for ; Thu, 27 Apr 2000 22:30:29 -0700 (PDT) (envelope-from dmlb@ragnet.demon.co.uk) Received: from ragnet.demon.co.uk ([158.152.46.40]) by anchor-post-31.mail.demon.net with esmtp (Exim 2.12 #1) id 12l3MA-0003d9-0V; Fri, 28 Apr 2000 06:30:27 +0100 Received: from dmlb by ragnet.demon.co.uk with local (Exim 3.03 #1) id 12kwIN-000N4b-00; Thu, 27 Apr 2000 22:58:03 +0100 Content-Length: 2581 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200004272008.OAA53798@harmony.village.org> Date: Thu, 27 Apr 2000 22:58:03 +0100 (BST) From: Duncan Barclay To: Warner Losh Subject: Re: Xircom cards Cc: mobile@FreeBSD.ORG Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 27-Apr-00 Warner Losh wrote: > In message Duncan Barclay > writes: >: By the weekend I'll have a 4.0 and a -current box up and running. I've got >: a Xircom REM56G-100, am familiar with the old if_xe and need to track what >: you're doing for if_ray (which will start porting RSN) so count me as a >: tester. > > The if_ray stuff will need the ability to set offsets, which I don't > currently have the code in place to do. Adding it would be easy. Is > the this port that's already running 3.x or a different one? I will port what's already running under 3.x to -current/NEWCARD, not "port" from another OS (again). Ho hum. >: Can you explain how NEWCARD relates to -current and 4-stable (i.e. what >: should >: I cvsup to?) > > NEWCARD is the port of the NetBSD pccard system, with tweaks from the > newconfig people, to FreeBSD. It is in the -current tree and also an > earlier version is in -stable right now. > > For the if_xe stuff, you'll need to build a -current newer than > tuesday or so when I committed the patches. I wouldn't try NEWCARD > for a little while yet. Okay. > I'm still getting the kinks worked out of > it. Well, you could try it if you wanted to help me get the kinks > out, you could give it a spin and fix what you find broken. Fine, it will probably help the overall code if I do this concurrently with if_ray. As if_ray uses almost everything it can that's not straight PC-Card, it's probably a good test. > I'm > getting close to needing a whole lot of drivers converted, so now > might be a good time to familiarize yourself with the code. In best reading between the lines mode I've got the following cards I can test for you: Card Interesting Webgear Wireless LAN Messy stuff with memory maps Xircom REM56G-100 Mutlifunction modem/ethernet and CIS stuff Libretto 50CT Floppy ? Adaptec 1460 ? Option 56k Modem ? NE2000 Ethernet Card ? CIS has "Telecom Device SuperSocket RE450T" I might be able to get my hands on some WaveLAN cards from an Airport, and 3COM Megehertz modems/ethernet cards (borrowed from work). Network drivers are all that I'm familiar with though. > Warner Duncan --- ________________________________________________________________________ Duncan Barclay | God smiles upon the little children, dmlb@ragnet.demon.co.uk | the alcoholics, and the permanently stoned. ________________________________________________________________________ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 22:45:45 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [63.67.141.99]) by hub.freebsd.org (Postfix) with ESMTP id 6C87D37B5CA for ; Thu, 27 Apr 2000 22:45:43 -0700 (PDT) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.9.3/8.8.7) with ESMTP id BAA09580; Fri, 28 Apr 2000 01:45:29 -0400 (EDT) Date: Fri, 28 Apr 2000 01:45:29 -0400 (EDT) From: "Matthew N. Dodd" To: Warner Losh Cc: Mitsuru IWASAKI , mobile@FreeBSD.ORG Subject: Re: CFR: ex and fe driver PCCard support (Re: [Experimental patch] ex driver PCCard support) In-Reply-To: <200004280506.XAA55884@harmony.village.org> 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 Thu, 27 Apr 2000, Warner Losh wrote: > No, the patch to the ed driver that you and I talked about before. > I'm leaving the ex stuff up to ou. Oh, right. (for some reason I thought you'd already committed that bit.) -- | Matthew N. Dodd | '78 Datsun 280Z | '75 Volvo 164E | FreeBSD/NetBSD | | winter@jurai.net | 2 x '84 Volvo 245DL | ix86,sparc,pmax | | http://www.jurai.net/~winter | This Space For Rent | ISO8802.5 4ever | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Apr 27 23:32: 0 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 2C0EF37B8DD for ; Thu, 27 Apr 2000 23:31:57 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 AAA97158; Fri, 28 Apr 2000 00:31:55 -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 AAA56339; Fri, 28 Apr 2000 00:31:54 -0600 (MDT) Message-Id: <200004280631.AAA56339@harmony.village.org> To: Duncan Barclay Subject: Re: Xircom cards Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Thu, 27 Apr 2000 22:58:03 BST." References: Date: Fri, 28 Apr 2000 00:31:54 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Duncan Barclay writes: : Fine, it will probably help the overall code if I do this concurrently with : if_ray. As if_ray uses almost everything it can that's not straight PC-Card, : it's probably a good test. OK. The interfaces are in place, some are unimplemented, so it would just be a matter of you using them, me implementing the one or two parts that aren't there and my fixing any botches that I may have designed into the api. : In best reading between the lines mode I've got the following cards I can : test for you: : Card Interesting : Webgear Wireless LAN Messy stuff with memory maps : Xircom REM56G-100 Mutlifunction modem/ethernet and CIS stuff Don't have one of these. I have the 33.6 cem336 version. : Libretto 50CT Floppy ? : Adaptec 1460 ? Got both of these. : Option 56k Modem ? : NE2000 Ethernet Card ? CIS has "Telecom Device SuperSocket RE450T" : : I might be able to get my hands on some WaveLAN cards from an Airport, and : 3COM Megehertz modems/ethernet cards (borrowed from work). : : Network drivers are all that I'm familiar with though. OK. I'm mostly interested in the if_ray driver, since I have a couple of these cards. My hinting was mostly that you'll need to nmake minor adjustments to if_ray when newcard hits the streets. I'm still working out the final details of them right now, but hope to do it in a compatible way with oldcard. both will have to coexist in the tree for a while. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 0:16:42 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from tld.follo.net (tld.follo.net [195.204.143.184]) by hub.freebsd.org (Postfix) with ESMTP id E9A0537BBC9 for ; Fri, 28 Apr 2000 00:16:39 -0700 (PDT) (envelope-from terje@elde.net) Received: by tld.follo.net (Postfix, from userid 1001) id AFF187D73; Fri, 28 Apr 2000 09:16:36 +0200 (CEST) Date: Fri, 28 Apr 2000 09:16:35 +0200 From: Terje Elde To: mobile@freebsd.org Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? Message-ID: <20000428091635.D22673@tld.follo.net> References: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.1.12i In-Reply-To: <003201bfb06c$e9353c80$b55a84ce@yahoo.com>; from adrian@mugnolo.com on Thu, Apr 27, 2000 at 10:20:32AM -0700 X-Mailer: Mutt http://www.mutt.org/ X-Editor: Vim http://www.vim.org/ X-IRC: ircii!epic4-2000 - prevail[1214] X-Goal: Exterminate All Rational Thought Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Adrian Mugnolo (adrian@mugnolo.com) [000427 19:26]: > 3Com 3C574TX > Netgear FA410TXC > Linksys EC2T/PCMPC100 > > Should I add or remove from the list? Comments? I've talked to people who were very happy with the 3com and netgear cards. However, as you're looking spesificly for performance, would it not be a good idea to ask people to post benchmark data instead of just works/don't work? I'll see if I can dig out a 3c574tx and make it run. Then I'll dump some benchmarks on you. Terje -- Terje Elde | Yes Interactive AS | voice: +47 64 85 52 00 terje@yes.no | http://www.yes.no/ | fax: +47 64 85 52 01 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 2:45:39 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from distortion.dk (distortion.dk [195.249.147.156]) by hub.freebsd.org (Postfix) with ESMTP id 335C437BCF5 for ; Fri, 28 Apr 2000 02:45:37 -0700 (PDT) (envelope-from nppmf@swamp.dk) Received: from localhost (nppmf@localhost) by distortion.dk (8.9.3/8.9.1) with ESMTP id LAA20885; Fri, 28 Apr 2000 11:46:31 +0200 (CEST) (envelope-from nppmf@swamp.dk) Date: Fri, 28 Apr 2000 11:46:31 +0200 (CEST) From: "Nicolai Petri (ML)" X-Sender: nppmf@distortion.dk To: Warner Losh Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Problem with NEWCARD In-Reply-To: <200004280454.WAA55789@harmony.village.org> 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 Thu, 27 Apr 2000, Warner Losh wrote: > In message "Nicolai Petri (ML)" writes: > : Another thing is that if the card is not recognized while booting... I > : must unplug and plug it back in before it's recognized ! > > Yes. That's a known problem, and will be rectified. I'm off tonight Nice.. I'll let you handle that.. > : The problem is show below (I quicky skipped through the source > : code but could not find the magic bits) : > > Wow! That's odd. I've not seen that here, but my 589 bought the farm > not too long ago and Matt Dodd hasn't had the time to add the support > for the C1 that I have. Since I have other cards I'm not a all > worried about it. I'll look at the reinsertion-before-success problem the next couple of days.. It's hopefully a simple thing... I'll keep you posted.. --- Nicolai Petri To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 9:53:12 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from lightship.internal.homeport.org (breakwater.homeport.org [216.67.13.2]) by hub.freebsd.org (Postfix) with ESMTP id 7F3D437B804; Fri, 28 Apr 2000 09:53:05 -0700 (PDT) (envelope-from shevett@stonekeep.com) Received: from localhost (shevett@localhost) by lightship.internal.homeport.org (8.9.3/8.9.3) with ESMTP id QAA02438; Fri, 28 Apr 2000 16:54:32 -0400 (EDT) (envelope-from shevett@stonekeep.com) X-Authentication-Warning: lightship.internal.homeport.org: shevett owned process doing -bs Date: Fri, 28 Apr 2000 16:54:32 -0400 (EDT) From: Dave Belfer-Shevett X-Sender: shevett@localhost To: Warner Losh Cc: jflowers@ezo.net, freebsd-mobile@FreeBSD.ORG, freebsd-current@FreeBSD.ORG Subject: Re: Problems configuring Vadem VG-469 PCMCIA controller. In-Reply-To: <200004272001.OAA53736@harmony.village.org> 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 Thu, 27 Apr 2000, Warner Losh wrote: > Add the vendor ID to pccard/pcic.c: > static struct isa_pnp_id pcic_ids[] = { > {PCIC_PNP_82365, NULL}, /* PNP0E00 */ > {PCIC_PNP_CL_PD6720, NULL}, /* PNP0E01 */ > {PCIC_PNP_VLSI_82C146, NULL}, /* PNP0E02 */ > {PCIC_PNP_82365_CARDBUS, NULL}, /* PNP0E03 */ > {0} > }; Thanks to the wonders of Mr Bill Paul and others, we are up and running beautifully. Changing that structure to: static struct isa_pnp_id pcic_ids[] = { {PCIC_PNP_82365, NULL}, /* PNP0E00 */ {PCIC_PNP_CL_PD6720, NULL}, /* PNP0E01 */ {PCIC_PNP_VLSI_82C146, NULL}, /* PNP0E02 */ {PCIC_PNP_82365_CARDBUS, NULL}, /* PNP0E03 */ {0x1802a904, NULL}, {0} }; has fixed the problem. Note that that identifier is what pnpinfo reported: Logical Device ID: AEI0218 0x1802a904 #0 Vendor register funcs 00 I/O Range 0x3e0 .. 0x3fe, alignment 0x2, len 0x2 [16-bit addr] End Tag Since we knew the controller was the same as the others (the Vadem), just adding that ID fixed thinks up. Thanks to everyone who answered, and specially to Bill who a) wrote the driver, and b) debugged the problem with me. dave -------------------. Web-based problem management: www.stonekeep.com Dave Belfer-Shevett >----------------------------------------------------. shevett@pobox.com / "I've never had major knee surgery on any other part \ ------------------< of my body." (Winston Bennett, University of | | Kentucky basketball forward) | \______________________________________________________/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 10:28: 5 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.mugnolo.com (ns.mugnolo.com [209.133.83.160]) by hub.freebsd.org (Postfix) with ESMTP id B73C437BF60 for ; Fri, 28 Apr 2000 10:28:03 -0700 (PDT) (envelope-from adrian@mugnolo.com) Received: from libre (alma-mex.corp.yahoo.com [206.132.90.181]) by mail.mugnolo.com (8.10.1/8.10.1) with SMTP id e3SHRvr21196 for ; Fri, 28 Apr 2000 14:27:59 -0300 (ART) Message-ID: <002401bfb137$2edfcdc0$b55a84ce@yahoo.com> From: "Adrian Mugnolo" To: References: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> <20000428091635.D22673@tld.follo.net> Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? Date: Fri, 28 Apr 2000 10:28:24 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Being honest, the Libretto is a rather old, rather not-so-fast notebook. I would be glad if it just let me do a full 4.0 http or ftp install w/o tweaking. The Libretto loses contact w/ its pcmcia floppy once the kernel starts..... An average 100 Mbps performance will be right for me (not a speed freak anyway). :-) ----- Original Message ----- From: "Terje Elde" To: Sent: 28 April, 2000 00:16 Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? > * Adrian Mugnolo (adrian@mugnolo.com) [000427 19:26]: > > 3Com 3C574TX > > Netgear FA410TXC > > Linksys EC2T/PCMPC100 > > > > Should I add or remove from the list? Comments? > > I've talked to people who were very happy with the 3com and netgear cards. > However, as you're looking spesificly for performance, would it not be a good > idea to ask people to post benchmark data instead of just works/don't work? > > I'll see if I can dig out a 3c574tx and make it run. Then I'll dump some > benchmarks on you. > > Terje > -- > Terje Elde | Yes Interactive AS | voice: +47 64 85 52 00 > terje@yes.no | http://www.yes.no/ | fax: +47 64 85 52 01 > > > 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 Fri Apr 28 10:28:29 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.mugnolo.com (ns.mugnolo.com [209.133.83.160]) by hub.freebsd.org (Postfix) with ESMTP id 54A4A37C05E for ; Fri, 28 Apr 2000 10:28:27 -0700 (PDT) (envelope-from adrian@mugnolo.com) Received: from libre (alma-mex.corp.yahoo.com [206.132.90.181]) by mail.mugnolo.com (8.10.1/8.10.1) with SMTP id e3SHSOr21204 for ; Fri, 28 Apr 2000 14:28:24 -0300 (ART) Message-ID: <002d01bfb137$3ddd63a0$b55a84ce@yahoo.com> From: "Adrian Mugnolo" To: References: <003201bfb06c$e9353c80$b55a84ce@yahoo.com> <20000428091635.D22673@tld.follo.net> Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? Date: Fri, 28 Apr 2000 10:28:24 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2919.6600 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Being honest, the Libretto is a rather old, rather not-so-fast notebook. I would be glad if it just let me do a full 4.0 http or ftp install w/o tweaking. The Libretto loses contact w/ its pcmcia floppy once the kernel starts..... An average 100 Mbps performance will be right for me (not a speed freak anyway). :-) ----- Original Message ----- From: "Terje Elde" To: Sent: 28 April, 2000 00:16 Subject: Re: Q: proven 100 Mbps cards for 4.0, 5.0? > * Adrian Mugnolo (adrian@mugnolo.com) [000427 19:26]: > > 3Com 3C574TX > > Netgear FA410TXC > > Linksys EC2T/PCMPC100 > > > > Should I add or remove from the list? Comments? > > I've talked to people who were very happy with the 3com and netgear cards. > However, as you're looking spesificly for performance, would it not be a good > idea to ask people to post benchmark data instead of just works/don't work? > > I'll see if I can dig out a 3c574tx and make it run. Then I'll dump some > benchmarks on you. > > Terje > -- > Terje Elde | Yes Interactive AS | voice: +47 64 85 52 00 > terje@yes.no | http://www.yes.no/ | fax: +47 64 85 52 01 > > > 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 Fri Apr 28 11:17: 8 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp1.medianstrip.net (medianstrip.net [206.113.38.30]) by hub.freebsd.org (Postfix) with ESMTP id E6D0F37B614 for ; Fri, 28 Apr 2000 11:17:05 -0700 (PDT) (envelope-from mike@medianstrip.net) Received: by smtp1.medianstrip.net (Postfix, from userid 1000) id EEF0259A4; Fri, 28 Apr 2000 14:16:59 -0400 (EDT) Date: Fri, 28 Apr 2000 14:16:59 -0400 From: mike To: freebsd-mobile@freebsd.org Subject: suspend/resume on z505hs Message-ID: <20000428141659.A74587@medianstrip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org i've got a couple suspend/resume problems on a sony vaio z505hs. the first is that after a resume usb devices no longer work. kern/18261 contains a patch for this, translated from netbsd. the second is far more problematic: if i boot a kernel with fxp support then suspend and resume, the machine wedges in fxp_init while waiting for the "config command/DMA" to complete (if_fxp.c revision 1.77.2.1 line 1518). anybody got any ideas on this one? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 12:46:14 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from socrates.nmia.com (socrates.nmia.com [198.59.166.170]) by hub.freebsd.org (Postfix) with SMTP id 1394D37B60C for ; Fri, 28 Apr 2000 12:46:10 -0700 (PDT) (envelope-from ripper@nmia.com) Received: from plato.nmia.com(really [198.59.166.165]) by socrates.nmia.com via sendmail with smtp id for ; Fri, 28 Apr 2000 13:46:08 -0600 (MDT) (Smail-3.2.0.106 1999-Mar-31 #3 built 1999-Apr-19) Received: by plato.nmia.com id m12lGiF-0011c9C; Fri, 28 Apr 2000 13:46:07 -0600 (MDT) Message-Id: Subject: amd.map To: freebsd-mobile@freebsd.org Date: Fri, 28 Apr 2000 13:46:07 -0600 (MDT) From: "Ross A Lippert" X-Mailer: ELM [version 2.5 PL2] 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 Still having trouble with the amd.map format. am-utils makes an attempt to explain the format in it sdocumentation, but it is too disorganized for someone like me, who doesn't really know all that much about the dozens of ways one can distribute a file system. Let me try this. If anyone out there would be so kind, could I be sent a copy of some amd.map files with (please) an explanation of what each token in it represents? I think I am just running short of a few well-defined examples before I grok. -r To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 16:58:11 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 4CE2737B9EB for ; Fri, 28 Apr 2000 16:58:09 -0700 (PDT) (envelope-from sklauder@ibd-web.de) Received: from avalon.ibd-web.de (dialin.shopkeeper.de [195.27.246.233]) by sianna.shopkeeper.de (8.9.3/8.9.3) with ESMTP id BAA71386; Sat, 29 Apr 2000 01:58:02 +0200 (CEST) (envelope-from sklauder@ibd-web.de) Received: (from sklauder@localhost) by avalon.ibd-web.de (8.9.3/8.9.3) id BAA00500; Sat, 29 Apr 2000 01:57:29 +0200 (CEST) From: Sascha Klauder Message-Id: <200004282357.BAA00500@avalon.ibd-web.de> Subject: Re: D-Link DFE-650 screwy MAC address To: sean@stat.Duke.EDU Date: Sat, 29 Apr 2000 01:57:29 +0200 (CEST) Cc: freebsd-mobile@freebsd.org In-Reply-To: <20000427232107.G22273@stat.Duke.EDU> from "Sean O'Connell" at Apr 27, 2000 11:21:07 pm 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 Fri Apr 28 05:21:07 2000, Sean O'Connell wrote: > > No luck. I've tried both polling and irq mode and various irq's > > (3,4,5). I still get that scrambled MAC address. > Bad card? Does it work in another machine? Well, it works fine in Win95. But I'll test it on a Thinkpad the next few days... > Are any of the unknowns at irq 10? you might see about finding > that pnp id and posting it to -stable or -current ... does pnpinfo > reveal anything with this option in the kernel? No, nothing. It seems all devices are either PCI or legacy ISA devices. Cheers, -sascha To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Apr 28 17:34:34 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.numachi.com (numachi.numachi.com [198.175.254.2]) by hub.freebsd.org (Postfix) with SMTP id D4A2137BA3E for ; Fri, 28 Apr 2000 17:34:28 -0700 (PDT) (envelope-from reichert@numachi.com) Received: (qmail 18388 invoked by uid 1001); 29 Apr 2000 00:34:28 -0000 Date: Fri, 28 Apr 2000 20:34:28 -0400 From: Brian Reichert To: freebsd-mobile@freebsd.org Cc: freebsd-isp@freebsd.org Subject: Re: linksys vs cisco Message-ID: <20000428203428.A18217@numachi.com> References: <20000421140700.B3163@numachi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre4i In-Reply-To: <20000421140700.B3163@numachi.com>; from reichert@numachi.com on Fri, Apr 21, 2000 at 02:07:00PM -0400 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Apr 21, 2000 at 02:07:00PM -0400, Brian Reichert wrote: > My situation: > > I have a laptop that dualboots Win98 and FBSD-4.0. > > I have a Linksys PCMCIA card that probes as an ed1. > > The card, in both OSs, works just dandy on several diferent networks. > > On one particular network, the FreeBSD half won't. > > Said network has simple topology: on a switched segment, we have > umpteen Win98 desktops, and one FBSD-4.0 server. They talk to a > Cisco 1600 router. > > The symptom: the laptop, in FreeBSD mode can talk to all of the > hosts, but not to the router. > > Initial traffic analysis shows that I never get the 'tell' ARP > traffic. I have an update on this, and it gets really weird. (I finally got back to the odd network in question.) 1) My problem isn't limited to Cisco, as it turns out: the _only_ box on this net I can talk to is the FBSD-4.0-R server. That one can talk to the router (and everything else just fine, via it's xl - based PCI card). This server acts as a DHCP server, and gleefully assigns an address to my card. 2) This card has a different MAC address, depending on which OS booted. Win98 00:e0:98:77:1a:b2 FBSD-4.0-R 01:d4:ff:03:00:20 3) I've pawed though the CIS of this card, and nothing leaps out at me. 4) There does not seem to be a way to manually set the MAC address of this card via FreeBSD. 5) I've pawed trough a couple of example 'ether 0xNNN' settings using examples from pccard.conf. This causes a wrong MAC address to be generated. Oddly, irrespective of the invented MAC address, the other FSBD box can stull talk to it. 6) I pawed through 'pccardc rdattr 0 0 1000', and could not find even a subset of the Win98-flavored MAC address in there (no two adjoining octects). I noticed that the pccard.conf entry for 'Telecom Device SuperSocket RE450T' had commented out entries like # ether 0x110 00:e0:98 # ether 0xff0 00:e0:98 Note: these three octets just to happen to match the Win98-flavored MAC address. Conicidence? I note this format of the 'ether' directive is no longer supported... I've saved raw tcpdumps of ping efforts via both addresses; I can provide if anyone is willing to poke at them. -- Brian 'you Bastard' Reichert reichert@numachi.com 37 Crystal Ave. #303 Daytime number: (781) 273-4100 x161 Derry NH 03038-1713 USA Intel architecture: the left-hand path To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 2:19: 2 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from calvin.hannover.sgh-net.de (calvin.hannover.sgh-net.de [212.86.129.142]) by hub.freebsd.org (Postfix) with ESMTP id 8393C37B6E5 for ; Sat, 29 Apr 2000 02:18:59 -0700 (PDT) (envelope-from puma@hannover.sgh-net.de) Received: from go.hannover.sgh-net.de [::ffff:212.86.129.147] by calvin.hannover.sgh-net.de with esmtp (Exim 3.12 #5) id 12lTOq-0003re-00; Sat, 29 Apr 2000 09:18:56 +0000 Received: from home (pppa25.hannover.sgh-net.de [193.218.208.25]) by go.hannover.sgh-net.de (8.8.8/8.8.8) with SMTP id JAA07332 for ; Sat, 29 Apr 2000 09:18:51 GMT Message-Id: <3.0.6.32.20000429111954.0094be10@pop3.hannover.sgh-net.de> X-Sender: puma@pop3.hannover.sgh-net.de (Unverified) X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Sat, 29 Apr 2000 11:19:54 +0100 To: freebsd-mobile@FreeBSD.ORG From: Alfred Breull Subject: Toshiba Satellite 490 CDT ? In-Reply-To: <20000428203428.A18217@numachi.com> References: <20000421140700.B3163@numachi.com> <20000421140700.B3163@numachi.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm a new to both, unix and freebsd - are there any known problems which could prevent/ inhibit installation of freebsd 3.4 or 4.0 on the Toshiba notebook named in the subject line (or make it too difficult for a newbie) ? Searching with freebsd's search engine or google didn't reveal anything to me. So, either no one has tried (which I don't believe), or there are no problems (which I'd really enjoy :) ). Any help / hint is appreciated. Alf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 4:41:59 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from logatome.francenet.fr (logatome-2.francenet.fr [193.149.96.2]) by hub.freebsd.org (Postfix) with ESMTP id DE69E37B628 for ; Sat, 29 Apr 2000 04:41:56 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from localhost.nantes.kisoft-services.com (pppA240.francenet.fr [193.149.100.150]) by logatome.francenet.fr (8.10.1/8.10.1) with SMTP id e3TBfpH31693 for ; Sat, 29 Apr 2000 13:41:53 +0200 (CEST) X-Mailer: 21.1 (patch 9) "Canyonlands" XEmacs Lucid (via feedmail 8 Q); VM 6.72 under 21.1 (patch 9) "Canyonlands" XEmacs Lucid MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14601.60557.85260.367412@localhost.nantes.kisoft-services.com> Date: Fri, 28 Apr 2000 21:54:53 +0200 (CEST) From: Eric Masson To: FreeBSD Mobile Subject: Re: D-link DM-560, Thinkpad 390 and RELENG_4 In-Reply-To: <14589.37338.741525.653024@localhost.nantes.kisoft-services.com> References: <14589.37338.741525.653024@localhost.nantes.kisoft-services.com> Reply-To: e-masson@kisoft-services.com Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Eric Masson writes: >Hello All, > >I'm currently looking for a good low cost modem pccard for my FBSD >4.0-STABLE Tp. I've found the following card, D-LINK DM-560. It claims >to use a 16C550 UART, and to be compatible with other OS than Win32 >platforms (Dos, Win 3.1). Has anyone usage reports of this card under >FBsd (crap, average, good, excellent ?). Follow Up for archives. This card is recognised as Card "Intelligent"("PCMCIA FAX+MODEM") out of the box by RELENG_4. It works fast & reliably (no silo overflows encountered under XFree86 3.3.6, will try ASAP with XFree86 4.0). For French readers, it is possible to find this card at 690 FF + 100 FF delivery charges on http://www.microdiscount.com (cheapest card i've found). Eric -- Opinions stated below are mine and can't be considered as official Kisoft Services policy. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 5:53:19 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from oxygen.yy.ics.keio.ac.jp (oxygen.yy.ics.keio.ac.jp [131.113.47.3]) by hub.freebsd.org (Postfix) with ESMTP id DE9E937B677 for ; Sat, 29 Apr 2000 05:53:15 -0700 (PDT) (envelope-from sanpei@sanpei.org) Received: from lavender.yy.cs.keio.ac.jp (ppp153.dialup.st.keio.ac.jp [131.113.27.153]) by oxygen.yy.ics.keio.ac.jp (8.9.3+3.2W/3.7W) with ESMTP id VAA22454; Sat, 29 Apr 2000 21:53:11 +0900 (JST) (envelope-from sanpei@sanpei.org) Received: (from sanpei@localhost) by lavender.yy.cs.keio.ac.jp (8.9.3/3.7W) id VAA13489; Sat, 29 Apr 2000 21:53:09 +0900 (JST) Date: Sat, 29 Apr 2000 21:53:09 +0900 (JST) Message-Id: <200004291253.VAA13489@lavender.yy.cs.keio.ac.jp> To: imp@village.org Cc: mobile@FreeBSD.ORG Subject: Re: Xircom cards In-Reply-To: Your message of "Thu, 27 Apr 2000 13:00:58 JST". <200004270400.WAA49597@harmony.village.org> 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 imp@village.org wrote: >> Has anybody had a chance to try the xircom cards with the new patches >> yet? These cards should work in the "OLDCARD" kernels such as >> GENERIC. I test if_xe.c driver in 5-current with Accton Fast EtherCard-16/EN2226. I can probe and attach above card with below patch, I think. --- sys/dev/xe/if_xe.c.org Sat Apr 29 21:42:52 2000 +++ sys/dev/xe/if_xe.c Sat Apr 29 21:43:06 2000 @@ -619,7 +619,7 @@ bpfattach(scp->ifp, DLT_EN10MB, sizeof(struct ether_header)); /* Done */ - return 1; + return 0; } # Accton Fast EtherCard-16/EN2226(16-bit verison) card "Accton" "Fast EtherCard-16" config default "xe0" ? insert logger -t pccard:$device -s Accton Fast EtherCard-16/EN2226 inserted insert /etc/pccard_ether $device remove logger -t pccard:$device -s Accton Fast EtherCard-16/EN2226 removed remove /sbin/ifconfig $device delete P.S. Thank you, Warner-san and Iwasaki-san, about multi io window patch. I can probe Planex 2000 PC-Card under 5-current :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 7:28:40 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from buzz.slic.com (eagle.slic.com [216.73.13.5]) by hub.freebsd.org (Postfix) with SMTP id AA3BB37B72D for ; Sat, 29 Apr 2000 07:28:23 -0700 (PDT) (envelope-from jontow@voodoo.minix.cx) Received: (qmail 8953 invoked from network); 29 Apr 2000 14:17:22 -0000 Received: from unknown (HELO voodoo.minix.cx) (postfix@216.73.11.10) by eagle.slic.com with SMTP; 29 Apr 2000 14:17:22 -0000 Received: by voodoo.minix.cx (Postfix, from userid 1000) id C9E1E2683; Sat, 29 Apr 2000 09:02:38 -0500 (EST) Date: Sat, 29 Apr 2000 09:02:37 -0500 From: Jonathan Towne To: Alfred Breull Cc: freebsd-mobile@freebsd.org Subject: Re: Toshiba Satellite 490 CDT ? Message-ID: <20000429090237.A27271@minix.cx> Mail-Followup-To: Alfred Breull , freebsd-mobile@freebsd.org References: <20000421140700.B3163@numachi.com> <20000421140700.B3163@numachi.com> <20000428203428.A18217@numachi.com> <3.0.6.32.20000429111954.0094be10@pop3.hannover.sgh-net.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <3.0.6.32.20000429111954.0094be10@pop3.hannover.sgh-net.de>; from puma@hannover.sgh-net.de on Sat, Apr 29, 2000 at 11:19:54AM +0100 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Apr 29, 2000 at 11:19:54AM +0100, Alfred Breull scribbled: # I'm a new to both, unix and freebsd - are there any known problems # which could prevent/ inhibit installation of freebsd 3.4 or 4.0 on the # Toshiba notebook named in the subject line (or make it too difficult # for a newbie) ? Well, 3.3 worked great on my satellite pro 410cdt.. i'd assume it should be rather similar on a 490cdt :) - Jonathan Towne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 7:41:53 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from calvin.hannover.sgh-net.de (calvin.hannover.sgh-net.de [212.86.129.142]) by hub.freebsd.org (Postfix) with ESMTP id 0100F37B76B for ; Sat, 29 Apr 2000 07:41:50 -0700 (PDT) (envelope-from puma@hannover.sgh-net.de) Received: from go.hannover.sgh-net.de [::ffff:212.86.129.147] by calvin.hannover.sgh-net.de with esmtp (Exim 3.12 #5) id 12lYRJ-0004bT-00; Sat, 29 Apr 2000 14:41:49 +0000 Received: from home (pppa54.hannover.sgh-net.de [193.218.208.54]) by go.hannover.sgh-net.de (8.8.8/8.8.8) with SMTP id OAA13096; Sat, 29 Apr 2000 14:41:38 GMT Message-Id: <3.0.6.32.20000429164243.0094cec0@pop3.hannover.sgh-net.de> X-Sender: puma@pop3.hannover.sgh-net.de X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Sat, 29 Apr 2000 16:42:43 +0100 To: Jonathan Towne From: Alfred Breull Subject: Re: Toshiba Satellite 490 CDT ? Cc: freebsd-mobile@FreeBSD.ORG In-Reply-To: <20000429090237.A27271@minix.cx> References: <3.0.6.32.20000429111954.0094be10@pop3.hannover.sgh-net.de> <20000421140700.B3163@numachi.com> <20000421140700.B3163@numachi.com> <20000428203428.A18217@numachi.com> <3.0.6.32.20000429111954.0094be10@pop3.hannover.sgh-net.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 09:02 29.04.00 -0500, Jonathan Towne wrote: >Well, 3.3 worked great on my satellite pro 410cdt.. i'd assume it should >be rather similar on a 490cdt :) Thank you very much for your kind reply. Have a nice weekend - all of you, of course. Alf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 8:35:48 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id BFEA637B677 for ; Sat, 29 Apr 2000 08:35:43 -0700 (PDT) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es (lxpxdv.lx.ehu.es [158.227.99.199]) by polaris.we.lc.ehu.es (8.9.1/8.9.1) with ESMTP id RAA05440; Sat, 29 Apr 2000 17:35:29 +0200 (MET DST) Message-ID: <390B013E.D07970A6@we.lc.ehu.es> Date: Sat, 29 Apr 2000 17:35:26 +0200 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.72 [en] (X11; U; Linux 2.0.36 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: Xircom cards References: <39085501.C1CAF6B0@we.lc.ehu.es> <200004270400.WAA49597@harmony.village.org> <200004272003.OAA53756@harmony.village.org> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > > In message <39085501.C1CAF6B0@we.lc.ehu.es> "Jose M. Alcaide" writes: > : Warner, could you generate a patchset for 4.0-STABLE, if this is > : possible at all? I have a Xircom RealPort 100BTX card, but I cannot > : install -CURRENT on my laptop. I reviewed the CVS history log of > : your changes to xe, pccard and pcic, and I don't think that they > : are directly applicable to 4.0-STABLE. > > I will do that when I get xe working. fe and ex drivers are also > headed into the tree and some fixes to ed. All of this will be MFC'd > to 4.0-stable. > > But not for a couple of weeks yet. > OK. However, I am afraid that the number of possible testers will be small, since they must be running -CURRENT on their laptops, and also own Xircom (or other Dingo-based) cards. This is the reason for I suggested a patchset for 4.0-STABLE, before MFC'ing the xe driver. -- JMA ----------------------------------------------------------------------- José Mª Alcaide | mailto:jose@we.lc.ehu.es Universidad del País Vasco | mailto:jmas@FreeBSD.org Dpto. de Electricidad y Electrónica | http://www.we.lc.ehu.es/~jose Facultad de Ciencias - Campus de Lejona | Tel.: +34-946012479 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-946013071 ----------------------------------------------------------------------- "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 9:24:48 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from kumr.lns.com (kumr.lns.com [140.174.7.1]) by hub.freebsd.org (Postfix) with ESMTP id 2D05F37B599; Sat, 29 Apr 2000 09:24:42 -0700 (PDT) (envelope-from pozar@kumr.lns.com) Received: (from pozar@localhost) by kumr.lns.com (8.9.3/8.9.3) id JAA19024; Sat, 29 Apr 2000 09:26:13 -0700 (PDT) (envelope-from pozar) Date: Sat, 29 Apr 2000 09:26:13 -0700 From: Tim Pozar To: multimedia@FreeBSD.ORG, mobile@FreeBSD.ORG Subject: ESS Technology Maestro 2E Audio controller working yet? Message-ID: <20000429092613.A18874@lns.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone got the ESS Technology Maestro 2E Audio controller working yet? The data on the Maestro is thin in the mailling list archives. I have a Dell Latitude CPx that uses it. I have been pretty happy with the laptop 'cept getting the sound working. Thanks for any pointers.... dmesg follows.. Tim PS. The Wavelan 802.11b support is great! It is working just fine with an Airport at home. -- Copyright (c) 1992-2000 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-STABLE #16: Thu Apr 27 22:03:05 PDT 2000 root@tim.disappearing.com:/usr/src/sys/compile/FARNSWORTH Timecounter "i8254" frequency 1193182 Hz CPU: Pentium III/Pentium III Xeon (498.47-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x681 Stepping = 1 Features=0x383f9ff real memory = 134152192 (131008K bytes) config> di sn0 config> di lnc0 config> di le0 config> di ie0 config> di fe0 config> di ed0 config> di cs0 config> q avail memory = 126373888 (123412K bytes) Preloaded elf kernel "kernel" at 0xc0402000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc040209c. Pentium Pro MTRR support enabled md0: Malloc disk npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 pcic-pci0: irq 11 at device 3.0 on pci0 pcic-pci1: irq 11 at device 3.1 on pci0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x860-0x86f at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 uhci0: port 0xdce0-0xdcff irq 11 at device 7.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered chip1: port 0x840-0x84f at device 7.3 on pci0 chip2: port 0xd800-0xd8ff irq 5 at device 8.0 on pci0 fdc0: at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 fdc0: FIFO enabled, 8 bytes threshold fd0: <1440-KB 3.5" drive> on fdc0 drive 0 atkbdc0: at port 0x60,0x64 on isa0 atkbd0: irq 1 on atkbdc0 psm0: irq 12 on atkbdc0 psm0: model GlidePoint, device ID 0 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> pcic0: at port 0x3e0 iomem 0xd0000 irq 10 on isa0 pcic0: management irq 10 pccard0: on pcic0 pccard1: on pcic0 sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1: configured irq 3 not in bitmap of probed irqs 0 ppc0: at port 0x378-0x37f irq 7 on isa0 ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold ppi0: on ppbus0 lpt0: on ppbus0 lpt0: Interrupt-driven port plip0: on ppbus0 sb_reset_dsp failed sb_reset_dsp failed pca0 at port 0x40 on isa0 ad0: 17301MB [35152/16/63] at ata0-master using UDMA33 Mounting root from ufs:/dev/ad0s3a pccard: card inserted, slot 1 wi0: at port 0x240-0x27f irq 3 slot 1 on pccard1 wi0: Ethernet address: 00:60:1d:f1:6b:10 wi0: supplying EUI64: 00:60:1d:ff:fe:f1:6b:10 wi0: starting DAD for fe80:000b::0260:1dff:fef1:6b10 wi0: DAD complete for fe80:000b::0260:1dff:fef1:6b10 - no duplicates found -- Snail: Tim Pozar / LNS / 1978 45th Ave / San Francisco CA 94116 / USA POTS: +1 415 665 3790 Radio: KC6GNJ / KAE6247 "It's a damn poor mind that can only think of one way to spell a word." - Andrew Jackson "What is wanted is not the will to believe, but the will to find out, which is the exact opposite." - Bertrand Russel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 10: 8:38 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.rpi.edu (mail.rpi.edu [128.113.100.7]) by hub.freebsd.org (Postfix) with ESMTP id F31F337B942 for ; Sat, 29 Apr 2000 10:08:34 -0700 (PDT) (envelope-from rooneg@rpi.edu) Received: from cortez.sss.rpi.edu (rooneg@cortez.sss.rpi.edu [128.113.113.33]) by mail.rpi.edu (8.9.3/8.9.3) with ESMTP id NAA122288; Sat, 29 Apr 2000 13:08:34 -0400 Received: from localhost (rooneg@localhost) by cortez.sss.rpi.edu (8.8.5/8.8.6) with SMTP id NAA156666; Sat, 29 Apr 2000 13:08:46 -0400 X-Authentication-Warning: cortez.sss.rpi.edu: rooneg owned process doing -bs Date: Sat, 29 Apr 2000 13:08:46 -0400 (EDT) From: Garrett Rooney X-Sender: rooneg@cortez.sss.rpi.edu To: "Jose M. Alcaide" Cc: Warner Losh , mobile@FreeBSD.ORG Subject: Re: Xircom cards In-Reply-To: <390B013E.D07970A6@we.lc.ehu.es> 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 will do that when I get xe working. fe and ex drivers are also > > headed into the tree and some fixes to ed. All of this will be MFC'd > > to 4.0-stable. > > > > But not for a couple of weeks yet. > > > > OK. However, I am afraid that the number of possible testers will be > small, since they must be running -CURRENT on their laptops, > and also own Xircom (or other Dingo-based) cards. This is the > reason for I suggested a patchset for 4.0-STABLE, before MFC'ing the > xe driver. just another voice here... i'd be more than willing to test patches, but my laptop's running 4.0-RELEASE and i can't update at the moment. -garrett x----------------------------------------------------------------------x | rooneg@rpi.edu garrett rooney | | http://www.rpi.edu/~rooneg unix geek | |----------------------------------------------------------------------| | unrequited love is neat because it lasts so much longer - w. t. c. | x----------------------------------------------------------------------x To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 10:39: 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 1DB6E37B63B for ; Sat, 29 Apr 2000 10:38:57 -0700 (PDT) (envelope-from imp@harmony.village.org) 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 LAA04261; Sat, 29 Apr 2000 11:38:54 -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 LAA67302; Sat, 29 Apr 2000 11:38:49 -0600 (MDT) Message-Id: <200004291738.LAA67302@harmony.village.org> To: m.hallgren@free.fr Subject: Re: Xircom cards Cc: Garrett Rooney , "Jose M. Alcaide" , mobile@FreeBSD.ORG In-reply-to: Your message of "Sat, 29 Apr 2000 19:29:34 +0200." <390B1BFE.12525FB4@free.fr> References: <390B1BFE.12525FB4@free.fr> Date: Sat, 29 Apr 2000 11:38:49 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I plan on doing a MFC around May 15, but need to make sure that it basically works, so even one tester would be enough :-) Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 16: 9:28 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from hq.seicom.net (hq.seicom.net [194.97.200.30]) by hub.freebsd.org (Postfix) with ESMTP id 8512237B7A2 for ; Sat, 29 Apr 2000 16:09:25 -0700 (PDT) (envelope-from ob@seicom.net) Received: from seicom.net by hq.seicom.net (8.9.3/8.9.3) with ESMTP id BAA54965; Sun, 30 Apr 2000 01:09:24 +0200 (CEST) Message-ID: <390B6BA3.B6660F1E@seicom.net> Date: Sun, 30 Apr 2000 01:09:23 +0200 From: Oliver Breuninger X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 4.0-RELEASE i386) X-Accept-Language: de-DE, en MIME-Version: 1.0 To: freebsd-mobile@freebsd.org Subject: PCMCIA: Eicon DIVA, COM1 MC218 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've got two cards with FreeBSD 4.0 to work: /etc/pccard.conf.sample: # COM1 SA card "COM1 SA" "MC218 CARD" config 0x3 "sio4" ? insert logger -t pccard:$device -s COM1 SA MC218 CARD Modem inserted remove logger -t pccard:$device -s COM1 SA MC218 CARD Modem removed # Eicon DIVA T/A # at@menu Config menu # at>vc View current profile # at>vd View troubleshooting information card "Eicon Technology" "DIVA T/A" config 0x5 "sio4" ? insert logger -t pccard:$device -s Eicon DIVA T/A inserted remove logger -t pccard:$device -s Eicon DIVA T/A removed regards and enjoy this cards Oliver To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Apr 29 19: 5:54 2000 Delivered-To: freebsd-mobile@freebsd.org Received: from cc942873-a.ewndsr1.nj.home.com (cc942873-a.ewndsr1.nj.home.com [24.2.89.207]) by hub.freebsd.org (Postfix) with ESMTP id 2521F37B73F for ; Sat, 29 Apr 2000 19:05:52 -0700 (PDT) (envelope-from cjc@cc942873-a.ewndsr1.nj.home.com) Received: (from cjc@localhost) by cc942873-a.ewndsr1.nj.home.com (8.9.3/8.9.3) id WAA31094; Sat, 29 Apr 2000 22:04:53 -0400 (EDT) (envelope-from cjc) Date: Sat, 29 Apr 2000 22:04:53 -0400 From: "Crist J. Clark" To: Warner Losh Cc: m.hallgren@free.fr, Garrett Rooney , "Jose M. Alcaide" , mobile@FreeBSD.ORG Subject: Re: Xircom cards Message-ID: <20000429220453.C30184@cc942873-a.ewndsr1.nj.home.com> Reply-To: cjclark@home.com References: <390B1BFE.12525FB4@free.fr> <390B1BFE.12525FB4@free.fr> <200004291738.LAA67302@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200004291738.LAA67302@harmony.village.org>; from imp@village.org on Sat, Apr 29, 2000 at 11:38:49AM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Apr 29, 2000 at 11:38:49AM -0600, Warner Losh wrote: > I plan on doing a MFC around May 15, but need to make sure that it > basically works, so even one tester would be enough :-) *sigh* I'm CVSup'ing 5.0-CURRENT as I type. I'll be trying to run on a DELL Latitude XPi 133ST. The Xircom card is a Credit Card Ethernet Adapter IIps. Someone stop me before I finish the 'sup if there is a reason my system would not be a reasonable case. -- Crist J. Clark cjclark@home.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message