From owner-freebsd-mobile Sun Oct 24 0:49:22 1999 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 4FF7D15091 for ; Sun, 24 Oct 1999 00:49:15 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn41.imasy.or.jp [202.227.24.233]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.01) with ESMTP id QAA03558; Sun, 24 Oct 1999 16:49:04 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Message-Id: <199910240749.QAA03558@tasogare.imasy.or.jp> To: steveo@iol.ie Cc: freebsd-mobile@freebsd.org Subject: Re: FreeBSD on a Compaq 1690 In-Reply-To: Your message of "Wed, 20 Oct 1999 09:37:03 +0100 (IST)" References: X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Sun, 24 Oct 1999 16:49:03 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 980905(IM100) Lines: 80 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > Suspend and resume slows the system down hugely (apmconf -t doesn't help), > doing it twice makes things worse, I haven't tried more. What should I > try in order to get a handle on this. > > All this with 3.3-STABLE about two weeks old. i8254 on your laptop seemds having problem after resuming. # my SHARP laptop too. Please try the attached patch. Index: sys/i386/apm/apm.c =================================================================== RCS file: /home/ncvs/src/sys/i386/apm/apm.c,v retrieving revision 1.77.2.13 diff -u -r1.77.2.13 apm.c --- apm.c 1999/10/13 22:06:46 1.77.2.13 +++ apm.c 1999/10/23 21:03:17 @@ -450,6 +450,7 @@ /* modified for adjkerntz */ pl = splsoftclock(); + i8254_restore(); /* restore timer_freq and hz */ inittodr(0); /* adjust time to RTC */ microtime(&resume_time); getmicrotime(&tmp_time); Index: sys/i386/include/clock.h =================================================================== RCS file: /home/ncvs/src/sys/i386/include/clock.h,v retrieving revision 1.34.2.2 diff -u -r1.34.2.2 clock.h --- clock.h 1999/08/29 16:06:23 1.34.2.2 +++ clock.h 1999/10/23 21:02:24 @@ -44,6 +44,7 @@ int release_timer1 __P((void)); #endif int sysbeep __P((int pitch, int period)); +void i8254_restore __P((void)); #endif /* KERNEL */ Index: sys/i386/isa/clock.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/clock.c,v retrieving revision 1.129.2.4 diff -u -r1.129.2.4 clock.c --- clock.c 1999/08/29 16:07:14 1.129.2.4 +++ clock.c 1999/10/23 21:20:18 @@ -703,6 +703,28 @@ } /* + * i8254_restore is called from apm_default_resume() to reload + * the countdown register. + * this should not be necessary but there are broken laptops that + * do not restore the countdown register on resume. + * when it happnes, it messes up the hardclock interval and system clock, + * which leads to the infamous "calcru: negative time" problem. + */ +void +i8254_restore(void) +{ + u_long ef; + + ef = read_eflags(); + disable_intr(); + outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT); + outb(TIMER_CNTR0, timer0_max_count & 0xff); + outb(TIMER_CNTR0, timer0_max_count >> 8); + CLOCK_UNLOCK(); + write_eflags(ef); +} + +/* * Initialize 8254 timer 0 early so that it can be used in DELAY(). * XXX initialization of other timers is unintentionally left blank. */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 1:28:31 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from logatome.micronet.fr (logatome-2.francenet.fr [193.149.96.2]) by hub.freebsd.org (Postfix) with ESMTP id 1624E14BFF for ; Sun, 24 Oct 1999 01:28:27 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from kisoft-services.com ([193.149.110.79]) by logatome.micronet.fr (8.8.8/8.8.8) with ESMTP id KAA20505; Sun, 24 Oct 1999 10:28:16 +0200 (CEST) Message-ID: <3812C2FB.F273B5E2@kisoft-services.com> Date: Sun, 24 Oct 1999 10:27:39 +0200 From: Eric MASSON Organization: Kisoft Services X-Mailer: Mozilla 4.6 [fr] (WinNT; I) X-Accept-Language: fr MIME-Version: 1.0 To: jesse reynolds Cc: FreeBSD Mobile Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, So could you post the following: 1 - uname -a output 2 - /etc/rc.conf 3 - kernel config file 4 - dmesg output I post the previous answer because, you get this kind of result if pccardd isn't started when issueing pccardc dumpcis. Eric Ps: Cross posting is not in standard policies of FreeBSD mailing lists. jesse reynolds a écrit : > > At 8:36 PM +0200 23/10/1999, Eric MASSON wrote: > >Hi > > > >> # pccardc dumpcis > >> Read return -1 bytes (expected 2) > >> pccardc: CIS code read: Cannot allocate memory > >> Read return -1 bytes (expected 10) > >> Configuration data for card in slot 1 > >> 2 slots found > >Enable pccardd start in /etc/rc.conf and then pccardc dumpcis will work > >properly. > > How should I do this? eg: > > pccardd_start="YES" > > is this what you mean? It's not working. I get the same output as > above, only doubled, as I have both the cards installed (two of > them). I'm not sure of the syntax to use here. I also tried the > following with no success: > > pccardd_enable="YES" > > I actually thought it might be more to do with the order of the > drivers starting up in the kernel, as it tries to probe for xe before > it's loaded the PC-Card driver, and initialises xe and sio: > > xe0: probe > xe0 not found > . > . > . > PC-Card VLSI 82C146 (5 mem & 2 I/O windows) > pcic: controller irq 3 > Initializing PC-card drivers: xe sio > > then again I'm probably barking up the wrong tree. Anyone? > > cheers > > jesse > > -- > Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au > > Faxmail: +61 2 9776 3594 Virtual Community Engine > Email: jesse (at) va.com.au http://www.vce.net > ?: http://jesse.va.com.au huh?: Community Server for > ICQ: 4766684 MacOS Servers (W*API) > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message -- Any opinions expressed above | Murphy's Law Corollary : are my own, not Kisoft's | Murphy was an optimist. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 1:45:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from logatome.micronet.fr (logatome-2.francenet.fr [193.149.96.2]) by hub.freebsd.org (Postfix) with ESMTP id EA1C714EEA for ; Sun, 24 Oct 1999 01:45:19 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from kisoft-services.com (Nantes4.francenet.net [193.149.110.68]) by logatome.micronet.fr (8.8.8/8.8.8) with ESMTP id KAA21609; Sun, 24 Oct 1999 10:45:10 +0200 (CEST) Message-ID: <3812C709.19E089D8@kisoft-services.com> Date: Sun, 24 Oct 1999 10:44:57 +0200 From: Eric MASSON Organization: Kisoft Services X-Mailer: Mozilla 4.6 [fr] (WinNT; I) X-Accept-Language: fr MIME-Version: 1.0 To: jesse reynolds , FreeBSD Mobile Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> <3812C2FB.F273B5E2@kisoft-services.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi again, you have to put pccard_enable="YES" in your /etc/rc.conf. Sorry for previous answer, it's early in the morning here and i've just get out of the bed :). For purpose test you can issue a pccardd -d from the command line, it will cause pccardd to start and not daemonize, useful for debugging. you can find syntax for lines in /etc/rc.conf just by searching the topics you need in /etc/defaults/rc.conf. /etc/rc.conf is an override for previous file. Eric Eric MASSON a écrit : > > Hi, > > So could you post the following: > 1 - uname -a output > 2 - /etc/rc.conf > 3 - kernel config file > 4 - dmesg output > > I post the previous answer because, you get this kind of result if > pccardd isn't started when issueing pccardc dumpcis. > > Eric > > Ps: Cross posting is not in standard policies of FreeBSD mailing lists. > > jesse reynolds a écrit : > > > > At 8:36 PM +0200 23/10/1999, Eric MASSON wrote: > > >Hi > > > > > >> # pccardc dumpcis > > >> Read return -1 bytes (expected 2) > > >> pccardc: CIS code read: Cannot allocate memory > > >> Read return -1 bytes (expected 10) > > >> Configuration data for card in slot 1 > > >> 2 slots found > > >Enable pccardd start in /etc/rc.conf and then pccardc dumpcis will work > > >properly. > > > > How should I do this? eg: > > > > pccardd_start="YES" > > > > is this what you mean? It's not working. I get the same output as > > above, only doubled, as I have both the cards installed (two of > > them). I'm not sure of the syntax to use here. I also tried the > > following with no success: > > > > pccardd_enable="YES" > > > > I actually thought it might be more to do with the order of the > > drivers starting up in the kernel, as it tries to probe for xe before > > it's loaded the PC-Card driver, and initialises xe and sio: > > > > xe0: probe > > xe0 not found > > . > > . > > . > > PC-Card VLSI 82C146 (5 mem & 2 I/O windows) > > pcic: controller irq 3 > > Initializing PC-card drivers: xe sio > > > > then again I'm probably barking up the wrong tree. Anyone? > > > > cheers > > > > jesse > > > > -- > > Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au > > > > Faxmail: +61 2 9776 3594 Virtual Community Engine > > Email: jesse (at) va.com.au http://www.vce.net > > ?: http://jesse.va.com.au huh?: Community Server for > > ICQ: 4766684 MacOS Servers (W*API) > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > > with "unsubscribe freebsd-mobile" in the body of the message > > -- > Any opinions expressed above | Murphy's Law Corollary : > are my own, not Kisoft's | Murphy was an optimist. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-mobile" in the body of the message -- Any opinions expressed above | Murphy's Law Corollary : are my own, not Kisoft's | Murphy was an optimist. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 1:52:44 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from va.com.au (va.com.au [203.15.106.1]) by hub.freebsd.org (Postfix) with ESMTP id 23B5D150AF for ; Sun, 24 Oct 1999 01:52:33 -0700 (PDT) (envelope-from lizst@va.com.au) Received: from [1.1.1.3] (203.108.19.84) by va.com.au with ESMTP (Eudora Internet Mail Server 2.2); Sun, 24 Oct 1999 18:22:25 +0930 Mime-Version: 1.0 X-Sender: lizst@mail.va.com.au Message-Id: In-Reply-To: <3812C2FB.F273B5E2@kisoft-services.com> References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> <3812C2FB.F273B5E2@kisoft-services.com> Date: Sun, 24 Oct 1999 18:51:50 +1000 To: Eric MASSON , jesse reynolds From: Jesse Reynolds Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... Cc: FreeBSD Mobile Content-Type: text/plain; charset="iso-8859-1" ; format="flowed" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 10:27 AM +0200 24/10/1999, Eric MASSON wrote: >Hi, > >So could you post the following: >1 - uname -a output >2 - /etc/rc.conf >3 - kernel config file >4 - dmesg output > >I post the previous answer because, you get this kind of result if >pccardd isn't started when issueing pccardc dumpcis. 2, 3, and 4 were in my original post, but here is uname -a: =46reeBSD 3.3-RELEASE FreeBSD 3.3-RELEASE #1: Mon Oct 18 23:58:00 EST=20 1999 root@fuzzy.syd.va.com.au:/usr/src/sys/compile/FUZZY i386 I'll paste in my original post below. >Eric > >Ps: Cross posting is not in standard policies of FreeBSD mailing lists. My appologies. I saw others doing it so thought it was the go. I'll=20 refrain, then. I agree, it doesn't make too much sense really. cheers jesse Original post of 23 Oct 1999: To: FreeBSD Hardware , FreeBSD Mobile=20 =46rom: jesse reynolds Subject: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... Cc: Bcc: "=9F:LISTS:FreeBSD-Hardware" X-Attachments: Hi Folx I've recently installed 3.3-RELEASE on this Fujitsu Lifebook 735Dx=20 laptop. I reconfigured and recompiled the kernel with various pc-card=20 components turned on, including the xe driver which is necessary for=20 the zircom cards. The two cards I have are an ethernet only PS-CE2-10, and an ethernet=20 and modem CEM33. I'd be happy to get either of these cards working. I=20 believe I have a CardBus system, not a standard PCMCIA system. I have not yet added the file /etc/pccard.conf because it's here that=20 I am stuck. I don't know what strings to use in this file because=20 pccarcd doesn't work. Output of pccardc is: # pccardc dumpcis Read return -1 bytes (expected 2) pccardc: CIS code read: Cannot allocate memory Read return -1 bytes (expected 10) Configuration data for card in slot 1 2 slots found # So yes, what's happening here? I'm not sure what sort of pccard system is in this Fujitsu, but the=20 following entries from an earlier boot may help: (from dmesg) probing pci bus... (etc) =2E.. chip3: rev 0x01 int=20 a irq 9 on pci0.19.0 chip4: rev 0x01 int=20 b irq 9 on pci0.19.1 =2E.. I've also noticed that in /var/log/messages the kernel is writing=20 messages when I insert and remove cards, as follows: Oct 19 06:47:24 /kernel: Card inserted, slot 1 So it knows when cards are inserted and removed, which is good. Is it=20 the PCI to CardBus bridge that might be a problem? I see in the XE=20 readme that FreeBSD has no support for CardBus systems? I'm including a few files here... /etc/rc.conf output of dmesg /usr/src/sys/i386/conf/FUZZY (my kernel config file) I have posted this to the XE driver list, but Scott Mitchell said I=20 should fire this at freebsd-mobile to see how support for CardBus is=20 going. Cheers Jesse -----------------------/etc/rc.conf : -------------------------- # This file now contains just the overrides from /etc/defaults/rc.conf # please make all changes to this file. # -- sysinstall generated deltas -- # moused_port=3D"/dev/psm0" moused_type=3D"auto" moused_enable=3D"NO" gateway_enable=3D"YES" # -- sysinstall generated deltas -- # moused_enable=3D"YES" ----------------------- dmesg output : -------------------------- Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. =46reeBSD 3.3-RELEASE #1: Mon Oct 18 23:58:00 EST 1999 root@fuzzy.syd.va.com.au:/usr/src/sys/compile/FUZZY Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (133.64-MHz 586-class CPU) Origin =3D "GenuineIntel" Id =3D 0x543 Stepping =3D 3 Features=3D0x8001bf real memory =3D 33554432 (32768K bytes) config> di sio1 config> di sio0 config> di ppc0 config> di zp0 No such device: zp0 Invalid command or syntax. Type `?' for help. config> di ze0 No such device: ze0 Invalid command or syntax. Type `?' for help. config> di lnc0 No such device: lnc0 Invalid command or syntax. Type `?' for help. 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 ex0 No such device: ex0 Invalid command or syntax. Type `?' for help. config> di ep0 No such device: ep0 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> q avail memory =3D 29978624 (29276K bytes) Preloaded elf kernel "kernel" at 0xc02c2000. Preloaded userconfig_script "/boot/kernel.conf" at 0xc02c209c. Probing for devices on PCI bus 0: chip0: rev 0x01 on pci0.0.0 chip1: rev 0x01 on pci0.1.0 ide_pci0: rev 0x01 on pci0.1.1 chip2: rev 0x01 on pci0.1.3 pcic0: rev 0x01 int a irq 9 on pci0.19.0 pcic1: rev 0x01 int b irq 9 on pci0.19.1 vga0: rev 0xd3 int=20 a irq 255 on pci0.20.0 Probing for PnP devices: Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=3D0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model Generic PS/2 mouse, device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 on isa wdc0: unit 0 (wd0): wd0: 1556MB (3187296 sectors), 3162 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 on isa wdc1: unit 0 (atapi): , removable, accel, dma, iordy acd0: drive speed 2416KB/sec, 128KB cache acd0: supported read types: CD-DA acd0: Audio: play, 16 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked wt0 not found at 0x300 mcd0 not found at 0x300 matcdc0 not found at 0x230 xe0: probe xe0 not found vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface PC-Card VLSI 82C146 (5 mem & 2 I/O windows) pcic: controller irq 3 Initializing PC-card drivers: xe sio Intel Pentium detected, installing workaround for F00F bug IP packet filtering initialized, divert enabled, rule-based=20 forwarding enabled, default to accept, logging limited to 100=20 packets/entry by default BRIDGE 981214, have 4 interfaces DUMMYNET initialized (990504) IP Filter: initialized. Default =3D pass all, Logging =3D enabled changing root device to wd0s2a Card inserted, slot 0 Card inserted, slot 1 ------------ /usr/src/sys/i386/conf/FUZZY : -------------------------- # # FUZZY - attempt to build a kernel that supports the # Zircom PS-CE2-10 PCCard Ethernet Card # # Jesse Reynolds 1999.10.18 # # PCCARD -- Generic machine with WD/AHx/NCR/BTx family disks and PCMCIA # hardware support # # For more information on this file, please read the handbook section on # Kernel Configuration Files: # # http://www.freebsd.org/handbook/kernelconfig-config.html # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.ORG/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $FreeBSD: src/sys/i386/conf/PCCARD,v 1.15.2.4 1999/08/29 17:05:59=20 iwasaki Exp $ machine "i386" cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" cpu "I686_CPU" ident FUZZY maxusers 32 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options MFS #Memory Filesystem options MFS_ROOT #MFS usable as root device,=20 "MFS" req'ed options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device,=20 "NFS" req'ed options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options SCSI_DELAY=3D15000 #Be pessimistic about Joe SCSI device options UCONSOLE #Allow users to grab the console options FAILSAFE #Be conservative options USERCONFIG #boot -c editor options VISUAL_USERCONFIG #visual boot -c editor # Jesse's adding the following: options MROUTING # multicast routing options IPFIREWALL # firewall options IPFIREWALL_VERBOSE # print info about dropped packets options IPFIREWALL_FORWARD # enable transparent proxy support options "IPFIREWALL_VERBOSE_LIMIT=3D100" # limit verbosity options IPFIREWALL_DEFAULT_TO_ACCEPT # allow all by default options IPDIVERT # divert sockets options IPFILTER # kernel ipfilter support options IPFILTER_LOG # ipfilter logging options "ICMP_BANDLIM" options DUMMYNET options BRIDGE options NETATALK #Appletalk comms protocols config kernel root on wd0 # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=3D2 # number of CPUs #options NBUS=3D4 # number of busses #options NAPIC=3D1 # number of IO APICs #options NINTR=3D24 # number of INTs controller isa0 controller pnp0 controller eisa0 controller pci0 controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM device wfd0 #IDE Floppy (e.g. LS-120) # A single entry for any of these controllers (ncr, ahb, ahc) is # sufficient for any number of installed devices. # controller ncr0 # controller ahb0 # controller ahc0 # controller isp0 # This controller offers a number of configuration options, too many to # document here - see the LINT file in this directory and look up the # dpt0 entry there for much fuller documentation on this. # controller dpt0 # controller adv0 at isa? port ? cam irq ? # controller adw0 # controller bt0 at isa? port ? cam irq ? # controller aha0 at isa? port ? cam irq ? # controller scbus0 # device da0 # device sa0 # device pass0 # device cd0 #Only need one of these, the code=20 dynamically grows device wt0 at isa? port 0x300 bio irq 5 drq 1 device mcd0 at isa? port 0x300 bio irq 10 controller matcd0 at isa? port 0x230 bio # device scd0 at isa? port 0x230 bio # atkbdc0 controlls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? tty # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver #device vt0 at isa? tty #options XSERVER # support for X server #options FAT_CURSOR # start with block cursor # If you have a ThinkPAD, uncomment this along with the rest of the PCVT lin= es #options PCVT_SCANSET=3D2 # IBM keyboards are non-std device npx0 at isa? port IO_NPX irq 13 # # Laptop support (see LINT for more options) # device apm0 at isa? disable flags 0x31 # Advanced Power Management # PCCARD (PCMCIA) support controller card0 device pcic0 at card? device pcic1 at card? device sio0 at isa? port "IO_COM1" flags 0x10 tty irq 4 device sio1 at isa? port "IO_COM2" tty irq 3 device sio2 at isa? disable port "IO_COM3" tty irq 5 device sio3 at isa? disable port "IO_COM4" tty irq 9 # Parallel port device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 device lpt0 at ppbus? device plip0 at ppbus? device ppi0 at ppbus? #controller vpo0 at ppbus? # # The following Ethernet NICs are all PCI devices. # # device al0 # ADMtek AL981 (``Comet'') # device ax0 # ASIX AX88140A #device de0 # DEC/Intel DC21x4x (``Tulip'') #device fxp0 # Intel EtherExpress PRO/100B (82557, 82558) #device mx0 # Macronix 98713/98715/98725 (``PMAC'') #device pn0 # Lite-On 82c168/82c169 (``PNIC'') #device rl0 # RealTek 8129/8139 #device sf0 # Adaptec AIC-6915 DuraLAN (``Starfire'') #device tl0 # Texas Instruments ThunderLAN #device tx0 # SMC 9432TX (83c170 ``EPIC'') #device vr0 # VIA Rhine, Rhine II #device vx0 # 3Com 3c590, 3c595 (``Vortex'') #device wb0 # Winbond W89C840F #device xl0 # 3Com 3c90x (``Boomerang'', ``Cyclone'') # Order is important here due to intrusive probes, do *not* alphabetize # this list of network interfaces until the probes have been fixed. # Right now it appears that the ie0 must be probed before ep0. See # revision 1.20 of this file. # device ed0 at isa? port 0x280 net irq 10 iomem 0xd8000 # device ie0 at isa? port 0x300 net irq 10 iomem 0xd0000 # device ep0 at isa? port 0x300 net irq 10 # device ex0 at isa? port? net irq? # device fe0 at isa? port 0x300 net irq ? # device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 # device lnc0 at isa? port 0x280 net irq 10 drq 0 device xe0 at isa? port? net irq ? #device ze0 at isa? port 0x300 net irq 10 iomem 0xd8000 #device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 # device cs0 at isa? port 0x300 net irq ? pseudo-device loop pseudo-device ether pseudo-device sl 1 pseudo-device ppp 1 pseudo-device tun 1 pseudo-device pty 16 pseudo-device gzip # Exec gzipped a.out's # KTRACE enables the system-call tracing facility ktrace(2). # This adds 4 KB bloat to your kernel, and slightly increases # the costs of each syscall. options KTRACE #kernel tracing # This provides support for System V shared memory and message queues. # options SYSVSHM options SYSVMSG options SYSVSEM # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be # aware of the legal and administrative consequences of enabling this # option. The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. pseudo-device bpfilter 1 #Berkeley packet filter -------------------------------------------------------------------------- -- Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au Email: jesse (at) va.com.au - http://virtual.artists To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 3:24:38 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from va.com.au (va.com.au [203.15.106.1]) by hub.freebsd.org (Postfix) with ESMTP id 874F114BEF for ; Sun, 24 Oct 1999 03:24:21 -0700 (PDT) (envelope-from lizst@va.com.au) Received: from [1.1.1.3] (203.108.19.84) by va.com.au with ESMTP (Eudora Internet Mail Server 2.2); Sun, 24 Oct 1999 19:54:17 +0930 Mime-Version: 1.0 X-Sender: lizst@mail.va.com.au Message-Id: In-Reply-To: <3812C709.19E089D8@kisoft-services.com> References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> <3812C2FB.F273B5E2@kisoft-services.com> <3812C709.19E089D8@kisoft-services.com> Date: Sun, 24 Oct 1999 20:24:05 +1000 To: Eric MASSON , jesse reynolds , FreeBSD Mobile From: Jesse Reynolds Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... Content-Type: text/plain; charset="iso-8859-1" ; format="flowed" Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 10:44 AM +0200 24/10/1999, Eric MASSON wrote: >Hi again, > >you have to put pccard_enable=3D"YES" in your /etc/rc.conf. Sorry for >previous answer, it's early in the morning here and i've just get out of >the bed :). :-) No worries. Okay, I had pccardd_enable=3D"YES" - close but no=20 darts. I'm trying the revised syntax now and am rebooting. Okay, the dmesg output is pretty much unchanged, but I see in the=20 messages file that we're getting a bit further - yay! It puts the=20 same entries in when I run "pccardd dumpcis" too (except the process=20 numbers are different), which are: Oct 24 19:56:01 pccardd[369]: No card in database for=20 "Xircom"("CreditCard Ethernet+Modem 33.") Oct 24 19:56:06 pccardd[369]: No card in database for=20 "Xircom"("CreditCard 10Base-T") Oct 24 19:56:06 pccardd[369]: pccardd started Okay, so this is interesting. Perhaps we should take a few steps=20 backwards though, as I'm fairly new to FreeBSD... I'm more familiar=20 with Solaris and Linux, but i've only just done my first kernel=20 compile so I'm a bit of a baby about all this stuff. And I'm=20 completely unfamiliar with the FreeBSD PCMCIA architecture, and the=20 pc-card architecture full stop. I started on this expedition a week ago when I decided to try getting=20 the ethernet cards working in my freebsd laptop, they are both=20 xircom's of different types, as you can see above I have a CEM33=20 (ethernet + modem) and a ethernet only one. So, where should I go from here? According to the xe driver readme I=20 should add some lines to /etc/pccard.conf - now, I didn't have an=20 /etc/pccard.conf untile just now - I copied the .sample into this=20 location and am using this untouched - should I remove anything from=20 it? I think I need to add some lines about the two cards I have to=20 this file, but I'm not sure what to add exactly. I'm guessing=20 something like: card "Xircom" "CreditCard 10Base-T" config 0x1 "xe0" 10 insert ifconfig xe0 up remove ifconfig xe0 down Now, here's where my knowledge of PC architecture lets me down. The=20 readme says I have to choose an IRQ for the card that isn't used by=20 anything else on the system - especially not the PC card=20 controller... so, how do I tell what devices are using what IRQ? I=20 have no idea... And which bit of this entry is the IRQ? Is it the "0x1"? or the "10"? .... Cheers Jesse >For purpose test you can issue a pccardd -d from the command line, it >will cause pccardd to start and not daemonize, useful for debugging. > >you can find syntax for lines in /etc/rc.conf just by searching the >topics you need in /etc/defaults/rc.conf. /etc/rc.conf is an override >for previous file. > >Eric > >Eric MASSON a =E9crit : >> >> Hi, >> >> So could you post the following: >> 1 - uname -a output >> 2 - /etc/rc.conf >> 3 - kernel config file >> 4 - dmesg output >> >> I post the previous answer because, you get this kind of result if >> pccardd isn't started when issueing pccardc dumpcis. >> >> Eric >> >> Ps: Cross posting is not in standard policies of FreeBSD mailing lists. >> >> jesse reynolds a =E9crit : >> > >> > At 8:36 PM +0200 23/10/1999, Eric MASSON wrote: >> > >Hi >> > > >> > >> # pccardc dumpcis >> > >> Read return -1 bytes (expected 2) >> > >> pccardc: CIS code read: Cannot allocate memory >> > >> Read return -1 bytes (expected 10) >> > >> Configuration data for card in slot 1 >> > >> 2 slots found >> > >Enable pccardd start in /etc/rc.conf and then pccardc dumpcis will wor= k >> > >properly. >> > >> > How should I do this? eg: >> > >> > pccardd_start=3D"YES" >> > >> > is this what you mean? It's not working. I get the same output as >> > above, only doubled, as I have both the cards installed (two of >> > them). I'm not sure of the syntax to use here. I also tried the >> > following with no success: >> > >> > pccardd_enable=3D"YES" >> > >> > I actually thought it might be more to do with the order of the >> > drivers starting up in the kernel, as it tries to probe for xe before > > > it's loaded the PC-Card driver, and initialises xe and sio: >> > >> > xe0: probe >> > xe0 not found >> > . >> > . >> > . >> > PC-Card VLSI 82C146 (5 mem & 2 I/O windows) >> > pcic: controller irq 3 >> > Initializing PC-card drivers: xe sio >> > >> > then again I'm probably barking up the wrong tree. Anyone? >> > >> > cheers >> > >> > jesse >> > >> > -- >> > Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au >> > >> > Faxmail: +61 2 9776 3594 Virtual Community Engine >> > Email: jesse (at) va.com.au http://www.vce.net >> > ?: http://jesse.va.com.au huh?: Community Server for >> > ICQ: 4766684 MacOS Servers (W*API) >> > >> > To Unsubscribe: send mail to majordomo@FreeBSD.org >> > with "unsubscribe freebsd-mobile" in the body of the message >> >> -- >> Any opinions expressed above | Murphy's Law Corollary : >> are my own, not Kisoft's | Murphy was an optimist. >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-mobile" in the body of the message > >-- >Any opinions expressed above | Murphy's Law Corollary : >are my own, not Kisoft's | Murphy was an optimist. > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-mobile" in the body of the message -- Jesse Reynolds - Virtual Artists Pty Ltd - http://www.va.com.au Email: jesse (at) va.com.au - http://virtual.artists To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 10: 7:40 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from logatome.micronet.fr (logatome-2.francenet.fr [193.149.96.2]) by hub.freebsd.org (Postfix) with ESMTP id 09B8B14F9B for ; Sun, 24 Oct 1999 10:07:36 -0700 (PDT) (envelope-from e-masson@kisoft-services.com) Received: from kisoft-services.com (Nantes7.francenet.net [193.149.110.71]) by logatome.micronet.fr (8.8.8/8.8.8) with ESMTP id TAA04501; Sun, 24 Oct 1999 19:07:24 +0200 (CEST) Message-ID: <38133CA7.43E9206A@kisoft-services.com> Date: Sun, 24 Oct 1999 19:06:47 +0200 From: Eric MASSON Organization: Kisoft Services X-Mailer: Mozilla 4.6 [fr] (WinNT; I) X-Accept-Language: fr MIME-Version: 1.0 To: Jesse Reynolds Cc: FreeBSD Mobile Subject: Re: zircom pc-card's on a Fujitsu Lifebook 735Dx Laptop... References: <199910230809.CAA28033@harmony.village.org> <38120042.D8F1BE5D@kisoft-services.com> <3812C2FB.F273B5E2@kisoft-services.com> <3812C709.19E089D8@kisoft-services.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > Oct 24 19:56:01 pccardd[369]: No card in database for > "Xircom"("CreditCard Ethernet+Modem 33.") > Oct 24 19:56:06 pccardd[369]: No card in database for > "Xircom"("CreditCard 10Base-T") You need to add an entry in pccard.conf for both cards. > card "Xircom" "CreditCard 10Base-T" > config 0x1 "xe0" 10 > insert ifconfig xe0 up > remove ifconfig xe0 down > You can check the config to use in the pccardc dumpcis of each card (1) (search for default), xe0 is the driver to use, 10 is the irq (you can let pccardd choose it in the pool described at the start of pccard.conf (2)). line insert should contain pccard_ether script invocation with needed parameters (xe0 at least) card "Xircom" "CreditCard 10Base-T" config 0x1 "xe0" ? ^^^(1) ^(2) insert echo Xircom Pccard inserted insert /etc/pccard_ether xe0 remove echo Xircom Pccard removed remove /sbin/ifconfig xe0 delete Eric To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 14:14:56 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 1714715121 for ; Sun, 24 Oct 1999 14:14:33 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id XAA01916 for ; Sun, 24 Oct 1999 23:14:32 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910242114.XAA01916@gratis.grondar.za> To: mobile@FreeBSD.org Subject: Re: Massive pccard disruptions to continue Date: Sun, 24 Oct 1999 23:14:31 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > This breaks all PCCARD drivers, except those that have been converted. > I've converted ep and sio. Ed will follow by me or someone else very > shortly. I've also heard that people are interested in getting the > pccard support for floppy as well. Look at sio or ep for a cut and > paste model of how to do things. Neither is perfect, but can be used > if you absolutely MUST upgrade the driver before the new pccard code > can be committed, ported and stabilized. Please send any fdc/fd stuff you may have to me, I am whacking on that right now... Thanks! M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 14:55:42 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 857F614A03 for ; Sun, 24 Oct 1999 14:55:31 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.5/nospam) with UUCP id XAA22513 for mobile@freebsd.org; Sun, 24 Oct 1999 23:55:28 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 71178878D; Sun, 24 Oct 1999 21:12:13 +0200 (CEST) Date: Sun, 24 Oct 1999 21:12:13 +0200 From: Ollivier Robert To: mobile@freebsd.org Subject: Re: profile manager for FreeBSD working in different environments ? Message-ID: <19991024211213.A51359@keltia.freenix.fr> Mail-Followup-To: mobile@freebsd.org References: <19991021075803.A14781@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0pre2i In-Reply-To: <19991021075803.A14781@titan.klemm.gtn.com> X-Operating-System: FreeBSD 4.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Andreas Klemm: > When running FreeBSD on a Laptop, I'd whish to have a profile > manager active, who asks me, what FreeBSD configuration I want > to boot. What I did when I had my SunOS laptop (a Tadpole S2 then S3) was a set of scripts and config. files in order to switch from one configuration to another *without* rebooting. I hate rebooting a laptop when it can hibernate :-) I intend to do that again (although I have the old setup somewhere) for my new laptop (a Sony VAIO Z505SX some people have seen in FreeBSDcon :-)). > What do you think of this ? No reboot should be necessary IMO. Using a set of appropriate rc.d/* files with a master one calling the others with "start" and "stop" should do the trick. Having "hostname" returning a short name (no domain) and a suitably edited /etc/hosts (generated for each config) that gives you the FQDN works fine. -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 4.0-CURRENT #74: Thu Sep 9 00:20:51 CEST 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 16:14:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from sicily.odyssey.cs.cmu.edu (SICILY.ODYSSEY.CS.CMU.EDU [128.2.185.138]) by hub.freebsd.org (Postfix) with SMTP id A040614CA5 for ; Sun, 24 Oct 1999 16:14:17 -0700 (PDT) (envelope-from rvb+@sicily.odyssey.cs.cmu.edu) To: Warner Losh Cc: J McKitrick , Steve O'Hara-Smith , Andreas Klemm , mobile@FreeBSD.ORG, Daniel O'Connor , Adam Laurie Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea References: <199910230800.CAA27913@harmony.village.org> From: "Robert V. Baron" Date: 24 Oct 1999 19:12:59 -0400 In-Reply-To: Warner Losh's message of "Sat, 23 Oct 1999 02:00:04 -0600" Message-ID: Lines: 20 X-Mailer: Gnus v5.5/Emacs 20.3 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh writes: > In message "Robert > V. Baron" writes: > : What the sleep does is almost the opposite. It delays the entire boot process > : for 15 seconds after pccardd is started. This means that pccardd has enough > : time to do its thing and find the devices. So the system behaves more like > : the pcmcia devices were found during the system device probe. > > That's why -z is a good idea. It delays the boot process slightly, > but makes sure that your nic cards are probed early in the boot > process so sendmail, et al will have a better chance of working. I'll experiment with setting pccardd_flags=-z vs the sleep, on Monday. BUT, it is wrong to not have either because all these network things start during boot up w/o a network. Clearly the sleep is lame, so since you've been officially hacking pccard support (in the kernel) why don't you fix /etc/defaults/rc.conf to do: pccardd_flags=-z > > Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 17:36:17 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from dcarmich.xnet.com (dcarmich.xnet.com [205.243.153.129]) by hub.freebsd.org (Postfix) with ESMTP id 6F5F915145 for ; Sun, 24 Oct 1999 17:35:41 -0700 (PDT) (envelope-from dcarmich@dcarmich.xnet.com) Received: (from dcarmich@localhost) by dcarmich.xnet.com (8.9.3/8.9.3) id TAA00335; Sun, 24 Oct 1999 19:26:51 -0500 (CDT) (envelope-from dcarmich) Date: Sun, 24 Oct 1999 19:26:50 -0500 From: Douglas Carmichael To: mel@switchpwr.com Cc: freebsd-mobile@freebsd.org Subject: Megahertz XJ/CC1560 modem on NEC Versa LX still locks up intermittently. Message-ID: <19991024192650.A305@dcarmich.xnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've tried reset 10000, and it still locks up sometimes. What could be the problem? What brand/model of modem card are you using with your Versa LX? Please send all replies to dcarmich@xnet.com Thank you. --Douglas Carmichael ------------------------------------------------------------------------------- Here's my pccard.conf: # PC-card sample configuration file # Tatsumi Hosokawa # # Removing all IRQ conflicts from this file can't be done because of some # IRQ-selfish PC-cards. So if you want to use some of these cards in # your machine, you will be forced to modify their IRQ parameters from # the following list. # # $Id: pccard.conf.sample,v 1.26 1999/10/02 17:36:47 toshi Exp $ # Generally available IO ports io 0x240-0x3ff # Generally available IRQs (DEPRECATED, USE OF THE OPTION IS DISCOURAGED) irq 4 9 11 13 # refrain from using SoundBlaster's IRQ, by default. ignirq 5 # it may be helful for most of notebook PCs ignirq 15 # Available memory slots memory 0xd4000 96k #----------------------------------------------------------------------- # Were not for special reasons, please add new entries at the top of # this file when you wrote new entries for unsupported cards. # And, if you succeed using new unsupported cards, please e-mail me # the new entries. # Tatsumi Hosokawa #----------------------------------------------------------------------- # ......... for unsupported cards ......... #----------------------------------------------------------------------- # Fast Ethernet Cards #----------------------------------------------------------------------- # PLANEX (PLANET) FNW-3600-T card "Fast Ethernet" "Adapter" config auto "ed0" any insert logger -s PLANEX FNW-3600-T inserted insert /etc/pccard_ether $device remove logger -s PLANEX FNW-3600-T removed remove /etc/pccard_ether_remove $device # Laneed LD-10/100CD card "Laneed" "LD-10/100CD" config default "ed0" any insert logger -s Laneed LD-10/100CD inserted insert /etc/pccard_ether $device remove logger -s Laneed LD-10/100CD removed remove /etc/pccard_ether_remove $device # Linksys EtherFast 10/100 PC Card (NE2000 Compatible) card "Linksys" "EtherFast 10/100 PC Card \(PCMPC100\)" config auto "ed0" any insert logger -s Linksys EtherFast 10/100 inserted insert /etc/pccard_ether $device remove logger -s Linksys EtherFast 10/100 removed remove /etc/pccard_ether_remove $device # Logitec LPM-LN100TX 100BASE-TX Ethernet LAN CARD card "Logitec" "LPM-LN100TX" config default "ed0" any insert logger -s Logitec LPM-LN100TX Ethernet inserted insert /etc/pccard_ether $device remove logger -s Logitec LPM-LN100TX Ethernet removed remove /etc/pccard_ether_remove $device # BayNetworks NETGEAR FA410TXC Fast Ethernet card "NETGEAR" "FA410TX" "Fast Ethernet" config default "ed0" any insert logger -s NETGEAR FA410TX inserted insert /etc/pccard_ether $device remove logger -s NETGEAR FA410TX removed remove /etc/pccard_ether_remove $device # Telecom Device SuperSocket RE550T card "Telecom Device K\.K\." "SuperSocket RE550T" config default "ed0" any insert logger -s Telecom Device SuperSocket RE550T inserted insert /etc/pccard_ether $device remove logger -s Telecom Device SuperSocket RE550T removed remove /etc/pccard_ether_remove $device # ONTEC LN-2221 10/100 Ethernet Adapter card "ONTEC & SMC" "LN-2221 Ethernet PCCard" config default "sn0" any insert logger -s ONTEC LN-2221 Ethernet inserted insert /etc/pccard_ether $device remove logger -s ONTEC LN-2221 Ethernet removed remove /etc/pccard_ether_remove $device # COREGA FastEther PCC-TX card "corega K\.K\." "corega FastEther PCC-TX" config auto "ed0" any insert logger -s Corega FastEther PCC-TX inserted insert /etc/pccard_ether $device remove logger -s Corega FastEther PCC-TX removed remove /etc/pccard_ether_remove $device # I/O DATA PCET/TX card "IO DATA" "PCETTX" config default "ed0" any insert logger -s IO-DATA PCET/TX inserted insert /etc/pccard_ether $device remove logger -s IO-DATA PCET/TX removed remove /etc/pccard_ether_remove $device # CyQ've ELA-110 card "CyQ've" "ELA-110 10/100M LAN Card" config default "ed0" any insert logger -s "CyQ've ELA-100 10/100M LAN card inserted" insert /etc/pccard_ether $device remove logger -s "CyQ've ELA-100 10/100M LAN card removed" remove /etc/pccard_ether_remove $device # D-Link DFE-650 Ethernet Card card "D-Link" "DFE-650" config default "ed0" any 0x10 insert logger -s D-link DFE-650 inserted insert /etc/pccard_ether $device remove logger -s D-link DFE-650 removed remove /etc/pccard_ether_remove $device # MELCO LPC-TX card "MELCO/SMC" "LPC-TX" config default "sn0" any ether 0x4a 00:a0:dc insert logger -s MELCO/SMC LPC-TX inserted insert /etc/pccard_ether $device remove logger -s MELCO/SMC LPC-TX removed remove /etc/pccard_ether_remove $device # MELCO LPC2-TX card "MELCO" "LPC2-TX" config default "ed0" any insert logger -s MELCO LPC2-TX inserted insert /etc/pccard_ether $device remove logger -s MELCO LPC2-TX removed remove /etc/pccard_ether_remove $device # 3Com Fast Etherlink 3C574TX card "3Com" "3C574-TX Fast EtherLink PC Ca" config 0x1 "ep0" any 0x1 insert logger -s 3Com 3C574TX inserted insert /etc/pccard_ether $device remove logger -s 3Com 3C574TX removed remove /etc/pccard_ether_remove $device # 3Com Fast Etherlink 3C574B card "3Com" "Megahertz 574B" config 0x1 "ep0" any 0x1 insert logger -s 3Com 3C574B inserted insert /etc/pccard_ether $device remove logger -s 3Com 3C574B removed remove /etc/pccard_ether_remove $device # 3way 3WL-847-TX card "SUN WAY" "3WL-847-TX 100BASE-TX" config auto "ed0" any insert logger -s 3way 3WL-847-TX inserted insert /etc/pccard_ether $device remove logger -s 3way 3WL-847-TX removed remove /etc/pccard_ether_remove $device #----------------------------------------------------------------------- # Ethernet Cards #----------------------------------------------------------------------- # IBM PCMCIA Ethernet I/II, RIOS PC CARD II ETHERNET card "IBM Corp\." "Ethernet" config default "ed0" any ether 0xff0 # 08:00:5a 00:04:ac 00:06:29 insert logger -s IBM PCMCIA Ethernet inserted insert /etc/pccard_ether $device remove logger -s IBM PCMCIA Ethernet removed remove /etc/pccard_ether_remove $device # RIOS PC CARD3 ETHERNET card "RIOS Systems Co\." "PC CARD3 ETHERNET" config default "ed0" any ether 0xff0 00:00:48 insert logger -s RIOS PC CARD3 ETHERNET inserted insert /etc/pccard_ether $device remove logger -s RIOS PC CARD3 ETHERNET removed remove /etc/pccard_ether_remove $device # Accton EN2212 card "ACCTON" "EN2212" config default "ed0" any 0x30 ether 0xff0 00:00:e8 insert logger -s Accton EN2212 inserted insert /etc/pccard_ether $device remove logger -s Accton EN2212 removed remove /etc/pccard_ether_remove $device # Accton EN2216 EtherCard card "ACCTON" "EN2216-PCMCIA-ETHERNET" config 0x22 "ed0" any 0x10 ether 0x1c0 00:00:e8 insert /etc/pccard_ether $device insert logger -s Accton EN2216 inserted remove /etc/pccard_ether_remove $device remove logger -s Accton EN2216 removed # Accton UE2216 Ethernet OEM card "PCMCIA" "PCMCIA-ETHERNET-CARD" config 0x22 "ed0" any 0x10 ether 0x1c0 00:00:e8 insert logger -s Accton UE2216 Ethernet inserted insert /etc/pccard_ether $device remove logger -s Accton UE2216 Ethernet removed remove /etc/pccard_ether_remove $device # Planet Smart COM 2000, Melco LPC-T card "PCMCIA" "UE2212" config default "ed0" any 0x10 ether 0xff0 00:00:e8 insert logger -s Planet Smart COM 2000 inserted insert /etc/pccard_ether $device remove logger -s Planet Smart COM 2000 removed remove /etc/pccard_ether_remove $device # Planet Communications Ethernet Card ENW-3501-T card "IC-CARD\+" "IC-CARD\+" config default "ed0" any 0x10 insert logger -s Planet ENW-3501-T inserted insert /etc/pccard_ether $device remove logger -s Planet ENW-3501-T removed remove /etc/pccard_ether_remove $device # Planet Smart COM 3500, IC-Card Ethernet, SYSCOM SC100 Ethernet Card card "IC-CARD" "IC-CARD" config default "ed0" any 0x20 # config default "ed0" any 0x10 insert logger -s Planet Smart Com 3500 inserted insert /etc/pccard_ether $device remove logger -s Planet Smart Com 3500 removed remove /etc/pccard_ether_remove $device # 3Com Etherlink III 3C589, 3C589B, 3C589C, 3C589D card "3Com Corporation" "3C589" config auto "ep0" 4 # Changed by dcarmich (10/22/1999) insert logger -s 3Com Etherlink III inserted insert /etc/pccard_ether $device remove logger -s 3Com Etherlink III removed remove /etc/pccard_ether_remove $device # 3Com Megahertz 3CXE589ET card "3Com" "Megahertz 589E" config default "ep0" any insert logger -s 3Com Megahertz 3C589E inserted insert /etc/pccard_ether $device remove logger -s 3Com Megahertz 3C589E removed remove /etc/pccard_ether_remove $device # Farallon EtherMac card "Farallon" "ENet" config default "ep0" any insert logger -s Farallon EtherMac inserted insert /etc/pccard_ether $device remove logger -s Farallon EtherMac removed remove /etc/pccard_ether_remove $device # Fujitsu FMV-J181 card "PCMCIA MBH10302" "01" config 0xc "fe0" any insert logger -s Fujitsu FMV-J181 inserted insert /etc/pccard_ether $device remove logger -s Fujitsu FMV-J181 removed remove /etc/pccard_ether_remove $device # Fujitsu FMV-J182, FMV-J182A card "FUJITSU" "LAN Card\(FMV-J182\)" config 0x32 "fe0" any # These cards have same ID strings, and different MAC address # locations. ether 0xf2c 00:00:0e #FMV-J182 ether 0x1cc 00:00:0e #FMV-J182A insert logger -s Fujitsu FMV-J182 inserted insert /etc/pccard_ether $device remove logger -s Fujitsu FMV-J182 removed remove /etc/pccard_ether_remove $device # NextCom J Link NC5310 card "NextComK\.K\." "NC5310 Ver1\.0.*" config auto "fe0" any insert logger -s NextCom J Link NC5310 inserted insert /etc/pccard_ether $device remove logger -s NextCom J Link NC5310 removed remove /etc/pccard_ether_remove $device # NextCom Next Hawk Etherneet Adapter card "NextCom K.K." "Next Hawk" config default "ed0" any insert logger -s NextCom Next Hawk Ethernet inserted insert /etc/pccard_ether $device remove logger -s NextCom Next Hawk Ethernet removed remove /etc/pccard_ether_remove $device # HITACHI HT-4840-11 card "HITACHI" "HT-4840-11" config 0x1a "fe0" any insert logger -s HITACHI HT-4840-11 inserted insert /etc/pccard_ether $device remove logger -s HITACHI HT-4840-11 removed remove /etc/pccard_ether_remove $device # CONTEC C-NET(PC)C Ethernet card "CONTEC Co\.,Ltd\." "C-NET\(PC\)C.*" config default "fe0" any ether 0x58 00:80:4c insert logger -s CONTEC C-NET inserted insert /etc/pccard_ether $device remove logger -s CONTEC C-NET removed remove /etc/pccard_ether_remove $device # TDK LAC-CD021, LAC-CD021A card "TDK" "LAC-CD02x" config default "fe0" any # These cards have same ID strings, and different MAC address # locations. ether 0x92 00:80:98 # LAC-CD021, LAC-021A ether 0x96 00:80:98 # LAC-CD021BX 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 # Megahertz X-Jack Ethernet CC10BT/2 card "Megahertz" "CC10BT/2" config default "sn0" any ether attr2hex 00:00:86 insert logger -s Megahertz X-Jack Ethernet inserted insert /etc/pccard_ether $device remove logger -s Megahertz X-Jack Ethernet removed remove /etc/pccard_ether_remove $device # Megahertz Ethernet Adapter card "Megahertz" "ETHERNET ADAPTOR" config default "sn0" any ether attr2hex 00:00:86 insert logger -s Megahertz Ethernet inserted insert /etc/pccard_ether $device remove logger -s Megahertz Ethernet removed remove /etc/pccard_ether_remove $device # Dayna Communications CommuniCard E card "Dayna Communications, Inc\." "CommuniCard E" config default "ed0" any 0x10 ether 0x110 00:80:19 insert logger -s Dayna CommuniCard inserted insert /etc/pccard_ether $device remove logger -s Dayna CommuniCard remove remove /etc/pccard_ether_remove $device # GVC NIC-2000P Ethernet Card card "GVC" "NIC-2000p" config default "ed0" any 0x10 insert logger -s GVC NIC-200P inserted insert /etc/pccard_ether $device remove logger -s GVC NIC-200P removed remove /etc/pccard_ether_remove $device # No-brand NE-2000 compatible card card "PCMCIA" "ETHERNET V1.0" config default "ed0" any 0x10 ether 0xff0 # MAC address field should be filled insert logger -s PCMCIA ETHERNET V1.0 inserted insert /etc/pccard_ether $device remove logger -s PCMCIA ETHERNET V1.0 removed remove /etc/pccard_ether_remove $device # Eiger Labs Ethernet COMBO card "EIGER Labs Inc\." "Ethernet COMBO Card" config default "ed0" any 0x10 insert logger -s Eiger Labs Ethernet COMBO inserted insert /etc/pccard_ether $device remove logger -s Eiger Labs Ethernet COMBO inserted remove /etc/pccard_ether_remove $device # D-Link DE-650 Ethernet Card card "D-Link" "DE-650" config default "ed0" any 0x10 # New models of DE650 has no ether MAC address definition in CIS tupples. # If you have an older one, please uncomment the following line. # ether 0x40 00:80:c8 insert logger -s D-link DE-650 inserted insert /etc/pccard_ether $device remove logger -s D-link DE-650 removed remove /etc/pccard_ether_remove $device # D-Link DE-660 Ethernet Card card "D-Link" "DE-660" config default "ed0" any 0x10 insert logger -s D-link DE-660 inserted insert /etc/pccard_ether $device remove logger -s D-link DE-660 removed remove /etc/pccard_ether_remove $device # National Semiconductor InfoMover 4100 card "National Semiconductor" "InfoMover 4100" config default "ed0" any ether 0xff0 08:00:17 insert logger -s National Semiconductor InfoMover inserted insert /etc/pccard_ether $device remove logger -s National Semiconductor InfoMover removed remove /etc/pccard_ether_remove $device # NDC Instant-Link card "NDC" "Ethernet" config default "ed0" any 0x30 insert logger -s NDC Instant-Link inserted insert /etc/pccard_ether $device remove logger -s NDC Instant-Link removed remove /etc/pccard_ether_remove $device # Laneed PCMCIA Ethernet card. ELECOM LD-CDWA (DP83902A) card "MACNICA" "ME1-JEIDA" config default "ed0" any ether 0xb8 08:00:42 insert logger -s MACNICA PCMCIA Ethernet inserted insert /etc/pccard_ether $device remove logger -s MACNICA PCMCIA Ethernet removed remove /etc/pccard_ether_remove $device # ELECOM Laneed LD-CDF card "Laneed" "LD-CDF" config default "ed0" any insert logger -s Laneed LD-CDF inserted insert /etc/pccard_ether $device remove logger -s Laneed LD-CDF removed remove /etc/pccard_ether_remove $device # Digital DEPCM-BA Ethernet card "DIGITAL" "DEPCM-XX" config 0x2 "ed0" any 0x10 ether 0xff0 00:00:e8 insert logger -s Digital DEPCM-BA Ethernet inserted insert /etc/pccard_ether $device remove logger -s Digital DEPCM-BA Ethernet removed remove /etc/pccard_ether_remove $device # Matsushita Electric Industrial Co.,LTD. CF-VEL211P-B card "Matsushita Electric Industrial Co.,LTD." "CF-VEL211" config default "ed0" any ether 0xff0 00:80:45 insert logger -s Panasonic CF-VEL211 inserted insert /etc/pccard_ether $device remove logger -s Panasonic CF-VEL211 removed remove /etc/pccard_ether_remove $device # ADDTRON EP-210A card "EP-210 PCMCIA LAN CARD\." ".*" config default "ed0" any 0x10 ether 0x110 00:40:33 insert logger -s ADDTRON EP-210A inserted insert /etc/pccard_ether $device remove logger -s ADDTRON EP-210A removed remove /etc/pccard_ether_remove $device # PreMax PE-200 Ethernet Card card "PMX " "PE-200" config default "ed0" any 0x10 ether 0x7f0 00:20:e0 insert logger -s PREMAX PE-200 inserted insert /etc/pccard_ether $device remove logger -s PREMAX PE-200 removed remove /etc/pccard_ether_remove $device # No-brand NE2000 compatible card (FCC ID: LXLC1LANTB) card " " "Ethernet Combo card" config default "ed0" any 0x10 insert logger -s NE2000 compatible card inserted insert /etc/pccard_ether $device remove logger -s NE2000 compatible card removed remove /etc/pccard_ether_remove $device # RATOC REX-5588, REX-9822, REX-4886 card "PCMCIA LAN MBH10304 ES" " 01" config auto "fe0" any ether 0x32c 00:c0:d0 # many minor revs.... ether 0x328 00:c0:d0 ether 0x200 00:c0:d0 insert logger -s RATOC REX-5588 Ethernet inserted insert /etc/pccard_ether $device remove logger -s RATOC REX-5588 Ethernet removed remove /etc/pccard_ether_remove $device # RATOC REX-R280 card "RATOC System Inc\." "10BASE_T CARD R280" config auto "fe0" any ether 0x1fc 00:c0:d0 insert logger -s RATOC REX-R280 inserted insert /etc/pccard_ether $device remove logger -s RATOC REX-R280 removed remove /etc/pccard_ether_remove $device # SCM Ethernet Combo (*Not SMC :-)*) card "SCM" "Ethernet Combo card" config default "ed0" any 0x10 ether 0xff0 00:20:cb insert logger -s SCM Ethernet card inserted insert /etc/pccard_ether $device remove logger -s SCM Ethernet card removed remove /etc/pccard_ether_remove $device # Linksys Combo PCMCIA Ethernet Card card "LINKSYS" "E-CARD" config default "ed0" any 0x10 insert logger -s Linksys Combo Ethernet inserted insert /etc/pccard_ether $device remove logger -s Linksys Combo Ethernet removed remove /etc/pccard_ether_remove $device # Linksys Combo PCMCIA Ethernet Card card "Linksys" "Combo PCMCIA EthernetCard \(EC2T\)" config default "ed0" any 0x10 insert logger -s Linksys PCMCIA Ethernet inserted insert /etc/pccard_ether $device remove logger -s Linksys PCMCIA Ethernet removed remove /etc/pccard_ether_remove $device # I/O DATA PCLA/T card "I-O DATA" "PCLA" config auto "ed0" any 0x10 ether 0x1c0 00:a0:b0 ether 0xff0 00:a0:b0 insert logger -s I-O DATA PCLA/T Ethernet inserted insert /etc/pccard_ether $device remove logger -s I-O DATA PCLA/T Ethernet removed remove /etc/pccard_ether_remove $device # I/O DATA PCLA/TE card "IO DATA" "PCLATE" config default "ed0" any 0x10 insert logger -s I-O DATA PCLA/TE Ethernet inserted insert /etc/pccard_ether $device remove logger -s I-O DATA PCLA/TE Ethernet removed remove /etc/pccard_ether_remove $device # Fujitsu Towa LA501 Ethernet card "FUJITSU TOWA" "LA501" config 0x29 "fe1" any 0x10 ether 0x332 00:00:0e insert logger -s Fujitsu Towa LA501 Ethernet inserted insert /etc/pccard_ether $device remove logger -s Fujitsu Towa LA501 Ethernet removed remove /etc/pccard_ether_remove $device # Grey Cell GCS2220 Ethernet Card card "Grey Cell" "GCS2220" config default "ed0" any 0x10 insert logger -s Grey Cell GCS2220 inserted insert /etc/pccard_ether $device remove logger -s Grey Cell GCS2220 removed remove /etc/pccard_ether_remove $device # Epson EEN10B Ethernet Card card "Seiko Epson Corp\." "Ethernet" config default "ed0" any 0x10 ether 0xff0 00:00:48 insert logger -s Epson EEN10B Ethernet Card inserted insert /etc/pccard_ether $device remove logger -s Epson EEN10B Ethernet Card removed remove /etc/pccard_ether_remove $device # COREGA Ether PCM-T card "Corega,K\.K\." "Ethernet LAN Card" config default "ed0" any ether 0xff0 00:00:f4 insert logger -s Corega Ethernet inserted insert /etc/pccard_ether $device remove logger -s Corega Ethernet removed remove /etc/pccard_ether_remove $device # COREGA Ether PCC-T card "corega K\.K\." "corega Ether PCC-T" config default "ed0" any insert logger -s Corega Ether PCC-T inserted insert /etc/pccard_ether $device remove logger -s Corega Ether PCC-T removed remove /etc/pccard_ether_remove $device # COREGA EtherII PCC-T Ethernet Card card "corega K\.K\." "corega EtherII PCC-T" config default "ed0" any insert logger -s EtherII Corega EtherII PCC-T inserted insert /etc/pccard_ether $device remove logger -s EtherII Corega EtherII PCC-T removed remove /etc/pccard_ether_remove $device # Telecom Device SuperSocket RE450T card "Ethernet" "Adapter" config 0x3 "ed0" any # There's another minor revision of this card that has no MAC address in # CIS tupple. This revision does not require "ether" definition. If you # have it, please comment out the following line. ether 0x110 00:e0:98 # Please note that if the log message says that the MAC address of the # card is 00:00:00:00:00:00, please uncomment the "ether" definition again # and set it to proper value. insert logger -s Telecom Device SuperSocket RE450T inserted insert /etc/pccard_ether $device remove logger -s Telecom Device SuperSocket RE450T removed remove /etc/pccard_ether_remove $device # Telecom Device SuperSocket RE450T card "Telecom Device K.K." "SuperSocket RE450T" config default "ed0" any insert logger -s Telecom Device SuperSocket RE450T inserted insert /etc/pccard_ether $device remove logger -s Telecom Device SuperSocket RE450T removed remove /etc/pccard_ether_remove $device # RPTI EP401 Ethernet NE2000 compatible card "RPTI" "EP401 Ethernet NE2000 Compatible" config default "ed0" any insert logger -s RPTI EP401 Ethernet inserted insert /etc/pccard_ether $device remove logger -s RPTI EP401 Ethernet removed remove /etc/pccard_ether_remove $device # Nihon Unisys, Ltd. JPF0400-LAN card "Nihon Unisys, Ltd." "JPF0400-LAN" config default "ed0" any ether 0xff0 00:80:45 insert logger -s Nihon Unisys JPF0400-LAN inserted insert /etc/pccard_ether $device remove logger -s Nihon Unisys JPF0400-LAN removed remove /etc/pccard_ether_remove $device # Nihon Unisys, Ltd. JPF0400-ETH card "Nihon Unisys, Ltd." "JPF0400-ETH" config default "ed0" any ether 0xff0 00:80:45 insert logger -s Nihon Unisys JPF0400-ETH inserted insert /etc/pccard_ether $device remove logger -s Nihon Unisys JPF0400-ETH removed remove /etc/pccard_ether_remove $device # SURECOM EtherPerfect EP-427 Adapter card "TAMARACK" "Ethernet" config default "ed0" any ether attr2hex 00:47:43 insert logger -s SURECOM EtherPerfect EP-427 inserted insert /etc/pccard_ether $device remove logger -s SURECOM EtherPerfect EP-427 removed remove /etc/pccard_ether_remove $device # Allied Telesis Ethernet Card card "Allied Telesis,K\.K" "Ethernet LAN Card" config default "ed0" any 0x10 ether 0xff0 00:00:f4 insert logger -s Allied Telesis Ethernet Card inserted insert /etc/pccard_ether $device remove logger -s Allied Telesis Ethernet Card removed remove /etc/pccard_ether_remove $device # Toshiba Joho System PTJ-LAN/T card "TJ" "Ethernet" config default "ed0" any 0x10 insert logger -s TJ Ethernet card inserted insert /etc/pccard_ether $device remove logger -s TJ Ethernet card removed remove /etc/pccard_ether_remove $device # Logitec LPM-LN20T card "Logitec" "LPM-LN20T" config default "ed0" any insert logger -s Logitec LPM-LN20T inserted insert /etc/pccard_ether $device insert logger -s Logitec LPM-LN20T removed remove /etc/pccard_ether_remove $device # CentreCOM LA-PCM V2 card "Allied Telesis, K\.K\." "CentreCOM LA-PCM_V2" config 0x20 "ed0" any 0x10 insert logger -s CentreCOM LA-PCM V2 inserted insert /etc/pccard_ether $device remove logger -s CentreCOM LA-PCM V2 removed remove /etc/pccard_ether_remove $device # Map Japan MPL-972 card "2408LAN" "Ethernet" config default "ed0" any insert logger -s Map Japan MPL-972 inserted insert /etc/pccard_ether $device remove logger -s Map Japan MPL-972 removed remove /etc/pccard_ether_remove $device # EXPsys PCMCIA Ethernet Combo, Relia PCMCIA Ethernet card "PCMCIA LAN" "Ethernet" config default "ed0" any insert logger -s EXPsys Ethernet inserted insert /etc/pccard_ether $device remove logger -s EXPsys Ethernet removed remove /etc/pccard_ether_remove $device # CyQ've ELA-010 10BASE-T LAN Card card "CyQ've" "ELA-010" config default "ed0" any 0x10 insert logger -s CyQ\'ve ELA-010 LAN card inserted insert /etc/pccard_ether $device remove logger -s CyQ\'ve ELA-010 LAN card removed remove /etc/pccard_ether_remove $device # Billionton LNT-10TB card "Billionton" "LNT-10TB" config 0x20 "ed0" any insert logger -s Billionton LNT-10TB inserted. insert /etc/pccard_ether $device remove logger -s Billionton LNT-10TB removed. remove /etc/pccard_ether_remove $device # MELCO LPC2-T card "MELCO" "LPC2-T" config default "ed0" any insert logger -s MELCO LPC2-T inserted insert /etc/pccard_ether $device remove logger -s MELCO LPC2-T removed remove /etc/pccard_ether_remove $device # CNet PCMCIA PowerNIC CN40BC(BT) card "CNet" "CN40BC Ethernet" config default "ed0" any 0x10 insert logger -s CNet CN40BC inserted insert /etc/pccard_ether $device remove logger -s CNet CN40BC removed remove /etc/pccard_ether_remove $device # Kingston KNE-PCM/x Ethernet card "Kingston Technology Corp\." "EtheRx PC Card Ethernet.*" config default "ed0" any ether 0xff0 00:c0:f0 insert logger -s Kingston KNE-PCM/x Ethernet inserted insert /etc/pccard_ether $device remove logger -s Kingston KNE-PCM/x Ethernet removed remove /etc/pccard_ether_remove $device # Kingston KNE-PC2 card "Kingston" "KNE-PC2" config auto "ed0" any config auto "ed1" any insert logger -s Kingston KNE-PC2 inserted insert /etc/pccard_ether $device remove logger -s Kingston KNE-PC2 removed remove /etc/pccard_ether_remove $device # NEC PC-9801N-J12 card "NEC" "PC-9801N-J12" config default "ed0" any ether 0xff0 00:00:4c insert logger -s NEC PC-9801N-J12 inserted insert /etc/pccard_ether $device remove logger -s NEC PC-9801N-J12 removed remove /etc/pccard_ether_remove $device # "Ethernet Adapter" "E2000 PCMCIA Ethernet" card "Ethernet Adapter" "E2000 PCMCIA Ethernet" config default "ed0" any insert logger -s Ethernet Adapter E2000 PCMCIA Ethernet insert /etc/pccard_ether $device remove logger -s Ethernet Adapter E2000 PCMCIA Ethernet remove /etc/pccard_ether_remove $device #----------------------------------------------------------------------- # Modem Cards #----------------------------------------------------------------------- # Most of modem cards does not match these definitions. Please read # "wildcard entries" listed at the end of this file. #----------------------------------------------------------------------- # Added by dcarmich (10/23/1999) card "U.S. Robotics" "XJ/CC1560" config auto "sio2" 11 insert logger -s NEC Versa LX modem inserted remove logger -s NEC Versa LX modem removed # AIWA PV-JF3356 card "AIWA CO\.,LTD\. MODEM" "PV-JF3356" config auto "sio3" any 0x40000 insert logger -s AIWA PV-JF3356 inserted remove logger -s AIWA PV-JF3356 removed # Omron MD24XCA FAX/Data Modem card "OMRON Corp\." "MD24XCA" config auto "sio3" pio reset 10000 insert logger -s OMRON MD24XCA Modem inserted remove logger -s OMRON MD24XCA Modem removed #----------------------------------------------------------------------- # ISDN Serial Cards #----------------------------------------------------------------------- # NTT-IT ThunderCard card "NTT Intelligent Technology Co., Ltd." "ThunderCard DD128" config auto "sio3" any 0x80 reset 1000 insert logger -s NTT-IT Thunder-card inserted remove logger -s NTT-IT Thunder-card removed #----------------------------------------------------------------------- # Digital Cellular Cards #----------------------------------------------------------------------- # NTT DoCoMo DATA/FAX Adapter card "NTT DoCoMo" "PCMCIA DATA/FAX.*" config auto "sio3" any 0x82 insert logger -s NTT DoCoMo DATA/FAX Adapter inserted remove logger -s NTT DoCoMo DATA/FAX Adapter removed # NTT DoCoMo Mobile D Card 96P1 card "NTT DoCoMo" "Mobile D Card 96P1" config auto "sio3" any 0x82 insert logger -s NTT DoCoMo Mobile D Card 96P1 Adapter inserted remove logger -s NTT DoCoMo Mobile D Card 96P1 Adapter removed #----------------------------------------------------------------------- # PHS Digital Communication Cards #----------------------------------------------------------------------- # NTT Personal Paldio Data Card DC-1S card "NTT Personal" "Paldio Data.*" "DC-1S" config auto "sio3" any 0x40000 insert logger -s NTT Personal Paldio Data Card DC-1S inserted remove logger -s NTT Personal Paldio Data Card DC-1S removed # NTT DoCoMo (formerly NTT Personal) Paldio 321S card "NTT Personal" "32K Paldio 321S PC CARD" config auto "sio3" any 0x40000 insert logger -s NTT Personal Paldio 321S PC Card inserted remove logger -s NTT Personal Paldio 321S PC Card removed # SII (DDI) MC-6550 card "SII" "PHS DATA 64" config auto "sio3" any 0x40000 insert logger -s SII MC-6550 inserted remove logger -s SII MC-6550 removed #----------------------------------------------------------------------- # Misc. Serial Cards #----------------------------------------------------------------------- # Panasonic FM-RADIO card card "Panasonic" "CF-JVR101" config auto "sio3" pio insert logger -s Panasonic FM radio card inserted remove logger -s Panasonic FM radio card removed #----------------------------------------------------------------------- # SCSI Cards #----------------------------------------------------------------------- # Adaptec SlimSCSI card "Adaptec, Inc\." "APA-1460.*" config default "aic0" any insert logger -s Adaptec Slim SCSI inserted remove logger -s Adaptec Slim SCSI removed # New Media Corporation BASICS SCSI # (Do not put this entry under Bustoaster) card "BASICS by New Media Corporation" "SCSI Sym53C500" config 0x14 "ncv0" any insert logger -s New Media BASICS SCSI inserted remove logger -s New Media BASICS SCSI removed # NewMedia Bustoaster SCSI card "New Media" "SCSI" config 0x22 "aic0" any insert logger -s New Media Bus Toaster inserted remove logger -s New Media Bus Toaster removed # RATOC REX-5536AM, REX-9836A, ICM PSC-2401 SCSI # (Don't put this entry under REX5535 series!) # There's a buggy revision of this card which has broken CIS tupples. # if you can't use this card, please use the point enabler. (for example, # type "pccardc enabler 0 stg0 -a 0x4140 -i 5" from root command prompt) card "PCMCIA SCSI MBH10404" "01" config 0x37 "stg0" any insert logger -s RATOC REX-5536AM SCSI inserted remove logger -s RATOC REX-5536AM SCSI removed # RATOC REX-5535AC, REX-5535X, REX-9835X, REX-9835Z SCSI card "PCMCIA SCSI MBH1040" "01" config 0x3a "spc0" any insert logger -s RATOC REX-5535 SCSI inserted remove logger -s RATOC REX-5535 SCSI removed # RATOC REX-5536M card "PCMCIA SCSI2 CARD" "01" config 0x5 "stg0" any 0 insert logger -s RATOC REX-5536M SCSI inserted remove logger -s RATOC REX-5536M SCSI removed # RATOC REX-5536, Melco IFC-SC card "1195 RATOC System Inc\." "REX5536 SCSI2 CARD" config 0x7 "stg0" any 0 insert logger -s RATOC REX-5536 SCSI inserted remove logger -s RATOC REX-5536 SCSI removed # RATOC REX-9530 card "RATOC System Inc." "SCSI2 CARD.*" config auto "ncv0" any 0x84d00000 insert logger -s RATOC REX-9530 SCSI inserted remove logger -s RATOC REX-9530 SCSI removed # IO DATA PCSC-DV # Macnica Miracle SCSI mPS100 card "MACNICA" "MIRACLE SCSI" "mPS100" "D.0" config 0x11 "ncv0" any 0xb6250000 insert logger -s MACNICA Miracle SCSI inserted remove logger -s MACNICA Miracle SCSI removed # Macnica Miracle SCSI-II mPS110 card "MACNICA" "MIRACLE SCSI-II mPS110" config 0x15 "ncv0" any 0 insert logger -s MACNICA Miracle SCSI-II inserted remove logger -s MACNICA Miracle SCSI-II removed # IBM SCSI PCMCIA Card card "IBM Corp\." "SCSI PCMCIA Card" config default "stg0" any insert logger -s IBM SCSI PCMCIA Card inserted remove logger -s IBM SCSI PCMCIA Card removed # Future Domain SCSI2GO card "Future Domain Corporation" "SCSI PCMCIA Credit Card Controller" config default "stg0" any insert logger -s Future Domain SCSI2GO inserted remove logger -s Future Domain SCSI2GO removed # KME (TAXAN ICD-400PN, etc.) card "KME" "KXLC002" config 0x26 "ncv0" any 0xb4d00000 insert logger -s KME SCSI PCMCIA Card inserted remove logger -s KME SCSI PCMCIA Card removed # Qlogic Fast SCSI card "QLOGIC CORPORATION" "pc05" config 0x2f "ncv0" any 0x84d00000 insert logger -s Qlogic Fast SCSI inserted remove logger -s Qlogic Fast SCSI removed # Media Intelligent SCSI-2 PC Card MSC-200 card "EPSON" "SCSI-2 PC Card SC200" config 0x12 "ncv0" any insert logger -s EPSON SCSI-2 PC Card MSC200 inserted remove logger -s EPSON SCSI-2 PC Card MSC200 removed # NEC PC-9801N-J03R card "NEC" "PC-9801N-J03R" config 0x15 "ncv0" any 0 insert logger -s NEC PC-9801N-J03R inserted remove logger -s NEC PC-9801N-J03R removed # WORKBIT Ninja SCSI series card "WBT" "NinjaSCSI-3" config default "nin0" any insert logger -s Workbit NinjaSCSI-3 inserted remove logger -s Workbit NinjaSCSI-3 removed #------------------------ untested ---------------------------- #------------------------ untested ---------------------------- # If these entry do not work, try other config index than default. # Please e-mail me whether it works or not. Thanks # Tatsumi Hosokawa card "MIDORI ELECTRONICS.*" "CN-SC43.*" config default "ncv0" any 0x80100000 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp card "EIger Labs" "PCMCIA-to-SCSI Adapter" config default "ncv0" any insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp card "SCSI PCMCIA Adapter Card" ".*" config 0x20 "stg0" any insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp card " SIMPLE TECHNOLOGY Corporation" "SCSI PCMCIA Credit Card Controller" config default "stg0" any insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp card "KME" "KXLC003" config 0x26 "ncv0" any 0xb4d00000 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp #----------------------------------------------------------------------- # ATAPI CD-ROM Cards #----------------------------------------------------------------------- # IO Data CBIDE (bundled with CDP-FX24, etc.) card "WIT" "IDE16" config default "wdc1" any insert logger -s IO Data CBIDE inserted remove logger -s IO Data CBIDE removed # DHU Mobile Media CD-ROM # (no hotplug support) card "Digital Equipment Corporation\." "Digital Mobile Media CD-ROM" config 0xb "wdc1" 15 # Caravelle PSC-IDE 6x ATAPI CD-ROM card "Caravelle" "PSC-IDE " config 0x2a "wdc1" any 0x1 insert logger -s Caravelle PSC-IDE card inserted remove logger -s Caravelle PSC-IDE card removed # IBM Portable 4X Speed CD-ROM Drive CD-400 card "IBM" "PCMCIA CD-ROM Drive CD-400" config 0x1 "wdc1" any 0x10000 cardio 0x250 0x20 insert logger -s IBM PCMCIA CD-ROM CD-400 inserted remove logger -s IBM PCMCIA CD-ROM CD-400 removed # IO Data PCIDEII (bundled with CDP-TX10, etc.) card "IO DATA" "PCIDEII" config auto "wdc1" any insert logger -s IO Data PCIDEII inserted remove logger -s IO Data PCIDEII removed # IBM CD-20XSeries(IDE PC Card) card "IBM" "PCMCIA Portable CD-ROM Drive" config 0x1 "wdc1" any 0x10000 cardio 0x250 0x20 insert logger -s IBM CD-20XS inserted remove logger -s IBM CD-20XS removed # NOVAC Station Series card "PCMCIA" "CD-ROM" config default "wdc1" any insert logger -s Novac Station CD-ROM inserted remove logger -s Novac Station CD-ROM removed # LIP-32B attached to Logitec LCW-PD648PI card "WORKBIT" "ATA-32Bi\(16\)" config default "wdc1" any insert logger -s Logitec LIP-32B inserted remove logger -s Logitec LIP-32B removed # Ninja-ATA CD-ROM Drive, MELCO CDN-D12EX card "" "NinjaATA-" config default "wdc1" any insert logger -s Ninja ATA inserted remove logger -s Ninja ATA removed # TOSHIBA Portable 24X Speed CD-ROM Drive PA2673UJ card "LOOKMEET" "CBIDE2" config default "wdc1" any insert logger -s TOSHIBA CD-ROM Drive inserted remove logger -s TOSHIBA CD-ROM Drive removed # IO DATA CBIDE2 # (bundled with Panasonic DVD-ROM LK-RV8171D) card "IO DATA" "CBIDE2" config default "wdc1" any insert logger -s IO DATA CBIDE2 inserted remove logger -s IO DATA CBIDE2 removed #----------------------------------------------------------------------- # Flash ATA Cards #----------------------------------------------------------------------- # SunDisk Flash ATA card "SunDisk" ".*" config 0x1 "wdc2" any cardio 0x340 16 insert logger -s SunDisk Flash ATA inserted remove logger -s SunDisk Flash ATA removed # Midori Elec. Flash ATA card "Midori Elec\." ".*FLASH.*" config 0x03 "wdc1" any insert logger -s Midori Flash ATA inserted remove logger -s Midori Flash ATA removed # FUJITSU FlashDiskCard ZEBO-ATA40 card "FUJITSU" "ZEBO-ATA" config 0x03 "wdc1" any insert logger -s FUJITSU Flash ATA inserted remove logger -s FUJITSU Flash ATA removed # Hitachi Flash ATA card "HITACHI" ".*FLASH.*" config 0x01 "wdc2" any cardio 0x340 16 insert logger -s Hitachi Flash ATA inserted remove logger -s Hitachi Flash ATA removed #----------------------------------------------------------------------- # ATA HDD Cards #----------------------------------------------------------------------- card "Maxtor" "MXL.*" config 0x03 "wdc1" any insert logger -s Maxtor ATA HDD inserted remove logger -s Maxtor ATA HDD removed #----------------------------------------------------------------------- # ATA External HDD Adapters #----------------------------------------------------------------------- # Greystone Diskdock card "GREYSTONE PERIPHERAL DISKDOCK" ".*" config default "wdc1" any insert logger -s Greystone Diskdock inserted remove logger -s Greystone Diskdock removed # card "INTEGRAL PERIPHERALS" "ATA CARD" config default "wdc1" any insert logger -s Integral Peripherals inserted remove logger -s Integral Peripherals removed # DATAFAB PCMMD2 card "DATAFAB" "PCMCIA-TO-IDE" config 0x1 "wdc1" any insert logger -s DATAFAB PCMMD2 inserted remove logger -s DATAFAB PCMMD2 removed # PCM250AM 2.5in HDD adapter card "PC CARD MANUFACTURER" "PCMCIA ATA/ATAPI Adapter" config 0xd "wdc1" any insert logger -s PCM250AM inserted remove logger -s PCM250AM removed # Sicon Peripheral PCMCIA ATA/ATAPI Adapter card "Sicon Peripheral" "PCMCIA ATA/ATAPI Adapter" config default "wdc1" any insert logger -s Sicon Peripherals inserted remove logger -s Sicon Peripherals removed # Microtech XpressDock card "Microtech International Inc\." "IDE PCCARD" config default "wdc1" any 0x20000 cardio 0x170 0x10 insert logger -s Microtech XpressDock inserted remove logger -s Microtech XpressDock removed #----------------------------------------------------------------------- # ATAPI LS120 Super Floppy Disk #----------------------------------------------------------------------- # LK-RM120 card "Panasonic" "LMEK0406" config 0x22 "wdc1" any 0x1 insert logger -s Panasonic LMEK0406 inserted remove logger -s Panasonic LMEK0406 removed #----------------------------------------------------------------------- # ATAPI ZIP Drive #----------------------------------------------------------------------- # CitiDISK & Addonics PocketZIP card "Shining" "PMIDE-ASC" config default "wdc1" any 0x20000 insert logger -s CitiDISK/PocketZIP inserted remove logger -s CitiDISK/PocketZIP removed #----------------------------------------------------------------------- # # Ongoing Projects ---- These entries are for ongoing projects of # our package. Most of these entries do not work. # #----------------------------------------------------------------------- #----------------------------------------------------------------------- # Sound cards #----------------------------------------------------------------------- # RATOC REX-5570 Sound Card card "1195 RATOC System Inc\." "REX5570 SOUND CARD" config default "opl0" any #----------------------------------------------------------------------- # Multifunction cards #----------------------------------------------------------------------- # Multifunction card support is still under development. If you want # to use them as modem only in conservative way, uncomment "modem-only" # definitions, comment-out multifunction definitions, and recompile # pccardd and kernel without MULTIFUNC option. (see # PAO-dir/usr.sbin/pccard/pccardd and PAO config file for details) # Tatsumi Hosokawa # APEX DATA MultiCard (as Modem only) card "APEX DATA" "MULTICARD" config 0xb "sio3" any insert logger -s APEX DATA MultiCard inserted as Modem remove logger -s APEX DATA MultiCard removed # Megahertz multifunction card: # The second multifunction definition does not work (under development). # if you want to use this card as modem, uncomment the first one. # Megahertz X-Jack Ethernet/Modem 14.4K (as Modem only) card "Megahertz" "XJEM1144/CCEM1144" config 0x27 "sio3" any insert logger -s Megahertz X-Jack Multifunction Card inserted as Modem. remove logger -s Megahertz X-Jack Multifunction Card removed. # Megahertz X-Jack Ethernet/Modem 14.4K #card "MEGAHERTZ" "XJEM1144/CCEM1144" # multifunc # config default "sn0" any # config 0x27 "sio3" shared # insert logger -s Megahertz X-Jack Multifunction Card inserted # remove logger -s Megahertz X-Jack Multifunction Card removed # TDK Multifunctioon Card (as Modem) card "TDK" "GlobalNetworker 3410/3412" config default "sio3" any insert logger -s TDK Multifunction Card inserted as Modem remove logger -s TDK Multifunction Card removed # Toshiba Modem/LAN card IPC5001B card "TOSHIBA" "Modem/LAN Card" config 0x25 "sio3" any insert logger -s TOSHIBA IPC5001B Multifunction Card inserted as Modem remove logger -s TOSHIBA IPC5001B Multifunction Card removed # Motorola Marine multifunction card (as modem) card "Motorola, Inc\." "MARINER MODEM/FAX/LAN" config 0x35 "sio3" any insert logger -s Motorola Marine inserted as Modem remove logger -s Motorola Marine removed # Xircom CreditCard Ethernet 10/100+ Modem 56 (as modem) card "Xircom" "CreditCard Ethernet" config 0x27 "sio3" any insert logger -s Xircom CEM56 Card inserted as Modem remove logger -s Xircom CEM56 Card removed # Intel EtherExpress(TM) PRO/100 LAN/Modem PC Card Adapter (as modem) card "Intel" "EtherExpress\(TM\) PRO/100 LAN/Modem PC Card Adapter" config 0x1f "sio3" any insert logger -s Intel EtherExpress PRO/100 LAN/Modem as Modem remove logger -s Intel EtherExpress PRO/100 LAN/Modem # RATOC REX-5572 (as SCSI only) card "RATOC System Inc\." "SOUND/SCSI2 CARD.*" config default "ncv0" any 0x84d00000 cardio 0x640 0x10 insert logger -s RATOC SOUND/SCSI2 REX-5572 inserted as SCSI remove logger -s RATOC SOUND/SCSI2 REX-5572 removed # IO DATA PCMF144/20 (as Flash ATA only) card "IO DATA" "ATA&MODEM" config 0x7 "wdc1" any insert logger -s IO DATA PCMF144/20 inserted as ATA remove logger -s IO DATA PCMF144/20 removed # Telecom Device SuperSocket LM336 (as Ethernet only) card "PCMCIAs" "LanModem" config default "ed0" any insert logger -s SuperSocket LM336 inserted as Ethernet insert /etc/pccard_ether $device remove logger -s SuperSocket LM336 removed remove /etc/pccard_ether_remove $device # 3Com Megahertz 10/100 LAN+56K Modem # as ethernet card "3Com" "Megahertz 3CCFEM556BI" config default "ep0" any 0x1 insert logger -s 3com Megahertz 10/100 LAN+56K Modem inserted insert /etc/pccard_ether $device remove logger -s 3com Megahertz 10/100 LAN+56K Modem removed remove /etc/pccard_ether_remove $device # Psion Dacom Gold Card # as ethernet card "Psion Dacom" "Gold Card V34 Ethernet GSM" config default "ed0" any insert logger -s Psion Dacom Gold Card inserted insert /etc/pccard_ether $device remove logger -s Psion Dacom Gold Card removed remove /etc/pccard_ether_remove $device # D-Link DME-560T LAN/FAX/MODEM Card (as Ethernet) card "D-Link" "DME560T" config default "ed0" any insert logger -s D-Link LANmodem DME-560T inserted insert /etc/pccard_ether $device remove logger -s D-Link LANmodem DME-560T removed remove /etc/pccard_ether_remove $device #----------------------------------------------------------------------- # Wireless LAN #----------------------------------------------------------------------- # NCR Wavelan PCMCIA # If you want to use Japanese version, uncomment the second config # line and comment-out the first line. card "NCR" "WaveLAN/PCMCIA" config default "wlp0" any # US version (915MHz) # config default "wlp0" any 0x01 # Japanese version (2.4GHz) ether wavelan insert logger -s NCR WaveLAN PCMCIA inserted insert /etc/pccard_ether $device remove logger -s NCR WaveLAN PCMCIA removed remove /etc/pccard_ether_remove $device # AT&T GIS Wavelan PCMCIA # If you want to use Japanese version, uncomment the second config # line and comment-out the first line. card "AT&T" "WaveLAN/PCMCIA" config default "wlp0" any # US version (915MHz) # config default "wlp0" any 0x01 # Japanese version (2.4GHz) ether wavelan insert logger -s AT\&T WaveLAN PCMCIA inserted insert /etc/pccard_ether $device remove logger -s AT\&T WaveLAN PCMCIA removed remove /etc/pccard_ether_remove $device # Digital RoamAbout/DS card "Digital" "RoamAbout/DS" config default "wlp0" any ether wavelan insert logger -s Digital RoamAbout/DS inserted insert /etc/pccard_ether $device remove logger -s Digital RoamAbout/DS removed remove /etc/pccard_ether_remove $device # Lucent Wavelan card "Lucent Technologies" "WaveLAN/PCMCIA" config default "wlp0" any ether wavelan insert logger -s Lucent WaveLAN PCMCIA inserted insert /etc/pccard_ether $device remove logger -s Lucent WaveLAN PCMCIA removed remove /etc/pccard_ether_remove $device # NetWave AirSurfer # NOTE: For some machines, wait cycle for memory access is required. # you should change "0x40" on the last part of "cardmem" line to "0x44", # like: # cardmem 0xd4000 0x20000 0x9000 0x44 # IBM ThinkPads are known to require this change. card "Xircom" "CreditCard Netwave" config 0x01 "cnw0" any cardmem 0xd4000 0x20000 0x9000 0x40 # config 0x01 "cnw1" any # cardmem 0xdd000 0x20000 0x9000 0x40 ether 0x126 00:80:c7 00:20:d8 insert logger -s Netwave Ethernet inserted insert /etc/pccard_ether $device remove logger -s Netwave Ethernet removed remove /etc/pccard_ether_remove $device # Victor M-MOIL CARD card "JVC" "MiniMoil Ethernet Card" config 0x01 "sn0" any insert logger -s MiniMoil Ethernet inserted insert /etc/pccard_ether $device remove logger -s MiniMoil Ethernet removed remove /etc/pccard_ether_remove $device # ICOM UX-136 card "AMD" "Am79C930" config default "ux0" any cardmem 0xd4000 0 0x8000 0x40 insert logger -s UX-136 Wireless LAN inserted insert /etc/pccard_ether $device remove logger -s UX-136 Wireless LAN removed remove /etc/pccard_ether_remove $device # Lucent WaveLAN/IEEE card "Lucent Technologies" "WaveLAN/IEEE" config default "wi0" any insert logger -s Lucent WaveLAN/IEEE inserted insert /etc/pccard_ether $device remove logger -s Lucent WaveLAN/IEEE removed remove /etc/pccard_ether_remove $device # NCR WaveLAN/IEEE card "NCR" "WaveLAN/IEEE" config default "wi0" any insert logger -s NCR WaveLAN/IEEE inserted insert /etc/pccard_ether $device remove logger -s NCR WaveLAN/IEEE removed remove /etc/pccard_ether_remove $device # Cabletron RoamAbout, WaveLAN/IEEE clone card "Cabletron" "RoamAbout 802.11 DS" config default "wi0" any insert logger -s Cabletron WaveLAN/IEEE inserted insert /etc/pccard_ether $device remove logger -s Cabletron WaveLAN/IEEE removed remove /etc/pccard_ether_remove $device #----------------------------------------------------------------------- # Video Capture Cards #----------------------------------------------------------------------- # IBM Smart Capture Card card "IBM Corp\." "Video Capture" config default "scc0" pio cardmem 0xd4000 0x0 0x8000 insert logger -s Smart Capture Card inserted remove logger -s Smart Capture Card removed #----------------------------------------------------------------------- # Speech Synthesizer Cards #----------------------------------------------------------------------- # Hitachi microcomputer speech synthesizer card card "HITACHI MICROCOMPUTER SYSTEM LTD." "MSSHVPC02" config default "hss0" pio insert logger -s Hitachi microcomputer speech synthesizer inserted remove logger -s Hitachi microcomputer speech synthesizer removed #----------------------------------------------------------------------- # Joystick Port Cards #----------------------------------------------------------------------- card "IO DATA" "PCJOY" config default "joy0" pio # config 0x1 "joy0" pio # config 0x2 "joy0" pio insert logger -s IO DATA PCJOY inserted remove logger -s IO DATA PCJOY removed #----------------------------------------------------------------------- # Floppy Drive Cards #----------------------------------------------------------------------- # Libretto floppy drive. card "Y-E DATA" "External FDD" config 0x4 "fdc1" any insert logger -s Y-E DATA External FDD inserted remove logger -s Y-E DATA External FDD removed #----------------------------------------------------------------------- # National Instruments PCMCIA-GPIB Cards #----------------------------------------------------------------------- card "National Instruments" "PCMCIA-GPIB" config default "gp0" pio insert logger -s National Instruments PCMCIA-GPIB card inserted remove logger -s National Instruments PCMCIA-GPIB card removed # ------------------------------------------------------------------- # # Experimental ---- If you have one of them, please e-mail me *WHETHER # IT WORKS OR NOT*. I wrote these entries by reading Linux PCMCIA driver # package. I've not tested them. I need results of your experiences. # Especially, if the ed_probe() is succeeded, it does not always mean # that probed MAC address is correct. If you have or if your friend # has these cards, send me the result of the results of # # pccardc dumpcis # and # pccardc rdattr 0 0 1000 (the first 0 means slot number) # # of these cards. I can write more accurate pccard.conf entries if I # can read these result. # # I NEED YOUR HELP!!!! # # Thanks. # # My e-mail address is hosokawa@jp.FreeBSD.org (Tatsumi Hosokawa) # # ------------------------------------------------------------------- #----------------------------------------------------------------------- # Ethernet Cards #----------------------------------------------------------------------- # CNet CN30BC Ethernet Card card "CNet.*" "CN30BC" config default "ed0" any 0x10 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # DataTrek NetCard card "DataTrek\." "NetCard" config default "ed0" any 0x10 ether 0xff0 00:20:e8 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # Edimax Ethernet Combo card "Edimax Technology Inc\." "PCMCIA" config default "ed0" any 0x10 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # EP-210 Ethernet Card card "Ethernet PCMCIA adapter" "EP-210" config default "ed0" any 0x10 ether 0x110 00:40:33 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # Katron PE-520 Ethernet Card card "KCI" "PE520 PCMCIA Ethernet Adapter" config default "ed0" any 0x10 ether 0x110 00:40:f6 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # Maxtech PCN2000 Ethernet card "MAXTECH" "PCN2000" config default "ed0" any 0x10 ether 0x5000 00:00:e8 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # NE2000 Compatible Ethernet Card card "NE2000 Compatible" "PCMCIA" config default "ed0" any 0x10 ether 0xff0 00:a0:0c insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # RPTI EP400 Ethernet Card card "RPTI LTD\." "EP400" config default "ed0" any 0x10 ether 0x110 00:40:95 insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # SMC EliteCard Ethernet card "SMC" "PCM Ethernet Adapter" config default "sn0" any ether attr2hex insert logger -s Untested card inserted. please e-mail the result to pao-report@clave.gr.jp insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # Socket EA LAN Adapter # This card should not work because of its broken DMA status register, # if you have this card, please fix this bug. card "Socket Communications Inc" "Socket EA PCMCIA LAN.*" # This card has broken CIS tupples # We can't use "default" config 0x1 "ed0" any 0x30 ether 0x4000 00:c0:1b insert /etc/pccard_ether $device remove /etc/pccard_ether_remove $device # ------------------------------------------------------------------- # # "Wildcard" entries # # ------------------------------------------------------------------- # GENERIC PCMCIA modem function serial config auto "sio2" 11 # config 0x23 "sio3" any # alternative definitions # config 0x21 "sio3" any # ......... # config 0x22 "sio3" any # config 0x23 "sio3" pio # config 0x21 "sio3" pio # config 0x22 "sio3" pio # config 0x23 "sio3" 5 # config 0x21 "sio3" 5 # config 0x22 "sio3" 5 # reset 100 # default reset 1000 # safety reset time # reset 10000 # for unstable cards insert logger -s PCMCIA Modem inserted remove logger -s PCMCIA Modem removed # GENERIC Flash ATA / ATA HDD function fixed_disk # config default "wdc1" 15 # config default "wdc1" any # config 0x03 "wdc1" 15 # config 0x03 "wdc1" any config default "wdc2" any cardio 0x340 16 # config default "wdc3" any cardio 0x360 16 insert logger -s Flash ATA / ATA HDD inserted remove logger -s Flash ATA / ATA HDD removed And my pccardc dumpcis: Code 128 not found Code 128 not found code Unknown ignored Code 131 not found Code 131 not found code Unknown ignored Configuration data for card in slot 0 Tuple #1, code = 0x1 (Common memory descriptor), length = 3 000: 00 00 ff Common memory device information: Device number 1, type No device, WPS = OFF Speed = No speed, Memory block size = 512b, 1 units Tuple #2, code = 0x15 (Version 1 info), length = 50 000: 05 00 55 2e 53 2e 20 52 6f 62 6f 74 69 63 73 00 010: 58 4a 2f 43 43 31 35 36 30 00 4d 65 67 61 68 65 020: 72 74 7a 20 35 36 6b 62 70 73 20 4d 6f 64 65 6d 030: 00 ff Version = 5.0, Manuf = [U.S. Robotics], card vers = [XJ/CC1560] Addit. info = [Megahertz 56kbps Modem] Tuple #3, code = 0x20 (Manufacturer ID), length = 4 000: 02 01 2f 00 PCMCIA ID = 0x102, OEM ID = 0x2f Tuple #4, code = 0x21 (Functional ID), length = 2 000: 02 01 Serial port/modem - POST initialize Tuple #5, code = 0x1a (Configuration map), length = 5 000: 01 23 00 03 03 Reg len = 2, config register addr = 0x300, last config = 0x23 Registers: XX------ Tuple #6, code = 0x1b (Configuration entry), length = 16 000: e0 41 99 49 55 3e 3d aa 60 f8 03 07 30 ff ff 28 Config index = 0x20(default) Interface byte = 0x41 (I/O) +RDY/-BSY active Vcc pwr: Nominal operating supply voltage: 5 x 1V Continuous supply current: 3.5 x 100mA Power down supply current: 3.5 x 10mA Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x3f8 block length = 0x8 IRQ modes: Level IRQs: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Max twin cards = 0 Misc attr: (Audio-BVD2) (Power down supported) Tuple #7, code = 0x1b (Configuration entry), length = 7 000: 21 08 aa 60 f8 02 07 Config index = 0x21 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2f8 block length = 0x8 Tuple #8, code = 0x1b (Configuration entry), length = 7 000: 22 08 aa 60 e8 03 07 Config index = 0x22 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x3e8 block length = 0x8 Tuple #9, code = 0x1b (Configuration entry), length = 7 000: 23 08 aa 60 e8 02 07 Config index = 0x23 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2e8 block length = 0x8 Tuple #10, code = 0x22 (Functional EXT), length = 4 000: 00 02 0f 7c Serial interface extension: 16550 UART, Parity - Space,Mark,Odd,Even Data bit - 7bit,8bit, Stop bit - 1bit,1.5bit,2bit Tuple #11, code = 0x22 (Functional EXT), length = 9 000: 01 1f 0f 00 06 00 00 06 00 Modem interface capabilities: Tuple #12, code = 0x22 (Functional EXT), length = 12 000: 02 06 00 3f 1c 03 03 0f 07 00 02 b5 Data modem services available: Tuple #13, code = 0x22 (Functional EXT), length = 8 000: 13 06 00 0f 00 02 00 b5 Fax1/modem services available: Tuple #14, code = 0x22 (Functional EXT), length = 8 000: 23 06 00 0f 00 02 00 b5 Fax2/modem services available: Tuple #15, code = 0x0 (Null tuple), length = 10 000: 02 01 2f 00 21 00 00 00 00 ff Tuple #16, code = 0x0 (Null tuple), length = 14 000: 31 30 36 47 31 36 52 38 32 4b 4d 57 00 ff Tuple #17, code = 0x14 (No link), length = 0 Tuple #18, code = 0xff (Terminator), length = 0 Configuration data for card in slot 1 Tuple #1, code = 0x1 (Common memory descriptor), length = 2 000: 00 ff Common memory device information: Device number 1, type No device, WPS = OFF Speed = No speed, Memory block size = reserved, 32 units Tuple #2, code = 0x17 (Attribute memory descriptor), length = 3 000: 43 02 ff Attribute memory device information: Device number 1, type EEPROM, WPS = OFF Speed = 150nS, Memory block size = 8Kb, 1 units Tuple #3, code = 0x20 (Manufacturer ID), length = 4 000: 01 01 89 05 PCMCIA ID = 0x101, OEM ID = 0x589 Tuple #4, code = 0x21 (Functional ID), length = 2 000: 06 00 Network/LAN adapter Tuple #5, code = 0x15 (Version 1 info), length = 58 000: 04 01 33 43 6f 6d 20 43 6f 72 70 6f 72 61 74 69 010: 6f 6e 00 33 43 35 38 39 44 00 54 50 2f 42 4e 43 020: 20 4c 41 4e 20 43 61 72 64 20 56 65 72 2e 20 32 030: 61 00 30 30 30 30 30 32 00 ff Version = 4.1, Manuf = [3Com Corporation], card vers = [3C589D] Addit. info = [TP/BNC LAN Card Ver. 2a],[000002] Tuple #6, code = 0x1a (Configuration map), length = 6 000: 02 03 00 00 01 03 Reg len = 3, config register addr = 0x10000, last config = 0x3 Registers: XX------ Tuple #7, code = 0x1b (Configuration entry), length = 15 000: c1 01 1d 71 55 35 55 54 e0 72 5d 64 30 ff ff Config index = 0x1(default) Interface byte = 0x1 (I/O) Vcc pwr: Nominal operating supply voltage: 5 x 1V Max current average over 1 second: 3 x 10mA Max current average over 10 ms: 5 x 10mA Power down supply current: 5 x 1mA Wait scale Speed = 7.0 x 100 ns RDY/BSY scale Speed = 5.0 x 100 us Card decodes 4 address lines, full 8/16 Bit I/O IRQ modes: Level IRQs: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Tuple #8, code = 0x1b (Configuration entry), length = 7 000: 03 01 71 55 26 26 54 Config index = 0x3 Vcc pwr: Nominal operating supply voltage: 5 x 1V Max current average over 1 second: 2 x 100mA Max current average over 10 ms: 2 x 100mA Power down supply current: 5 x 1mA Tuple #9, code = 0x19 (JEDEC descr for attribute memory), length = 3 000: 00 00 ff Tuple #10, code = 0x14 (No link), length = 0 Tuple #11, code = 0x10 (Checksum), length = 5 000: 88 ff 81 00 00 Checksum from offset 65416, length 129, value is 0x0 Tuple #12, code = 0xff (Terminator), length = 0 2 slots found And here's my kernel config file: # # PAO_ALL --- Generic Laptop Configuration with PAO project. # (based on GENERIC) # # For more information on this file, please read the PAO Frequently # Asked Question and handbook section on Kernel Configuration Files: # # http://www.jp.FreeBSD.org/PAO/#faq # http://www.freebsd.org/handbook/kernelconfig-config.html # # If you have any questions, please contact the FreeBSD-mobile Mailing # List (English) and BSD-nomads Mailing # List (Japanese) . See the PAO home page # (http://www.jp.FreeBSD.org/) for more information. # # The handbook is also available locally in /usr/share/doc/handbook # if you've installed the doc distribution, otherwise always see the # FreeBSD World Wide Web server (http://www.FreeBSD.ORG/) for the # latest information. # # An exhaustive list of options and more detailed explanations of the # device lines is also present in the ./LINT configuration file. If you are # in doubt as to the purpose or necessity of a line, check first in LINT. # # $Id: PAO_ALL,v 1.14 1999/09/21 14:18:03 toshi Exp $ machine "i386" cpu "I686_CPU" ident VERSALX maxusers 50 options MATH_EMULATE #Support for x87 emulation options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options NFS #Network Filesystem options NFS_ROOT #NFS usable as root device, "NFS" req'ed options MSDOSFS #MSDOS Filesystem options "CD9660" #ISO 9660 Filesystem options "CD9660_ROOT" #CD-ROM usable as root. "CD9660" req'ed options PROCFS #Process filesystem options "COMPAT_43" #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options KTRACE #ktrace(1) syscall trace support options SYSVSHM #SYSV-style shared memory options SYSVMSG #SYSV-style message queues options SYSVSEM #SYSV-style semaphores # You may need to reset all pccards after resuming options PCIC_RESUME_RESET # Detach SCSI devices when the SCSI card is removed #options SCSI_DETACH # Detach ATAPI devices when the ATA card is removed options ATAPI_DETACH # Japanese version of WaveLAN PCMCIA uses 2.4GHz band instead of 915MHz # band that US version uses. If you want to use Japanese version of # WaveLAN, uncomment this line, or edit the corresponding config entry # of /etc/pccard.conf. #options "WAVELAN_PCMCIA_24" # Suspend the system when the battery status is "Low" #options "APM_BATT_LOW_SUSPEND" # If you want to use NTP on laptop machines, uncomment the following # option. Current APM implementation affects NTP client. #options "APM_NO_CLOCK_ADJUST" # PAO Enhanced PCI-PCIC support (experimental) #options CB_TEST #options FORCE_IRQ_ROUTING config kernel root on wd0 # To make an SMP kernel, the next two are needed #options SMP # Symmetric MultiProcessor Kernel #options APIC_IO # Symmetric (APIC) I/O # Optionally these may need tweaked, (defaults shown): #options NCPU=2 # number of CPUs #options NBUS=4 # number of busses #options NAPIC=1 # number of IO APICs #options NINTR=24 # number of INTs controller isa0 controller pnp0 # PnP support for ISA controller pci0 # PCCARD (PCMCIA) support - do not remove. pseudo-device card 1 # You must use "flags 0x1" when you don't hear any negotiation noise(?) # if you use modem card, or pccardd doesn't read cis tuple, tell you # 'No card in database for"(null)"("(null)")' in case of Cirrus Logic's # pcic is your PC. device pcic0 at isa? port 0x3e0 irq 3 # Floppy drives controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 disk fd0 at fdc0 drive 0 # IDE controller and disks options "CMD640" # work around CMD640 chip deficiency controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0x80ff disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 flags 0x80ff disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 # Flash ATA / ATA HDD / ATAPI drive support controller wdc2 at isa? disable port 0x340 bio irq ? disk wd4 at wdc2 drive 0 #disk wd5 at wdc2 drive 1 controller wdc3 at isa? disable port 0x360 bio irq ? disk wd6 at wdc3 drive 0 #disk wd7 at wdc3 drive 1 # ATAPI devices options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM device acd0 #IDE CD-ROM device wfd0 #IDE Floppy (e.g. LS-120) # atkbdc0 controls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD tty device atkbd0 at isa? tty irq 1 device psm0 at isa? tty irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? tty # 3Com 3C589D Ethernet device ep0 at isa? port 0x300 disable net irq 10 # Floating point support - do not disable. device npx0 at isa? port IO_NPX irq 13 # Power management support (see LINT for more options) device apm0 at isa? # Advanced Power Management # Serial (COM) ports & PCCARD modem etc. device sio0 at isa? disable port "IO_COM1" flags 0x10 tty irq 4 device sio1 at isa? disable port "IO_COM2" tty irq 3 device sio2 at isa? disable port "IO_COM3" tty irq 5 device sio3 at isa? disable port "IO_COM4" tty irq 9 device sio4 device sio5 # Parallel port device ppc0 at isa? port? flags 0x40 net irq 7 controller ppbus0 # Parallel port bus (required) device lpt0 at ppbus? # Printer device plip0 at ppbus? # TCP/IP over parallel device ppi0 at ppbus? # Parallel port interface device #controller vpo0 at ppbus? # Requires scbus and da0 # Pseudo devices - the number indicates how many units to allocated. pseudo-device loop # Network loopback pseudo-device ether # Ethernet support pseudo-device sl 2 # SLIP pseudo-device tun 2 # Packet tunnel pseudo-device pty 16 # Pseudo-ttys (telnet etc) pseudo-device gzip # Exec gzipped a.out's pseudo-device vn # Vnode driver (turns a file into a device) # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. # Be aware of the administrative consequences of enabling this! # The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. pseudo-device bpfilter 4 #Berkeley packet filter And my dmesg output: Copyright (c) 1992-1999 FreeBSD Inc. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 3.3-RELEASE #3: Fri Oct 22 16:55:53 CDT 1999 dcarmich@dcarmich.xnet.com:/usr/src/sys/compile/VERSALX Timecounter "i8254" frequency 1193182 Hz CPU: Pentium II/Xeon/Celeron (233.29-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x650 Stepping = 0 Features=0x183f9ff real memory = 100663296 (98304K bytes) avail memory = 95084544 (92856K bytes) Preloaded elf kernel "kernel" at 0xc0293000. Pentium Pro MTRR support enabled Probing for devices on PCI bus 0: chip0: rev 0x02 on pci0.0.0 vga0: rev 0xdc int a irq 10 on pci0.2.0 pcic0: rev 0x02 int a irq 255 on pci0.3.0 RL5C4XX PCI Config Reg: pcic1: rev 0x02 int b irq 255 on pci0.3.1 RL5C4XX PCI Config Reg: chip1: rev 0x02 on pci0.7.0 ide_pci0: rev 0x01 on pci0.7.1 chip2: rev 0x02 on pci0.7.3 Probing for PnP devices: Probing for devices on the ISA bus: sc0 on isa sc0: VGA color <16 virtual consoles, flags=0x0> atkbdc0 at 0x60-0x6f on motherboard atkbd0 irq 1 on isa psm0 irq 12 on isa psm0: model Generic PS/2 mouse, device ID 0 fdc0 at 0x3f0-0x3f7 irq 6 drq 2 on isa fdc0: FIFO enabled, 8 bytes threshold fd0: 1.44MB 3.5in wdc0 at 0x1f0-0x1f7 irq 14 flags 0x80ff on isa wdc0: unit 0 (wd0): , 32-bit, multi-block-16 wd0: 2067MB (4233600 sectors), 4200 cyls, 16 heads, 63 S/T, 512 B/S wdc1 at 0x170-0x177 irq 15 flags 0x80ff on isa wdc1: unit 0 (atapi): , removable, accel, dma, iordis acd0: drive speed 4134KB/sec, 128KB cache acd0: supported read types: CD-R, CD-RW, CD-DA acd0: Audio: play, 255 volume levels acd0: Mechanism: ejectable tray acd0: Medium: no/blank disc inside, unlocked ppc0 at 0x378 irq 7 flags 0x40 on isa ppc0: Generic chipset (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/8 bytes threshold lpt0: on ppbus 0 lpt0: Interrupt-driven port ppi0: on ppbus 0 plip0: on ppbus 0 pcic0 at 0x3e0-0x3e1 irq 3 on isa PC-Card ctlr(0) Ricoh RL5C478 [CardBus bridge mode] (5 mem & 2 I/O windows) pcic0: slot 0 controller I/O address 0x3e0 pcic0: slot 1 controller I/O address 0x3e0 vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa npx0 on motherboard npx0: INT 16 interface apm0 on isa apm: found APM BIOS version 1.2 Initializing PC-card drivers: ep sio wdc changing root device to wd0s1a Card inserted, slot 0 Card inserted, slot 1 card0: assign sio2 iobase 0x3f8 irq 11 flags 0x80 sio2: type 16550A card1: assign ep0 iobase 0x240 irq 4 ep0: utp/bnc[*UTP*] address 00:00:86:1a:4b:80 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 17:54:19 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (Postfix) with ESMTP id 740761515C for ; Sun, 24 Oct 1999 17:54:14 -0700 (PDT) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (doconnor@cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id KAA11356; Mon, 25 Oct 1999 10:22:40 +0930 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3.1 [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: Date: Mon, 25 Oct 1999 10:22:39 +0930 (CST) From: "Daniel O'Connor" To: J McKitrick Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea Cc: Adam Laurie , mobile@FreeBSD.ORG, Andreas Klemm , "Steve O'Hara-Smith" , "Robert V. Baron" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 22-Oct-99 J McKitrick wrote: > Does the sleep mean i can tell pccard to wake up several seconds after i > have logged in? Or is there a way i can start it earlier so it finishes > its duites before the login prompt? Run xdm from init, then you don't see it :) --- Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 20:10:12 1999 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 39C7D15164 for ; Sun, 24 Oct 1999 20:10:05 -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 VAA28844; Sun, 24 Oct 1999 21:09:49 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA38091; Sun, 24 Oct 1999 21:10:28 -0600 (MDT) Message-Id: <199910250310.VAA38091@harmony.village.org> To: "Robert V. Baron" Subject: Re: pccardd initializes interf. too late (arpwatch port exits ea Cc: J McKitrick , "Steve O'Hara-Smith" , Andreas Klemm , mobile@FreeBSD.ORG, "Daniel O'Connor" , Adam Laurie In-reply-to: Your message of "24 Oct 1999 19:12:59 EDT." References: <199910230800.CAA27913@harmony.village.org> Date: Sun, 24 Oct 1999 21:10:28 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message "Robert V. Baron" writes: : I'll experiment with setting pccardd_flags=-z vs the sleep, on Monday. : BUT, it is wrong to not have either because all these network things : start during boot up w/o a network. Clearly the sleep is lame, so since : you've been officially hacking pccard support (in the kernel) why don't : you fix /etc/defaults/rc.conf to do: : pccardd_flags=-z You may be right. Userland pccardd is on its way out... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 20:23: 0 1999 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 E824F14A24; Sun, 24 Oct 1999 20:22:48 -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 VAA28877; Sun, 24 Oct 1999 21:22:47 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA38146; Sun, 24 Oct 1999 21:23:26 -0600 (MDT) Message-Id: <199910250323.VAA38146@harmony.village.org> To: current@freebsd.org, mobile@freebsd.org Cc: comitters@freebsd.org Reply-To: mobile@freebsd.org Subject: HEADS UP: pccard code committed Date: Sun, 24 Oct 1999 21:23:26 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org After talking with Peter Wemm and others at FreeBSD Con, I've reached the point where I can commit the pccard code that supports sio. It also supports ep and should shortly support ed. Card ejection (including suspend) doesn't work, which I'll try to fix at some point, but I might not get around to fixing that before new pccard work begins. I think it would be easy to mostly fix (like the old code mostly worked) with more thought on how to do this (see -arch for a message related tot his problem). Unit numbers may have changed on people, as they are now ignored from pccardd. Also, some people may need to modify their config files to have devices continue to work (this is true if you have device ep0 at isa? .... and may be true for ed0 as well). See PCCARD for details, and use its methods if it should differ from LINT or GENERIC (and report the differences to me). These changes are quite extensive and potentially disruptive, so bear that in mind when making your upgrade decision. Read -current or -mobile for problem reports. Your milage may vary. My profuse appologies for not having this three days ago. It turned out to be a more extensive rewrite of the old pccard code than I had planned on doing. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 21:34:21 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp2.fas.harvard.edu (smtp2.fas.harvard.edu [140.247.30.82]) by hub.freebsd.org (Postfix) with ESMTP id BCFF51519E for ; Sun, 24 Oct 1999 21:34:18 -0700 (PDT) (envelope-from ahwang@fas.harvard.edu) Received: from is01.fas.harvard.edu (IDENT:ahwang@is01.fas.harvard.edu [140.247.30.101]) by smtp2.fas.harvard.edu with ESMTP id AAA21285; Mon, 25 Oct 1999 00:34:18 -0400 (EDT) Received: by is01.fas.harvard.edu with ESMTP id AAA25049; Mon, 25 Oct 1999 00:34:17 -0400 (EDT) Date: Mon, 25 Oct 1999 00:34:17 -0400 (EDT) From: Adon Reply-To: Adon To: mobile@freebsd.org Subject: two pcic's In-Reply-To: <199910250310.VAA38091@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 i have 2 lucent wavelan isa adaptors. i'd like to get them both working on the same machine. that means i need two distinct pcic's recognized. does anyone have information on what i could hack to get this to work? thanks, adon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sun Oct 24 21:49: 4 1999 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 08C0E1519E for ; Sun, 24 Oct 1999 21:48: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 WAA29156; Sun, 24 Oct 1999 22:48: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 WAA38736; Sun, 24 Oct 1999 22:49:38 -0600 (MDT) Message-Id: <199910250449.WAA38736@harmony.village.org> To: Adon Subject: Re: two pcic's Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 25 Oct 1999 00:34:17 EDT." References: Date: Sun, 24 Oct 1999 22:49:38 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message Adon writes: : i have 2 lucent wavelan isa adaptors. i'd like to get them both working : on the same machine. that means i need two distinct pcic's recognized. : : does anyone have information on what i could hack to get this to work? You can fix the pcic code to allow it to live at different addresses. However, if you are talking current, you might be better served helping in the new pccard effort.. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 1:17:25 1999 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 6C718150A9 for ; Mon, 25 Oct 1999 01:17:19 -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 CAA29797 for ; Mon, 25 Oct 1999 02:17:18 -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 CAA39651 for ; Mon, 25 Oct 1999 02:18:00 -0600 (MDT) Message-Id: <199910250818.CAA39651@harmony.village.org> To: mobile@freebsd.org Subject: Time to begin: Plans for pccard/cardbus Date: Mon, 25 Oct 1999 02:18:00 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org OK. Now that I think I mostly have the current pccard to a state I no longer have to look at it all the time, it is time to move forward. Much of this was talked about at FreeBSD CON '99, and now it is time to bring it out into the open for those that don't already know. The plans are simple at this point. I'll use the newconfig pccard and cardbus code from the Japanese newconfig effort. I'm going to port that code to -current. I'm looking for help and commentary in this effort. This is a completely kernel based implementation that I've found to work ok in my testing. It seemed to be similar enough to the NetBSD code that it would be easier to start from newconfig than netbsd in this area since newconfig already works in earlier versions of the kernel. The main bridge code and bus code will be a port to newbus. I got bogged down a few months ago trying to port it using newconfig shims to try to have as few changes as possible. I still intend to provide newconfig shims for pccard and cardbus attachments, but I think it is too hard to use them for the core of these busses. I plan on importing the raw sources to dev/pccard (which is called dev/pcmcia in newconfig) and dev/cardbus as well as a few of the bridge chip drivers. Once in place, I plan on making them compile and work in a newbus world. I plan on making commits every few days as I have time to work on this project. Others wishing to participate in the development process are encouraged to get the latest sources and send me patches (or commit fixes if so inclined). I intend for this to be an inclusive process, and would welcome relevant discussions on directions and such. One major design goal is the ability to co-exist with the current sys/pccard code in the tree. This will allow the new code to mature while having a more stable version for non-developer use. Comments? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 2:43: 6 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from eastwood.aldigital.algroup.co.uk (eastwood.aldigital.algroup.co.uk [194.128.162.193]) by hub.freebsd.org (Postfix) with ESMTP id A9FEC150A1 for ; Mon, 25 Oct 1999 02:43:03 -0700 (PDT) (envelope-from adam@algroup.co.uk) Received: from algroup.co.uk ([192.168.192.2]) by eastwood.aldigital.algroup.co.uk (8.8.8/8.6.12) with ESMTP id JAA02526; Mon, 25 Oct 1999 09:42:58 GMT Message-ID: <38142625.50E3BE99@algroup.co.uk> Date: Mon, 25 Oct 1999 10:43:01 +0100 From: Adam Laurie X-Mailer: Mozilla 4.7 [en-gb] (Win98; I) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: two pcic's References: <199910250449.WAA38736@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > > In message Adon writes: > : i have 2 lucent wavelan isa adaptors. i'd like to get them both working > : on the same machine. that means i need two distinct pcic's recognized. > : > : does anyone have information on what i could hack to get this to work? > > You can fix the pcic code to allow it to live at different addresses. > > However, if you are talking current, you might be better served > helping in the new pccard effort.. Speaking of lucent wavelans... I got mine working over the weekend - I've got the "Silver" version that does WEP - are there any plans to provide WEP support for FreeBSD, and, if so, how can I help? cheers, Adam -- Adam Laurie Tel: +44 (181) 742 0755 A.L. Digital Ltd. Fax: +44 (181) 742 5995 Voysey House Barley Mow Passage http://www.aldigital.co.uk London W4 4GB mailto:adam@algroup.co.uk UNITED KINGDOM PGP key on keyservers To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 6: 1: 6 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from pooh.elsevier.nl (pooh.elsevier.nl [145.36.9.32]) by hub.freebsd.org (Postfix) with ESMTP id 0605314CC2 for ; Mon, 25 Oct 1999 06:00:57 -0700 (PDT) (envelope-from steve@pooh.elsevier.nl) Received: (from steve@localhost) by pooh.elsevier.nl (8.9.3/8.9.3) id NAA00352; Mon, 25 Oct 1999 13:59:18 +0100 (IST) (envelope-from steve) Message-ID: X-Mailer: XFMail 1.3.1 [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: <199910240749.QAA03558@tasogare.imasy.or.jp> Date: Mon, 25 Oct 1999 13:59:17 +0100 (IST) From: "Steve O'Hara-Smith" To: Mitsuru IWASAKI Subject: Re: FreeBSD on a Compaq 1690 Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 24-Oct-99 Mitsuru IWASAKI wrote: > Hi, > >> Suspend and resume slows the system down hugely (apmconf -t doesn't help), >> doing it twice makes things worse, I haven't tried more. What should I >> try in order to get a handle on this. >> >> All this with 3.3-STABLE about two weeks old. > > i8254 on your laptop seemds having problem after resuming. ># my SHARP laptop too. > Please try the attached patch. That did the trick nicely, is this patch or near equivalent heading into -stable any time soon ? ------------------------------------------------------- Tell a computer to WIN and ... ... You lose ------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 10:49:41 1999 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 B4AEB15194; Mon, 25 Oct 1999 10:49:36 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdn30.imasy.or.jp [202.227.24.222]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.01) with ESMTP id CAA24566; Tue, 26 Oct 1999 02:49:34 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Message-Id: <199910251749.CAA24566@tasogare.imasy.or.jp> To: current@FreeBSD.ORG Cc: freebsd-mobile@FreeBSD.ORG, acpi-jp@jp.FreeBSD.org Subject: ACPI project started in Japan X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Tue, 26 Oct 1999 02:49:32 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 980905(IM100) Lines: 24 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just FYI, We launched ACPI project in Japan today, but the activities haven't detailed yet in this project. We'd like to contribute something from this project to FreeBSD main stream developing some sort of prototype but don't want to make duplicated efforts anyway. So please let us know if you are doing something on ACPI. Suggestions, questions and requests are very appreciated. Please see http://www.jp.FreeBSD.org/acpi/ For more info. Mr. watanabe, on behalf of the project :), made some survey at FreeBSDCon. Doug Rabson, Mike smith and Warner Losh are interested in this area, and already some code was written. We'd like to keep consulting and cooperating with them. For the time being, we will make clean our experimental ACPI device deriver up, and may implement S5 Soft Off State transition by ACPI. And, we are going to make this kind of project report in English from time to time. # sorry for our poor English ;) Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 10:53:39 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from spork.cs.unm.edu (mail.cs.unm.edu [198.59.151.21]) by hub.freebsd.org (Postfix) with ESMTP id 2907D15204 for ; Mon, 25 Oct 1999 10:53:26 -0700 (PDT) (envelope-from colinj@cs.unm.edu) Received: from nobby.cs.unm.edu ([198.59.151.103] ident=mail) by spork.cs.unm.edu with esmtp (Exim 2.12 #3) id 11foJ9-0002yF-00 for freebsd-mobile@freebsd.org; Mon, 25 Oct 1999 11:53:23 -0600 Received: from colinj by nobby.cs.unm.edu with local-esmtp (Exim 2.05 #1 (Debian)) id 11foJ9-00007M-00; Mon, 25 Oct 1999 11:53:23 -0600 Date: Mon, 25 Oct 1999 11:53:23 -0600 (MDT) From: Colin Eric Johnson To: freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? In-Reply-To: <199910230802.CAA27964@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 Sat, 23 Oct 1999, Warner Losh wrote: > In message <380F895A.AB45F577@mindspring.com> Scott Worthington writes: > : Oh boo. I just realized that support for the Adaptec 1460C for > : FreeBSD 3.3-STABLE does not exist yet. > > Luoqi Chen just committed aic for -current and -stable. > > : It would be nice to have SCSI support on my laptop again. And I > : know others would like it too. > : > : Anyone? > > Should be easy to add a newbus pccard attachment given my experimental > changes announced here earlier. Or a pccard attachment in -stable. > You may even be able to steal 90% of it from the old aic driver, and > it isn't large to begin with. So I saw the aic code come back in the latest CVSUP that I did. I've been able to build a kernel with aic0 (along with scbus and da0) that I believe should be working. But pccardd only comes up loading the sio and ep drivers and not the aic driver. Is this something that isn't in place yet? Is there something that I need in the kernel? I've gone with the defaults as found in LINT for scbus, da and aic (in that order) and the kernel does build just fine. Colin E. Johnson | colinj@unm.edu | http://www.unm.edu/~colinj/ Parker always felt things in his bones because, he said, it saved space. -Steven Ayelett, _The Crime Studio_ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 12: 0:46 1999 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 4FF471521E for ; Mon, 25 Oct 1999 12:00:25 -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 NAA31446 for ; Mon, 25 Oct 1999 13:00:22 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id NAA42191 for ; Mon, 25 Oct 1999 13:01:09 -0600 (MDT) Message-Id: <199910251901.NAA42191@harmony.village.org> To: mobile@freebsd.org Subject: Will the owner of a DFE-650 D-LINK Fast Ethernet card stand up Date: Mon, 25 Oct 1999 13:01:09 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have a DFE-650 D-Link fast ethernet card sitting on my desk that someone at FreeBSD con '99 gave me. First, will the person that gave it to me send private mail so I can start thinking about such things. Second, does anybody know if this has ever worked with FreeBSD? I'm having trouble getting pccardd to map the memory that I see from dumpcis that it has. :-( Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 12: 9:36 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from midway.uchicago.edu (midway.uchicago.edu [128.135.12.12]) by hub.freebsd.org (Postfix) with ESMTP id 26EE214CA2 for ; Mon, 25 Oct 1999 12:09:16 -0700 (PDT) (envelope-from charon@freethought.org) Received: from harper.uchicago.edu (root@harper.uchicago.edu [128.135.12.7]) by midway.uchicago.edu (8.9.3/8.9.3) with ESMTP id OAA26620; Mon, 25 Oct 1999 14:09:11 -0500 (CDT) From: charon@freethought.org Received: from broad-208-049 (broad-208-049.rh.uchicago.edu [128.135.208.49]) by harper.uchicago.edu (8.9.3/8.9.3) with SMTP id OAA18804; Mon, 25 Oct 1999 14:09:06 -0500 (CDT) Message-Id: <3.0.5.32.19991025140659.00a2bbb0@midway.uchicago.edu> X-Sender: dbsypher@midway.uchicago.edu X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Mon, 25 Oct 1999 14:06:59 -0700 To: Warner Losh , mobile@FreeBSD.ORG Subject: Re: Time to begin: Plans for pccard/cardbus In-Reply-To: <199910250818.CAA39651@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 02:18 AM 10/25/99 -0600, Warner Losh wrote: [The master plan.] >Comments? As a non-developer I can't offer any technical comments, but I can give a motivational one. I would _love_ cardbus support, and really appreciate your effort to eventually make this part of FreeBSD. Cardbus support = ability for me to access the internet from FreeBSD = I no longer need WinNT. Thanks! -Charon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 12:17:46 1999 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 BB2071525D for ; Mon, 25 Oct 1999 12:17:27 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 11fpcP-0003gT-00 for mobile@freebsd.org; Mon, 25 Oct 1999 15:17:21 -0400 Date: Mon, 25 Oct 1999 15:17:20 -0400 From: Peter Radcliffe To: mobile@freebsd.org Subject: Re: Will the owner of a DFE-650 D-LINK Fast Ethernet card stand up Message-ID: <19991025151720.G22684@pir.net> Mail-Followup-To: mobile@freebsd.org References: <199910251901.NAA42191@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <199910251901.NAA42191@harmony.village.org> X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh probably said: > I have a DFE-650 D-Link fast ethernet card sitting on my desk that ... > Second, does anybody know if this has ever worked with FreeBSD? I'm > having trouble getting pccardd to map the memory that I see from > dumpcis that it has. :-( I use one with 3.3-R + PAO with no problems[1] with ed. Don't think it's supported under FreeBSD without PAO. *pulls out and fires up laptop* Oct 25 15:14:18 disapp pccardd[412]: Card "D-Link"("DFE-650") [Fast Ethernet] [(null)] matched "D-Link" ("DFE-650") [(null)] [(null)] Oct 25 15:14:21 disapp root: D-link DFE-650 inserted card0: assign ed0 iobase 0x260 irq 10 flags 0x14 ed0: address 00:80:c8:8d:f4:cb, type Linksys (16 bit) # D-Link DFE-650 Ethernet Card card "D-Link" "DFE-650" config default "ed0" any 0x14 insert logger -s D-link DFE-650 inserted insert /etc/pccard_ether $device remove logger -s D-link DFE-650 removed remove /etc/pccard_ether_remove $device Configuration data for card in slot 0 Tuple #1, code = 0x1 (Common memory descriptor), length = 3 000: d1 3a ff Common memory device information: Device number 1, type Function specific, WPS = OFF Speed = 250nS, Memory block size = 8Kb, 8 units Tuple #2, code = 0x1c (Other conditions for common memory), length = 4 000: 01 d1 3a ff (MWAIT) Tuple #3, code = 0x17 (Attribute memory descriptor), length = 3 000: 41 00 ff Attribute memory device information: Device number 1, type EEPROM, WPS = OFF Speed = 250nS, Memory block size = 512b, 1 units Tuple #4, code = 0x20 (Manufacturer ID), length = 4 000: 49 01 30 02 PCMCIA ID = 0x149, OEM ID = 0x230 Tuple #5, code = 0x21 (Functional ID), length = 2 000: 06 01 Network/LAN adapter - POST initialize Tuple #6, code = 0x15 (Version 1 info), length = 38 000: 04 01 44 2d 4c 69 6e 6b 00 44 46 45 2d 36 35 30 010: 00 46 61 73 74 20 45 74 68 65 72 6e 65 74 00 ff 020: 00 00 00 00 00 00 Version = 4.1, Manuf = [D-Link], card vers = [DFE-650] Addit. info = [Fast Ethernet] Tuple #7, code = 0x1a (Configuration map), length = 5 000: 01 20 00 04 0b Reg len = 2, config register addr = 0x400, last config = 0x20 Registers: XX-X---- Tuple #8, code = 0x1b (Configuration entry), length = 7 000: e0 81 18 45 30 fc be Config index = 0x20(default) Interface byte = 0x81 (I/O) wait signal supported Card decodes 5 address lines, limited 8/16 Bit I/O IRQ modes: Level IRQs: 2 3 4 5 6 7 9 10 11 12 13 15 Tuple #9, code = 0x14 (No link), length = 0 Tuple #10, code = 0xff (Terminator), length = 0 1 slots found P. [1] Beyond it not negotiating 10bT FDX with my switch, when it does this perfectly well under 'doze :( -- 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 Mon Oct 25 13:15:50 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from omzrelay02.mcit.com (omzrelay02.mcit.com [199.249.19.244]) by hub.freebsd.org (Postfix) with ESMTP id 902C91520D for ; Mon, 25 Oct 1999 13:15:38 -0700 (PDT) (envelope-from jay.hester@wcom.com) Received: from omzrelay.mcit.com ([166.37.204.49]) by firewall.mcit.com (PMDF V5.2-32 #38417) with ESMTP id <0FK600B46BML2S@firewall.mcit.com> for freebsd-mobile@FreeBSD.org; Mon, 25 Oct 1999 19:32:45 +0000 (GMT) Received: from mail.jxn.wcom.com (mail.jxn.wcom.com [159.98.190.10]) by omzrelay.mcit.com (8.8.7/) with ESMTP id TAA06126 for ; Mon, 25 Oct 1999 19:32:47 +0000 (GMT) Received: from wcom.com ([159.98.137.47]) by mail.jxn.wcom.com (Netscape Messaging Server 4.1) with ESMTP id FK6BMJ00.A03 for ; Mon, 25 Oct 1999 14:32:43 -0500 Date: Mon, 25 Oct 1999 14:31:15 -0500 From: James B Hester Subject: 3com 3c589 PCMCIA Etherlink 3 problems To: freebsd-mobile@FreeBSD.org Message-id: <3814B003.C9488E92@wcom.com> Organization: MCIWorldcom MIME-version: 1.0 X-Mailer: Mozilla 4.51 [en] (Win98; I) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I have the 3com 3c589 etherlinks 3 card for a lan/modem card, in the /var/run/dmesg.boot file the card is listed as: zp : pcmcia slot 0: zp : pcmcia slot 1: 3Com Corporation~3C562D/3C563D~Etherlink III~LAN+Modem PC CARD~ zp0 not found at 0x300 I need to get the laptop connected to the network. If anyone could help I would really appreciate it. Thanks!! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 14:10: 5 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 27C4814D54 for ; Mon, 25 Oct 1999 14:09:13 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id WAA70188; Mon, 25 Oct 1999 22:06:11 +0100 (BST) (envelope-from nik) Date: Mon, 25 Oct 1999 22:06:11 +0100 From: Nik Clayton To: Warner Losh Cc: mobile@freebsd.org Subject: Re: Will the owner of a DFE-650 D-LINK Fast Ethernet card stand up Message-ID: <19991025220611.A69236@catkin.nothing-going-on.org> References: <199910251901.NAA42191@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i In-Reply-To: <199910251901.NAA42191@harmony.village.org>; from Warner Losh on Mon, Oct 25, 1999 at 01:01:09PM -0600 Organization: FreeBSD Project Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Oct 25, 1999 at 01:01:09PM -0600, Warner Losh wrote: > I have a DFE-650 D-Link fast ethernet card sitting on my desk that > someone at FreeBSD con '99 gave me. First, will the person that gave > it to me send private mail so I can start thinking about such things. > Second, does anybody know if this has ever worked with FreeBSD? I'm > having trouble getting pccardd to map the memory that I see from > dumpcis that it has. :-( I'm not the owner you're talking about, but the DFE-650 I'm using in my Vaio F270 works with no problems out of the box (booting from the 3.2 PAO floppy). There's an entry for it in /etc/pccard.conf which I haven't needed to change; card "D-Link" "DFE-650" config default "ed0" any 0x10 insert logger -s D-link DFE-650 inserted insert /etc/pccard_ether $device remove logger -s D-link DFE-650 removed remove /etc/pccard_ether_remove $device I don't see a 'dumpcis' on this system to give you any more info I'm afraid. N To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 14:14:24 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from spork.cs.unm.edu (mail.cs.unm.edu [198.59.151.21]) by hub.freebsd.org (Postfix) with ESMTP id 1602E1524F for ; Mon, 25 Oct 1999 14:14:21 -0700 (PDT) (envelope-from colinj@cs.unm.edu) Received: from nobby.cs.unm.edu ([198.59.151.103] ident=mail) by spork.cs.unm.edu with esmtp (Exim 2.12 #3) id 11frRd-00076l-00 for freebsd-mobile@freebsd.org; Mon, 25 Oct 1999 15:14:21 -0600 Received: from colinj by nobby.cs.unm.edu with local-esmtp (Exim 2.05 #1 (Debian)) id 11frRd-0000UE-00; Mon, 25 Oct 1999 15:14:21 -0600 Date: Mon, 25 Oct 1999 15:14:21 -0600 (MDT) From: Colin Eric Johnson To: freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? 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, 25 Oct 1999, Colin Eric Johnson wrote: > On Sat, 23 Oct 1999, Warner Losh wrote: > > > In message <380F895A.AB45F577@mindspring.com> Scott Worthington writes: > > : Oh boo. I just realized that support for the Adaptec 1460C for > > : FreeBSD 3.3-STABLE does not exist yet. > > > > Luoqi Chen just committed aic for -current and -stable. > > > > : It would be nice to have SCSI support on my laptop again. And I > > : know others would like it too. > > : > > : Anyone? > > > > Should be easy to add a newbus pccard attachment given my experimental > > changes announced here earlier. Or a pccard attachment in -stable. > > You may even be able to steal 90% of it from the old aic driver, and > > it isn't large to begin with. > > So I saw the aic code come back in the latest CVSUP that I did. I've been > able to build a kernel with aic0 (along with scbus and da0) that I believe > should be working. But pccardd only comes up loading the sio and ep > drivers and not the aic driver. Is this something that isn't in place > yet? > > Is there something that I need in the kernel? I've gone with the defaults > as found in LINT for scbus, da and aic (in that order) and the kernel does > build just fine. I should have added that I am willing to send pizza to those hard workin' folks that are making this work. Colin E. Johnson | colinj@unm.edu | http://www.unm.edu/~colinj/ ``The most fruitful developments have always emerged where two different kinds of thinking met'' -- Heisenberg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 16: 9:28 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from mail.originative.co.uk (no-dns-yet.demon.co.uk [194.217.50.230]) by hub.freebsd.org (Postfix) with ESMTP id D788B152A0; Mon, 25 Oct 1999 16:09:21 -0700 (PDT) (envelope-from paul@originative.co.uk) Received: from originative.co.uk (tiddler.originative.co.uk [194.217.50.235]) by mail.originative.co.uk (Postfix) with ESMTP id 68BCB7C54; Tue, 26 Oct 1999 00:09:20 +0100 (BST) Message-ID: <3814F2BC.C7E44B35@originative.co.uk> Date: Tue, 26 Oct 1999 00:15:58 +0000 From: Paul Richards Organization: Originative Solutions Ltd X-Mailer: Mozilla 4.6 [en] (X11; I; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Nik Clayton Cc: Warner Losh , mobile@freebsd.org Subject: Re: Will the owner of a DFE-650 D-LINK Fast Ethernet card stand up References: <199910251901.NAA42191@harmony.village.org> <19991025220611.A69236@catkin.nothing-going-on.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nik Clayton wrote: > > On Mon, Oct 25, 1999 at 01:01:09PM -0600, Warner Losh wrote: > > I have a DFE-650 D-Link fast ethernet card sitting on my desk that > > someone at FreeBSD con '99 gave me. First, will the person that gave > > it to me send private mail so I can start thinking about such things. > > Second, does anybody know if this has ever worked with FreeBSD? I'm > > having trouble getting pccardd to map the memory that I see from > > dumpcis that it has. :-( > > I'm not the owner you're talking about, but the DFE-650 I'm using in my > Vaio F270 works with no problems out of the box (booting from the 3.2 PAO > floppy). > I've got one running under a standard FreeBSD installation i.e. not a PAO based system. The patches I needed actually came from the PAO release but I only needed the bits that allowed if_ed.c to recognise the card rather the whole PAO environment. I'll try and commit them tomorrow. Paul. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 16:35:39 1999 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 D22B614BF8; Mon, 25 Oct 1999 16:35:34 -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 RAA32410; Mon, 25 Oct 1999 17:35: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 RAA44009; Mon, 25 Oct 1999 17:36:23 -0600 (MDT) Message-Id: <199910252336.RAA44009@harmony.village.org> To: Paul Richards Subject: Re: Will the owner of a DFE-650 D-LINK Fast Ethernet card stand up Cc: Nik Clayton , mobile@freebsd.org In-reply-to: Your message of "Tue, 26 Oct 1999 00:15:58 -0000." <3814F2BC.C7E44B35@originative.co.uk> References: <3814F2BC.C7E44B35@originative.co.uk> <199910251901.NAA42191@harmony.village.org> <19991025220611.A69236@catkin.nothing-going-on.org> Date: Mon, 25 Oct 1999 17:36:23 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <3814F2BC.C7E44B35@originative.co.uk> Paul Richards writes: : I've got one running under a standard FreeBSD installation i.e. not a : PAO based system. The patches I needed actually came from the PAO : release but I only needed the bits that allowed if_ed.c to recognise the : card rather the whole PAO environment. : : I'll try and commit them tomorrow. Cool! I look forward to that! Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 16:45:54 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from grimreaper.grondar.za (strobe.cdrom.com [204.216.28.133]) by hub.freebsd.org (Postfix) with ESMTP id 505E714BF8; Mon, 25 Oct 1999 16:45:53 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by grimreaper.grondar.za (8.9.3/8.9.3) with ESMTP id QAA00360; Mon, 25 Oct 1999 16:45:59 -0700 (PDT) (envelope-from mark@grondar.za) Message-Id: <199910252345.QAA00360@grimreaper.grondar.za> To: imp@freebsd.org Cc: mobile@freebsd.org Subject: PCIC's broken on Libretto.... Date: Mon, 25 Oct 1999 16:45:58 -0700 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Warner I have been following your patches for a couple of days now, (sorry for lack of feedback), and my PCIC's are still broken. Below is a dmesg output. Anything else you need? My sources include all of your commits except the latest memory mapping stuff. The symptoms are complete lack of activity on the pcics, and "no pcics present" (paraphased) when I type 'pccardd'. M Copyright (c) 1992-1999 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-CURRENT #0: Mon Oct 25 16:17:12 PDT 1999 root@grimreaper.grondar.za:/usr/src/sys/compile/LIBRETTO 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 = 67174400 (65600K bytes) avail memory = 62545920 (61080K bytes) Preloaded elf kernel "kernel.debug" at 0xc0272000. Intel Pentium detected, installing workaround for F00F bug VESA: v2.0, 1984k memory, flags:0x0, mode table:0xc022dae2 (1000022) VESA: MagicGraph 128XD 40K SVGA BIOS 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 vga-pci0: at device 4.0 on pci0 pci0: unknown card (vendor=0x1179, dev=0x0701) at 17.0 irq 11 pcic0: at device 19.0 on pci0 pcic1: at device 19.1 on pci0 devclass_alloc_unit: pcic0 already exists, using next available unit number devclass_alloc_unit: pcic1 already exists, using next available unit number isa0: on motherboard fdc0: direction bit not set fdc0: cmd 3 failed at out byte 1 of 3 wdc0 at port 0x1f0-0x1f7 irq 14 flags 0xe0ff on isa0 wdc0: unit 0 (wd0): , 32-bit, multi-block-16, sleep-hack wd0: 4126MB (8452080 sectors), 8944 cyls, 15 heads, 63 S/T, 512 B/S 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 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> pcm0: at port 0x530-0x53f,0x370-0x371 irq 5 drq 1 flags 0xc100 on isa0 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 (ECP/PS2/NIBBLE) in COMPATIBLE mode ppc0: FIFO with 16/16/16 bytes threshold plip0: on ppbus 0 lpt0: on ppbus 0 lpt0: Interrupt-driven port changing root device to wd0s2a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 16:50:40 1999 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 75D6415267 for ; Mon, 25 Oct 1999 16:50:37 -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 RAA32474; Mon, 25 Oct 1999 17:50:37 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id RAA44128; Mon, 25 Oct 1999 17:51:26 -0600 (MDT) Message-Id: <199910252351.RAA44128@harmony.village.org> To: Mark Murray Subject: Re: PCIC's broken on Libretto.... Cc: mobile@freebsd.org In-reply-to: Your message of "Mon, 25 Oct 1999 16:45:58 PDT." <199910252345.QAA00360@grimreaper.grondar.za> References: <199910252345.QAA00360@grimreaper.grondar.za> Date: Mon, 25 Oct 1999 17:51:26 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910252345.QAA00360@grimreaper.grondar.za> Mark Murray writes: : I have been following your patches for a couple of days now, : (sorry for lack of feedback), and my PCIC's are still broken. : : Below is a dmesg output. Anything else you need? My sources : include all of your commits except the latest memory mapping : stuff. What does your config file look like? pcic now needs to be attached to isa... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 16:58:52 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 1EB4114BF8 for ; Mon, 25 Oct 1999 16:58:45 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id BAA06966; Tue, 26 Oct 1999 01:58:30 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910252358.BAA06966@gratis.grondar.za> To: Warner Losh Cc: mobile@freebsd.org Subject: Re: PCIC's broken on Libretto.... Date: Tue, 26 Oct 1999 01:58:29 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > : Below is a dmesg output. Anything else you need? My sources > : include all of your commits except the latest memory mapping > : stuff. > > What does your config file look like? pcic now needs to be attached > to isa... Included.. It is pretty much cribbed from PCCARDD and stripped down. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org # # LIBRETTO - Mark's baby monster # # $Id$ machine i386 cpu I586_CPU ident LIBRETTO maxusers 64 #makeoptions DEBUG="-g" #Build kernel with gdb(1) debug symbols #options DDB #Enable the kernel debugger. options INET #InterNETworking options FFS #Berkeley Fast Filesystem options FFS_ROOT #FFS usable as root device [keep this!] options SOFTUPDATES #Kirk McKusick's nifty ffs optimization options MSDOSFS #MSDOS Filesystem options COMPAT_43 #Compatible with BSD 4.3 [KEEP THIS!] options UCONSOLE #Allow users to grab the console options VESA #Include support for VESA video modes options KTRACE #kernel tracing ##################################################################### # POSIX P1003.1B # Real time extensions added in the 1993 Posix # P1003_1B: Infrastructure # _KPOSIX_PRIORITY_SCHEDULING: Build in _POSIX_PRIORITY_SCHEDULING # _KPOSIX_VERSION: Version kernel is built for options P1003_1B options _KPOSIX_PRIORITY_SCHEDULING options _KPOSIX_VERSION=199309L # This provides support for System V shared memory and message queues. # options SYSVSHM options SYSVMSG options SYSVSEM controller isa0 controller pci0 controller fdc0 at isa? port IO_FD1 irq 6 drq 2 disk fd0 at fdc0 drive 0 controller wdc0 at isa? port IO_WD1 irq 14 flags 0xe0ff disk wd0 at wdc0 drive 0 #controller ata0 #device atadisk0 # ATA disk drives # atkbdc0 controls both the keyboard and the PS/2 mouse controller atkbdc0 at isa? port IO_KBD device atkbd0 at atkbdc? irq 1 device psm0 at atkbdc? irq 12 device vga0 at isa? port ? conflicts # splash screen/screen saver pseudo-device splash # syscons is the default console driver, resembling an SCO console device sc0 at isa? device npx0 at nexus? port IO_NPX irq 13 device pcm0 at isa? port 0x530 irq 5 drq 1 flags 0x0 device sio0 at isa? port IO_COM1 flags 0x10 irq 4 # Parallel port device ppc0 at isa? port? irq 7 controller ppbus0 device lpt0 at ppbus? device plip0 at ppbus? # # Laptop support (see LINT for more options) # # 0x0020 Statclock is broken. # 0x0011 Limit APM protocol to 1.1 or 1.0 # 0x0010 Limit APM protocol to 1.0 #device apm0 at nexus? flags 0x31 # Advanced Power Management device apm0 at nexus? # PCCARD (PCMCIA) support controller card0 controller pcic0 at isa? controller pcic1 at isa? # You may need to reset all pccards after resuming options PCIC_RESUME_RESET # reset after resume device ep0 at isa? port ? irq ? pseudo-device loop pseudo-device ether pseudo-device pty pseudo-device gzip # Exec gzipped a.out's # The `bpf' pseudo-device enables the Berkeley Packet Filter. Be # aware of the legal and administrative consequences of enabling this # option. The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. pseudo-device bpf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 17:16:44 1999 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 4BF9A14C01 for ; Mon, 25 Oct 1999 17:16:38 -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 SAA32567; Mon, 25 Oct 1999 18:16:37 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id SAA44384; Mon, 25 Oct 1999 18:17:27 -0600 (MDT) Message-Id: <199910260017.SAA44384@harmony.village.org> To: Mark Murray Subject: Re: PCIC's broken on Libretto.... Cc: mobile@freebsd.org In-reply-to: Your message of "Tue, 26 Oct 1999 01:58:29 +0200." <199910252358.BAA06966@gratis.grondar.za> References: <199910252358.BAA06966@gratis.grondar.za> Date: Mon, 25 Oct 1999 18:17:27 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910252358.BAA06966@gratis.grondar.za> Mark Murray writes: : Included.. It is pretty much cribbed from PCCARDD and stripped down. : # PCCARD (PCMCIA) support : controller card0 : controller pcic0 at isa? : controller pcic1 at isa? I have them in my config file like so: controller pcic0 at isa? irq 10 controller pcic1 at isa? controller card0 See if that order makes a difference. It shouldn't. Also make sure that you have run config. In compile/FOO/ioconf.c you should find something that looks like: ... struct config_resource pcic0_resource[] = { { "at", RES_STRING, { (long) "isa" }}, { "irq", RES_INT, {10}}, }; #define pcic0_count 2 struct config_resource pcic1_resource[] = { { "at", RES_STRING, { (long) "isa" }}, }; #define pcic1_count 1 ... { "pcic", 0, pcic0_count, pcic0_resources }, { "pcic", 1, pcic1_count, pcic1_resources }, ... A very common error has been to not run config... It is usually shows up when pcic0 and/or pcic1 show up for the pci attachment rather than having them show up as pcic2 and 3. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 17:20:52 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id AF01714C01 for ; Mon, 25 Oct 1999 17:20:40 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id CAA07232; Tue, 26 Oct 1999 02:20:31 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910260020.CAA07232@gratis.grondar.za> To: Warner Losh Cc: mobile@freebsd.org Subject: Re: PCIC's broken on Libretto.... Date: Tue, 26 Oct 1999 02:20:30 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > See if that order makes a difference. It shouldn't. Also make sure No difference. > A very common error has been to not run config... It is usually shows > up when pcic0 and/or pcic1 show up for the pci attachment rather than > having them show up as pcic2 and 3. I do a config -r every time. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 17:52:36 1999 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 F3FFC14DDA for ; Mon, 25 Oct 1999 17:52:32 -0700 (PDT) (envelope-from ncbp@bank-pedersen.dk) Received: by freesbee.wheel.dk (Postfix, from userid 1002) id 7FEAB3E2A; Tue, 26 Oct 1999 02:52:32 +0200 (CEST) Date: Tue, 26 Oct 1999 02:52:32 +0200 From: "Niels Chr. Bank-Pedersen" To: mobile@freebsd.org Subject: Re: PCIC's broken on Libretto.... Message-ID: <19991026025232.A11185@bank-pedersen.dk> References: <199910252358.BAA06966@gratis.grondar.za> <199910260017.SAA44384@harmony.village.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <199910260017.SAA44384@harmony.village.org>; from imp@village.org on Mon, Oct 25, 1999 at 06:17:27PM -0600 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Different hardware (Compaq Armada, 7792DMT), same problem: pci0: on pcib0 pcic0: irq 11 at device 12.0 on pci0 pcic1: irq 11 at device 12.1 on pci0 vga-pci0: irq 11 at device 13.0 on pci0 isab0: at device 14.0 on pci0 devclass_alloc_unit: pcic0 already exists, using next available unit number devclass_alloc_unit: pcic1 already exists, using next available unit number isa0: on isab0 Running pccardd returns: Oct 26 02:34:58 note pccardd[223]: fatal error: no PC-CARD slots configfile (tried pcic0 both with and without specifying irq): controller pcic0 at isa? irq 11 controller pcic1 at isa? controller card0 The output from a working kernel dated Oct. 5. : Copyright (c) 1992-1999 The FreeBSD Project. Copyright (c) 1982, 1986, 1989, 1991, 1993 The Regents of the University of California. All rights reserved. FreeBSD 4.0-CURRENT #0: Tue Oct 5 22:43:37 CEST 1999 root@home.bank-pedersen.dk:/usr/src/sys/compile/NOTE Timecounter "i8254" frequency 1193182 Hz CPU: Pentium/P55C (quarter-micron) (266.54-MHz 586-class CPU) Origin = "GenuineIntel" Id = 0x581 Stepping = 1 Features=0x8001bf real memory = 67108864 (65536K bytes) avail memory = 61882368 (60432K bytes) Preloaded elf kernel "kernel.virker" at 0xc02df000. VESA: v1.2, 1984k memory, flags:0x0, mode table:0xc00c4e78 (c0004e78) VESA: S3 Incorporated. 86CM65 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 pcic0: irq 11 at device 12.0 on pci0 pcic1: irq 11 at device 12.1 on pci0 vga-pci0: irq 11 at device 13.0 on pci0 isab0: at device 14.0 on pci0 isa0: on isab0 ata-pci0: irq 0 at device 14.1 on pci0 ata-pci0: Busmastering DMA not enabled ata0 at 0x01f0 irq 14 on ata-pci0 pccard0: on motherboard fdc0: at port 0x3f0-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-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 0x3b0-0x3df iomem 0xa0000-0xbffff on isa0 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x200> sio0 at port 0x3f8-0x3ff irq 4 flags 0x10 on isa0 sio0: type 16550A sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio2: configured irq 5 not in bitmap of probed irqs 0 ppc0 at port 0x378-0x37f on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode lpt0: on ppbus 0 pcm0: at port 0x220-0x22f irq 5 drq 1 on isa0 pcic: pccard bridge VLSI 82C146 (5 mem & 2 I/O windows) pcic: controller irq 7 pccard: initalizing drivers: ep ad0: ATA-3 disk at ata0 as master ad0: 4887MB (10009440 sectors), 10592 cyls, 15 heads, 63 S/T, 512 B/S ad0: 16 secs/int, 0 depth queue, PIO Creating DISK ad0 Creating DISK wd0 changing root device to wd0s2a pccard: card inserted, slot 1 pccard-ep0: at port 0x240-0x24f irq 10 slot 1 on pccard0 ep0: utp/bnc[*UTP*] address 00:60:08:43:dc:90 /Niels Chr. -- Niels Christian Bank-Pedersen, NCB1-RIPE. Network Manager, Tele Danmark NET, IP-section. "Hey, are any of you guys out there actually *using* RFC 2549?" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 18:46: 6 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id 5956B152A0; Mon, 25 Oct 1999 18:45:58 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id DAA07677; Tue, 26 Oct 1999 03:45:53 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910260145.DAA07677@gratis.grondar.za> To: imp@freebsd.org Cc: mobile@freebsd.org Subject: PCIC/Libretto brokenness - fixed! Date: Tue, 26 Oct 1999 03:45:52 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Thanks to some PNP and general bus clues from Mike Smith, the PCICs are woking on my Libretto! :-) I needed to go into the BIOS and make the PCIC's PCIC only (ie disable cardbus). I also had to add pnp to the kernel config file, and remove the isa hints from the ep? device. I was delighted to get a kermit session talking to the modem :-) ;-) Bingo! :-) M To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 19:35:37 1999 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 19ECC14DFE for ; Mon, 25 Oct 1999 19:35:28 -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 UAA32924; Mon, 25 Oct 1999 20:35:27 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id UAA45470; Mon, 25 Oct 1999 20:36:17 -0600 (MDT) Message-Id: <199910260236.UAA45470@harmony.village.org> To: Mark Murray Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 03:45:52 +0200." <199910260145.DAA07677@gratis.grondar.za> References: <199910260145.DAA07677@gratis.grondar.za> Date: Mon, 25 Oct 1999 20:36:17 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910260145.DAA07677@gratis.grondar.za> Mark Murray writes: : I needed to go into the BIOS and make the PCIC's PCIC only (ie : disable cardbus). Are you sure you had to put the pcic in pcic only mode? The pcic_p driver is supposed to do that... : I also had to add pnp to the kernel config file, and remove the isa hints : from the ep? device. Removing the hints from ep should be all that was needed to get ep working. : I was delighted to get a kermit session talking to the modem :-) ;-) What are those pnp clues? Why is this needed? My kernel config does have pnp0 in it.... But do does PCCARD... I've also had some comments from Peter Wemm saying that he was having problems with the pccard sio attachment. He was seeing the inter not configured problem with attachment. From what he describes it appars to only happen when he's removed the isa hints from sio due to the already_init code there. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 19:36:56 1999 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 0937C14DEA for ; Mon, 25 Oct 1999 19:36: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 UAA32937; Mon, 25 Oct 1999 20:36:52 -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 UAA45501; Mon, 25 Oct 1999 20:37:42 -0600 (MDT) Message-Id: <199910260237.UAA45501@harmony.village.org> To: "Niels Chr. Bank-Pedersen" Subject: Re: PCIC's broken on Libretto.... Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 02:52:32 +0200." <19991026025232.A11185@bank-pedersen.dk> References: <19991026025232.A11185@bank-pedersen.dk> <199910252358.BAA06966@gratis.grondar.za> <199910260017.SAA44384@harmony.village.org> Date: Mon, 25 Oct 1999 20:37:42 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <19991026025232.A11185@bank-pedersen.dk> "Niels Chr. Bank-Pedersen" writes: : devclass_alloc_unit: pcic0 already exists, using next available unit number : devclass_alloc_unit: pcic1 already exists, using next available unit number Try adding controller pnp0 to your config file and let me know if this helps things. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 19:54:25 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id A7CD714DF0 for ; Mon, 25 Oct 1999 19:54:18 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id EAA08716; Tue, 26 Oct 1999 04:54:05 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910260254.EAA08716@gratis.grondar.za> To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: PCIC/Libretto brokenness - fixed! Date: Tue, 26 Oct 1999 04:54:04 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > In message <199910260145.DAA07677@gratis.grondar.za> Mark Murray writes: > : I needed to go into the BIOS and make the PCIC's PCIC only (ie > : disable cardbus). > > Are you sure you had to put the pcic in pcic only mode? The pcic_p > driver is supposed to do that... Yup. The PCIC's were just getting lost without that. > : I also had to add pnp to the kernel config file, and remove the isa hints > : from the ep? device. > > Removing the hints from ep should be all that was needed to get ep > working. Hmm. I'll try that. > : I was delighted to get a kermit session talking to the modem :-) ;-) > > What are those pnp clues? Why is this needed? Everything was just "at xxx?" or "irq ?". Why needed? Dunno. It used to work. > My kernel config does have pnp0 in it.... But do does PCCARD... > > I've also had some comments from Peter Wemm saying that he was having > problems with the pccard sio attachment. He was seeing the inter not > configured problem with attachment. From what he describes it appars > to only happen when he's removed the isa hints from sio due to the > already_init code there. Hmm. I'll play. M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 20: 8:45 1999 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 E7B7614DEA for ; Mon, 25 Oct 1999 20:08:28 -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 VAA33035; Mon, 25 Oct 1999 21:08:27 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA45699; Mon, 25 Oct 1999 21:09:18 -0600 (MDT) Message-Id: <199910260309.VAA45699@harmony.village.org> To: Mark Murray Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 04:54:04 +0200." <199910260254.EAA08716@gratis.grondar.za> References: <199910260254.EAA08716@gratis.grondar.za> Date: Mon, 25 Oct 1999 21:09:18 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910260254.EAA08716@gratis.grondar.za> Mark Murray writes: : > In message <199910260145.DAA07677@gratis.grondar.za> Mark Murray writes: : > : I needed to go into the BIOS and make the PCIC's PCIC only (ie : > : disable cardbus). : > : > Are you sure you had to put the pcic in pcic only mode? The pcic_p : > driver is supposed to do that... : : Yup. The PCIC's were just getting lost without that. But but but I didn't change the probe code at all, just when/how it was called. I'm very confused. Why would the kernel change the unit numbers for pcic unit when you changed this bios setting. I'm mondo confused... : > Removing the hints from ep should be all that was needed to get ep : > working. : : Hmm. I'll try that. The ep card is the most tested with my patches.... : Hmm. I'll play. Lemme know. There are two reports in the nomads mailing list about a problem similar to yours. I posted the bit about using 'controller pnp0', but not the BIOS part (mostly because I don't understand things completely yet)[*]. I'm very curious about what's going on... Warner [*] At least I hope so... My Japanese is still a little weak. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 20:17:30 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from gratis.grondar.za (gratis.grondar.za [196.7.18.133]) by hub.freebsd.org (Postfix) with ESMTP id D683514DEA for ; Mon, 25 Oct 1999 20:17:22 -0700 (PDT) (envelope-from mark@grondar.za) Received: from grondar.za (localhost [127.0.0.1]) by gratis.grondar.za (8.9.3/8.9.3) with ESMTP id FAA08954; Tue, 26 Oct 1999 05:17:02 +0200 (SAST) (envelope-from mark@grondar.za) Message-Id: <199910260317.FAA08954@gratis.grondar.za> To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: PCIC/Libretto brokenness - fixed! Date: Tue, 26 Oct 1999 05:17:01 +0200 From: Mark Murray Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > : Yup. The PCIC's were just getting lost without that. > > But but but I didn't change the probe code at all, just when/how it > was called. I'm very confused. Why would the kernel change the > unit numbers for pcic unit when you changed this bios setting. I'm > mondo confused... Order could be it according to my faulty memory of MSmith's description; something to do with the probe (?) or init code setting the PCIC into cardbus mode, and the later code then not finding it? > : Hmm. I'll play. > > Lemme know. Will do. > There are two reports in the nomads mailing list about a problem > similar to yours. I posted the bit about using 'controller pnp0', but > not the BIOS part (mostly because I don't understand things completely > yet)[*]. I'm very curious about what's going on... > > Warner > > [*] At least I hope so... My Japanese is still a little weak. Cool! M -- Mark Murray Join the anti-SPAM movement: http://www.cauce.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 20:35:33 1999 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 C563014DD7 for ; Mon, 25 Oct 1999 20:35:26 -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 VAA33112; Mon, 25 Oct 1999 21:35:25 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id VAA45912; Mon, 25 Oct 1999 21:36:16 -0600 (MDT) Message-Id: <199910260336.VAA45912@harmony.village.org> To: Mark Murray Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 05:17:01 +0200." <199910260317.FAA08954@gratis.grondar.za> References: <199910260317.FAA08954@gratis.grondar.za> Date: Mon, 25 Oct 1999 21:36:16 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910260317.FAA08954@gratis.grondar.za> Mark Murray writes: : Order could be it according to my faulty memory of MSmith's : description; something to do with the probe (?) or init : code setting the PCIC into cardbus mode, and the later : code then not finding it? I know that the pcic_p driver tries to set the cardbus bridge device into legacy mode. Since it is a pci device, it gets probed first. This allows the isa code to later probe to find it. This is a hold over from the past initialization hack that put pcic last in kernel init process. In reality, pcic_p should be its own attachment, but talking to the cardbus device in non-legacy mode is somewhat different than talking to a pcic, if my reading of the newconfig code is right, so we've not done that. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Mon Oct 25 23:53:46 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from lab12.ie.pitt.edu (lab12.ie.pitt.edu [136.142.89.102]) by hub.freebsd.org (Postfix) with ESMTP id BFC9114C2E for ; Mon, 25 Oct 1999 23:53:43 -0700 (PDT) (envelope-from grafe@lab12.ie.pitt.edu) Received: (from grafe@localhost) by lab12.ie.pitt.edu (8.8.8+Sun/8.8.8) id CAA07163 for freebsd-mobile@freebsd.org; Tue, 26 Oct 1999 02:53:42 -0400 (EDT) Date: Tue, 26 Oct 1999 02:53:42 -0400 (EDT) Message-Id: <199910260653.CAA07163@lab12.ie.pitt.edu> From: grafe@lab12.ie.pitt.edu (Gary Rafe) To: freebsd-mobile@freebsd.org Subject: Q: APM suspend/resume in X11 ? Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I recently picked up a Toshiba 4030CDT and promptly got 3.3R/PAO installed & running on it. After some teeth gnashing, I found that APM required "options VM86" in the kernel for it to resume properly at the sysconsole (otherwise, the system wakes up & promptly reboots). Why is that ? Then when I tried a suspend/resume cycle from an X11 desktop subsequently, the LCD failed to come on properly, showing instead a somewhat disturbing random pattern of blotching; toggling FnF5 didn't help -- a hard reset was necessary. Can anyone offer an insight or two as to potential conflicts and interactions b/n APM and X11 (SVGA server) ? I'd hate to damage this nice TFT display trying to get suspend/resume working while running an X server. Thanks -- Gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 10:59:26 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id C054F14DF5 for ; Tue, 26 Oct 1999 10:59:15 -0700 (PDT) (envelope-from ambrisko@whistle.com) Received: from whistle.com (crab.whistle.com [207.76.205.112]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id KAA62469; Tue, 26 Oct 1999 10:59:14 -0700 (PDT) Received: (from ambrisko@localhost) by whistle.com (8.9.1/8.9.1) id KAA10547; Tue, 26 Oct 1999 10:58:34 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <199910261758.KAA10547@whistle.com> Subject: Re: PCIC/Libretto brokenness - fixed! In-Reply-To: <199910260336.VAA45912@harmony.village.org> from Warner Losh at "Oct 25, 99 09:36:16 pm" To: imp@village.org (Warner Losh) Date: Tue, 26 Oct 1999 10:58:34 -0700 (PDT) Cc: mark@grondar.za, mobile@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL29 (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 Warner Losh writes: | In message <199910260317.FAA08954@gratis.grondar.za> Mark Murray writes: | : Order could be it according to my faulty memory of MSmith's | : description; something to do with the probe (?) or init | : code setting the PCIC into cardbus mode, and the later | : code then not finding it? | | I know that the pcic_p driver tries to set the cardbus bridge device | into legacy mode. Since it is a pci device, it gets probed first. | This allows the isa code to later probe to find it. This is a hold | over from the past initialization hack that put pcic last in kernel | init process. In reality, pcic_p should be its own attachment, but | talking to the cardbus device in non-legacy mode is somewhat different | than talking to a pcic, if my reading of the newconfig code is right, | so we've not done that. As a follow on to this. I tried your code on 3 machines. Nec 6030X, Thinkpad 770Z, Generic PC with ISA PCCard adapter. On the Nec 6030X I got the dreaded: chip1: at device 1.0 on pci0 vga-pci0: at device 2.0 on pci0 pcic0: at device 3.0 on pci0 pcic1: at device 3.1 on pci0 devclass_alloc_unit: pcic0 already exists, using next available unit number devclass_alloc_unit: pcic1 already exists, using next available unit number isa0: on motherboard and no card device created so things didn't work. I nuke the contents of sys/pci/pcic_p.c and rebuilt. Now it got further chip2: at device 3.0 on pci0 chip3: at device 3.1 on pci0 pcic: polling, can't alloc 0 pcic: polling, can't alloc 0 pcic0: on isa0 pccard0: on pcic0 sio_pccard_probe: Does anonymous match? ed_pccard_probe: Does anonymous match? ep_pccard_probe: Does anonymous match? pccard1: on pcic0 sio_pccard_probe: Does anonymous match? ed_pccard_probe: Does anonymous match? ep_pccard_probe: Does anonymous match? And then I got endless splx & splhigh for pcicintr. It also didn't detect PCCard insertions. So it looks like polled mode is broken. I then hard coded for now the pcic_intr to 15 and then life was good. So it looks like trying to allocate an available pcic_intr is broken. Now I get chip2: at device 3.0 on pci0 chip3: at device 3.1 on pci0 pcic0: at irq 15 on isa0 pccard0: on pcic0 sio_pccard_probe: Does anonymous match? ed_pccard_probe: Does anonymous match? ep_pccard_probe: Does anonymous match? pccard1: on pcic0 sio_pccard_probe: Does anonymous match? ed_pccard_probe: Does anonymous match? ep_pccard_probe: Does anonymous match? And life is good: pccard: card inserted, slot 1 devclass_alloc_unit: ed0 already exists, using next available unit number ed_pccard_probe: Does ed match? ed1 at port 0x300-0x31f irq 11 slot 1 on pccard0 ed1: address 00:80:c6:fe:1f:fd, type NE2000 (16 bit) splhigh for pcicintr splx pccard: card inserted, slot 0 devclass_alloc_unit: sio2 already exists, using next available unit number sio_pccard_probe: Does sio match? sio4: configured irq 1 not in bitmap of probed irqs 0 sio4 at port 0x3e8-0x3ef irq 9 slot 0 on pccard0 sio4: type 16550A Both cards work! I haven't run the full set of experiments on all machines yet, but the IBM 770z -> same problem as NEC 6030X PC & ISA PCCard adapter -> didn't locate a free IRQ for pcic_intr. So my observations so far. - The pcic stuff in the sys/pci/pcic_p.c is confusing things, bad side effect? - Polled mode of the pcic controller is broken - Allocating a free pcic_intr is broken I'm going to do some more playing around and try to dig up my TI specs for PCCard controller and play around with this stuff some more. Also I'm going to work on making the new ata driver with this new code (I had some hacks before to make it work with the old stuff) which support external IDE devices such as CD-RW, Hard drive, Zip etc (ie the Microtech stuff or addonics). Once I get this somewhat stable, then I'll start to track the new stuff (to support Cardbus). BTW and recommendation on CardBus Ethernet cards? I may get 2 since I use two PCMCIA in my laptop. Thanks, we seem to be making good progress. Doug A. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 12: 7:19 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id F133314D3A for ; Tue, 26 Oct 1999 12:07:16 -0700 (PDT) (envelope-from ambrisko@whistle.com) Received: from whistle.com (crab.whistle.com [207.76.205.112]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id MAA65842; Tue, 26 Oct 1999 12:07:13 -0700 (PDT) Received: (from ambrisko@localhost) by whistle.com (8.9.1/8.9.1) id MAA11431; Tue, 26 Oct 1999 12:06:23 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <199910261906.MAA11431@whistle.com> Subject: Re: PCIC/Libretto brokenness - fixed! In-Reply-To: <199910261758.KAA10547@whistle.com> from Doug Ambrisko at "Oct 26, 99 10:58:34 am" To: imp@village.org Date: Tue, 26 Oct 1999 12:06:23 -0700 (PDT) Cc: mobile@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL29 (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 Doug Ambrisko writes: | Nec 6030X, Thinkpad 770Z, Generic PC with ISA PCCard adapter. | | On the Nec 6030X I got the dreaded: | | chip1: at device 1.0 on pci0 | vga-pci0: at device 2.0 on pci0 | pcic0: at device 3.0 on pci0 | pcic1: at device 3.1 on pci0 | devclass_alloc_unit: pcic0 already exists, using next available unit number | devclass_alloc_unit: pcic1 already exists, using next available unit number | isa0: on motherboard | | and no card device created so things didn't work. I nuke the contents | of sys/pci/pcic_p.c and rebuilt. I have a guess that having the PCI device probe as "pcic" was confusing things. Changing the name prevents the conflict. This works on my IBM 770Z & Nec 6030X. Doug A. Index: pcic_p.c =================================================================== RCS file: /cvs/src/sys/pci/pcic_p.c,v retrieving revision 1.14 diff -c -r1.14 pcic_p.c *** pcic_p.c 1999/08/28 00:51:04 1.14 --- pcic_p.c 1999/10/26 19:16:02 *************** *** 47,53 **** static void pd6832_legacy_init(pcici_t tag, int unit); static struct pci_device pcic_pci_driver = { ! "pcic", pcic_pci_probe, pcic_pci_attach, &pcic_pci_count, --- 47,53 ---- static void pd6832_legacy_init(pcici_t tag, int unit); static struct pci_device pcic_pci_driver = { ! "pcicfoo", pcic_pci_probe, pcic_pci_attach, &pcic_pci_count, To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 12:10:56 1999 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 9DF9714D3A for ; Tue, 26 Oct 1999 12:10:49 -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 NAA35949; Tue, 26 Oct 1999 13:10: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 NAA56152; Tue, 26 Oct 1999 13:11:46 -0600 (MDT) Message-Id: <199910261911.NAA56152@harmony.village.org> To: Doug Ambrisko Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mark@grondar.za, mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 10:58:34 PDT." <199910261758.KAA10547@whistle.com> References: <199910261758.KAA10547@whistle.com> Date: Tue, 26 Oct 1999 13:11:46 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910261758.KAA10547@whistle.com> Doug Ambrisko writes: : And then I got endless splx & splhigh for pcicintr. It also didn't detect : PCCard insertions. So it looks like polled mode is broken. I then hard : coded for now the pcic_intr to 15 and then life was good. So it looks : like trying to allocate an available pcic_intr is broken. Now I get I would believe this. I've had to hardwire my irq, and that made it work. : I haven't run the full set of experiments on all machines yet, but the : IBM 770z -> same problem as NEC 6030X : PC & ISA PCCard adapter -> didn't locate a free IRQ for pcic_intr. : So my observations so far. : - The pcic stuff in the sys/pci/pcic_p.c is confusing things, bad : side effect? It is a gross kludge. The purpose of it was to put the pci cardbus bridge into legacy mode so that things could pick it up later. Gross, gross, gross, but it used to be effective. The thing I don't understand is why sometimes it would probe as pcic0,1 and other times as pcic2,3. The isa probe happens much later in the process... I'd love to have access to some of this hardware for a few hours. Anybody in Boulder Colorado with the problem? : - Polled mode of the pcic controller is broken I'm unsure why this might be. : - Allocating a free pcic_intr is broken I've noticed this as well. : I'm going to do some more playing around and try to dig up my TI specs : for PCCard controller and play around with this stuff some more. Also : I'm going to work on making the new ata driver with this new code : (I had some hacks before to make it work with the old stuff) which : support external IDE devices such as CD-RW, Hard drive, Zip etc (ie : the Microtech stuff or addonics). I'd love to have a pointer to the TI specs. : Once I get this somewhat stable, then I'll start to track the new stuff : (to support Cardbus). BTW and recommendation on CardBus Ethernet cards? : I may get 2 since I use two PCMCIA in my laptop. : : Thanks, we seem to be making good progress. I hope so. Doug, if you could track down these problems, it would free me to focus completely on the new code. The card suspend/eject problem is likely due to disconnecting the driver AFTER turning off the card, but since all this is done with timeouts I've not had time to focus on the code to get it all into my head to find the likely obvious problem... This stuff is further complicated by interrupt bouncing and the corresponding debouncing code.... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 12:13:20 1999 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 ACF5615422 for ; Tue, 26 Oct 1999 12:13: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 NAA35962; Tue, 26 Oct 1999 13:13: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 NAA56179; Tue, 26 Oct 1999 13:14:11 -0600 (MDT) Message-Id: <199910261914.NAA56179@harmony.village.org> To: Doug Ambrisko Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Tue, 26 Oct 1999 12:06:23 PDT." <199910261906.MAA11431@whistle.com> References: <199910261906.MAA11431@whistle.com> Date: Tue, 26 Oct 1999 13:14:11 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910261906.MAA11431@whistle.com> Doug Ambrisko writes: : I have a guess that having the PCI device probe as "pcic" was : confusing things. Changing the name prevents the conflict. : This works on my IBM 770Z & Nec 6030X. So this patch turns the previously not working IBM770Z and NEC into a working system, and no other changes? And backing it out turns them back into non-working machines? Weird. I'd love to understand why this fixes things, since I don't have this problem on my vaio which has a pci cardbus/pccard bridge as well... Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 15:15:48 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id 8655315299 for ; Tue, 26 Oct 1999 15:15:36 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.5/nospam) with UUCP id AAA27135 for mobile@freebsd.org; Wed, 27 Oct 1999 00:15:34 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 83F5A885C; Wed, 27 Oct 1999 00:02:38 +0200 (CEST) Date: Wed, 27 Oct 1999 00:02:38 +0200 From: Ollivier Robert To: FreeBSD mobile Mailing List Subject: Toshiba Modem/ISDN/GSM Message-ID: <19991027000238.A69217@keltia.freenix.fr> Mail-Followup-To: FreeBSD mobile Mailing List Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0pre2i X-Operating-System: FreeBSD 4.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Any knows the correct pccard.conf entry for this card (w/o PAO) ? It is a V90 modem basically but with the help of some external cables and drievr can be turn into an ISDN adapter (I think) and maybe a GSM modem. I run 3.3-RELEASE. I'm only interested by the modem stuff though. I have this in /etc/pccard.conf: -=-=- # Toshiba SLIMV90 card "TOSHIBA" "SLIMV90" config 0x22 "sio2" ? insert echo Toshiba PCMCIA V90 modem inserted remove echo Toshiba PCMCIA V90 modem removed -=-=- dumpcis: -=-=- Configuration data for card in slot 0 Tuple #1, code = 0x1 (Common memory descriptor), length = 3 000: d1 00 ff Common memory device information: Device number 1, type Function specific, WPS = OFF Speed = 250nS, Memory block size = 512b, 1 units Tuple #2, code = 0x17 (Attribute memory descriptor), length = 3 000: 61 08 ff Attribute memory device information: Device number 1, type SRAM, WPS = OFF Speed = 250nS, Memory block size = 512b, 2 units Tuple #3, code = 0x15 (Version 1 info), length = 42 000: 04 01 54 4f 53 48 49 42 41 00 53 4c 49 4d 56 39 010: 30 00 52 45 56 23 31 20 30 00 34 54 31 32 39 30 020: 30 30 30 30 30 4c 58 58 00 ff Version = 4.1, Manuf = [TOSHIBA],card vers = [SLIMV90] Addit. info = [REV#1 0],[4T129000000LXX] Tuple #4, code = 0x20 (Manufacturer ID), length = 4 000: ff ff 01 01 PCMCIA ID = 0xffff, OEM ID = 0x101 Tuple #5, code = 0x21 (Functional ID), length = 2 000: 02 00 Serial port/modem Tuple #6, code = 0x22 (Functional EXT), length = 4 000: 00 02 0f 5c Serial interface extension: 16550 UART, Parity - Space,Mark,Odd,Even, Tuple #7, code = 0x22 (Functional EXT), length = 9 000: 05 1f 0f 00 02 00 00 02 00 Modem interface capabilities: Tuple #8, code = 0x22 (Functional EXT), length = 9 000: 06 1f 0f 00 30 00 00 30 00 Modem interface capabilities: Tuple #9, code = 0x22 (Functional EXT), length = 13 000: 02 0c 00 3f 1c 03 03 0f 07 00 01 b5 ff Data modem services available: Tuple #10, code = 0x22 (Functional EXT), length = 9 000: 13 01 00 1f 00 7a 00 b5 ff Tuple #11, code = 0x22 (Functional EXT), length = 8 000: 23 01 00 1f 00 00 00 b5 Tuple #12, code = 0x1a (Configuration map), length = 5 000: 01 04 e0 07 07 Reg len = 2, config register addr = 0x7e0, last config = 0x4 Registers: XXX----- Tuple #13, code = 0x1b (Configuration entry), length = 23 000: c1 81 7d 78 2d 26 36 2d e8 14 5f aa 60 f8 03 07 010: b0 bc 86 48 10 f0 ff Config index = 0x1(default) Interface byte = 0x81 (I/O) wait signal supported Vcc pwr: Continuous supply current: 2.5 x 10mA Max current average over 1 second: 2 x 100mA Max current average over 10 ms: 3 x 100mA Power down supply current: 2.5 x 10mA Wait scale Speed = 1.2 x 10 us RDY/BSY scale Speed = 1.2 x 10 us, scaled by 100 Card decodes 20 address lines IRQ modes: IRQs: BERR 2 4 8 9 10 11 12 14 Memory descriptor 1 card addr = 0xb00703f800 Tuple #14, code = 0x1b (Configuration entry), length = 7 000: 02 08 aa 60 f8 02 07 Config index = 0x2 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2f8 block length = 0x8 Tuple #15, code = 0x1b (Configuration entry), length = 7 000: 03 08 aa 60 e8 03 07 Config index = 0x3 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x3e8 block length = 0x8 Tuple #16, code = 0x1b (Configuration entry), length = 7 000: 04 08 aa 60 e8 02 07 Config index = 0x4 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block start = 0x2e8 block length = 0x8 Tuple #17, code = 0x1b (Configuration entry), length = 5 000: 05 08 aa 40 07 Config index = 0x5 Card decodes 10 address lines, 8 Bit I/O only I/O address # 1: block length = 0x8 Tuple #18, code = 0xff (Terminator), length = 83 000: 4c 49 4d 56 39 30 20 50 53 54 4e 2f 49 53 44 4e 010: 20 44 61 74 61 2f 46 61 78 20 28 43 29 20 54 6f 020: 73 68 69 62 61 20 53 59 53 54 45 4d 53 20 46 72 030: 00 0c 58 2c 94 48 10 2a 01 02 28 28 e0 92 02 04 040: 00 06 08 86 38 05 88 00 64 86 42 05 00 03 4c 56 050: 0e bc 84 1 slots found -=-=- -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 4.0-CURRENT #74: Thu Sep 9 00:20:51 CEST 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 15:42:33 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from spork.cs.unm.edu (mail.cs.unm.edu [198.59.151.21]) by hub.freebsd.org (Postfix) with ESMTP id B9C9214EA6 for ; Tue, 26 Oct 1999 15:42:27 -0700 (PDT) (envelope-from colinj@cs.unm.edu) Received: from nobby.cs.unm.edu ([198.59.151.103] ident=mail) by spork.cs.unm.edu with esmtp (Exim 2.12 #3) id 11gFIN-0000Xg-00; Tue, 26 Oct 1999 16:42:23 -0600 Received: from colinj by nobby.cs.unm.edu with local-esmtp (Exim 2.05 #1 (Debian)) id 11gFIN-0000Vn-00; Tue, 26 Oct 1999 16:42:23 -0600 Date: Tue, 26 Oct 1999 16:42:23 -0600 (MDT) From: Colin Eric Johnson To: Gary Rafe Cc: freebsd-mobile@freebsd.org Subject: Re: Q: APM suspend/resume in X11 ? In-Reply-To: <199910260653.CAA07163@lab12.ie.pitt.edu> 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 Tue, 26 Oct 1999, Gary Rafe wrote: > I recently picked up a Toshiba 4030CDT and promptly got 3.3R/PAO > installed & running on it. > > After some teeth gnashing, I found that APM required "options VM86" > in the kernel for it to resume properly at the sysconsole > (otherwise, the system wakes up & promptly reboots). > Why is that ? > > Then when I tried a suspend/resume cycle from an X11 desktop subsequently, > the LCD failed to come on properly, showing instead a somewhat > disturbing random pattern of blotching; > toggling FnF5 didn't help -- a hard reset was necessary. > > Can anyone offer an insight or two as to potential conflicts > and interactions b/n APM and X11 (SVGA server) ? > I'd hate to damage this nice TFT display trying to get suspend/resume > working while running an X server. I don't have an answer for this, I wish I did. I see the same behavior on my Dell Lattitude. My solution so far has been to switch to a non-X11 virtual terminal and then suspend the machine. Colin E. Johnson | colinj@unm.edu | http://www.unm.edu/~colinj/ Life is a movie, write your own ending - J. Henson, et al. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 19:47:41 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from kiwi.mail.easynet.net (kiwi.mail.easynet.net [195.40.1.40]) by hub.freebsd.org (Postfix) with ESMTP id DD641152ED for ; Tue, 26 Oct 1999 19:47:18 -0700 (PDT) (envelope-from frankrj@netscape.net) Received: from netscape.net (alister.w.easynet.co.uk [212.212.251.86]) by kiwi.mail.easynet.net (Postfix) with ESMTP id 73055DAFBE; Wed, 27 Oct 1999 03:47:16 +0100 (BST) Message-ID: <381669B7.A5E82D6D@netscape.net> Date: Wed, 27 Oct 1999 03:55:51 +0100 From: Francis Jordan X-Mailer: Mozilla 4.5 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: Doug Ambrisko , mark@grondar.za, mobile@FreeBSD.ORG Subject: Re: PCIC/Libretto brokenness - fixed! References: <199910261758.KAA10547@whistle.com> <199910261911.NAA56152@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > I'd love to have a pointer to the TI specs. Try http://www.ti.com/sc/docs/products/analog/ . The one I've got is TI-1131, for which the correct link is http://www.ti.com/sc/docs/products/analog/pci1131.html but there are lots of other PCI-PCCard/Cardbus Controllers listed as http://www.ti.com/sc/docs/products/analog/pci.html Which PCI/Cardbus bridges are supported by newconfig? Frank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 19:52: 5 1999 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 EDDAF14D1F for ; Tue, 26 Oct 1999 19:52: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 UAA37513; Tue, 26 Oct 1999 20:51: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 UAA58931; Tue, 26 Oct 1999 20:53:01 -0600 (MDT) Message-Id: <199910270253.UAA58931@harmony.village.org> To: Francis Jordan Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 27 Oct 1999 03:55:51 BST." <381669B7.A5E82D6D@netscape.net> References: <381669B7.A5E82D6D@netscape.net> <199910261758.KAA10547@whistle.com> <199910261911.NAA56152@harmony.village.org> Date: Tue, 26 Oct 1999 20:53:01 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <381669B7.A5E82D6D@netscape.net> Francis Jordan writes: : Which PCI/Cardbus bridges are supported by newconfig? All of them. There is a standard interface called YENTA. However, I think that there also needs to be some quirk entries as well for some vendors who implement non-optional (or at least highly desirable) extentions or who need some TLC. The driver tries to cope as best it can with these oddballs. Not having a wide range of hardware, I cannot say how well it copes. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 20: 7: 5 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from kiwi.mail.easynet.net (kiwi.mail.easynet.net [195.40.1.40]) by hub.freebsd.org (Postfix) with ESMTP id B2A7414CEB for ; Tue, 26 Oct 1999 20:07:03 -0700 (PDT) (envelope-from frankrj@netscape.net) Received: from netscape.net (alister.w.easynet.co.uk [212.212.251.86]) by kiwi.mail.easynet.net (Postfix) with ESMTP id 04BB3DAF2F; Wed, 27 Oct 1999 04:07:02 +0100 (BST) Message-ID: <38166E59.984267F4@netscape.net> Date: Wed, 27 Oct 1999 04:15:37 +0100 From: Francis Jordan X-Mailer: Mozilla 4.5 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Warner Losh Cc: mobile@FreeBSD.ORG Subject: Re: PCIC/Libretto brokenness - fixed! References: <381669B7.A5E82D6D@netscape.net> <199910261758.KAA10547@whistle.com> <199910261911.NAA56152@harmony.village.org> <199910270253.UAA58931@harmony.village.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Warner Losh wrote: > > In message <381669B7.A5E82D6D@netscape.net> Francis Jordan writes: > : Which PCI/Cardbus bridges are supported by newconfig? > > All of them. There is a standard interface called YENTA. However, I > think that there also needs to be some quirk entries as well for some > vendors who implement non-optional (or at least highly desirable) > extentions or who need some TLC. The driver tries to cope as best it > can with these oddballs. Not having a wide range of hardware, I > cannot say how well it copes. I'll be happy to test it on my laptop when you get it to compile. The only CardBus device I have is a CardBus-to-UltraSCSI adapter - Adaptec SlimSCSI 1480 - which uses the same core silicon (AIC-7860) as the AHA-2940AU. It should be possible to modify the aha driver to support CardBus attachments - or am I dreaming? Frank To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 20:20:21 1999 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 1F5D214D06 for ; Tue, 26 Oct 1999 20:20:17 -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 VAA37623; Tue, 26 Oct 1999 21:20:16 -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 VAA59119; Tue, 26 Oct 1999 21:21:19 -0600 (MDT) Message-Id: <199910270321.VAA59119@harmony.village.org> To: Francis Jordan Subject: Re: PCIC/Libretto brokenness - fixed! Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Wed, 27 Oct 1999 04:15:37 BST." <38166E59.984267F4@netscape.net> References: <38166E59.984267F4@netscape.net> <381669B7.A5E82D6D@netscape.net> <199910261758.KAA10547@whistle.com> <199910261911.NAA56152@harmony.village.org> <199910270253.UAA58931@harmony.village.org> Date: Tue, 26 Oct 1999 21:21:19 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <38166E59.984267F4@netscape.net> Francis Jordan writes: : I'll be happy to test it on my laptop when you get it to compile. Sure. The more the marrier. : The : only CardBus device I have is a CardBus-to-UltraSCSI adapter - Adaptec : SlimSCSI 1480 - which uses the same core silicon (AIC-7860) as the : AHA-2940AU. It should be possible to modify the aha driver to support : CardBus attachments - or am I dreaming? No, that's sane. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 22:17:18 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from lab12.ie.pitt.edu (lab12.ie.pitt.edu [136.142.89.102]) by hub.freebsd.org (Postfix) with ESMTP id 63EA015011 for ; Tue, 26 Oct 1999 22:17:16 -0700 (PDT) (envelope-from grafe@lab12.ie.pitt.edu) Received: (from grafe@localhost) by lab12.ie.pitt.edu (8.8.8+Sun/8.8.8) id BAA20815; Wed, 27 Oct 1999 01:17:12 -0400 (EDT) Date: Wed, 27 Oct 1999 01:17:12 -0400 (EDT) Message-Id: <199910270517.BAA20815@lab12.ie.pitt.edu> From: grafe@lab12.ie.pitt.edu (Gary Rafe) To: colinj@cs.unm.edu Subject: Re: Q: APM suspend/resume in X11 ? Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org R>> Then when I tried a suspend/resume cycle from an X11 desktop subsequently, R>> the LCD failed to come on properly, showing instead a somewhat R>> disturbing random pattern of blotching; R>> toggling FnF5 didn't help -- a hard reset was necessary. R>> R>I don't have an answer for this, I wish I did. I see the same behavior R>on my Dell Lattitude. My solution so far has been to switch to a non-X11 R>virtual terminal and then suspend the machine. Yes, that trick works here, too, though it's not nearly as convenient as suspend/resume on our earlier Toshibas, which use C&T 6555x-series chips. BTW, the 4030CDT uses the Trident Cyber9525 chip, just recently supported by XFree86-3.3.5. --Gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Tue Oct 26 22:46:11 1999 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 4134E14BD6 for ; Tue, 26 Oct 1999 22:46: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 XAA38148; Tue, 26 Oct 1999 23:46: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 XAA61794; Tue, 26 Oct 1999 23:47:05 -0600 (MDT) Message-Id: <199910270547.XAA61794@harmony.village.org> To: charon@freethought.org Subject: Re: Time to begin: Plans for pccard/cardbus Cc: mobile@FreeBSD.ORG In-reply-to: Your message of "Mon, 25 Oct 1999 14:06:59 PDT." <3.0.5.32.19991025140659.00a2bbb0@midway.uchicago.edu> References: <3.0.5.32.19991025140659.00a2bbb0@midway.uchicago.edu> Date: Tue, 26 Oct 1999 23:47:05 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <3.0.5.32.19991025140659.00a2bbb0@midway.uchicago.edu> charon@freethought.org writes: : As a non-developer I can't offer any technical comments, but I can give a : motivational one. I would _love_ cardbus support, and really appreciate : your effort to eventually make this part of FreeBSD. Cardbus support = : ability for me to access the internet from FreeBSD = I no longer need : WinNT. Thanks! There are a millions stories in the naked city. :-). I cannot tell you how many people have been quick to share why they would be motivated to help me because of this card or that 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 Oct 27 7:26:59 1999 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 2B9A014C92; Wed, 27 Oct 1999 07:26:53 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdnb25.imasy.or.jp [202.227.24.153]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.01) with ESMTP id XAA11152; Wed, 27 Oct 1999 23:26:49 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Message-Id: <199910271426.XAA11152@tasogare.imasy.or.jp> To: steveo@iol.ie Cc: freebsd-mobile@freebsd.org, cvs-committers@FreeBSD.org Subject: Re: FreeBSD on a Compaq 1690 In-Reply-To: Your message of "Mon, 25 Oct 1999 13:59:17 +0100 (IST)" References: X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Wed, 27 Oct 1999 23:26:44 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 980905(IM100) Lines: 30 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > >> Suspend and resume slows the system down hugely (apmconf -t doesn't help), > >> doing it twice makes things worse, I haven't tried more. What should I > >> try in order to get a handle on this. > >> > >> All this with 3.3-STABLE about two weeks old. > > > > i8254 on your laptop seemds having problem after resuming. > ># my SHARP laptop too. > > Please try the attached patch. > > That did the trick nicely, is this patch or near equivalent heading into > -stable any time soon ? OK, I'll commit them this coming weekend if nobody have objections. Linux people also are doing also reloading the countdown register of i8254 after suspend in the same way. It couldn't hurt, I think. #ifdef INIT_TIMER_AFTER_SUSPEND save_flags(flags); cli(); /* set the clock to 100 Hz */ outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ udelay(10); outb_p(LATCH & 0xff , 0x40); /* LSB */ udelay(10); outb(LATCH >> 8 , 0x40); /* MSB */ udelay(10); restore_flags(flags); #endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 9:57:52 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from dingo.cdrom.com (castles507.castles.com [208.214.165.71]) by hub.freebsd.org (Postfix) with ESMTP id 6C84214A15; Wed, 27 Oct 1999 09:57:46 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.3/8.8.8) with ESMTP id JAA03917; Wed, 27 Oct 1999 09:49:04 -0700 (PDT) (envelope-from mike@dingo.cdrom.com) Message-Id: <199910271649.JAA03917@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: Mitsuru IWASAKI Cc: steveo@iol.ie, freebsd-mobile@freebsd.org, cvs-committers@freebsd.org Subject: Re: FreeBSD on a Compaq 1690 In-reply-to: Your message of "Wed, 27 Oct 1999 23:26:44 +0900." <199910271426.XAA11152@tasogare.imasy.or.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 27 Oct 1999 09:49:03 -0700 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > That did the trick nicely, is this patch or near equivalent heading into > > -stable any time soon ? > > OK, I'll commit them this coming weekend if nobody have objections. > Linux people also are doing also reloading the countdown register of > i8254 after suspend in the same way. It couldn't hurt, I think. > > #ifdef INIT_TIMER_AFTER_SUSPEND ... Don't make it conditional on yet another obscure define. It should be the default behaviour. -- \\ 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 Wed Oct 27 10:12:10 1999 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 1A10814E01; Wed, 27 Oct 1999 10:12:01 -0700 (PDT) (envelope-from iwasaki@jp.FreeBSD.org) Received: from localhost (isdnb26.imasy.or.jp [202.227.24.154]) by tasogare.imasy.or.jp (8.9.3+3.2W/3.7W-tasogare/smtpfeed 1.01) with ESMTP id CAA28493; Thu, 28 Oct 1999 02:11:48 +0900 (JST) (envelope-from iwasaki@jp.FreeBSD.org) Message-Id: <199910271711.CAA28493@tasogare.imasy.or.jp> To: mike@smith.net.au Cc: iwasaki@jp.FreeBSD.org, steveo@iol.ie, freebsd-mobile@freebsd.org, cvs-committers@freebsd.org Subject: Re: FreeBSD on a Compaq 1690 In-Reply-To: Your message of "Wed, 27 Oct 1999 09:49:03 -0700" <199910271649.JAA03917@dingo.cdrom.com> References: <199910271649.JAA03917@dingo.cdrom.com> X-Mailer: Mew version 1.93 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 28 Oct 1999 02:11:44 +0900 From: Mitsuru IWASAKI X-Dispatcher: imput version 980905(IM100) Lines: 84 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, > > Linux people also are doing also reloading the countdown register of > > i8254 after suspend in the same way. It couldn't hurt, I think. > > > > #ifdef INIT_TIMER_AFTER_SUSPEND > > ... > > Don't make it conditional on yet another obscure define. It should be > the default behaviour. Sure, I think so too. My previous mail showed the equivalent code in linux kernel :-) The patch I'm going to commit is following. Index: sys/i386/apm/apm.c =================================================================== RCS file: /home/ncvs/src/sys/i386/apm/apm.c,v retrieving revision 1.77.2.13 diff -u -r1.77.2.13 apm.c --- apm.c 1999/10/13 22:06:46 1.77.2.13 +++ apm.c 1999/10/23 21:03:17 @@ -450,6 +450,7 @@ /* modified for adjkerntz */ pl = splsoftclock(); + i8254_restore(); /* restore timer_freq and hz */ inittodr(0); /* adjust time to RTC */ microtime(&resume_time); getmicrotime(&tmp_time); Index: sys/i386/include/clock.h =================================================================== RCS file: /home/ncvs/src/sys/i386/include/clock.h,v retrieving revision 1.34.2.2 diff -u -r1.34.2.2 clock.h --- clock.h 1999/08/29 16:06:23 1.34.2.2 +++ clock.h 1999/10/23 21:02:24 @@ -44,6 +44,7 @@ int release_timer1 __P((void)); #endif int sysbeep __P((int pitch, int period)); +void i8254_restore __P((void)); #endif /* KERNEL */ Index: sys/i386/isa/clock.c =================================================================== RCS file: /home/ncvs/src/sys/i386/isa/clock.c,v retrieving revision 1.129.2.4 diff -u -r1.129.2.4 clock.c --- clock.c 1999/08/29 16:07:14 1.129.2.4 +++ clock.c 1999/10/23 21:20:18 @@ -703,6 +703,28 @@ } /* + * i8254_restore is called from apm_default_resume() to reload + * the countdown register. + * this should not be necessary but there are broken laptops that + * do not restore the countdown register on resume. + * when it happnes, it messes up the hardclock interval and system clock, + * which leads to the infamous "calcru: negative time" problem. + */ +void +i8254_restore(void) +{ + u_long ef; + + ef = read_eflags(); + disable_intr(); + outb(TIMER_MODE, TIMER_SEL0 | TIMER_RATEGEN | TIMER_16BIT); + outb(TIMER_CNTR0, timer0_max_count & 0xff); + outb(TIMER_CNTR0, timer0_max_count >> 8); + CLOCK_UNLOCK(); + write_eflags(ef); +} + +/* * Initialize 8254 timer 0 early so that it can be used in DELAY(). * XXX initialization of other timers is unintentionally left blank. */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 10:25:14 1999 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 632B614F02; Wed, 27 Oct 1999 10:25:07 -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 LAA40632; Wed, 27 Oct 1999 11:25:06 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.9.3/8.8.3) with ESMTP id LAA66558; Wed, 27 Oct 1999 11:26:16 -0600 (MDT) Message-Id: <199910271726.LAA66558@harmony.village.org> To: Mitsuru IWASAKI Subject: Re: FreeBSD on a Compaq 1690 Cc: steveo@iol.ie, freebsd-mobile@FreeBSD.org, cvs-committers@FreeBSD.org In-reply-to: Your message of "Wed, 27 Oct 1999 23:26:44 +0900." <199910271426.XAA11152@tasogare.imasy.or.jp> References: <199910271426.XAA11152@tasogare.imasy.or.jp> Date: Wed, 27 Oct 1999 11:26:16 -0600 From: Warner Losh Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199910271426.XAA11152@tasogare.imasy.or.jp> Mitsuru IWASAKI writes: : OK, I'll commit them this coming weekend if nobody have objections. : Linux people also are doing also reloading the countdown register of : i8254 after suspend in the same way. It couldn't hurt, I think. : : #ifdef INIT_TIMER_AFTER_SUSPEND : save_flags(flags); : cli(); : /* set the clock to 100 Hz */ : outb_p(0x34,0x43); /* binary, mode 2, LSB/MSB, ch 0 */ : udelay(10); : outb_p(LATCH & 0xff , 0x40); /* LSB */ : udelay(10); : outb(LATCH >> 8 , 0x40); /* MSB */ : udelay(10); : restore_flags(flags); : #endif So long as this doesn't break setting HZ to something other than the default, I don't see what it can hurt. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 14:20:20 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from neptun.sns-felb.debis.de (neptun.sns-felb.debis.de [53.122.101.2]) by hub.freebsd.org (Postfix) with SMTP id 4920E14E0E for ; Wed, 27 Oct 1999 14:20:14 -0700 (PDT) (envelope-from Michael.Havemester@debis.com) Received: by neptun.sns-felb.debis.de; id XAA21679; Wed, 27 Oct 1999 23:20:42 +0200 Received: from unknown(53.113.82.10) by neptun.sns-felb.debis.de via smap (V5.0) id xma021662; Wed, 27 Oct 99 23:20:19 +0200 Received: from mail1.hh1.dsh.de (mail1.hh1.dsh.de. [53.47.9.5]) by dshmail1.dsh.de (8.8.7/8.8.7) with ESMTP id XAA16311 for ; Wed, 27 Oct 1999 23:19:21 +0200 (MET DST) Received: from mars.SAPserv.Hamburg.dsh.de (root@mail5.hh1.dsh.de [53.2.168.17]) by mail1.hh1.dsh.de (8.8.7/8.8.7) with SMTP id XAA26741 for ; Wed, 27 Oct 1999 23:19:00 +0200 Received: from mail.SES-PBHH.hh1.dsh.de by mars.SAPserv.Hamburg.dsh.de with smtp for <> id m11gXVs-000B8LC; Wed, 27 Oct 99 20:09 MET DST Received: from NOTMH (unverified [53.2.168.240]) by mail.SES-PBHH.hh1.dsh.de (EMWAC SMTPRS 0.83) with SMTP id ; Wed, 27 Oct 1999 23:22:29 +0200 From: "Michael Havemester" To: "Ollivier Robert" , "FreeBSD mobile Mailing List" Subject: RE: Toshiba Modem/ISDN/GSM Date: Wed, 27 Oct 1999 23:20:31 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Importance: Normal In-Reply-To: <19991027000238.A69217@keltia.freenix.fr> Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Any knows the correct pccard.conf entry for this card (w/o PAO) ? > It is a V90 > modem basically but with the help of some external cables and > drievr can be > turn into an ISDN adapter (I think) and maybe a GSM modem. I run > 3.3-RELEASE. The output of dumpcis looks like a "Platinum Card MC220 (Com One)" (www.com1.fr) and/or "RFI AnyCom Hot 56K" (www.rfi.de). Only the manufacturer and card version strings are different. You can get an ISDN adapter (with software for Windows 95/98/NT only) and GSM adapters for a few different mobilephones from Com1 or RFI. > I'm only interested by the modem stuff though. > > I have this in /etc/pccard.conf: > -=-=- > # Toshiba SLIMV90 > card "TOSHIBA" "SLIMV90" > config 0x22 "sio2" ? > insert echo Toshiba PCMCIA V90 modem inserted > remove echo Toshiba PCMCIA V90 modem removed The following configuration works on my IBM 570 and FreeBSD-3.3-STABLE for a Com1 modem: card "COM1 SA" "MC220 CARD" config 0x3 "sio2" 5 #config 0x1 = 0x3f8 #config 0x2 = 0x2f8 #config 0x3 = 0x3e8 #config 0x4 = 0x2e8 insert echo Com1 MC220 inserted remove echo Com1 MC220 removed > dumpcis: > -=-=- > Configuration data for card in slot 0 > Tuple #1, code = 0x1 (Common memory descriptor), length = 3 > 000: d1 00 ff > Common memory device information: > Device number 1, type Function specific, WPS = OFF > Speed = 250nS, Memory block size = 512b, 1 units > Tuple #2, code = 0x17 (Attribute memory descriptor), length = 3 > 000: 61 08 ff > Attribute memory device information: > Device number 1, type SRAM, WPS = OFF > Speed = 250nS, Memory block size = 512b, 2 units > Tuple #3, code = 0x15 (Version 1 info), length = 42 > 000: 04 01 54 4f 53 48 49 42 41 00 53 4c 49 4d 56 39 > 010: 30 00 52 45 56 23 31 20 30 00 34 54 31 32 39 30 > 020: 30 30 30 30 30 4c 58 58 00 ff > Version = 4.1, Manuf = [TOSHIBA],card vers = [SLIMV90] > Addit. info = [REV#1 0],[4T129000000LXX] [...] -- Michael Havemester To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 16: 7:39 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id CCD1214E08 for ; Wed, 27 Oct 1999 16:07:33 -0700 (PDT) (envelope-from ambrisko@whistle.com) Received: from whistle.com (crab.whistle.com [207.76.205.112]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id QAA12718; Wed, 27 Oct 1999 16:07:29 -0700 (PDT) Received: (from ambrisko@localhost) by whistle.com (8.9.1/8.9.1) id QAA28249; Wed, 27 Oct 1999 16:06:31 -0700 (PDT) (envelope-from ambrisko) From: Doug Ambrisko Message-Id: <199910272306.QAA28249@whistle.com> Subject: Patches to ata driver for PCCard To: mobile@FreeBSD.ORG, sos@freebsd.dk Date: Wed, 27 Oct 1999 16:06:31 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL29 (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 have added PCCard attachment to the new ata driver. My changes are based on Warner's changes to sio for PCCard. Removal is not supported. I have to look at that more. Here is the pccard.conf entry: card "SHUTTLE TECHNOLOGY LTD." "PCCARD-IDE/ATAPI Adapter" config 0x2 "ata2" 9 insert echo Shuttle IDE inserted remove echo Shuttle IDE removed I'm using a Microtec PCMCIA adapter, others should work. I currently have an IDE hard drive & CD-RW attached with it and there Zip drive worked http://www.microtech-pc.com/products_usb.shtml I added a "probed" field to ensure that devices were not re-probed. Please send me any comments. The following patch is based on -current. Doug A. Index: ata-all.c =================================================================== RCS file: /cvs/freebsd/src/sys/dev/ata/ata-all.c,v retrieving revision 1.28 diff -c -r1.28 ata-all.c *** ata-all.c 1999/10/16 09:00:49 1.28 --- ata-all.c 1999/10/27 22:50:59 *************** *** 70,75 **** --- 70,84 ---- #include #include + #include "card.h" + #if NCARD > 0 + /* XXX should die XXX */ + #include + #include + #include + #include + #endif + /* misc defines */ #if SMP == 0 #define isa_apic_irq(x) x *************** *** 80,85 **** --- 89,102 ---- static void ataintr(void *); static int8_t *active2str(int32_t); + #if NCARD > 0 + static int ata_pccard_attach __P((device_t dev)); + static void ata_pccard_detach __P((device_t dev)); + static int ata_pccard_probe __P((device_t dev)); + extern void ad_drvinit(void); + extern void atapi_init(void); + #endif /* NCARD > 0 */ + /* local vars */ static int32_t atanlun = 2; struct ata_softc *atadevices[MAXATA]; *************** *** 104,115 **** int32_t lun; /* Check isapnp ids */ if (ISA_PNP_PROBE(device_get_parent(dev), dev, ata_ids) == ENXIO) return (ENXIO); ! /* Allocate the port range */ rid = 0; port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 1, RF_ACTIVE); if (!port) return (ENOMEM); --- 121,134 ---- int32_t lun; /* Check isapnp ids */ + if (ISA_PNP_PROBE(device_get_parent(dev), dev, ata_ids) == ENXIO) return (ENXIO); ! /* Allocate the port range */ rid = 0; port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 1, RF_ACTIVE); + if (!port) return (ENOMEM); *************** *** 177,182 **** --- 196,285 ---- DRIVER_MODULE(ata, isa, ata_isa_driver, ata_devclass, 0, 0); #endif + #if NCARD > 0 + static int + ata_pccard_probe(dev) + device_t dev; + { + struct resource *port; + int rid; + int32_t res; + int32_t lun; + const char *name; + + name = pccard_get_name(dev); + printf("ata_pccard_probe: Does %s match?\n", name); + if (strcmp(name, "ata")) + return ENXIO; + + /* Allocate the port range */ + rid = 0; + port = bus_alloc_resource(dev, SYS_RES_IOPORT, &rid, 0, ~0, 1, RF_ACTIVE); + + if (!port) + return (ENOMEM); + + /* don't worry about conflict since PCCard code should have checked + already */ + + lun = 0; + res = ata_probe(rman_get_start(port), rman_get_start(port) + ATA_ALTPORT, + 0, dev, &lun); + + bus_release_resource(dev, SYS_RES_IOPORT, 0, port); + + if (res) { + isa_set_portsize(dev, res); + *(int *)device_get_softc(dev) = lun; + return 0; + } + return ENXIO; + } + + static int + ata_pccard_attach(dev) + device_t dev; + { + int status; + + status = ata_isaattach(dev); + if (status == 0){ + printf("ata_pccard: scan drives\n"); + ad_drvinit(); + printf("ata_pccard: scan ATAPI bus\n"); + atapi_init(); + } + return status; + } + + + static void + ata_pccard_detach(dev) + device_t dev; + { + + printf("I can't be dettached ata\n"); + } + + + static device_method_t ata_pccard_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, ata_pccard_probe), + DEVMETHOD(device_attach, ata_pccard_attach), + DEVMETHOD(device_detach, ata_pccard_detach), + + { 0, 0 } + }; + + static driver_t ata_pccard_driver = { + "ata", + ata_pccard_methods, + sizeof(int), + }; + + DRIVER_MODULE(ata, pccard, ata_pccard_driver, ata_devclass, 0, 0); + #endif (NCARD > 0) + #if NPCI > 0 static const char * ata_pcimatch(device_t dev) *************** *** 416,421 **** --- 519,525 ---- scp->lun = lun; scp->unit = *unit; scp->active = ATA_IDLE; + scp->probed = 0; if (bootverbose) printf("ata%d: iobase=0x%04x altiobase=0x%04x\n", Index: ata-all.h =================================================================== RCS file: /cvs/freebsd/src/sys/dev/ata/ata-all.h,v retrieving revision 1.12 diff -c -r1.12 ata-all.h *** ata-all.h 1999/10/09 19:57:11 1.12 --- ata-all.h 1999/10/27 22:50:59 *************** *** 159,164 **** --- 159,167 ---- #define ATA_ACTIVE_ATA 0x3 #define ATA_ACTIVE_ATAPI 0x4 #define ATA_REINITING 0x5 + int32_t probed; /* already probed */ + #define ATA_PROBE 0x1 + #define ATAPI_PROBE 0x2 TAILQ_HEAD(, ad_request) ata_queue; /* head of ATA queue */ TAILQ_HEAD(, atapi_request) atapi_queue; /* head of ATAPI queue */ Index: ata-disk.c =================================================================== RCS file: /cvs/freebsd/src/sys/dev/ata/ata-disk.c,v retrieving revision 1.32 diff -c -r1.32 ata-disk.c *** ata-disk.c 1999/10/18 17:55:38 1.32 --- ata-disk.c 1999/10/27 22:50:59 *************** *** 84,90 **** static void ad_timeout(struct ad_request *); static void ad_sleep(struct ad_softc *, int8_t *); static int8_t ad_version(u_int16_t); ! static void ad_drvinit(void); /* internal vars */ static struct intr_config_hook *ad_attach_hook; --- 84,90 ---- static void ad_timeout(struct ad_request *); static void ad_sleep(struct ad_softc *, int8_t *); static int8_t ad_version(u_int16_t); ! void ad_drvinit(void); /* internal vars */ static struct intr_config_hook *ad_attach_hook; *************** *** 140,145 **** --- 140,147 ---- /* now, run through atadevices and look for ATA disks */ for (ctlr=0; ctlrprobed & ATA_PROBE) continue; + atadevices[ctlr]->probed|=ATA_PROBE; for (dev=0; dev<2; dev++) { if (atadevices[ctlr]->devices & (dev ? ATA_ATA_SLAVE : ATA_ATA_MASTER)) { *************** *** 662,668 **** return '?'; } ! static void ad_drvinit(void) { fakewd_cdevsw = ad_cdevsw; --- 664,670 ---- return '?'; } ! void ad_drvinit(void) { fakewd_cdevsw = ad_cdevsw; Index: atapi-all.c =================================================================== RCS file: /cvs/freebsd/src/sys/dev/ata/atapi-all.c,v retrieving revision 1.19 diff -c -r1.19 atapi-all.c *** atapi-all.c 1999/10/10 18:08:38 1.19 --- atapi-all.c 1999/10/27 22:50:59 *************** *** 54,60 **** static int8_t *atapi_cmd2str(u_int8_t); static int8_t *atapi_skey2str(u_int8_t); static int32_t atapi_wait(struct atapi_softc *, u_int8_t); ! static void atapi_init(void); /* extern references */ int32_t acdattach(struct atapi_softc *); --- 54,60 ---- static int8_t *atapi_cmd2str(u_int8_t); static int8_t *atapi_skey2str(u_int8_t); static int32_t atapi_wait(struct atapi_softc *, u_int8_t); ! void atapi_init(void); /* extern references */ int32_t acdattach(struct atapi_softc *); *************** *** 111,116 **** --- 111,118 ---- /* now, run through atadevices and look for ATAPI devices */ for (ctlr=0; ctlrprobed & ATAPI_PROBE) continue; + atadevices[ctlr]->probed|=ATAPI_PROBE; for (dev=0; dev<2; dev++) { if (atadevices[ctlr]->devices & (dev ? ATA_ATAPI_SLAVE : ATA_ATAPI_MASTER)) { *************** *** 744,750 **** return -1; } ! static void atapi_init(void) { /* register callback for when interrupts are enabled */ --- 746,752 ---- return -1; } ! void atapi_init(void) { /* register callback for when interrupts are enabled */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 20:41: 3 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by hub.freebsd.org (Postfix) with ESMTP id BD6EB14D3B for ; Wed, 27 Oct 1999 20:40:53 -0700 (PDT) (envelope-from roberto@keltia.freenix.fr) Received: (from uucp@localhost) by frmug.org (8.9.3/frmug-2.5/nospam) with UUCP id FAA12100 for mobile@FreeBSD.ORG; Thu, 28 Oct 1999 05:40:52 +0200 (CEST) (envelope-from roberto@keltia.freenix.fr) Received: by keltia.freenix.fr (Postfix, from userid 101) id 41477878D; Thu, 28 Oct 1999 00:19:39 +0200 (CEST) Date: Thu, 28 Oct 1999 00:19:39 +0200 From: Ollivier Robert To: FreeBSD mobile Mailing List Subject: Re: Toshiba Modem/ISDN/GSM Message-ID: <19991028001939.A78720@keltia.freenix.fr> Mail-Followup-To: FreeBSD mobile Mailing List References: <19991027000238.A69217@keltia.freenix.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii User-Agent: Mutt/1.0pre2i In-Reply-To: X-Operating-System: FreeBSD 4.0-CURRENT/ELF AMD-K6/200 & 2x PPro/200 SMP Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org According to Michael Havemester: > The output of dumpcis looks like a "Platinum Card MC220 (Com One)" > (www.com1.fr) and/or "RFI AnyCom Hot 56K" (www.rfi.de). Only the > manufacturer and card version strings are different. I'm not surprised. > The following configuration works on my IBM 570 and FreeBSD-3.3-STABLE for a > Com1 modem: And works fine on my Sony Z505SX with the strings adapted. Thanks ! sio2: type 8250 -- Ollivier ROBERT -=- FreeBSD: The Power to Serve! -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 4.0-CURRENT #74: Thu Sep 9 00:20:51 CEST 1999 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 20:43:19 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id DF6AC14F79 for ; Wed, 27 Oct 1999 20:43:14 -0700 (PDT) (envelope-from randy@psg.com) Received: from randy by rip.psg.com with local (Exim 3.03 #1) id 11ggSv-000ASG-00 for freebsd-mobile@freebsd.org; Wed, 27 Oct 1999 20:43:05 -0700 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: FreeBSD Laptoppers Subject: fast card recommendation Message-Id: Date: Wed, 27 Oct 1999 20:43:05 -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org the netgear FA410TX seems to be the card which one can find and which pccard.conf indicates is supported by 3.3-pao. any comments or other recommendations? randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 20:53:50 1999 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 1650A14C85 for ; Wed, 27 Oct 1999 20:53:48 -0700 (PDT) (envelope-from kozowski@svjava.com) Received: (from kozowski@localhost) by schooner.svjava.com (8.9.1a/svjava.com) id UAA05830; Wed, 27 Oct 1999 20:53:43 -0700 (PDT) Date: Wed, 27 Oct 1999 20:53:43 -0700 From: Eric Kozowski To: Randy Bush Cc: FreeBSD Laptoppers Subject: Re: fast card recommendation Message-ID: <19991027205343.J3560@schooner.svjava.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Oct 27, 1999 at 08:43:05PM -0700, Randy Bush wrote: > the netgear FA410TX seems to be the card which one can find and which > pccard.conf indicates is supported by 3.3-pao. any comments or other > recommendations? i've been using the linksys etherfast 10/100 card w/ good results. it uses the ed0 driver. can't vouch for it's high speed performance, other than is does work w/ various 100baset hubs and switches. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 23:25:49 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from freebsd.dk (freebsd.dk [212.242.42.178]) by hub.freebsd.org (Postfix) with ESMTP id CBBD214E37 for ; Wed, 27 Oct 1999 23:25:45 -0700 (PDT) (envelope-from sos@freebsd.dk) Received: (from sos@localhost) by freebsd.dk (8.9.3/8.9.1) id IAA00341; Thu, 28 Oct 1999 08:25:42 +0200 (CEST) (envelope-from sos) From: Soren Schmidt Message-Id: <199910280625.IAA00341@freebsd.dk> Subject: Re: Patches to ata driver for PCCard In-Reply-To: <199910272306.QAA28249@whistle.com> from Doug Ambrisko at "Oct 27, 1999 04:06:31 pm" To: ambrisko@whistle.com (Doug Ambrisko) Date: Thu, 28 Oct 1999 08:25:42 +0200 (CEST) Cc: mobile@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (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 It seems Doug Ambrisko wrote: > I have added PCCard attachment to the new ata driver. My changes are based > on Warner's changes to sio for PCCard. Removal is not supported. I have > to look at that more. Here is the pccard.conf entry: > > card "SHUTTLE TECHNOLOGY LTD." "PCCARD-IDE/ATAPI Adapter" > config 0x2 "ata2" 9 > insert echo Shuttle IDE inserted > remove echo Shuttle IDE removed > > I'm using a Microtec PCMCIA adapter, others should work. I currently have > an IDE hard drive & CD-RW attached with it and there Zip drive worked > http://www.microtech-pc.com/products_usb.shtml > > I added a "probed" field to ensure that devices were not re-probed. > Please send me any comments. The following patch is based on -current. Hmm, I might do this differently when it gets into the ata driver, as I need semilar support for removable drives (as in disk arrays), but this needs more handholding... -Soren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Wed Oct 27 23:38:29 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from lab12.ie.pitt.edu (lab12.ie.pitt.edu [136.142.89.102]) by hub.freebsd.org (Postfix) with ESMTP id 3E01C14E44 for ; Wed, 27 Oct 1999 23:38:26 -0700 (PDT) (envelope-from grafe@lab12.ie.pitt.edu) Received: (from grafe@localhost) by lab12.ie.pitt.edu (8.8.8+Sun/8.8.8) id CAA04076; Thu, 28 Oct 1999 02:38:22 -0400 (EDT) Date: Thu, 28 Oct 1999 02:38:22 -0400 (EDT) Message-Id: <199910280638.CAA04076@lab12.ie.pitt.edu> From: grafe@lab12.ie.pitt.edu (Gary Rafe) To: colinj@cs.unm.edu Subject: Re: Q: APM suspend/resume in X11 ? Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org R>> Then when I tried a suspend/resume cycle from an X11 desktop subsequently, R>> the LCD failed to come on properly, showing instead a somewhat R>> disturbing random pattern of blotching; R>> toggling FnF5 didn't help -- a hard reset was necessary. R>> R>I don't have an answer for this, I wish I did. I see the same behavior R>on my Dell Lattitude. My solution so far has been to switch to a non-X11 R>virtual terminal and then suspend the machine. It appears that this has been documented a bit in the Linux camp; I've adapted my suspend_system script, which is exec'ed by the window manager, to "vidcontrol -s 1" just prior to "apm -z" if the X server is running. Then, when the system is comes back from the suspend, we sleep for a short bit before we "vidcontrol -s" back to the virtual terminal running the X server. Now to get working audio (in the kernel) for this ESS1978 chip; the OSS module works the mixer properly, but produces noise when data is passed into /dev/audio. --Gary To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 28 5:45:49 1999 Delivered-To: freebsd-mobile@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 608) id BE38E14C4C; Thu, 28 Oct 1999 05:45:48 -0700 (PDT) From: "Jonathan M. Bresler" To: eric@haydenisland.verio.net Cc: randy@psg.com, freebsd-mobile@FreeBSD.ORG In-reply-to: <19991027205343.J3560@schooner.svjava.com> (message from Eric Kozowski on Wed, 27 Oct 1999 20:53:43 -0700) Subject: Re: fast card recommendation Message-Id: <19991028124548.BE38E14C4C@hub.freebsd.org> Date: Thu, 28 Oct 1999 05:45:48 -0700 (PDT) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org the linksys 10/100 is not high performance....best i have seen is ~1.2Mbps. the card is pccard (nee pcmcia) which is a 16 bit interface, this may account for some of the slowness. i have not used any other 100baset pccards under FreeBSD so i can report any comparsion numbers. ;( jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Thu Oct 28 14:14:16 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from mailhost.iprg.nokia.com (mailhost.iprg.nokia.com [205.226.5.12]) by hub.freebsd.org (Postfix) with ESMTP id D26F914C25 for ; Thu, 28 Oct 1999 14:14:12 -0700 (PDT) (envelope-from dshah@iprg.nokia.com) Received: from iprg.nokia.com (shah.iprg.nokia.com [205.226.1.174]) by mailhost.iprg.nokia.com (8.8.8/8.6.10) with ESMTP id OAA25468 for ; Thu, 28 Oct 1999 14:14:11 -0700 (PDT) Message-ID: <3818BCA3.AFAFCB25@iprg.nokia.com> Date: Thu, 28 Oct 1999 14:14:11 -0700 From: Dhaval Shah X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.6-RELEASE i386) MIME-Version: 1.0 To: freebsd-mobile@FreeBSD.ORG Subject: Making a Toshiba Tecra dual boot 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 have Toshiba Tecra 8000 series laptop which has Windows 98 preinstalled. I partitioned the disk sucessfully using FIPS and inslatted FreeBSD 2.2.6 from CD-ROM sucessfully. Only after doing so I realised or came across the PAO package on FreeBSD.org. The website is pretty instructive for 3.3 release but it only mentions abotu a PAO ready bootfloppy for 2.2.6 release. Does this mean I have to CVSup the latest PAO source from the ftp site, build it localy on some other machine, prepare the PAO floppies localy for 2.2.6 release and re-install freebsd in its entirety using the bootfloopy already available from the website?? If anyone knows the answer or have came across (which I am sure many of you), please let me know what needs to be done. As a side info, the laptop is a DHCP client of our corporate network and runs perfectly fine when booted from DOS and I would like it to do the same when running FreeBSD. thanks Dhaval. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 0:26:55 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 46DB514FDE; Fri, 29 Oct 1999 00:26:53 -0700 (PDT) (envelope-from randy@psg.com) Received: from randy by rip.psg.com with local (Exim 3.03 #1) id 11h6R2-0001HR-00; Fri, 29 Oct 1999 00:26:52 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit From: Randy Bush To: "Jonathan M. Bresler" Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: fast card recommendation References: <19991027205343.J3560@schooner.svjava.com> <19991028124548.BE38E14C4C@hub.freebsd.org> Message-Id: Date: Fri, 29 Oct 1999 00:26:52 -0700 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > the linksys 10/100 is not high performance....best i have seen is > ~1.2Mbps. suckarama. 4baseT, eh? what currently available card performs reasonable, understanding this is a pcmica card? randy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 8:26:50 1999 Delivered-To: freebsd-mobile@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 608) id D0C851508C; Fri, 29 Oct 1999 08:26:48 -0700 (PDT) From: "Jonathan M. Bresler" To: rbush@bainbridge.verio.net Cc: freebsd-mobile@FreeBSD.ORG In-reply-to: (message from Randy Bush on Fri, 29 Oct 1999 00:26:52 -0700) Subject: Re: fast card recommendation Message-Id: <19991029152648.D0C851508C@hub.freebsd.org> Date: Fri, 29 Oct 1999 08:26:48 -0700 (PDT) Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > the linksys 10/100 is not high performance....best i have seen is > > ~1.2Mbps. > > suckarama. 4baseT, eh? tis about a 12BaseT. most importantly it gets me onto both 10 and 100BaseT networks. > > what currently available card performs reasonable, understanding this is a > pcmica card? dont know. i was hoping that others would chime in. i believe that the pcmcia interfacve will be a considerable bootleneck. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 8:36:50 1999 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 E603514DCB for ; Fri, 29 Oct 1999 08:36:37 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 11hE4y-0001So-00 for freebsd-mobile@FreeBSD.ORG; Fri, 29 Oct 1999 11:36:36 -0400 Date: Fri, 29 Oct 1999 11:36:35 -0400 From: Peter Radcliffe To: freebsd-mobile@FreeBSD.ORG Subject: Re: fast card recommendation Message-ID: <19991029113635.A5047@pir.net> Mail-Followup-To: freebsd-mobile@FreeBSD.ORG References: <19991029152648.D0C851508C@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <19991029152648.D0C851508C@hub.freebsd.org> X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Jonathan M. Bresler" probably said: > tis about a 12BaseT. most importantly it gets me onto both 10 > and 100BaseT networks. This is the only reason to buy a 10/100 pcmcia card (and why I did). > dont know. i was hoping that others would chime in. i > believe that the pcmcia interfacve will be a considerable > bootleneck. You won't get decent performace out of a pcmica 100bT card. This is why my 10/100 cards for desktop boxes are pci not isa. 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 Fri Oct 29 8:47:37 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from defiant.quansoo.com (defiant.quansoo.com [63.66.225.90]) by hub.freebsd.org (Postfix) with ESMTP id 97260152E5; Fri, 29 Oct 1999 08:47:30 -0700 (PDT) (envelope-from cgriffiths@quansoo.com) Received: from localhost (cgriffiths@localhost) by defiant.quansoo.com (8.9.3/8.9.3) with ESMTP id LAA01843; Fri, 29 Oct 1999 11:47:32 -0400 (EDT) (envelope-from cgriffiths@quansoo.com) X-Authentication-Warning: defiant.quansoo.com: cgriffiths owned process doing -bs Date: Fri, 29 Oct 1999 11:47:32 -0400 (EDT) From: "Christopher T. Griffiths" To: "Jonathan M. Bresler" Cc: rbush@bainbridge.verio.net, freebsd-mobile@FreeBSD.ORG Subject: Re: fast card recommendation In-Reply-To: <19991029152648.D0C851508C@hub.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 I am currently using the zircom 10/100 lan card and I get terrific response both on 10 and 100 mb lans. Have not really tracked speeds but I get great download times on our network. Thanks Chris On Fri, 29 Oct 1999, Jonathan M. Bresler wrote: > > > > > the linksys 10/100 is not high performance....best i have seen is > > > ~1.2Mbps. > > > > suckarama. 4baseT, eh? > > tis about a 12BaseT. most importantly it gets me onto both 10 > and 100BaseT networks. > > > > > what currently available card performs reasonable, understanding this is a > > pcmica card? > > dont know. i was hoping that others would chime in. i > believe that the pcmcia interfacve will be a considerable > bootleneck. > > > jmb > > > 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 Oct 29 9:15:15 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from nosloop.COM (adsl-63-193-249-177.dsl.snfc21.pacbell.net [63.193.249.177]) by hub.freebsd.org (Postfix) with ESMTP id 83589152D8 for ; Fri, 29 Oct 1999 09:15:07 -0700 (PDT) (envelope-from woody@nosloop.com) Received: from nosloop.com (ppp-207-214-148-251.snrf01.pacbell.net [207.214.148.251]) by nosloop.COM (8.9.3/8.8.8) with ESMTP id JAA01530 for ; Fri, 29 Oct 1999 09:15:08 -0700 (PDT) (envelope-from woody@nosloop.com) Message-ID: <3819C808.3C40A089@nosloop.com> Date: Fri, 29 Oct 1999 09:15:04 -0700 From: Woody Poolson X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.3-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-mobile@FreeBSD.ORG Subject: Re: fast card recommendation References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I am currently using the zircom 10/100 lan card and I get terrific > response both on 10 and 100 mb lans. Have not really tracked speeds but I > get great download times on our network. I have a Xircom Realport 56K 10/100 combo card (no dongles to deal with) and would love to use it on my Sony VAIO running 3.3.3-RELEASE. What driver should I use and can anyone help with syntax for the pccard.conf? I have seen that it uses the "tulip" drivers on LINUX. It shows up under Windows initially as a DEC 21140 chipset. Thanks, Woody Poolson To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 9:42:53 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from lab12.ie.pitt.edu (lab12.ie.pitt.edu [136.142.89.102]) by hub.freebsd.org (Postfix) with ESMTP id E51B5150BE for ; Fri, 29 Oct 1999 09:42:38 -0700 (PDT) (envelope-from grafe@lab12.ie.pitt.edu) Received: (from grafe@localhost) by lab12.ie.pitt.edu (8.8.8+Sun/8.8.8) id MAA22369 for freebsd-mobile@freebsd.org; Fri, 29 Oct 1999 12:42:30 -0400 (EDT) Date: Fri, 29 Oct 1999 12:42:30 -0400 (EDT) Message-Id: <199910291642.MAA22369@lab12.ie.pitt.edu> From: grafe@lab12.ie.pitt.edu (Gary Rafe) To: freebsd-mobile@freebsd.org Subject: Trouble: suspend/resume on Toshiba 4030CDT w/3.3R Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I continue to be troubled with APM suspend/resume failures on my (new) Toshiba 4030CDT running 3.3-RELEASE. This 4030CDT has the most current BIOS (7.60). The kernel compiled with APM_DEBUG spends quite a bit of time reporting POWERCHANGE events (every 10-15 seconds, or so), but looks normal, otherwise. Apart from this problem and the (current) lack of support for the sound chip, FBSD 3.3-R seems to work very well on this notebook. Suggestions and/or advise from the APM maintainers will be appreciated greatly ! Gary gerst4@pitt.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 12: 5:57 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from lab12.ie.pitt.edu (lab12.ie.pitt.edu [136.142.89.102]) by hub.freebsd.org (Postfix) with ESMTP id A2A2D1555C for ; Fri, 29 Oct 1999 12:05:43 -0700 (PDT) (envelope-from grafe@lab12.ie.pitt.edu) Received: (from grafe@localhost) by lab12.ie.pitt.edu (8.8.8+Sun/8.8.8) id PAA23544; Fri, 29 Oct 1999 15:05:40 -0400 (EDT) Date: Fri, 29 Oct 1999 15:05:40 -0400 (EDT) Message-Id: <199910291905.PAA23544@lab12.ie.pitt.edu> From: grafe@lab12.ie.pitt.edu (Gary Rafe) To: jrh@vicor-nb.com Subject: Re: Trouble: suspend/resume on Toshiba 4030CDT w/3.3R Cc: freebsd-mobile@freebsd.org Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org R>I probably should have tracked this a little closer, but which X R>server are you using? The resume seems to always fail (hang) when the virtual terminal running the X11 server (XF86_SVGA-3.3.5) is "active" at the suspend event. I now switch to the 1st virtual console (vidcontrol -s 1) just prior to suspending (apm -z). In this case, resuming via the power switch does work, but fails (requiring a hard reset) more often than it succeeds. The same behavior is experienced when no X server is running (i.e., "apm -z" is issued at a virtual console prompt). Gary gerst4+@pitt.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Fri Oct 29 18:50:46 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from hh.alink.net (hh.alink.net [207.135.127.85]) by hub.freebsd.org (Postfix) with ESMTP id 6A0E014CA8 for ; Fri, 29 Oct 1999 18:50:32 -0700 (PDT) (envelope-from mab@zildjian.hq.alink.net) Received: from zildjian.hq.alink.net (lc.alink.net [207.135.127.87]) by hh.alink.net (8.9.3/8.9.3) with ESMTP id SAA01065; Fri, 29 Oct 1999 18:50:28 -0700 (PDT) Received: (from mab@localhost) by zildjian.hq.alink.net (8.9.3/8.9.3) id SAA00984; Fri, 29 Oct 1999 18:50:28 -0700 (PDT) (envelope-from mab) From: Matt Braithwaite Reply-To: matt@braithwaite.net X-Attribution: mab X-Face: @fge8WW'#w^hZghU$,3gfTP2@56+jGR+wSn|.Ddh,5d6qi")q;sCrYh[W;z-]Q0avfG):{3&hq61!)x&&PUrp%upUD9v9bB2_bw-"0v(87+A`?=1+P`# To: freebsd-mobile@FreeBSD.ORG Subject: Re: Adaptec 1460C and 3.3-STABLE support yet? References: <199910230129.KAA00552@nwsl.mesh.ad.jp> Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII Date: 29 Oct 1999 18:50:28 -0700 In-Reply-To: NAKAGAWA Yoshihisa's message of "Sat, 23 Oct 1999 10:29:46 +0900" Message-ID: <86k8o5ipln.fsf@zildjian.hq.alink.net> Lines: 18 X-Mailer: Gnus v5.6.45/XEmacs 21.1 - "Big Bend" Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well, an `aic0' configuration made it into pccard.conf.sample at $FreeBSD: src/etc/pccard.conf.sample,v 1.24.2.14 1999/10/26 04:53:28 kuriyama Exp $ but it doesn't look as though aic.c has been modified for PC-card attachment. Was the change to pccard.conf.sample just a ``leak'' from PAO work or something? Basically, I'm just wondering if the change means aic is supposed to work under pccardd yet, or not. For me, it doesn't yet. If I have the card in at boot time it's recognized, but it seems to hang up when the kernel recognizes it. -- ``Suppose you tell me when you first began to hate the telephone.'' ---Ray Bradbury, ``The Murderer'' ``Your ticket is being printed. Please take your ticket and keep it with you ... '' ---a machine on the San Francisco Municipal Railway To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 12:54:13 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from mail2.svr.pol.co.uk (mail2.svr.pol.co.uk [195.92.193.210]) by hub.freebsd.org (Postfix) with ESMTP id 772F714BF1; Sat, 30 Oct 1999 12:54:03 -0700 (PDT) (envelope-from s.mitchell@computer.org) Received: from modem-254.blue-spotted-stingray.dialup.pol.co.uk ([62.136.238.254] helo=lungfish.freeserve.co.uk) by mail2.svr.pol.co.uk with esmtp (Exim 2.12 #2) id 11heZY-0004pB-00; Sat, 30 Oct 1999 20:53:57 +0100 Received: (from scott@localhost) by lungfish.freeserve.co.uk (8.8.8/8.8.8) id XAA01816; Thu, 28 Oct 1999 23:01:38 +0100 (BST) (envelope-from scott) Message-ID: <19991028230137.39293@lungfish.freeserve.co.uk> Date: Thu, 28 Oct 1999 23:01:37 +0100 From: Scott Mitchell To: "Jonathan M. Bresler" , eric@haydenisland.verio.net Cc: randy@psg.com, freebsd-mobile@FreeBSD.ORG Subject: Re: fast card recommendation References: <19991027205343.J3560@schooner.svjava.com> <19991028124548.BE38E14C4C@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <19991028124548.BE38E14C4C@hub.freebsd.org>; from Jonathan M. Bresler on Thu, Oct 28, 1999 at 05:45:48AM -0700 X-Operating-System: FreeBSD 2.2.6-RELEASE i386 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Oct 28, 1999 at 05:45:48AM -0700, Jonathan M. Bresler wrote: > > the linksys 10/100 is not high performance....best i have seen is > ~1.2Mbps. the card is pccard (nee pcmcia) which is a 16 bit > interface, this may account for some of the slowness. i have not used > any other 100baset pccards under FreeBSD so i can report any > comparsion numbers. ;( Assuming you meant 1.2MB/s up there, that's about what we can get out of the Xircom 10/100 cards as well... I think you're just running into a limit of how fast you can suck bytes across the pccard bus. The only advantage of these cards, really, is that you can connect to a 100Mbit-only network, should you come across such a beast. The 20% speed boost is just a bonus :-) 3Com make a 10/100 card as well...anyone got any numbers for that? Scott -- =========================================================================== Scott Mitchell | PGP Key ID | "Eagles may soar, but weasels Cambridge, England | 0x54B171B9 | don't get sucked into jet engines" s.mitchell@computer.org | 0xAA775B8B | -- Anon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 13:22:20 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp13.bellglobal.com (smtp13.bellglobal.com [204.101.251.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DED514C2C for ; Sat, 30 Oct 1999 13:22:16 -0700 (PDT) (envelope-from bigmike@Mlink.NET) Received: from Mlink.NET (HSE-MTL-ppp4699.qc.sympatico.ca [209.226.107.136]) by smtp13.bellglobal.com (8.8.5/8.8.5) with ESMTP id QAA03173 for ; Sat, 30 Oct 1999 16:24:22 -0400 (EDT) Message-ID: <381B537C.A01A3AB8@Mlink.NET> Date: Sat, 30 Oct 1999 16:22:20 -0400 From: Mike Reply-To: bigmike@Mlink.NET X-Mailer: Mozilla 4.51 [en] (Win98; U) X-Accept-Language: en,en-GB,en-US,fr,fr-BE,fr-CA,fr-FR,fr-CH,pt,pt-BR,es MIME-Version: 1.0 To: freebsd-mobile@FreeBSD.ORG Subject: Ethernet pccard config problem 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 just got a laptop from work and since I was using FreeBSD on my desktop I'd also like to use it on my laptop. The laptop itself is a Compaq Armada 1598DMT and I am using a Kingston EtheRX IC PCCard model KNE-PC2BT, Normally the KNE-PC2 driver should work fine with this card. The laptop uses the Texas Instruments PCI-1131 CardBus Controller and is on IRQ 11. what I did is that I installed FreeBSD 3.3Release by downloading all the sources with windows, then installed from that partition. I also downloaded the PAO3-19991011.tar.gz file to be able to configure the pccard. I followed all the instructions in the readme and the readme.install files, I recompiled my kernel accordingly and checked the /etc/rc.conf to make sure all is right. now when I boot I get the following message: pccardd[55]: No card in database for "(null)"("(null)") [(null)] [(null)] Now i have checked my kernel config file and the appropriate flag has been set as folows: device pcic0 at isa? port 0x3e0 flags 0x1 irq 11 COuld someone give me hand with this ? as I would like to have my laptop ready for monday if possible? or else I'd have to use linux instead or even windows . Thanks Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 13:27:32 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from nosloop.COM (adsl-63-193-249-177.dsl.snfc21.pacbell.net [63.193.249.177]) by hub.freebsd.org (Postfix) with ESMTP id EF50C14D1D for ; Sat, 30 Oct 1999 13:27:25 -0700 (PDT) (envelope-from woody@nosloop.com) Received: from nosloop.com (poolson.nosloop.com [192.168.1.14]) by nosloop.COM (8.9.3/8.8.8) with ESMTP id NAA05129; Sat, 30 Oct 1999 13:27:23 -0700 (PDT) (envelope-from woody@nosloop.com) Message-ID: <381B54B0.5505249A@nosloop.com> Date: Sat, 30 Oct 1999 13:27:28 -0700 From: Woody Poolson X-Mailer: Mozilla 4.7 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: bigmike@Mlink.NET Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Ethernet pccard config problem References: <381B537C.A01A3AB8@Mlink.NET> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > now when I boot I get the following message: > > pccardd[55]: No card in database for "(null)"("(null)") [(null)] > [(null)] > > Now i have checked my kernel config file and the appropriate flag has > been set as folows: > device pcic0 at isa? port 0x3e0 flags 0x1 irq 11 I had this problem with a 3Com card. Basically, in my case, the card was dead! I had only inserted it 4 times since purchasing it. I verified it was dead with Win98 to see if it recognized it--it didnt. It said the same thing... Verify it on another laptop if possible. Sorry if bad news... 3Com had a pretty good RMA policy. Woody To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 13:29: 6 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id D2C9614D6D for ; Sat, 30 Oct 1999 13:29:02 -0700 (PDT) (envelope-from bigmike@Mlink.net) Received: from jedi (HSE-MTL-ppp4699.qc.sympatico.ca [209.226.107.136]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id QAA22645; Sat, 30 Oct 1999 16:33:01 -0400 (EDT) Message-ID: <002601bf2315$6926d060$886be2d1@bellglobal.com> From: "Mike" To: "Woody Poolson" Cc: References: <381B537C.A01A3AB8@Mlink.NET> <381B54B0.5505249A@nosloop.com> Subject: Re: Ethernet pccard config problem Date: Sat, 30 Oct 1999 16:29:04 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Well mine is tested on windows .. I downloaded the freebsd sources with it .. Mike > > now when I boot I get the following message: > > > > pccardd[55]: No card in database for "(null)"("(null)") [(null)] > > [(null)] > > > > Now i have checked my kernel config file and the appropriate flag has > > been set as folows: > > device pcic0 at isa? port 0x3e0 flags 0x1 irq 11 > > I had this problem with a 3Com card. Basically, in my case, the card > was dead! I had only inserted it 4 times since purchasing it. I > verified it was dead with Win98 to see if it recognized it--it didnt. > It said the same thing... > > Verify it on another laptop if possible. > > Sorry if bad news... 3Com had a pretty good RMA policy. > > Woody > > > 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 Sat Oct 30 13:59:52 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from orthanc.ab.ca (207-167-15-66.dsl.worldgate.ca [207.167.15.66]) by hub.freebsd.org (Postfix) with ESMTP id 9E31715022 for ; Sat, 30 Oct 1999 13:59:48 -0700 (PDT) (envelope-from lyndon@orthanc.ab.ca) Received: from orthanc.ab.ca (localhost.orthanc.ab.ca [127.0.0.1]) by orthanc.ab.ca (8.10.0.Beta6/8.10.0.Beta6) with ESMTP id d9UKxjC41594; Sat, 30 Oct 1999 14:59:45 -0600 (MDT) Message-Id: <199910302059.d9UKxjC41594@orthanc.ab.ca> To: bigmike@Mlink.NET Cc: freebsd-mobile@FreeBSD.ORG Subject: Re: Ethernet pccard config problem In-reply-to: Your message of "Sat, 30 Oct 1999 16:22:20 EDT." <381B537C.A01A3AB8@Mlink.NET> Date: Sat, 30 Oct 1999 14:59:45 -0600 From: Lyndon Nerenberg Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Make sure you copy /etc/pccard.conf.sample on top of your existing /etc/pccard.conf. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 14:10:38 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id 0A62E1516B for ; Sat, 30 Oct 1999 14:10:34 -0700 (PDT) (envelope-from bigmike@Mlink.net) Received: from jedi (HSE-MTL-ppp4699.qc.sympatico.ca [209.226.107.136]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id RAA03684; Sat, 30 Oct 1999 17:14:28 -0400 (EDT) Message-ID: <003a01bf231b$33e50740$886be2d1@bellglobal.com> From: "Mike" To: "Lyndon Nerenberg" Cc: References: <199910302059.d9UKxjC41594@orthanc.ab.ca> Subject: Re: Ethernet pccard config problem Date: Sat, 30 Oct 1999 17:10:32 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="x-user-defined" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org That didn't solve it ... I overited pccard.conf with pccard.conf.sample and rebooted .. still same message saying no card in database for null null ... Mike > Make sure you copy /etc/pccard.conf.sample on top of your existing > /etc/pccard.conf. > > > 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 Sat Oct 30 14:26:37 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from kiwi.mail.easynet.net (kiwi.mail.easynet.net [195.40.1.40]) by hub.freebsd.org (Postfix) with ESMTP id AE2261517C for ; Sat, 30 Oct 1999 14:26:29 -0700 (PDT) (envelope-from ak@freenet.co.uk) Received: from freenet.co.uk (alister.w.easynet.co.uk [212.212.251.86]) by kiwi.mail.easynet.net (Postfix) with ESMTP id 2B7FFDB3B2; Sat, 30 Oct 1999 22:26:27 +0100 (BST) Message-ID: <381B72B7.85E1102B@freenet.co.uk> Date: Sat, 30 Oct 1999 22:35:36 +0000 From: Alex X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: bigmike@Mlink.NET, mobile@freebsd.org Subject: Re: Ethernet pccard config problem References: <381B537C.A01A3AB8@Mlink.NET> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike wrote: > > now when I boot I get the following message: > > pccardd[55]: No card in database for "(null)"("(null)") [(null)] > [(null)] man pccard.conf It seems that the default pccard.conf doesn't have an entry for your card. Therefore, you will have to: 1) Run "pccardc dumpcis" to find out what the card calls itself. 2) This is important - find the right driver for it! I'm not sure which one it is - or whether it's even supported. If you're lucky, ed0 might recognise it as a generic NE2000. 3) Compile the driver into the kernel - that is device ed0 at isa? port 0x280 irq 11 iomem 0xd8000 (use the correct values for port, irq and iomem for your card - obviously!) 4) Add the relevant entry to /etc/pccard.conf (including irq, port and iomem). 5) Plug and pray. Alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 14:36:18 1999 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 BD5DE151B6 for ; Sat, 30 Oct 1999 14:35:12 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 11hg9X-0001kz-00 for mobile@freebsd.org; Sat, 30 Oct 1999 17:35:11 -0400 Date: Sat, 30 Oct 1999 17:35:10 -0400 From: Peter Radcliffe To: mobile@freebsd.org Subject: Re: Ethernet pccard config problem Message-ID: <19991030173510.C1518@pir.net> Mail-Followup-To: mobile@freebsd.org References: <381B537C.A01A3AB8@Mlink.NET> <381B72B7.85E1102B@freenet.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <381B72B7.85E1102B@freenet.co.uk> X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alex probably said: > Mike wrote: > > pccardd[55]: No card in database for "(null)"("(null)") [(null)] > > [(null)] > It seems that the default pccard.conf doesn't have an entry for your > card. Therefore, you will have to: Er, no. This message means it can't get any information from the card. "(null)" is hardly a card name it can't find. It's possible that pccardd isn't set up properly (if it doesn't work for any cards), the pmcica controller isn't supported or that the card is cardbus, dead or otherwise unsupported. Is the card in question in PAO's supported list ? 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 Sat Oct 30 14:45:36 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id 56BF014C2F for ; Sat, 30 Oct 1999 14:45:33 -0700 (PDT) (envelope-from bigmike@Mlink.net) Received: from jedi (HSE-MTL-ppp4699.qc.sympatico.ca [209.226.107.136]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id RAA12340; Sat, 30 Oct 1999 17:49:27 -0400 (EDT) Message-ID: <008c01bf2320$1746ba20$886be2d1@bellglobal.com> From: "Mike" To: "Peter Radcliffe" , References: <381B537C.A01A3AB8@Mlink.NET> <381B72B7.85E1102B@freenet.co.uk> <19991030173510.C1518@pir.net> Subject: Re: Ethernet pccard config problem Date: Sat, 30 Oct 1999 17:45:31 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My card is supported it's a Kingston KNE-PC2 and my laptop uses a cardbus controller ... Mike > Alex probably said: > > Mike wrote: > > > pccardd[55]: No card in database for "(null)"("(null)") [(null)] > > > [(null)] > > > It seems that the default pccard.conf doesn't have an entry for your > > card. Therefore, you will have to: > > Er, no. This message means it can't get any information from the card. > "(null)" is hardly a card name it can't find. > > It's possible that pccardd isn't set up properly (if it doesn't work > for any cards), the pmcica controller isn't supported or that the card > is cardbus, dead or otherwise unsupported. > > Is the card in question in PAO's supported list ? > > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 15: 0:10 1999 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 9CC7814C2F for ; Sat, 30 Oct 1999 15:00:07 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 11hgXe-0001rc-00 for mobile@FreeBSD.ORG; Sat, 30 Oct 1999 18:00:06 -0400 Date: Sat, 30 Oct 1999 18:00:06 -0400 From: Peter Radcliffe To: mobile@FreeBSD.ORG Subject: Re: Ethernet pccard config problem Message-ID: <19991030180005.D1518@pir.net> Mail-Followup-To: mobile@FreeBSD.ORG References: <381B537C.A01A3AB8@Mlink.NET> <381B72B7.85E1102B@freenet.co.uk> <19991030173510.C1518@pir.net> <008c01bf2320$1746ba20$886be2d1@bellglobal.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <008c01bf2320$1746ba20$886be2d1@bellglobal.com> X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Please don't Cc: me on list mail. Mike probably said: > My card is supported it's a Kingston KNE-PC2 > and my laptop uses a cardbus controller ... Cardbus is not supported yet. Many cardbus controllers work in pcmcia compatability mode, though. You didn't answer the question of have you had any cards working with the laptop yet ? My guess would be that the irq or memory range you've assigned the pcmica controller is wrong. 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 Sat Oct 30 15: 4:48 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from smtp11.bellglobal.com (smtp11.bellglobal.com [204.101.251.53]) by hub.freebsd.org (Postfix) with ESMTP id 4421615186 for ; Sat, 30 Oct 1999 15:04:44 -0700 (PDT) (envelope-from bigmike@Mlink.net) Received: from jedi (HSE-MTL-ppp4699.qc.sympatico.ca [209.226.107.136]) by smtp11.bellglobal.com (8.8.5/8.8.5) with ESMTP id SAA17335 for ; Sat, 30 Oct 1999 18:08:45 -0400 (EDT) Message-ID: <009d01bf2322$c96d31a0$886be2d1@bellglobal.com> From: "Mike" To: References: <381B537C.A01A3AB8@Mlink.NET> <381B72B7.85E1102B@freenet.co.uk> <19991030173510.C1518@pir.net> <008c01bf2320$1746ba20$886be2d1@bellglobal.com> <19991030180005.D1518@pir.net> Subject: Re: Ethernet pccard config problem Date: Sat, 30 Oct 1999 18:04:50 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2014.211 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2014.211 Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org well my ethernet card work in windows98, But in freebsd it's the only card I've tried so far ... how do I find out if I'm using the right irq and menory range ? > Please don't Cc: me on list mail. > > Mike probably said: > > My card is supported it's a Kingston KNE-PC2 > > and my laptop uses a cardbus controller ... > > Cardbus is not supported yet. > Many cardbus controllers work in pcmcia compatability mode, though. > > You didn't answer the question of have you had any cards working with > the laptop yet ? > > My guess would be that the irq or memory range you've assigned the > pcmica controller is wrong. > > 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message From owner-freebsd-mobile Sat Oct 30 15:23:42 1999 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 8070814CA2 for ; Sat, 30 Oct 1999 15:23:39 -0700 (PDT) (envelope-from pir@pir.net) Received: from pir by moek.pir.net with local (Exim) id 11hguQ-0001zU-00 for mobile@FreeBSD.ORG; Sat, 30 Oct 1999 18:23:38 -0400 Date: Sat, 30 Oct 1999 18:23:38 -0400 From: Peter Radcliffe To: mobile@FreeBSD.ORG Subject: Re: Ethernet pccard config problem Message-ID: <19991030182337.E1518@pir.net> Mail-Followup-To: mobile@FreeBSD.ORG References: <381B537C.A01A3AB8@Mlink.NET> <381B72B7.85E1102B@freenet.co.uk> <19991030173510.C1518@pir.net> <008c01bf2320$1746ba20$886be2d1@bellglobal.com> <19991030180005.D1518@pir.net> <009d01bf2322$c96d31a0$886be2d1@bellglobal.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <009d01bf2322$c96d31a0$886be2d1@bellglobal.com> X-fish: < Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Mike probably said: > well my ethernet card work in windows98, But in freebsd it's the only card > I've tried so far ... > how do I find out if I'm using the right irq and menory range ? Unless someone on thelist has an identical laptop, two places to change things; the kernel config for pcic0 (can be changed at boot time, too) and in pccardd.conf. My sony will only work at 0xd4000 and irq 10. Try the possible combinations intil it works ... 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 Sat Oct 30 17:11:39 1999 Delivered-To: freebsd-mobile@freebsd.org Received: from nothing-going-on.demon.co.uk (nothing-going-on.demon.co.uk [193.237.89.66]) by hub.freebsd.org (Postfix) with ESMTP id 37AC41505E for ; Sat, 30 Oct 1999 17:11:08 -0700 (PDT) (envelope-from nik@nothing-going-on.demon.co.uk) Received: (from nik@localhost) by nothing-going-on.demon.co.uk (8.9.3/8.9.3) id BAA75337 for mobile@freebsd.org; Sun, 31 Oct 1999 01:09:36 +0100 (BST) (envelope-from nik) Date: Sun, 31 Oct 1999 01:09:36 +0100 From: Nik Clayton To: mobile@freebsd.org Subject: apm -r fails on VAIO F270 Message-ID: <19991031010936.A74856@catkin.nothing-going-on.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i Organization: FreeBSD Project Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks, Has anyone had any luck with "apm -r " on a VAIO F270? I just tried # apm -r 10; zzz which suspended the machine (I assume in the same way that Fn+Esc suspends it). It resumed after 10 seconds, as it should have done, the screen came back to the X session, but it had locked solid. No mouse cursor, no response from the Caps/Num Lock LEDs, no results when I tried to move back to a different virtual terminal, and I couldn't ping the machine. N To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message