From owner-freebsd-hardware Sun Feb 14 01:35:10 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA07384 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 01:35:10 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA07367; Sun, 14 Feb 1999 01:35:07 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id KAA00939; Sun, 14 Feb 1999 10:34:52 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id JAA00576; Sun, 14 Feb 1999 09:58:45 +0100 (CET) (envelope-from son) Message-ID: <19990214095845.56909@breizh.prism.uvsq.fr> Date: Sun, 14 Feb 1999 09:58:45 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990213190131.10349@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sat, Feb 13, 1999 at 05:22:00PM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: > >On Sat, 13 Feb 1999, Nicolas Souchu wrote: > >> Hi folks, >> >> I've just committed the alpm(4) driver to -current: the Aladdin SMBus >> driver. > >Great, my newest mobo is an AcerLabs. > >> >> With an onboard system management chip (lm7x or w87381), >> it offers monitoring capabilities to recent Acer based motherboards like >> the ASUS P5AB. > >I'm using a matsonic. > >> >> Example program to fetch temperature or voltages is available at >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ >> There's also an example program to fetch SDRAM info over the smbus. I attach you the detect.c program. It's very simple and may help us in knowing what I2C hardware you have on your mobo. > >I tried them, and there's the problem: all the ioctl()s they perform return >EINTR! Has this driver been tested on many motherboards? Why should I expect >an EINTR? Just wondering :) EINTR is odd. It just mean that the device at the address requested on the I2C bus do not respond. I have to translate SMBus errors to the appropriate unix ones. > > >> >> You may also want to know what smbus(4) is: >> http://www.freebsd.org/~nsouch/iicbus.html >> >> Feedbacks are wellcome. >> >> Nicholas. >> >> PS: A driver is also available for the Intel PIIX4, see intpm(4). >> >> -- >> nsouch@teaser.fr / nsouch@freebsd.org >> FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-current" in the body of the message >> > > Brian Feldman _ __ ___ ___ ___ > green@unixhelp.org _ __ ___ | _ ) __| \ > http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | > FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ > > -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 04:26:12 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA23806 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 04:26:12 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from goliath.camtech.net.au (goliath.camtech.net.au [203.5.73.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA23791; Sun, 14 Feb 1999 04:26:05 -0800 (PST) (envelope-from matt@camtech.com.au) Received: from dialup-ad-12-65.camtech.net.au (dialup-ad-12-65.camtech.net.au [203.55.242.65]) by goliath.camtech.net.au (8.8.5/8.8.2) with ESMTP id WAA27819; Sun, 14 Feb 1999 22:54:21 +1030 (CST) Date: Sun, 14 Feb 1999 22:56:04 +1030 (CST) From: Matthew Thyer X-Sender: matt@localhost Reply-To: thyerm@camtech.com.au To: Nicolas Souchu cc: Brian Feldman , hardware@FreeBSD.ORG, current@FreeBSD.ORG, takawata@shidahara1.planet.sci.kobe-u.ac.jp Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214095845.56909@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had the same problem with a non Aladin system. I believe the problem is that Takanori's examples no longer work since changes were made to pcisupport.c. Why do I say this ? Because Takanori said so in email to me. I dont understand how it all works but if I show you Takanori's comments maybe you guys will. START Takanori's comments =========================================== Commited code on pcisupport.c from 1.88 to 1.89 will break it. If "intpm.h" is not included,chipset probe code is used instead of the driver probe code. P.S I have forgotten to enclose unused variable in #undef ENABLE_ALART with #ifdef ENABLE_ALART - #endif ,so the variable may deleted when it was commited. And currently ENABLE_ALART code will not work properly. END Takanori's comments ============================================== On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: > > > >On Sat, 13 Feb 1999, Nicolas Souchu wrote: > > > >> Hi folks, > >> > >> I've just committed the alpm(4) driver to -current: the Aladdin SMBus > >> driver. > > > >Great, my newest mobo is an AcerLabs. > > > >> > >> With an onboard system management chip (lm7x or w87381), > >> it offers monitoring capabilities to recent Acer based motherboards like > >> the ASUS P5AB. > > > >I'm using a matsonic. > > > >> > >> Example program to fetch temperature or voltages is available at > >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ > >> There's also an example program to fetch SDRAM info over the smbus. > > I attach you the detect.c program. It's very simple and may help us > in knowing what I2C hardware you have on your mobo. > > > > >I tried them, and there's the problem: all the ioctl()s they perform return > >EINTR! Has this driver been tested on many motherboards? Why should I expect > >an EINTR? Just wondering :) > > EINTR is odd. It just mean that the device at the address requested on the > I2C bus do not respond. I have to translate SMBus errors to the appropriate > unix ones. > > > > > > >> > >> You may also want to know what smbus(4) is: > >> http://www.freebsd.org/~nsouch/iicbus.html > >> > >> Feedbacks are wellcome. > >> > >> Nicholas. > >> > >> PS: A driver is also available for the Intel PIIX4, see intpm(4). > >> > >> -- > >> nsouch@teaser.fr / nsouch@freebsd.org > >> FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > >> > >> To Unsubscribe: send mail to majordomo@FreeBSD.org > >> with "unsubscribe freebsd-current" in the body of the message > >> > > > > Brian Feldman _ __ ___ ___ ___ > > green@unixhelp.org _ __ ___ | _ ) __| \ > > http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | > > FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ > > > > > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > > /=====================================================================\ |Work: Matthew.Thyer@dsto.defence.gov.au | Home: thyerm@camtech.net.au| \=====================================================================/ "If it is true that our Universe has a zero net value for all conserved quantities, then it may simply be a fluctuation of the vacuum of some larger space in which our Universe is imbedded. In answer to the question of why it happened, I offer the modest proposal that our Universe is simply one of those things which happen from time to time." E. P. Tryon from "Nature" Vol.246 Dec.14, 1973 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 05:40:19 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA28580 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 05:40:19 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from janus.syracuse.net (janus.syracuse.net [205.232.47.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA28559; Sun, 14 Feb 1999 05:40:13 -0800 (PST) (envelope-from green@unixhelp.org) Received: from localhost (green@localhost) by janus.syracuse.net (8.8.8/8.8.7) with ESMTP id IAA03734; Sun, 14 Feb 1999 08:40:11 -0500 (EST) Date: Sun, 14 Feb 1999 08:40:11 -0500 (EST) From: Brian Feldman X-Sender: green@janus.syracuse.net To: Nicolas Souchu cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214095845.56909@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: > > > >On Sat, 13 Feb 1999, Nicolas Souchu wrote: > > > >> Example program to fetch temperature or voltages is available at > >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ > >> There's also an example program to fetch SDRAM info over the smbus. > > I attach you the detect.c program. It's very simple and may help us > in knowing what I2C hardware you have on your mobo. Where's my detect.c? I think you forgot to attach it :) > >I tried them, and there's the problem: all the ioctl()s they perform return > >EINTR! Has this driver been tested on many motherboards? Why should I expect > >an EINTR? Just wondering :) > > EINTR is odd. It just mean that the device at the address requested on the > I2C bus do not respond. I have to translate SMBus errors to the appropriate > unix ones. Hmm... wouldn't the appropriate error for something not responding be an ENXIO or ETIMEDOUT? EINTR seems more than a little wrong for this purpouse. > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > Brian Feldman _ __ ___ ___ ___ green@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 08:08:08 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08663 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 08:08:08 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08603; Sun, 14 Feb 1999 08:08:00 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id RAA16800; Sun, 14 Feb 1999 17:07:51 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id PAA02961; Sun, 14 Feb 1999 15:52:32 +0100 (CET) (envelope-from son) Message-ID: <19990214155232.61732@breizh.prism.uvsq.fr> Date: Sun, 14 Feb 1999 15:52:32 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214095845.56909@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Mm9M+Fa2AknHoGS/" X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sun, Feb 14, 1999 at 08:40:11AM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Mm9M+Fa2AknHoGS/ Content-Type: text/plain; charset=us-ascii On Sun, Feb 14, 1999 at 08:40:11AM -0500, Brian Feldman wrote: > >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > >> On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: >> > >> >On Sat, 13 Feb 1999, Nicolas Souchu wrote: >> > >> >> Example program to fetch temperature or voltages is available at >> >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ >> >> There's also an example program to fetch SDRAM info over the smbus. >> >> I attach you the detect.c program. It's very simple and may help us >> in knowing what I2C hardware you have on your mobo. > >Where's my detect.c? I think you forgot to attach it :) :) here it is! > >> >I tried them, and there's the problem: all the ioctl()s they perform return >> >EINTR! Has this driver been tested on many motherboards? Why should I expect >> >an EINTR? Just wondering :) >> >> EINTR is odd. It just mean that the device at the address requested on the >> I2C bus do not respond. I have to translate SMBus errors to the appropriate >> unix ones. > >Hmm... wouldn't the appropriate error for something not responding be an >ENXIO or ETIMEDOUT? EINTR seems more than a little wrong for this purpouse. Fix committed. BTW, as outlined by -pkh all this is just a first step in a huge monitoring adventure where all still need to be _defined_ (architecture and interfaces) and implemented. Any proposition for doing the job is wellcome, since I just have enough time to do the hardware SMBus support. Nicholas -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org --Mm9M+Fa2AknHoGS/ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="detect.c" /*- * Copyright (c) 1999 Nicolas Souchu * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * [id for your version control system, if any] */ /*This program is prototype version. I'll write better one*/ #include #include #include const double vfactor[]={1,1,1,1.67,4,-4,-1.67}; const char *Inpname[]={ "Vcore","Vit","VIO","+5V","+12V","-12V","-5V" }; int doioctl(int alias, int cmd, caddr_t param) { int error = 1; int retry = 3; while (error && retry--) { usleep(200); error = ioctl(alias, cmd, param); } return (error); } int main (int argc,char argv[]) { int alias, i; unsigned char byte=0; struct smbcmd cmd; bzero(&cmd, sizeof(cmd)); cmd.data.byte_ptr = &byte; alias = open("/dev/smb0", O_RDWR); for (i=2; i<254; i+=2) { cmd.slave=(u_char)i; if(doioctl(alias, SMB_RECVB, (caddr_t)&cmd)!=-1){ printf("%x found.\n",i); } } close(alias); return 0; } --Mm9M+Fa2AknHoGS/-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 08:28:10 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA10784 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 08:28:10 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from zed.ludd.luth.se (zed.ludd.luth.se [130.240.16.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA10777 for ; Sun, 14 Feb 1999 08:28:05 -0800 (PST) (envelope-from pb@ludd.luth.se) Received: from father.ludd.luth.se (pb@father.ludd.luth.se [130.240.16.18]) by zed.ludd.luth.se (8.8.5/8.8.5) with ESMTP id RAA04742 for ; Sun, 14 Feb 1999 17:28:02 +0100 From: Peter Brevik Received: (pb@localhost) by father.ludd.luth.se (8.6.11/8.6.11) id RAA21056 for freebsd-hardware@freebsd.org; Sun, 14 Feb 1999 17:28:01 +0100 Message-Id: <199902141628.RAA21056@father.ludd.luth.se> Subject: S/P-dif "support" To: freebsd-hardware@FreeBSD.ORG Date: Sun, 14 Feb 1999 17:28:01 +0100 (MET) X-Mailer: ELM [version 2.4ME+ PL15 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I wonder if there is any Soundcard that has the S/P-Dif connector for audio output. And is supported by FreeBSD. ..? I know the SB AWE64 Gold will do this, however I saw a posting in a soundcard specific newsgroup that that card is suffering from digital "noise" on the S/P-Dif connector.. /Pb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 09:11:13 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA14792 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 09:11:13 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from janus.syracuse.net (janus.syracuse.net [205.232.47.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA14772; Sun, 14 Feb 1999 09:11:10 -0800 (PST) (envelope-from green@unixhelp.org) Received: from localhost (green@localhost) by janus.syracuse.net (8.8.8/8.8.7) with ESMTP id MAA14227; Sun, 14 Feb 1999 12:11:09 -0500 (EST) Date: Sun, 14 Feb 1999 12:11:09 -0500 (EST) From: Brian Feldman X-Sender: green@janus.syracuse.net To: Nicolas Souchu cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214155232.61732@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sun, Feb 14, 1999 at 08:40:11AM -0500, Brian Feldman wrote: > > > >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > > > >> On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: > >> > > >> >On Sat, 13 Feb 1999, Nicolas Souchu wrote: > >> > > >> >> Example program to fetch temperature or voltages is available at > >> >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ > >> >> There's also an example program to fetch SDRAM info over the smbus. > >> > >> I attach you the detect.c program. It's very simple and may help us > >> in knowing what I2C hardware you have on your mobo. > > > >Where's my detect.c? I think you forgot to attach it :) > > :) here it is! alpm0: rev 0x00 on pci0.3.0 alsmb0: smbus0: on alsmb0 smb0: on smbus0 {"/home/green/examples"}$ ./detect a2 found. d2 found. > > > > >> >I tried them, and there's the problem: all the ioctl()s they perform return > >> >EINTR! Has this driver been tested on many motherboards? Why should I expect > >> >an EINTR? Just wondering :) > >> > >> EINTR is odd. It just mean that the device at the address requested on the > >> I2C bus do not respond. I have to translate SMBus errors to the appropriate > >> unix ones. > > > >Hmm... wouldn't the appropriate error for something not responding be an > >ENXIO or ETIMEDOUT? EINTR seems more than a little wrong for this purpouse. > > Fix committed. > > BTW, as outlined by -pkh all this is just a first step in a huge monitoring > adventure where all still need to be _defined_ (architecture and interfaces) > and implemented. Any proposition for doing the job is wellcome, > since I just have enough time to do the hardware SMBus support. Sounds like fun.... > > Nicholas > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > Brian Feldman _ __ ___ ___ ___ green@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 09:51:46 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA18594 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 09:51:46 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18554; Sun, 14 Feb 1999 09:51:37 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id SAA18730; Sun, 14 Feb 1999 18:51:27 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id SAA04863; Sun, 14 Feb 1999 18:48:43 +0100 (CET) (envelope-from son) Message-ID: <19990214184843.08195@breizh.prism.uvsq.fr> Date: Sun, 14 Feb 1999 18:48:43 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214155232.61732@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sun, Feb 14, 1999 at 12:11:09PM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 14, 1999 at 12:11:09PM -0500, Brian Feldman wrote: > >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > >> On Sun, Feb 14, 1999 at 08:40:11AM -0500, Brian Feldman wrote: >> > >> >On Sun, 14 Feb 1999, Nicolas Souchu wrote: >> > >> >> On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: >> >> > >> >> >On Sat, 13 Feb 1999, Nicolas Souchu wrote: >> >> > >> >> >> Example program to fetch temperature or voltages is available at >> >> >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ >> >> >> There's also an example program to fetch SDRAM info over the smbus. >> >> >> >> I attach you the detect.c program. It's very simple and may help us >> >> in knowing what I2C hardware you have on your mobo. >> > >> >Where's my detect.c? I think you forgot to attach it :) >> >> :) here it is! > >alpm0: rev 0x00 on pci0.3.0 >alsmb0: >smbus0: on alsmb0 >smb0: on smbus0 > >{"/home/green/examples"}$ ./detect >a2 found. >d2 found. So, ./spd 1 will work! -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 10:03:42 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA19769 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 10:03:42 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from janus.syracuse.net (janus.syracuse.net [205.232.47.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA19750; Sun, 14 Feb 1999 10:03:36 -0800 (PST) (envelope-from green@unixhelp.org) Received: from localhost (green@localhost) by janus.syracuse.net (8.8.8/8.8.7) with ESMTP id NAA16872; Sun, 14 Feb 1999 13:01:27 -0500 (EST) Date: Sun, 14 Feb 1999 13:01:27 -0500 (EST) From: Brian Feldman X-Sender: green@janus.syracuse.net To: Nicolas Souchu cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214184843.08195@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sun, Feb 14, 1999 at 12:11:09PM -0500, Brian Feldman wrote: > > > >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > > > >> On Sun, Feb 14, 1999 at 08:40:11AM -0500, Brian Feldman wrote: > >> > > >> >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > >> > > >> >> On Sat, Feb 13, 1999 at 05:22:00PM -0500, Brian Feldman wrote: > >> >> > > >> >> >On Sat, 13 Feb 1999, Nicolas Souchu wrote: > >> >> > > >> >> >> Example program to fetch temperature or voltages is available at > >> >> >> http://www.planet.sci.kobe-u.ac.jp/~takawata/smbus/examples/ > >> >> >> There's also an example program to fetch SDRAM info over the smbus. > >> >> > >> >> I attach you the detect.c program. It's very simple and may help us > >> >> in knowing what I2C hardware you have on your mobo. > >> > > >> >Where's my detect.c? I think you forgot to attach it :) > >> > >> :) here it is! > > > >alpm0: rev 0x00 on pci0.3.0 > >alsmb0: > >smbus0: on alsmb0 > >smb0: on smbus0 > > > >{"/home/green/examples"}$ ./detect > >a2 found. > >d2 found. > > So, > > ./spd 1 > > will work! Sorta. It did work. Then it stopped working. Running detect seems to kill my SM (or at least reset it to some weird state) {"/home/green/examples"}$ ./detect {"/home/green/examples"}$ > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > Brian Feldman _ __ ___ ___ ___ green@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 11:38:07 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA29897 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 11:38:07 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA29841; Sun, 14 Feb 1999 11:38:00 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id UAA03643; Sun, 14 Feb 1999 20:37:49 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id TAA00466; Sun, 14 Feb 1999 19:57:26 +0100 (CET) (envelope-from son) Message-ID: <19990214195725.58205@breizh.prism.uvsq.fr> Date: Sun, 14 Feb 1999 19:57:25 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214184843.08195@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sun, Feb 14, 1999 at 01:01:27PM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 14, 1999 at 01:01:27PM -0500, Brian Feldman wrote: [...] > >Sorta. It did work. Then it stopped working. Running detect seems to kill my >SM (or at least reset it to some weird state) > >{"/home/green/examples"}$ ./detect >{"/home/green/examples"}$ You mean you got some output from spd? Which? Try recompiling alpm.o with DEBUG defined. rm alpm.o ; make CC="cc -DDEBUG" -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 13:05:50 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA08782 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 13:05:50 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from animal.blarg.net (animal.blarg.net [206.124.128.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA08774; Sun, 14 Feb 1999 13:05:47 -0800 (PST) (envelope-from darryl@blarg.net) Received: from darrylm.accessone.com (c28-rizzo.blarg.net [206.124.131.29]) by animal.blarg.net (8.9.1/8.9.1) with SMTP id NAA26923; Sun, 14 Feb 1999 13:05:43 -0800 Message-ID: <000c01be585f$0d6df540$1d837cce@darrylm.accessone.com> From: "Darryl Mondrow" To: "FreeBSD-stable" , "FreeBSD-hardware" Subject: Support for the Ultra33 EIDE controller Date: Sun, 14 Feb 1999 13:14:46 -0800 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0009_01BE581B.FE474F00" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0009_01BE581B.FE474F00 Content-Type: text/plain; charset="x-user-defined" Content-Transfer-Encoding: quoted-printable I'm trying to install v2.2.8 on an Intel PC. My boot disk is a SCSI HD, = and the hardware probe finds it, but cannot find my IDE disk which is = connected to a Promise Ultra 33 controller. The probe says it cannot = find wd0 or wd1. Is this controller supported at this time? How can I = get it recognized, or is there another workaround? Please mail me directly, since I am not on these distribution lists. Thanks for the help. Darryl Mondrow ------=_NextPart_000_0009_01BE581B.FE474F00 Content-Type: text/html; charset="x-user-defined" Content-Transfer-Encoding: quoted-printable
I'm trying to = install=20 v2.2.8 on an Intel PC. My boot disk is a SCSI HD, and the hardware probe = finds=20 it, but cannot find my IDE disk which is connected to a Promise Ultra 33 = controller. The probe says it cannot find wd0 or wd1. Is this controller = supported at this time? How can I get it recognized, or is there another = workaround?
 
Please mail me = directly,=20 since I am not on these distribution lists.
 
Thanks for the=20 help.
 
Darryl=20 Mondrow
------=_NextPart_000_0009_01BE581B.FE474F00-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 13:30:43 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12177 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 13:30:43 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from janus.syracuse.net (janus.syracuse.net [205.232.47.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12159; Sun, 14 Feb 1999 13:30:32 -0800 (PST) (envelope-from green@unixhelp.org) Received: from localhost (green@localhost) by janus.syracuse.net (8.8.8/8.8.7) with ESMTP id QAA00641; Sun, 14 Feb 1999 16:30:27 -0500 (EST) Date: Sun, 14 Feb 1999 16:30:27 -0500 (EST) From: Brian Feldman X-Sender: green@janus.syracuse.net To: Nicolas Souchu cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214195725.58205@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sun, Feb 14, 1999 at 01:01:27PM -0500, Brian Feldman wrote: > [...] > > > >Sorta. It did work. Then it stopped working. Running detect seems to kill my > >SM (or at least reset it to some weird state) > > > >{"/home/green/examples"}$ ./detect > >{"/home/green/examples"}$ > > You mean you got some output from spd? Which? Try recompiling alpm.o with > DEBUG defined. > On spd I would get an error message, and if I ever did spd 1 it got as far as printing 128 bytes used, then erred out... > rm alpm.o ; make CC="cc -DDEBUG" I'll rm alpm.o; CC='cc -DDEBUG' make alpm.o; make, if that's what you mean. > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > Brian Feldman _ __ ___ ___ ___ green@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 13:37:12 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA12767 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 13:37:12 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from animal.blarg.net (animal.blarg.net [206.124.128.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA12747; Sun, 14 Feb 1999 13:37:08 -0800 (PST) (envelope-from darryl@blarg.net) Received: from darrylm.accessone.com (c92-rizzo.blarg.net [206.124.131.93]) by animal.blarg.net (8.9.1/8.9.1) with SMTP id NAA31807; Sun, 14 Feb 1999 13:37:06 -0800 Message-ID: <007601be5863$6f54fd40$1d837cce@darrylm.accessone.com> From: "Darryl Mondrow" To: "FreeBSD-stable" , "FreeBSD-hardware" Subject: Fw: Support for the Ultra33 EIDE controller Date: Sun, 14 Feb 1999 13:46:08 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry, the last message was in HTML. -----Original Message----- From: Darryl Mondrow To: Randy Bush Date: Sunday, February 14, 1999 1:35 PM Subject: Re: Support for the Ultra33 EIDE controller >I'm trying to install v2.2.8 on an Intel PC. My boot disk is a SCSI HD, and >the hardware probe finds it, but cannot find my IDE disk which is connected >to a Promise Ultra 33 controller. The probe says it cannot find wd0 or wd1. >Is this controller supported at this time? How can I get it recognized, or >is there another workaround? I want to install to the IDE disk. > >Please mail me directly, since I am not on these distribution lists. > >Thanks for the help. > >Darryl Mondrow > >-----Original Message----- >From: Randy Bush >To: Darryl Mondrow >Date: Sunday, February 14, 1999 1:10 PM >Subject: Re: Support for the Ultra33 EIDE controller > > >>you sent html as opposed to an email message. as i do not use a web >browser >>to read mail, i can not read your message. if you want me to read your >>email, send email. >> >>randy >> > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 14:12:52 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA16788 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 14:12:52 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA16764; Sun, 14 Feb 1999 14:12:43 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id XAA00074; Sun, 14 Feb 1999 23:12:28 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id XAA02946; Sun, 14 Feb 1999 23:09:45 +0100 (CET) (envelope-from son) Message-ID: <19990214230945.31347@breizh.prism.uvsq.fr> Date: Sun, 14 Feb 1999 23:09:45 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214195725.58205@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sun, Feb 14, 1999 at 04:30:27PM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 14, 1999 at 04:30:27PM -0500, Brian Feldman wrote: >> > >On spd I would get an error message, and if I ever did spd 1 it got as far >as printing 128 bytes used, then erred out... > >> rm alpm.o ; make CC="cc -DDEBUG" > >I'll rm alpm.o; CC='cc -DDEBUG' make alpm.o; make, if that's what you mean. any difference? -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 14:51:16 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21089 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 14:51:16 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from animal.blarg.net (animal.blarg.net [206.124.128.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21074; Sun, 14 Feb 1999 14:51:14 -0800 (PST) (envelope-from darryl@blarg.net) Received: from darrylm.accessone.com (c24-rizzo.blarg.net [206.124.131.25]) by animal.blarg.net (8.9.1/8.9.1) with SMTP id OAA05091; Sun, 14 Feb 1999 14:51:08 -0800 Message-ID: <019b01be586d$c6bce3e0$1d837cce@darrylm.accessone.com> From: "Darryl Mondrow" To: "FreeBSD-stable" , "FreeBSD-hardware" Subject: Support for the Ultra33 EIDE controller (plain text format) Date: Sun, 14 Feb 1999 15:00:10 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to install v2.2.8 on an Intel PC. My boot disk is a SCSI HD, and the hardware probe finds it, but cannot find my IDE disk which is connected to a Promise Ultra 33 controller. The probe says it cannot find wd0 or wd1. Is this controller supported at this time? How can I get it recognized, or is there another workaround? I want to install to the IDE disk. Please mail me directly, since I am not on these distribution lists. Thanks for the help. Darryl Mondrow To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 14:58:22 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA21956 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 14:58:22 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from dingo.cdrom.com (castles146.castles.com [208.214.165.146]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA21951; Sun, 14 Feb 1999 14:58:18 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id OAA06059; Sun, 14 Feb 1999 14:53:55 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902142253.OAA06059@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Darryl Mondrow" cc: "FreeBSD-stable" , "FreeBSD-hardware" Subject: Re: Support for the Ultra33 EIDE controller (plain text format) In-reply-to: Your message of "Sun, 14 Feb 1999 15:00:10 PST." <019b01be586d$c6bce3e0$1d837cce@darrylm.accessone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 14 Feb 1999 14:53:54 -0800 From: Mike Smith Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > > > > I'm trying to install v2.2.8 on an Intel PC. My boot disk is a SCSI HD, and > the hardware probe finds it, but cannot find my IDE disk which is connected > to a Promise Ultra 33 controller. The probe says it cannot find wd0 or wd1. > > Is this controller supported at this time? How can I get it recognized, or > is there another workaround? I want to install to the IDE disk. > > Please mail me directly, since I am not on these distribution lists. Boot with -v, and note the port and IRQ assigned by your PCI BIOS to the Promise controller. Reboot and configure 'wdc0' to match these parameters. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 15:09:25 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA23184 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 15:09:25 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from zippy.dyn.ml.org (pm3-11.ppp.wenet.net [206.15.85.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA23165; Sun, 14 Feb 1999 15:09:20 -0800 (PST) (envelope-from garbanzo@hooked.net) Received: from localhost (garbanzo@localhost [127.0.0.1]) by zippy.dyn.ml.org (8.9.2/8.9.1) with ESMTP id PAA01647; Sun, 14 Feb 1999 15:06:13 -0800 (PST) (envelope-from garbanzo@hooked.net) Date: Sun, 14 Feb 1999 15:06:13 -0800 (PST) From: Alex Zepeda To: Brian Feldman cc: Nicolas Souchu , hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Brian Feldman wrote: > Sorta. It did work. Then it stopped working. Running detect seems to kill my > SM (or at least reset it to some weird state) Ahh yes, I'm not alone. Running detect here came up with four ports (5a, 60, 9a, a0 I think). It also caused anything else trying to access smb0 to get a device busy error. Rebooting actually hung the machine before the BIOS graphic was displayed... the lovely soft power switch wasn't working.. holding reset down for about a minute seemed to fix this. Also, the lm program (from your battery of examples) crashes with a SIGFPE, but some stuff from Nat'l Semi (some Win95 stuff anyways) seems to work.. but I'm not sure if anything is really hooked up, other than the SPD stuff. intpm0: rev 0x02 on pci0.7.3 intpm0: I/O mapped 7000 ALLOCED IRQ 0 intr IRQ 9 enabled revision 0 intsmb0: smbus0: on intsmb0 smb0: on smbus0 intpm0: PM I/O mapped 8000 - alex To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 14 16:41:26 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA06144 for freebsd-hardware-outgoing; Sun, 14 Feb 1999 16:41:26 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from janus.syracuse.net (janus.syracuse.net [205.232.47.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA06126; Sun, 14 Feb 1999 16:41:23 -0800 (PST) (envelope-from green@unixhelp.org) Received: from localhost (green@localhost) by janus.syracuse.net (8.8.8/8.8.7) with ESMTP id TAA10889; Sun, 14 Feb 1999 19:41:25 -0500 (EST) Date: Sun, 14 Feb 1999 19:41:25 -0500 (EST) From: Brian Feldman X-Sender: green@janus.syracuse.net To: Nicolas Souchu cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! In-Reply-To: <19990214230945.31347@breizh.prism.uvsq.fr> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 14 Feb 1999, Nicolas Souchu wrote: > On Sun, Feb 14, 1999 at 04:30:27PM -0500, Brian Feldman wrote: > >> > > > >On spd I would get an error message, and if I ever did spd 1 it got as far > >as printing 128 bytes used, then erred out... > > > >> rm alpm.o ; make CC="cc -DDEBUG" > > > >I'll rm alpm.o; CC='cc -DDEBUG' make alpm.o; make, if that's what you mean. > > any difference? Yes: Feb 14 17:12:16 green /kernel: alpm: idle? STS=0x0 Feb 14 17:12:48 green last message repeated 380 times Feb 14 17:13:14 green last message repeated 5 times > > -- > nsouch@teaser.fr / nsouch@freebsd.org > FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-current" in the body of the message > Brian Feldman _ __ ___ ___ ___ green@unixhelp.org _ __ ___ | _ ) __| \ http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Mon Feb 15 09:08:25 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA01590 for freebsd-hardware-outgoing; Mon, 15 Feb 1999 09:08:25 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from send204.yahoomail.com (send204.mail.yahoo.com [128.11.68.128]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id JAA01580 for ; Mon, 15 Feb 1999 09:08:24 -0800 (PST) (envelope-from dmondrow@yahoo.com) Message-ID: <19990215165942.22954.rocketmail@send204.yahoomail.com> Received: from [131.107.3.77] by send204.mail.yahoo.com; Mon, 15 Feb 1999 08:59:42 PST Date: Mon, 15 Feb 1999 08:59:42 -0800 (PST) From: Darryl Mondrow Subject: Has anyone had problems with the Ultra 33 controller card? To: FreeBSD-hardware , FreeBSD-questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to install v2.2.8. During the hardware probe, my Western Digital Caviar 10.1GB EIDE drive using an Ultra 33 controller card seems to be recognized as as sd1, but the geometry is way incorrect. I boot from a 1GB SCSI drive which is recognized as sd0 and that's listed OK. Under Windows95, the Ultra 33 is listed as a SCSI device (this is correct as confirmed by the Ultra 33 manufacturer), so I suppose that's why the hardware probe sees the EIDE drive as being sd1. Can someone confirm this? If so, can I just change the geometry of sd1 to use a slice for the install? Thanks for your help, Darryl Mondrow _________________________________________________________ DO YOU YAHOO!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Mon Feb 15 14:10:37 1999 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14854 for freebsd-hardware-outgoing; Mon, 15 Feb 1999 14:10:37 -0800 (PST) (envelope-from owner-freebsd-hardware@FreeBSD.ORG) Received: from send206.yahoomail.com (send206.mail.yahoo.com [128.11.68.130]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA14835 for ; Mon, 15 Feb 1999 14:10:31 -0800 (PST) (envelope-from dmondrow@yahoo.com) Message-ID: <19990215221053.6161.rocketmail@send206.yahoomail.com> Received: from [131.107.3.79] by send206.mail.yahoo.com; Mon, 15 Feb 1999 14:10:53 PST Date: Mon, 15 Feb 1999 14:10:53 -0800 (PST) From: Darryl Mondrow Subject: Help! my Promise Ultra 33 DMA IDE controller isn't recognized correctly. To: FreeBSD-hardware , FreeBSD-questions MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to install v2.2.8. During the hardware probe, my Western Digital Caviar 10.1GB EIDE drive using an Ultra 33 controller card seems to be recognized as as sd1, but the geometry is wayincorrect. I boot from a 1GB SCSI drive which is recognized as sd0 and that's listed OK. Under Windows95, the Ultra 33 is listed as a SCSI device (this is correct as confirmed by the Ultra 33 manufacturer), so I suppose that's why the hardware probe sees the EIDE drive as being sd1. Can someone confirm this? If so, can I just change the geometry of sd1 to use a slice for the install? Note that I am using the kernel "out of the box" (off the CD) and haven't gotten past the hardware probe yet. The IRQ for the Ultra 33 card is 9 and cannot be changed - the manufacturer says it's supposed to be listed as a SCSI device by Windows 95, which it is. It is designed to be the accelerator for ultra DMA IDE drives. The card has its own BIOS that replaces the main board BIOS and substitutes for the main board IDE controller. The card supports drives over 8GB. Thanks for your help, Darryl Mondrow _________________________________________________________ DO YOU YAHOO!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 16 15:31:56 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (Postfix) with ESMTP id D07DA10F64; Tue, 16 Feb 1999 15:31:35 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id AAA25944; Wed, 17 Feb 1999 00:31:23 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id AAA01022; Wed, 17 Feb 1999 00:00:46 +0100 (CET) (envelope-from son) Message-ID: <19990217000046.06182@breizh.prism.uvsq.fr> Date: Wed, 17 Feb 1999 00:00:46 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214195725.58205@breizh.prism.uvsq.fr> <19990214230945.31347@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: <19990214230945.31347@breizh.prism.uvsq.fr>; from Nicolas Souchu on Sun, Feb 14, 1999 at 11:09:45PM +0100 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 14, 1999 at 11:09:45PM +0100, Nicolas Souchu wrote: > >On Sun, Feb 14, 1999 at 04:30:27PM -0500, Brian Feldman wrote: >>> >> >>On spd I would get an error message, and if I ever did spd 1 it got as far >>as printing 128 bytes used, then erred out... >> >>> rm alpm.o ; make CC="cc -DDEBUG" >> >>I'll rm alpm.o; CC='cc -DDEBUG' make alpm.o; make, if that's what you mean. > >any difference? I meant any difference between the two command lines? -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 16 15:31:57 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from reliam.teaser.fr (reliam.teaser.fr [194.51.80.12]) by hub.freebsd.org (Postfix) with ESMTP id 3132A10FE1; Tue, 16 Feb 1999 15:31:41 -0800 (PST) (envelope-from son@teaser.fr) Received: from teaser.fr (ppp1087-ft.teaser.fr [194.206.156.40]) by reliam.teaser.fr (8.9.1a/8.9.1a) with ESMTP id AAA25980; Wed, 17 Feb 1999 00:31:30 +0100 (MET) Received: (from son@localhost) by teaser.fr (8.9.2/8.9.1) id XAA00994; Tue, 16 Feb 1999 23:50:21 +0100 (CET) (envelope-from son) Message-ID: <19990216235020.38120@breizh.prism.uvsq.fr> Date: Tue, 16 Feb 1999 23:50:20 +0100 From: Nicolas Souchu To: Brian Feldman Cc: hardware@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Aladdin chipset SMBus support available! References: <19990214230945.31347@breizh.prism.uvsq.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.81e In-Reply-To: ; from Brian Feldman on Sun, Feb 14, 1999 at 07:41:25PM -0500 X-Operating-System: FreeBSD breizh 4.0-CURRENT FreeBSD 4.0-CURRENT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 14, 1999 at 07:41:25PM -0500, Brian Feldman wrote: > >On Sun, 14 Feb 1999, Nicolas Souchu wrote: > >> On Sun, Feb 14, 1999 at 04:30:27PM -0500, Brian Feldman wrote: >> >> >> > >> >On spd I would get an error message, and if I ever did spd 1 it got as far >> >as printing 128 bytes used, then erred out... >> > >> >> rm alpm.o ; make CC="cc -DDEBUG" >> > >> >I'll rm alpm.o; CC='cc -DDEBUG' make alpm.o; make, if that's what you mean. >> >> any difference? > >Yes: >Feb 14 17:12:16 green /kernel: alpm: idle? STS=0x0 >Feb 14 17:12:48 green last message repeated 380 times >Feb 14 17:13:14 green last message repeated 5 times > The controller seems to stick on the bus. The Linux team has reported such problems with there own driver and couldn't do anything (reset of controller, SMBus abort...). The problem seem to have disappeared with an additional device plugged on the bus. I'll dig into your problem, but yet, I have no problem with the ASUS. I'll browse the datasheets.. > >> >> -- >> nsouch@teaser.fr / nsouch@freebsd.org >> FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-current" in the body of the message >> > > Brian Feldman _ __ ___ ___ ___ > green@unixhelp.org _ __ ___ | _ ) __| \ > http://www.freebsd.org/ _ __ ___ ____ | _ \__ \ |) | > FreeBSD: The Power to Serve! _ __ ___ ____ _____ |___/___/___/ > > -- nsouch@teaser.fr / nsouch@freebsd.org FreeBSD - Turning PCs into workstations - http://www.FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 16 17:33:40 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from eta.ee.fit.edu (eta.ee.fit.edu [163.118.30.136]) by hub.freebsd.org (Postfix) with ESMTP id CF0CB113A0; Tue, 16 Feb 1999 17:33:02 -0800 (PST) (envelope-from craze@eta.ee.fit.edu) Received: from localhost (craze@localhost) by eta.ee.fit.edu (8.8.7/8.8.7) with SMTP id UAA05728; Tue, 16 Feb 1999 20:16:44 -0500 Date: Tue, 16 Feb 1999 20:16:44 -0500 (EST) From: John Smith To: freebsd-questions@freebsd.org Cc: freebsd-hardware@freebsd.org Subject: intel ether express pro Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello all; I have a machine (IBM IntelliStation) and it has built in network card (eepro10/100). The kernel locks up, whenever I try to ifconfig the device. We have a autodetecting hub that can switch between 10/100. I tried a 3c509 and I got the same results. Whenever I type ifconfig, it crashes. That makes me believe that it is our hub. Anybody help, and Ideas? Thanks -Can To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 16 21: 2: 8 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from schooner.svjava.com (schooner.svjava.com [204.75.228.3]) by hub.freebsd.org (Postfix) with ESMTP id DD16710E96 for ; Tue, 16 Feb 1999 21:02:06 -0800 (PST) (envelope-from kozowski@svjava.com) Received: (from kozowski@localhost) by schooner.svjava.com (8.9.1a/svjava.com) id VAA13814 for hardware@freebsd.org; Tue, 16 Feb 1999 21:02:06 -0800 (PST) Date: Tue, 16 Feb 1999 21:02:05 -0800 From: Eric Kozowski To: hardware@freebsd.org Subject: 3.1 and laptop hardware support Message-ID: <19990216210205.H11319@haydenisland.verio.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org i'm currently running 2.2.8 + PAO on my laptop and want to upgrade to 3.1, but i have some ahrdware questions that are unaddressed by the 3.1 release notes. 1) is the Linksys 10/100 PCMCIA ethernet card (ed) supported? 2) is the DEC PCMCIA 915 MHz Roamabout (wlp) supported? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 16 22:31:29 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from eta.ee.fit.edu (eta.ee.fit.edu [163.118.30.136]) by hub.freebsd.org (Postfix) with ESMTP id B1E9310F3F; Tue, 16 Feb 1999 22:31:18 -0800 (PST) (envelope-from craze@eta.ee.fit.edu) Received: from localhost (craze@localhost) by eta.ee.fit.edu (8.8.7/8.8.7) with SMTP id BAA10038; Wed, 17 Feb 1999 01:15:04 -0500 Date: Wed, 17 Feb 1999 01:15:04 -0500 (EST) From: John Smith To: freebsd-questions@freebsd.org Cc: freebsd-hardware@freebsd.org Subject: IBM IntelliStation Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello All; I was trying to install 3.1 on a IBM intellistation machine;(one of those with 450mhz processor, and 512 ram, ide HD, etc) and I could not get the network card to work. The motherboard has a built-in network card in it, and it can be disabled by the bios. At first I thought it was a 10/100 switching problem, since both the card and the hub was set to autodetect media. However, I figured out that no matter what network card I use, the kernel detects it, and ifconfig -a shows the device in place, however whenever you ifconfig [ep0|fpx0] my.ip.number the machine crashes. I tried eepro100, and 3c509; (with more than few models of 3c509) and it all did the same. I believe there is some sort of incompatibility issue with the built in card, but even if it disabled, I get the same response with other cards. Did anyone installed FreeBSD on a similar machine before? Please help, because I do not want to put back windoze on it. -Can To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 6:35:47 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from implode.root.com (root.com [208.221.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 8CF9B10EBE; Wed, 17 Feb 1999 06:35:41 -0800 (PST) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id GAA14929; Wed, 17 Feb 1999 06:33:38 -0800 (PST) Message-Id: <199902171433.GAA14929@implode.root.com> To: John Smith Cc: freebsd-questions@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: intel ether express pro In-reply-to: Your message of "Tue, 16 Feb 1999 20:16:44 EST." From: David Greenman Reply-To: dg@root.com Date: Wed, 17 Feb 1999 06:33:38 -0800 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I have a machine (IBM IntelliStation) and it has built in network >card (eepro10/100). > > The kernel locks up, whenever I try to ifconfig the device. We >have a autodetecting hub that can switch between 10/100. If that is the PCI version, then try putting it in a different PCI slot. -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 11:20:22 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from vali.uas.alaska.edu (vali.jun.alaska.edu [137.229.150.18]) by hub.freebsd.org (Postfix) with SMTP id 08DE511307 for ; Wed, 17 Feb 1999 11:20:09 -0800 (PST) (envelope-from jnrp@uas.alaska.edu) Received: from joshua.jun.alaska.edu [137.229.156.130] (HELO uas.alaska.edu) by vali.uas.alaska.edu (AltaVista Mail V2.0o/2.0o BL25o listener) id 0000_0062_36cb_17c4_b989; Wed, 17 Feb 1999 10:25:56 -0900 Message-ID: <36CB1650.DA79AC33@uas.alaska.edu> Date: Wed, 17 Feb 1999 10:19:47 -0900 From: Russ Pagenkopf Reply-To: russ.pagenkopf@uas.alaska.edu Organization: University of Alaska Southeast X-Mailer: Mozilla 4.05 (Macintosh; I; PPC) MIME-Version: 1.0 To: "freebsd-hardware@FreeBSD.ORG" Subject: asus p2b-n Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hiya! Has anyone gotten their hands on an Asus P2B-N? It looks like an ideal motherboard for putting in a really thin rackmount case; onboard lan (Intel 82558), ide (Ultra-DMA), video (ATI 3D Rage PRO) and 512MB max RAM. Couple questions. Has anyone tried using it under 3.0 (or is it 3.1?) It looks like all the pieces are supported. And where did you get it? I can't find a vendor anywhere who is carrying it so I can try it out. Thanks, Russ Pagenkopf To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 11:33: 7 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from mail.intercom.com (mail.intercom.com [206.98.165.10]) by hub.freebsd.org (Postfix) with ESMTP id 9038511581 for ; Wed, 17 Feb 1999 11:33:02 -0800 (PST) (envelope-from jason@intercom.com) Received: from mail.intercom.com (mail.intercom.com [206.98.165.10]) by mail.intercom.com (8.9.0/8.9.0) with SMTP id OAA25767; Wed, 17 Feb 1999 14:32:47 -0500 (EST) Date: Wed, 17 Feb 1999 14:32:47 -0500 (EST) From: "Jason J. Horton" To: Russ Pagenkopf Cc: "freebsd-hardware@FreeBSD.ORG" Subject: Re: asus p2b-n In-Reply-To: <36CB1650.DA79AC33@uas.alaska.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It's Intel's newest form factor, NLX. I think NLX is kinda dumb. Is anyone using this form factor? -J On Wed, 17 Feb 1999, Russ Pagenkopf wrote: > Hiya! > > Has anyone gotten their hands on an Asus P2B-N? It looks like an ideal > motherboard for putting in a really thin rackmount case; onboard lan (Intel > 82558), ide (Ultra-DMA), video (ATI 3D Rage PRO) and 512MB max RAM. > > Couple questions. Has anyone tried using it under 3.0 (or is it 3.1?) It looks > like all the pieces are supported. And where did you get it? I can't find a > vendor anywhere who is carrying it so I can try it out. > > Thanks, > > Russ Pagenkopf > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 11:41:39 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from www1.asacomputers.com (unknown [204.153.176.244]) by hub.freebsd.org (Postfix) with ESMTP id ED1C71160E for ; Wed, 17 Feb 1999 11:41:23 -0800 (PST) (envelope-from kedar@asacomputers.com) Received: from kedar.asacomputers.com (kedar.asacomputers.com [204.153.176.86]) by www1.asacomputers.com (8.8.8/8.8.8) with SMTP id LAA10968; Wed, 17 Feb 1999 11:50:50 -0800 (PST) (envelope-from kedar@asacomputers.com) Message-Id: <2.2.32.19990217193553.021e822c@gw1> X-Sender: rajadnya@gw1 X-Mailer: Windows Eudora Pro Version 2.2 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Wed, 17 Feb 1999 11:35:53 -0800 To: "Jason J. Horton" From: Kedar Rajadnya Subject: Re: asus p2b-n Cc: freebsd-hardware@FreeBSD.ORG Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I think NLX is kinda dumb. Is anyone using this form factor? We are. We usually use Intel's NLX boards. A problem with that form- factor is limited support from case manufacturers. By the way, about that board, it has the 440LX chipset with EX bridge. You never know when Intel will discontinue the 266-333s and then only Celerons can be used. Kedar. Take care, :-) Kedar Rajadnya. ASA Computers, Inc. 200 East Trimble Road. San Jose, CA 95131. TEL: (408)232-5999 ext201 CELL: (408)799-7263 FAX:(408)232-5959 ****************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 14:14:29 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from garbo.lodgenet.com (garbo.lodgenet.com [204.124.122.252]) by hub.freebsd.org (Postfix) with ESMTP id DE7F711292 for ; Wed, 17 Feb 1999 14:14:14 -0800 (PST) (envelope-from lmckenna@lodgenet.com) Received: from chaplin.lodgenet.com (chaplin.lodgenet.com [10.0.104.215]) by garbo.lodgenet.com (8.9.3/8.9.3) with ESMTP id QAA05460; Wed, 17 Feb 1999 16:13:05 -0600 (CST) Received: by chaplin.lodgenet.com with Internet Mail Service (5.5.2448.0) id ; Wed, 17 Feb 1999 16:16:49 -0600 Message-ID: <3EA88113DE92D211807300805FA7994280E06D@chaplin.lodgenet.com> From: "McKenna, Lee" To: Kedar Rajadnya , "Jason J. Horton" Cc: freebsd-hardware@FreeBSD.ORG Subject: RE: asus p2b-n & PC/104 Date: Wed, 17 Feb 1999 16:16:48 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Elan Vital makes a nice NLX case (ASUS resells it I think). Sorry, have not tried one, but I'm seriously considering one because I like the very small foot print...one step closer to appliance/toaster size :) Another interesting form factor is the "PC/104" for embedded apps...anyone ever build one of those running FreeBSD any version? --Lee -----Original Message----- From: Kedar Rajadnya [mailto:kedar@asacomputers.com] Sent: Wednesday, February 17, 1999 1:36 PM To: Jason J. Horton Cc: freebsd-hardware@FreeBSD.ORG Subject: Re: asus p2b-n >I think NLX is kinda dumb. Is anyone using this form factor? We are. We usually use Intel's NLX boards. A problem with that form- factor is limited support from case manufacturers. By the way, about that board, it has the 440LX chipset with EX bridge. You never know when Intel will discontinue the 266-333s and then only Celerons can be used. Kedar. Take care, :-) Kedar Rajadnya. ASA Computers, Inc. 200 East Trimble Road. San Jose, CA 95131. TEL: (408)232-5999 ext201 CELL: (408)799-7263 FAX:(408)232-5959 ****************************************************************** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 14:43:51 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from dingo.cdrom.com (castles340.castles.com [208.214.167.40]) by hub.freebsd.org (Postfix) with ESMTP id 49BBD1127F; Wed, 17 Feb 1999 14:43:40 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (LOCALHOST [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id OAA01154; Wed, 17 Feb 1999 14:38:53 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902172238.OAA01154@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: dg@root.com Cc: John Smith , freebsd-questions@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: intel ether express pro In-reply-to: Your message of "Wed, 17 Feb 1999 06:33:38 PST." <199902171433.GAA14929@implode.root.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 17 Feb 1999 14:38:53 -0800 From: Mike Smith Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I have a machine (IBM IntelliStation) and it has built in network > >card (eepro10/100). > > > > The kernel locks up, whenever I try to ifconfig the device. We > >have a autodetecting hub that can switch between 10/100. > > If that is the PCI version, then try putting it in a different PCI slot. "Built in" typically means "on the motherboard". I reported this last year, when I went to IBM in San Mateo to run across their plaform range. It's subsequently been reported that this is due to the first DMA operation never completing; we've got reports of this on quite a number of platforms, not just the IBMs now. If you can get your hands on a NetFinity 3500, it should demonstrate the symptoms in question. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 15: 4:13 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from dingo.cdrom.com (castles340.castles.com [208.214.167.40]) by hub.freebsd.org (Postfix) with ESMTP id 51864112B9 for ; Wed, 17 Feb 1999 15:02:58 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (LOCALHOST [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id OAA01328; Wed, 17 Feb 1999 14:58:24 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902172258.OAA01328@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: russ.pagenkopf@uas.alaska.edu Cc: "freebsd-hardware@FreeBSD.ORG" Subject: Re: asus p2b-n In-reply-to: Your message of "Wed, 17 Feb 1999 10:19:47 -0900." <36CB1650.DA79AC33@uas.alaska.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 17 Feb 1999 14:58:24 -0800 From: Mike Smith Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hiya! > > Has anyone gotten their hands on an Asus P2B-N? It looks like an ideal > motherboard for putting in a really thin rackmount case; onboard lan (Intel > 82558), ide (Ultra-DMA), video (ATI 3D Rage PRO) and 512MB max RAM. > > Couple questions. Has anyone tried using it under 3.0 (or is it 3.1?) It looks > like all the pieces are supported. And where did you get it? I can't find a > vendor anywhere who is carrying it so I can try it out. www.cmpexpress.com has the boards and cases. I wanted to use these for the FreeBSD ports cluster... -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 15:38:18 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from gw.caamora.com.au (jonath5.lnk.telstra.net [139.130.41.237]) by hub.freebsd.org (Postfix) with ESMTP id 7F76811175 for ; Wed, 17 Feb 1999 15:38:04 -0800 (PST) (envelope-from jon@gw.caamora.com.au) Received: (from jon@localhost) by gw.caamora.com.au (8.8.8/8.8.8) id KAA23381; Thu, 18 Feb 1999 10:45:54 +1100 (EST) (envelope-from jon) Message-ID: <19990218104553.A23006@caamora.com.au> Date: Thu, 18 Feb 1999 10:45:53 +1100 From: jonathan michaels To: freebsd-hardware@freebsd.org Subject: scsi and a device mix Mail-Followup-To: freebsd-hardware@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i X-Operating-System: FreeBSD gw.caamora.com.au 2.2.7-RELEASE i386 X-Mood: i'm alive, if it counts Organisation: Caamora, PO Box 144, Rosebery NSW 1445 Australia Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org all i'm in a precarious position in that i have a scsi chain composed of several scsi1 harddrives, a scsi2 harddrive and a scsi2 cdrom. i;ve forgoten how to terminate the chain and lost the terminator resistor packs fo teh scsi1 drives. i've just converted to active termination on my new toy a ppro with an ibm 4g3 4k5 rpm scsi3 on an aha2940uw and one of those teflon and silver stranded scsi3 cables. this combination works a real treat. i'm hoping going to active termination will help resolve some of teh 'problems' i'm currently seeing on teh old harware .. all is some 10 year old but still good, except for teh weird scsi cable problems. as an aside, dos freebsd scsi drives handle scsi1 hard drives ? the machine in question ran freebsd 2.0.5-release upto its current v2.2.5-release inasllation. it has an adaptec aha1542b hostadapter. the machine itself is a i486dx33 vesa localbus without any localbus cards .. i've been looking ofr some but they seem to be not out thier anymore. in case it matters the hard drives are all fujitsu, a 500 mb scsi1 1/2 height a 650 mb full height 5 1/4 inch coffee warmer a conner 100 mb scsi1 and an nec 2x cdrom the original and still the best (IMO) cdrom .. grin. any suggestions would be greatly apreciated. ps, is it possible to discuss my scsi streamers device drive 'probelms' here, please ? if not where would the apropriate venue be ? regards jonathan -- =============================================================================== Jonathan Michaels PO Box 144, Rosebery, NSW 1445 Australia =========================================================== To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 17:13:46 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from truth.wofford.edu (truth.wofford.edu [199.190.174.30]) by hub.freebsd.org (Postfix) with SMTP id 1DDBD114BD for ; Wed, 17 Feb 1999 17:13:38 -0800 (PST) (envelope-from WELCHDW@truth.wofford.edu) Received: by truth.wofford.edu for HARDWARE@freebsd.org; Wed, 17 Feb 1999 20:13:37 -0500 Date: Wed, 17 Feb 1999 20:13:37 -0500 From: Dan Welch To: HARDWARE@FREEBSD.ORG Cc: WELCHDW@wofford.edu Message-Id: <990217201337.20e18285@wofford.edu> Subject: heath gc1000 clock Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a long shot. I have a Heath GC-1000 "Most Accurate Clock" in excellent condition that I would like to try attaching to my FreeBSD system as a time base. It's a short wave radio rcvr with RS232 output that I cannot decode easily because I have misplaced the manual. Anyone using, or ever used, one who knows the output signal coding or can share FreeBSD code for using it? Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 17:17:16 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from granite.sentex.net (granite.sentex.ca [199.212.134.1]) by hub.freebsd.org (Postfix) with ESMTP id 08F16115AA for ; Wed, 17 Feb 1999 17:17:10 -0800 (PST) (envelope-from mike@sentex.net) Received: from ospf-wat.sentex.net (ospf-wat.sentex.net [209.167.248.81]) by granite.sentex.net (8.8.8/8.6.9) with SMTP id UAA28466 for ; Wed, 17 Feb 1999 20:17:09 -0500 (EST) From: mike@sentex.net (Mike Tancsa) To: freebsd-hardware@freebsd.org Subject: Re: intel ether express pro Date: Thu, 18 Feb 1999 01:25:13 GMT Message-ID: <36cb6bb9.506944147@mail.sentex.net> References: In-Reply-To: X-Mailer: Forte Agent .99e/32.227 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 17 Feb 1999 09:39:00 -0500, in sentex.lists.freebsd.misc you wrote: >> I have a machine (IBM IntelliStation) and it has built in network >>card (eepro10/100). >> >> The kernel locks up, whenever I try to ifconfig the device. We >>have a autodetecting hub that can switch between 10/100. > > If that is the PCI version, then try putting it in a different PCI slot. I have had to do this a couple of times as well both for NT machines and FreeBSD machines. Is it a DMA issue ? I have never been entirely clear on the matter. ---Mike Mike Tancsa (mdtancsa@sentex.net) Sentex Communications Corp, Waterloo, Ontario, Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 19:10:22 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from bubba.whistle.com (s205m7.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 4828010E3B for ; Wed, 17 Feb 1999 19:10:19 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.2/8.9.2) id TAA32082; Wed, 17 Feb 1999 19:09:36 -0800 (PST) From: Archie Cobbs Message-Id: <199902180309.TAA32082@bubba.whistle.com> Subject: Re: heath gc1000 clock In-Reply-To: <990217201337.20e18285@wofford.edu> from Dan Welch at "Feb 17, 99 08:13:37 pm" To: WELCHDW@wofford.edu (Dan Welch) Date: Wed, 17 Feb 1999 19:09:36 -0800 (PST) Cc: HARDWARE@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dan Welch writes: > This is a long shot. I have a Heath GC-1000 "Most Accurate Clock" in > excellent condition that I would like to try attaching to my FreeBSD > system as a time base. It's a short wave radio rcvr with RS232 > output that I cannot decode easily because I have misplaced the > manual. Anyone using, or ever used, one who knows the output signal > coding or can share FreeBSD code for using it? Thanks. Check the sources and README's for xntpd.. they describe a bunch of clocks you can hook up. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 17 21:52: 6 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from enya.clari.net.au (enya.clari.net.au [203.8.14.116]) by hub.freebsd.org (Postfix) with ESMTP id 5B6F31139D for ; Wed, 17 Feb 1999 21:51:52 -0800 (PST) (envelope-from danny@enya.clari.net.au) Received: from localhost (danny@localhost) by enya.clari.net.au (8.8.8/8.8.7) with SMTP id QAA29881; Thu, 18 Feb 1999 16:51:36 +1100 (EST) (envelope-from danny@enya.clari.net.au) Date: Thu, 18 Feb 1999 16:51:36 +1100 (EST) From: "Daniel O'Callaghan" To: Dan Welch Cc: HARDWARE@FreeBSD.ORG Subject: Re: heath gc1000 clock In-Reply-To: <990217201337.20e18285@wofford.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 17 Feb 1999, Dan Welch wrote: > This is a long shot. I have a Heath GC-1000 "Most Accurate Clock" in > excellent condition that I would like to try attaching to my FreeBSD > system as a time base. It's a short wave radio rcvr with RS232 > output that I cannot decode easily because I have misplaced the > manual. Anyone using, or ever used, one who knows the output signal > coding or can share FreeBSD code for using it? Thanks. I think you'll find xntpd supports it. /usr/src/usr.sbin/xntpd/xntpd/refclock_heath.c /* * refclock_heath - clock driver for Heath GC-1000 Most Accurate Clock */ #if defined(REFCLOCK) && defined(HEATH) #include #include #include #include #include "ntpd.h" #include "ntp_io.h" #include "ntp_refclock.h" #include "ntp_stdlib.h" /* * This driver supports the Heath GC-1000 Most Accurate Clock, with * RS232C Output Accessory. This is a WWV/WWVH receiver somewhat less * robust than other supported receivers. Its claimed accuracy is 100 ms * when actually synchronized to the broadcast signal, but this doesn't * happen even most of the time, due to propagation conditions, ambient * noise sources, etc. When not synchronized, the accuracy is at the * whim of the internal clock oscillator, which can wander into the * sunset without warning. Since the indicated precision is 100 ms, * expect a host synchronized only to this thing to wander to and fro, * occasionally being rudely stepped when the offset exceeds the default * CLOCK_MAX of 128 ms. ...etc... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 2:10:54 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.6.51]) by hub.freebsd.org (Postfix) with ESMTP id 38F861132A for ; Thu, 18 Feb 1999 02:10:49 -0800 (PST) (envelope-from schofiel@xs4all.nl) Received: from excelsior (enterprise.xs4all.nl [194.109.14.215]) by smtp1.xs4all.nl (8.8.8/8.8.8) with SMTP id LAA05932 for ; Thu, 18 Feb 1999 11:10:48 +0100 (CET) Message-ID: <36CBF534.7D71@xs4all.nl> Date: Thu, 18 Feb 1999 11:10:44 +0000 From: Rob Schofield Organization: Kniggits X-Mailer: Mozilla 3.04Gold (WinNT; I) MIME-Version: 1.0 To: Free BSD Hardware list Subject: Microsoft Sound System Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Anyone got any documentation on Microst Sound System? In PDF form or otherwise? Or even pointers to appropriate web pages? I'm specifically looking for what resources it uses (IRQ, DMA, I/O, etc.) and what the default settings should be. Thanks, Rob Schofield -- The Ninety-Ninety Rule of Project Scheduling: The first ninety percent of the job takes ninety percent of the allotted time, the last ten percent takes the other ninety percent. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 5:14: 6 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from implode.root.com (root.com [208.221.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 08E0C10E94; Thu, 18 Feb 1999 05:14:02 -0800 (PST) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id FAA25405; Thu, 18 Feb 1999 05:10:40 -0800 (PST) Message-Id: <199902181310.FAA25405@implode.root.com> To: Mike Smith Cc: John Smith , freebsd-questions@FreeBSD.ORG, freebsd-hardware@FreeBSD.ORG Subject: Re: intel ether express pro In-reply-to: Your message of "Wed, 17 Feb 1999 14:38:53 PST." <199902172238.OAA01154@dingo.cdrom.com> From: David Greenman Reply-To: dg@root.com Date: Thu, 18 Feb 1999 05:10:40 -0800 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> > I have a machine (IBM IntelliStation) and it has built in network >> >card (eepro10/100). >> > >> > The kernel locks up, whenever I try to ifconfig the device. We >> >have a autodetecting hub that can switch between 10/100. >> >> If that is the PCI version, then try putting it in a different PCI slot. > >"Built in" typically means "on the motherboard". I obviously missed that. It would be interesting to install a PCI Pro/100+ and see if the behavior changes. That would lead me to think that the BIOS is doing something funky to it. I wonder if doing a "FXP_PORT_SOFTWARE_RESET" rather than, or in addition to, the "FXP_PORT_SELECTIVE_RESET" would effect the problem? -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 5:14:56 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from implode.root.com (root.com [208.221.12.98]) by hub.freebsd.org (Postfix) with ESMTP id 943FA10E95 for ; Thu, 18 Feb 1999 05:14:54 -0800 (PST) (envelope-from root@implode.root.com) Received: from implode.root.com (localhost [127.0.0.1]) by implode.root.com (8.8.8/8.8.5) with ESMTP id FAA25467; Thu, 18 Feb 1999 05:12:28 -0800 (PST) Message-Id: <199902181312.FAA25467@implode.root.com> To: mike@sentex.net (Mike Tancsa) Cc: freebsd-hardware@FreeBSD.ORG Subject: Re: intel ether express pro In-reply-to: Your message of "Thu, 18 Feb 1999 01:25:13 GMT." <36cb6bb9.506944147@mail.sentex.net> From: David Greenman Reply-To: dg@root.com Date: Thu, 18 Feb 1999 05:12:27 -0800 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >On 17 Feb 1999 09:39:00 -0500, in sentex.lists.freebsd.misc you wrote: > >>> I have a machine (IBM IntelliStation) and it has built in network >>>card (eepro10/100). >>> >>> The kernel locks up, whenever I try to ifconfig the device. We >>>have a autodetecting hub that can switch between 10/100. >> >> If that is the PCI version, then try putting it in a different PCI slot. > >I have had to do this a couple of times as well both for NT machines and >FreeBSD machines. Is it a DMA issue ? I have never been entirely clear on >the matter. My first thought was that one or more PCI slots on some motherboards aren't bus master capable, but this can't be the problem above since it is "built in". -DG David Greenman Co-founder/Principal Architect, The FreeBSD Project To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 9:11:51 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from gatekeeper.ray.com (gatekeeper.ray.com [138.125.162.1]) by hub.freebsd.org (Postfix) with ESMTP id 1EDEF1154E for ; Thu, 18 Feb 1999 09:11:45 -0800 (PST) (envelope-from moncrg@bt340707.res.ray.com) Received: (mailer@localhost) by gatekeeper.ray.com (8.8.7/8.8.7) id LAA09948 for ; Thu, 18 Feb 1999 11:57:37 -0500 (EST) Received: from dh5142115.res.ray.com/138.125.142.115() by gatekeeper.ray.com id sma.919356971.022199; Thu Feb 18 11:56:11 1999 Received: from bt340707.res.ray.com (localhost [127.0.0.1]) by e71000059.res.ray.com (8.9.2/8.9.2) with ESMTP id LAA00346 for ; Thu, 18 Feb 1999 11:56:59 -0500 (EST) (envelope-from moncrg@bt340707.res.ray.com) Message-ID: <36CC465B.8C3451D3@bt340707.res.ray.com> Date: Thu, 18 Feb 1999 11:56:59 -0500 From: Greg Moncreaff Reply-To: moncrg@bt340707.res.ray.com Organization: Raytheon Systems Company - Comm/Cmnd/Cntrl & Integration X-Mailer: Mozilla 4.5 [en] (X11; U; FreeBSD 3.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: hardware@FreeBSD.ORG Subject: Re: 3.1 and laptop hardware support References: <19990216210205.H11319@haydenisland.verio.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org not necessarily in response to the previous message, but in a similar vein..... I've had trouble using pccard/ep0 and went back to zp0. anyone experienced similar? -- Disclaimer: "this is my personal opinion and not that of my employer" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 10: 5:25 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from dingo.cdrom.com (castles98.castles.com [208.214.165.98]) by hub.freebsd.org (Postfix) with ESMTP id 4C8DD11695 for ; Thu, 18 Feb 1999 10:05:15 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (LOCALHOST [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id KAA06701; Thu, 18 Feb 1999 10:00:34 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199902181800.KAA06701@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: moncrg@bt340707.res.ray.com Cc: hardware@FreeBSD.ORG Subject: Re: 3.1 and laptop hardware support In-reply-to: Your message of "Thu, 18 Feb 1999 11:56:59 EST." <36CC465B.8C3451D3@bt340707.res.ray.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Feb 1999 10:00:34 -0800 From: Mike Smith Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > not necessarily in response to the previous message, > but in a similar vein..... > > I've had trouble using pccard/ep0 > and went back to zp0. > > anyone experienced similar? Only when pccardd was misconfigured. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 11:44:46 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from gatekeeper.ray.com (gatekeeper.ray.com [138.125.162.1]) by hub.freebsd.org (Postfix) with ESMTP id A1647116BD for ; Thu, 18 Feb 1999 11:44:39 -0800 (PST) (envelope-from moncrg@bt340707.res.ray.com) Received: (mailer@localhost) by gatekeeper.ray.com (8.8.7/8.8.7) id OAA13528; Thu, 18 Feb 1999 14:14:49 -0500 (EST) Received: from dh5142115.res.ray.com/138.125.142.115() by gatekeeper.ray.com id sma.919365220.029675; Thu Feb 18 14:13:40 1999 Received: from bt340707.res.ray.com (localhost [127.0.0.1]) by e71000059.res.ray.com (8.9.2/8.9.2) with ESMTP id OAA00566; Thu, 18 Feb 1999 14:14:26 -0500 (EST) (envelope-from moncrg@bt340707.res.ray.com) Message-ID: <36CC6692.1342A5A5@bt340707.res.ray.com> Date: Thu, 18 Feb 1999 14:14:26 -0500 From: Greg Moncreaff Reply-To: moncrg@bt340707.res.ray.com Organization: Raytheon Systems Company - Comm/Cmnd/Cntrl & Integration X-Mailer: Mozilla 4.5 [en] (X11; U; FreeBSD 3.1-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Mike Smith Cc: hardware@FreeBSD.ORG Subject: Re: 3.1 and laptop hardware support References: <199902181800.KAA06701@dingo.cdrom.com> Content-Type: multipart/alternative; boundary="------------B2D0EF3A9DCC791828FDD248" Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --------------B2D0EF3A9DCC791828FDD248 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit ok, I'll bite how did -I- screw it up this time? [it's wouldn't be the first time] did something get lost in the mergemaster marathon after I upgraded? I'm trying to use the BNC side of the combo dongle. The generic kernel after make upgrade [which worked just fine, btw] had the zp driver and all I had to do was `dhcpc zp0` [after adding bpf] when I tried a pcmcia kernel with ep0 I got a solid green led on the combo dongle and twidllin' the link0/1 flags didn't get me any packets [just turned the light out] and an eject/reinsert hung the system, [from `link_elf: symbol pccard_remove_controller undefined` ??] so I decided that I had other things to do and went back to zp0 Mike Smith wrote: > > not necessarily in response to the previous message, > > but in a similar vein..... > > > > I've had trouble using pccard/ep0 > > and went back to zp0. > > > > anyone experienced similar? > > Only when pccardd was misconfigured. > -- Disclaimer: "this is my personal opinion and not that of my employer" --------------B2D0EF3A9DCC791828FDD248 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit ok, I'll bite

how did -I- screw it up this time? [it's wouldn't be the first time]
did something get lost in the
mergemaster marathon
after I upgraded?

I'm trying to use the BNC side of the combo
dongle.

The generic kernel after make upgrade
[which worked just fine, btw]
had the zp driver and all I had to do was
`dhcpc zp0` [after adding bpf]

when I tried a pcmcia kernel with ep0
I got a solid green led on the combo dongle
and twidllin' the link0/1 flags didn't get me any packets
[just turned the light out]
and an eject/reinsert hung the system,
[from `link_elf: symbol pccard_remove_controller undefined` ??]
so I decided that I had other things to do and
went back to zp0
 

Mike Smith wrote:

> not necessarily in response to the previous message,
> but in a similar vein.....
>
> I've had trouble using pccard/ep0
> and went back to zp0.
>
> anyone experienced similar?

Only when pccardd was misconfigured.
 

-- Disclaimer: "this is my personal opinion and not that of my employer"
  --------------B2D0EF3A9DCC791828FDD248-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 13:31:39 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from hell.sknet.sk (mail.sknet.sk [195.12.128.7]) by hub.freebsd.org (Postfix) with ESMTP id 8335A117B9 for ; Thu, 18 Feb 1999 13:31:30 -0800 (PST) (envelope-from beko@max.sknet.sk) Received: from Dialup24.sknet.sk ([195.12.134.26]) by hell.sknet.sk with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2232.9) id FFQ5Q0SZ; Thu, 18 Feb 1999 22:33:54 +0100 Received: by Dialup24.sknet.sk with Microsoft Mail id <01BE5B8E.8CA28F60@Dialup24.sknet.sk>; Thu, 18 Feb 1999 22:32:21 +-100 Message-ID: <01BE5B8E.8CA28F60@Dialup24.sknet.sk> From: Pavol Beko To: "'freebsd-hardware@freebsd.org'" Subject: Accessing I/O ports Date: Thu, 18 Feb 1999 22:31:44 +-100 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm new in programing under FreeBSD. I tried to write a simple program which will shut down my hard drive, but program ended up with signal 10 (SIGBUS). Shuting down the first IDE hard drive is accomplished by sending to I/O port 0x1f7 value 0x99 trough outb() (from /machine/cpufunc.h) function. The same situation is when I try to access CMOS trough 0x70 and 0x71 I/O ports. There was no problem with this under 'other' OS. What went wrong? Is there some part of kernel (some syscall) which is responsible for handling these low level operation? (machine is 486, EIDE HDs, FreeBSD 2.2.8) Thanks Pavol To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 14: 3:39 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from home.dragondata.com (home.dragondata.com [204.137.237.2]) by hub.freebsd.org (Postfix) with ESMTP id 29EBB11618 for ; Thu, 18 Feb 1999 14:03:35 -0800 (PST) (envelope-from toasty@home.dragondata.com) Received: (from toasty@localhost) by home.dragondata.com (8.9.2/8.9.2) id QAA07420; Thu, 18 Feb 1999 16:03:14 -0600 (CST) From: Kevin Day Message-Id: <199902182203.QAA07420@home.dragondata.com> Subject: Re: Accessing I/O ports In-Reply-To: <01BE5B8E.8CA28F60@Dialup24.sknet.sk> from Pavol Beko at "Feb 18, 1999 10:31:44 pm" To: beko@max.sknet.sk (Pavol Beko) Date: Thu, 18 Feb 1999 16:03:14 -0600 (CST) Cc: freebsd-hardware@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hi, > I'm new in programing under FreeBSD. I tried to write a simple program which will > shut down my hard drive, but program ended up with signal 10 (SIGBUS). > Shuting down the first IDE hard drive is accomplished by sending to I/O port 0x1f7 > value 0x99 trough outb() (from /machine/cpufunc.h) function. The same situation is > when I try to access CMOS trough 0x70 and 0x71 I/O ports. There was no problem > with this under 'other' OS. > What went wrong? Is there some part of kernel (some syscall) which is responsible > for handling these low level operation? > (machine is 486, EIDE HDs, FreeBSD 2.2.8) > Thanks > > Pavol > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message > Try opening /dev/io first, then see if you have better luck. Kevin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 18 17: 5:35 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from gongshow.masterplan.org (masterplan.powersurfr.com [24.108.43.174]) by hub.freebsd.org (Postfix) with ESMTP id 1105311430 for ; Thu, 18 Feb 1999 17:05:31 -0800 (PST) (envelope-from jbg@masterplan.org) Received: from infomat (infomat.precident.com [192.168.4.2]) by gongshow.masterplan.org (8.8.8/8.8.8) with SMTP id SAA27979 for ; Thu, 18 Feb 1999 18:04:28 -0700 (MST) (envelope-from jbg@masterplan.org) Message-Id: <199902190104.SAA27979@gongshow.masterplan.org> From: jbg@masterplan.org (Jason George) To: freebsd-hardware@freebsd.org Subject: Re: Microsoft Sound System Organization: The Master Plan Always Fails... Date: Fri, 19 Feb 1999 01:05:14 GMT Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Anyone got any documentation on Microst Sound System? In PDF form or >otherwise? Or even pointers to appropriate web pages? > >I'm specifically looking for what resources it uses (IRQ, DMA, I/O, >etc.) and what the default settings should be. > Well, all I have is a set of notes scratched on a sheet of paper. The DMA and IRQ of the card are set from within Windows, if I remember correctly. The default is IRQ 11 and DMA 0. The I/O addresses are set as follows by the jumpers on the upper lefthand side of the card: 0x530 0x604 0xE80 0xF40 X-X O O X-X O X-X X-X O X-X O O X-X X-X O O X-X Hope this helps. --Jason j.b.georgeieee.org jbgmasterplan.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 1:52:22 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from zed.ludd.luth.se (zed.ludd.luth.se [130.240.16.33]) by hub.freebsd.org (Postfix) with ESMTP id 105D3113DE for ; Fri, 19 Feb 1999 01:52:16 -0800 (PST) (envelope-from pb@ludd.luth.se) Received: from father.ludd.luth.se (pb@father.ludd.luth.se [130.240.16.18]) by zed.ludd.luth.se (8.8.5/8.8.5) with ESMTP id KAA28970 for ; Fri, 19 Feb 1999 10:52:14 +0100 From: Peter Brevik Received: (pb@localhost) by father.ludd.luth.se (8.6.11/8.6.11) id KAA09663 for freebsd-hardware@freebsd.org; Fri, 19 Feb 1999 10:52:11 +0100 Message-Id: <199902190952.KAA09663@father.ludd.luth.se> Subject: Digital DE201 / DE205 card To: freebsd-hardware@freebsd.org Date: Fri, 19 Feb 1999 10:52:11 +0100 (MET) X-Mailer: ELM [version 2.4ME+ PL15 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I happend to get my hands on a Digital DE201 or? DE205 ethernet card. However it seems to have a port that I don't think is related to ethernet. So I wonder if someone have a clue what it is for.. ? (and it's not PS/2 because I tried both the ps/2 keyboard andmouse there) There is a chip called "MC68661PC" on the card. And it seems to be an UART. Pictures is at: http://wave.campus.luth.se/~pb/tmp/ /Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 2:54:23 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.6.51]) by hub.freebsd.org (Postfix) with ESMTP id BA00D1163F for ; Fri, 19 Feb 1999 02:54:03 -0800 (PST) (envelope-from schofiel@xs4all.nl) Received: from excelsior (enterprise.xs4all.nl [194.109.14.215]) by smtp1.xs4all.nl (8.8.8/8.8.8) with SMTP id LAA18750 for ; Fri, 19 Feb 1999 11:54:02 +0100 (CET) Message-ID: <36CD50D7.270B@xs4all.nl> Date: Fri, 19 Feb 1999 11:53:59 +0000 From: Rob Schofield Organization: Kniggits X-Mailer: Mozilla 3.04Gold (WinNT; I) MIME-Version: 1.0 To: Free BSD Hardware list Subject: Re: Digital DE201 / DE205 card References: <199902190952.KAA09663@father.ludd.luth.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Brevik wrote: > > I happend to get my hands on a Digital DE201 or? DE205 ethernet card. However > it seems to have a port that I don't think is related to ethernet. So I > wonder if someone have a clue what it is for.. ? > (and it's not PS/2 because I tried both the ps/2 keyboard andmouse there) If I recall rightly, this is the port for the DEC "Hockey Puck" style mouse, which is not PS/2 compatible. There was a thread about this recently on comp.sys.dec. Rob Schofield -- The Ninety-Ninety Rule of Project Scheduling: The first ninety percent of the job takes ninety percent of the allotted time, the last ten percent takes the other ninety percent. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 3: 2:30 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from venus.GAIANET.NET (venus.GAIANET.NET [207.211.200.74]) by hub.freebsd.org (Postfix) with ESMTP id 1371D10E61 for ; Fri, 19 Feb 1999 03:02:26 -0800 (PST) (envelope-from vince@venus.GAIANET.NET) Received: from localhost (vince@localhost) by venus.GAIANET.NET (8.9.1/8.9.1) with ESMTP id DAA02504; Fri, 19 Feb 1999 03:02:22 -0800 (PST) (envelope-from vince@venus.GAIANET.NET) Date: Fri, 19 Feb 1999 03:02:21 -0800 (PST) From: Vincent Poy To: David Greenman Cc: Mike Tancsa , freebsd-hardware@FreeBSD.ORG Subject: Re: intel ether express pro In-Reply-To: <199902181312.FAA25467@implode.root.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 18 Feb 1999, David Greenman wrote: > My first thought was that one or more PCI slots on some motherboards > aren't bus master capable, but this can't be the problem above since it is > "built in". Hmmm, just thought of something. A few days ago, we upgraded a 2.2.7-RELEASE machine to 3.0-RELEASE that uses a Linksys 10/100 NIC with the DEC 21140 chip. The board just kept failing in 3.0-RELEASE with a message during bootup: de0: autosense failed: Cable problem? We have tried switching PCI slots and it got worst saying interrupt 2300 - level too high. When using kernel.old which is 2.2.7-RELEASE, the board detected fine. We have tried replacing the card with a Netgear card that uses the DEC 21140A chipset and while it works for the ethernet interface, it seems to make the autosensing go wild on the hub/switch it's connected to. The 2.2.7-RELEASE worked fine for this one as well. Any ideas? Cheers, Vince - vince@MCESTATE.COM - vince@GAIANET.NET ________ __ ____ Unix Networking Operations - FreeBSD-Real Unix for Free / / / / | / |[__ ] GaiaNet Corporation - M & C Estate / / / / | / | __] ] Beverly Hills, California USA 90210 / / / / / |/ / | __] ] HongKong Stars/Gravis UltraSound Mailing Lists Admin /_/_/_/_/|___/|_|[____] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 8:58: 1 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (Postfix) with ESMTP id 1A7C911943 for ; Fri, 19 Feb 1999 08:57:42 -0800 (PST) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id LAA13473; Fri, 19 Feb 1999 11:57:37 -0500 (EST) Date: Fri, 19 Feb 1999 11:57:36 -0500 (EST) From: "Matthew N. Dodd" To: Rob Schofield Cc: Free BSD Hardware list Subject: Re: Digital DE201 / DE205 card In-Reply-To: <36CD50D7.270B@xs4all.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 19 Feb 1999, Rob Schofield wrote: > Peter Brevik wrote: > > I happend to get my hands on a Digital DE201 or? DE205 ethernet card. However > > it seems to have a port that I don't think is related to ethernet. So I > > wonder if someone have a clue what it is for.. ? > > (and it's not PS/2 because I tried both the ps/2 keyboard andmouse there) > > If I recall rightly, this is the port for the DEC "Hockey Puck" style > mouse, which is not PS/2 compatible. > > There was a thread about this recently on comp.sys.dec. Why the heck do you assume some random port on a -network- card would have anything to do with mice? It looks like one of the cards in the picture is an appletalk card. Actually providing a scaned picture of the component side of the card would have been more useful. Plugging random stuff into unknown cards is a good way to let the magic smoke out. -- | Matthew N. Dodd | 78 280Z | 75 164E | 84 245DL | FreeBSD/NetBSD/Sprite/VMS | | winter@jurai.net | This Space For Rent | ix86,sparc,m68k,pmax,vax | | http://www.jurai.net/~winter | Are you k-rad elite enough for my webpage? | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 9: 6:33 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.6.51]) by hub.freebsd.org (Postfix) with ESMTP id 4A19611866 for ; Fri, 19 Feb 1999 09:06:29 -0800 (PST) (envelope-from schofiel@xs4all.nl) Received: from excelsior (enterprise.xs4all.nl [194.109.14.215]) by smtp1.xs4all.nl (8.8.8/8.8.8) with SMTP id SAA06531 for ; Fri, 19 Feb 1999 18:06:28 +0100 (CET) Message-ID: <36CDA820.2224@xs4all.nl> Date: Fri, 19 Feb 1999 18:06:24 +0000 From: Rob Schofield Organization: Kniggits X-Mailer: Mozilla 3.04Gold (WinNT; I) MIME-Version: 1.0 To: Free BSD Hardware list Subject: Re: Digital DE201 / DE205 card References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew N. Dodd wrote: > Why the heck do you assume some random port on a -network- card would have > anything to do with mice? Mainly because the original DEC-PA, DEC-PD, DEC104-PD network cards have a mouse port. OK? Rob Schofield -- The Ninety-Ninety Rule of Project Scheduling: The first ninety percent of the job takes ninety percent of the allotted time, the last ten percent takes the other ninety percent. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 10:26:25 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from symbion.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by hub.freebsd.org (Postfix) with ESMTP id E9B0511B57 for ; Fri, 19 Feb 1999 10:26:06 -0800 (PST) (envelope-from gjohnson@nola.srrc.usda.gov) Received: from symbion.srrc.usda.gov (localhost [127.0.0.1]) by symbion.srrc.usda.gov (8.9.2/8.9.2) with SMTP id MAA89562 for ; Fri, 19 Feb 1999 12:25:58 -0600 (CST) (envelope-from gjohnson@nola.srrc.usda.gov) Date: Thu, 14 Jan 1999 11:08:04 -0600 From: Glenn Johnson To: hardware@freebsd.org Subject: ultra scsi hard drive Message-ID: <19990114110804.A53280@symbion.srrc.usda.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.1i Lines: 15 X-Keywords: X-UID: 1 Cc: Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am looking to buy an ultra scsi hard drive for my home system. I came across a few Micropolis drives in my search but wanted to get some feedback. Does anyone have experience with Micropolis drives? How is the warranty handled since they are out of business? Also, does anyone have any experience with refurbished hard drives? Is this a viable alternative? If so, could you provide the name of a reputable vendor? Thanks in advance. -- Glenn Johnson Technician USDA, ARS, SRRC New Orleans, LA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 12:14:46 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from penmax.com (cc595093-a.mdltwn1.nj.home.com [24.3.192.38]) by hub.freebsd.org (Postfix) with ESMTP id 39395117A0 for ; Fri, 19 Feb 1999 12:14:01 -0800 (PST) (envelope-from vincef@penmax.com) Received: from rembrandt (rembrandt.penmax.com [10.1.3.2]) by penmax.com (8.8.8/8.8.8) with SMTP id PAA12425; Fri, 19 Feb 1999 15:18:16 -0500 (EST) (envelope-from vincef@penmax.com) Received: by rembrandt with Microsoft Mail id <01BE5C1A.B014A280@rembrandt>; Fri, 19 Feb 1999 15:15:30 -0500 Message-ID: <01BE5C1A.B014A280@rembrandt> From: Vincent Fleming To: "'Glenn Johnson'" , "hardware@FreeBSD.ORG" Subject: RE: ultra scsi hard drive Date: Fri, 19 Feb 1999 15:15:29 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Glenn, Do yourself a favor and stay away from those "MiCRAPolis" drives. They're known for not being reliable. They went out of business for good reason. Buy yourself a Seagate or IBM. They work. Vince -----Original Message----- From: Glenn Johnson [SMTP:gjohnson@nola.srrc.usda.gov] Sent: Thursday, January 14, 1999 12:08 PM To: hardware@FreeBSD.ORG Subject: ultra scsi hard drive I am looking to buy an ultra scsi hard drive for my home system. I came across a few Micropolis drives in my search but wanted to get some feedback. Does anyone have experience with Micropolis drives? How is the warranty handled since they are out of business? Also, does anyone have any experience with refurbished hard drives? Is this a viable alternative? If so, could you provide the name of a reputable vendor? Thanks in advance. -- Glenn Johnson Technician USDA, ARS, SRRC New Orleans, LA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 14:40: 7 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from sasami.jurai.net (sasami.jurai.net [207.153.65.3]) by hub.freebsd.org (Postfix) with ESMTP id DBEEB1190E for ; Fri, 19 Feb 1999 14:40:04 -0800 (PST) (envelope-from winter@jurai.net) Received: from localhost (winter@localhost) by sasami.jurai.net (8.8.8/8.8.7) with SMTP id RAA17815; Fri, 19 Feb 1999 17:39:58 -0500 (EST) Date: Fri, 19 Feb 1999 17:39:58 -0500 (EST) From: "Matthew N. Dodd" To: Rob Schofield Cc: Free BSD Hardware list Subject: Re: Digital DE201 / DE205 card In-Reply-To: <36CDA820.2224@xs4all.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 19 Feb 1999, Rob Schofield wrote: > Matthew N. Dodd wrote: > > Why the heck do you assume some random port on a -network- card would have > > anything to do with mice? > > Mainly because the original DEC-PA, DEC-PD, DEC104-PD network cards have > a mouse port. OK? Cool. It just sounded like bad ju-ju to go plugging random stuff into something that looks like a mouse port. I'll STFU next time. -- | Matthew N. Dodd | 78 280Z | 75 164E | 84 245DL | FreeBSD/NetBSD/Sprite/VMS | | winter@jurai.net | This Space For Rent | ix86,sparc,m68k,pmax,vax | | http://www.jurai.net/~winter | Are you k-rad elite enough for my webpage? | To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 14:53:27 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from smtp1.xs4all.nl (smtp1.xs4all.nl [194.109.6.51]) by hub.freebsd.org (Postfix) with ESMTP id 612B5117BF for ; Fri, 19 Feb 1999 14:53:24 -0800 (PST) (envelope-from schofiel@xs4all.nl) Received: from excelsior (enterprise.xs4all.nl [194.109.14.215]) by smtp1.xs4all.nl (8.8.8/8.8.8) with SMTP id XAA02415 for ; Fri, 19 Feb 1999 23:53:23 +0100 (CET) Message-ID: <36CDF96F.7A1C@xs4all.nl> Date: Fri, 19 Feb 1999 23:53:19 +0000 From: Rob Schofield Organization: Kniggits X-Mailer: Mozilla 3.04Gold (WinNT; I) MIME-Version: 1.0 To: Free BSD Hardware list Subject: Re: Digital DE201 / DE205 card References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew N. Dodd wrote: > And another thing; he wasn't talking about a DEC-PA, DEC-PD, or DEC104-PD. No, he wasn't. > Read the subject. Yes, I managed that bit OK. > The 3 you mention sound like something out of a VAXmate or something. No, they were PC ISA cards (8 & 16 bit) supplied by DEC around 1990 or so to allow PC's to connect on DECNet networks and operate as X-Terms. -- The Ninety-Ninety Rule of Project Scheduling: The first ninety percent of the job takes ninety percent of the allotted time, the last ten percent takes the other ninety percent. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 15:11:24 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from bastuba.partitur.se (bastuba.partitur.se [193.219.246.194]) by hub.freebsd.org (Postfix) with ESMTP id 112CC10E54; Fri, 19 Feb 1999 15:11:19 -0800 (PST) (envelope-from girgen@partitur.se) Received: from partitur.se (solist.partitur.se [193.219.246.204]) by bastuba.partitur.se (8.8.8/8.8.8) with ESMTP id AAA08138; Sat, 20 Feb 1999 00:11:18 +0100 (CET) (envelope-from girgen@partitur.se) Message-ID: <36CDEF93.EA37B227@partitur.se> Date: Sat, 20 Feb 1999 00:11:15 +0100 From: Palle Girgensohn Organization: Partitur X-Mailer: Mozilla 4.5 [en] (X11; I; SunOS 5.6 sun4u) X-Accept-Language: sv, en MIME-Version: 1.0 To: freebsd-multimedia@freebsd.org, freebsd-hardware@freebsd.org Subject: intel se440bx-2 and Luigi's sound driver? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I used to have an intel se440bx motherboard, and it worked fine using sound with Luigi's sound driver. Now, it has been switched for a se440bx-2, and the kernel doesn't utter a char about any audio hw during boots, and of course audio doesn't work... I use controller pnp0 device pcm0 at isa ? port? tty irq 5 drq 1 flags 0x15 vector pcmintr Any ideas how to get audio working with the bx-2? regards, Palle To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 19 17:46:39 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from ww183.netaddress.usa.net (ww183.netaddress.usa.net [204.68.24.83]) by hub.freebsd.org (Postfix) with SMTP id 7A73911544 for ; Fri, 19 Feb 1999 17:46:19 -0800 (PST) (envelope-from ipfreak@netscape.net) Received: (qmail 18244 invoked by uid 60001); 20 Feb 1999 01:44:12 -0000 Message-ID: <19990220014412.18243.qmail@ww183.netaddress.usa.net> Received: from 204.68.24.83 by ww183 via web-mailer(R2.6) on Sat Feb 20 01:44:12 GMT 1999 Date: 19 Feb 99 17:44:12 PST From: Gahn Lu To: freebsd-hardware@FreeBSD.ORG Subject: CompaQ hardware Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi all: I have one Compaq DESKPRO XL 560 and one Compaq Proliant (?) 800. Could I= use thme to install freebsd? TIA _gahn ____________________________________________________________________ More than just email--Get your FREE Netscape WebMail account today at htt= p://home.netscape.com/netcenter/mail To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sat Feb 20 5: 1: 9 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from golem.belabm.by (golem.belabm.by [194.226.122.185]) by hub.freebsd.org (Postfix) with ESMTP id 27C9410E05 for ; Sat, 20 Feb 1999 05:00:38 -0800 (PST) (envelope-from e.vedischev@belabm.by) Received: from belabm.by (saint.belabm.by [194.226.122.183]) by golem.belabm.by (8.8.7/8.8.4) with ESMTP id PAA26037; Sat, 20 Feb 1999 15:00:20 +0300 Message-ID: <36CEB091.C90A66BF@belabm.by> Date: Sat, 20 Feb 1999 14:54:41 +0200 From: Eugene Vedistchev Reply-To: e.vedischev@belabm.by Organization: BelABM X-Mailer: Mozilla 4.08 [en] (Win98; I) MIME-Version: 1.0 To: Gahn Lu Cc: freebsd-hardware@FreeBSD.ORG Subject: Re: CompaQ hardware References: <19990220014412.18243.qmail@ww183.netaddress.usa.net> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello DeskPro XL 560 - 2.2.8 only: AMD scsi driver which hasn't rewritten for new CAM SCSI layer in 3.x. driver for AMD PCnet LAN chip is unstable, though :( Proliat 800 - 2.2.8 and 3.x: Compaq Integrated UW SCSI = Symbios 875, driver exist, there was succesful reports in mailings lists; Compaq Integrated Netelligent 10/100 - TI ThunderLAN chip, driver xl0. Eugene PS. Sorry for bad english :) Gahn Lu wrote: > > Hi all: > > I have one Compaq DESKPRO XL 560 and one Compaq Proliant (?) 800. Could I > use thme to install freebsd? > > TIA > > _gahn > > ____________________________________________________________________ > More than just email--Get your FREE Netscape WebMail account today at http://home.netscape.com/netcenter/mail > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sat Feb 20 5:45:33 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from interjet.reinelinjer.no (4pogc-gw.online.no [194.248.199.142]) by hub.freebsd.org (Postfix) with ESMTP id 9570910E6B; Sat, 20 Feb 1999 05:45:19 -0800 (PST) (envelope-from erik@habatech.no) Received: (from daemon@localhost) by interjet.reinelinjer.no (8.8.5/8.8.5) id CAA07670; Sat, 20 Feb 1999 02:38:35 +0100 (CET) Received: from UNKNOWN(62.92.133.2), claiming to be "haba.reinelinjer.no" via SMTP by interjet.reinelinjer.no, id smtpdVF7668; Sat Feb 20 01:38:28 1999 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=iso-8859-10 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 In-Reply-To: <36CDEF93.EA37B227@partitur.se> Date: Sat, 20 Feb 1999 14:43:35 +0100 (CET) Organization: Habatech AS From: "Erik H. Bakke" To: Palle Girgensohn Subject: RE: intel se440bx-2 and Luigi's sound driver? Cc: freebsd-hardware@FreeBSD.ORG, freebsd-multimedia@FreeBSD.ORG Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 19-Feb-99 Palle Girgensohn wrote: > Hi! >=20 > I used to have an intel se440bx motherboard, and it worked fine using > sound with Luigi's sound driver. Now, it has been switched for a > se440bx-2, and the kernel doesn't utter a char about any audio hw during > boots, and of course audio doesn't work... >=20 > I use=20 >=20 > controller pnp0 > device pcm0 at isa ? port? tty irq 5 drq 1 flags 0x15 vector pcmintr >=20 > Any ideas how to get audio working with the bx-2? >=20 This is probably just some basic suggestions, but it is amazing how often simple things can mess up a system. 1. Do the new mainboard still have the same sound system? 2. Is the sound chip enabled? Good luck, anyway :) -- Erik H. Bakke | To be or not to be | CGI, konsulenttjenester, Habatech AS | is simply a question | hardware, software, erik@habatech.no | about binary logic | l=F8sninger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sat Feb 20 11:20: 0 1999 Delivered-To: freebsd-hardware@freebsd.org Received: from panzer.plutotech.com (panzer.plutotech.com [206.168.67.125]) by hub.freebsd.org (Postfix) with ESMTP id 7EB82117B8 for ; Sat, 20 Feb 1999 11:19:34 -0800 (PST) (envelope-from ken@panzer.plutotech.com) Received: (from ken@localhost) by panzer.plutotech.com (8.9.2/8.8.5) id MAA13718; Sat, 20 Feb 1999 12:18:56 -0700 (MST) From: "Kenneth D. Merry" Message-Id: <199902201918.MAA13718@panzer.plutotech.com> Subject: Re: CompaQ hardware In-Reply-To: <36CEB091.C90A66BF@belabm.by> from Eugene Vedistchev at "Feb 20, 1999 2:54:41 pm" To: e.vedischev@belabm.by Date: Sat, 20 Feb 1999 12:18:56 -0700 (MST) Cc: ipfreak@netscape.net, freebsd-hardware@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Eugene Vedistchev wrote... > Hello > > DeskPro XL 560 - 2.2.8 only: > AMD scsi driver which hasn't rewritten for new CAM SCSI layer in 3.x. > driver for AMD PCnet LAN chip is unstable, though :( Well, a guy at Tekram has rewritten the AMD driver for CAM. Once we get it tested, we'll put it in the tree. (in other words, don't go out buying AMD-based cards just yet) Of course that won't change what is already in 3.0 and 3.1. Ken -- Kenneth Merry ken@plutotech.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message