From owner-freebsd-questions Wed Jul 10 02:42:31 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA27041 for questions-outgoing; Wed, 10 Jul 1996 02:42:31 -0700 (PDT) Received: from diablo.ppp.de (diablo.ppp.de [193.141.101.34]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id CAA27027 for ; Wed, 10 Jul 1996 02:42:18 -0700 (PDT) Received: from allegro.lemis.de by diablo.ppp.de with smtp (Smail3.1.28.1 #1) id m0udvmY-000QbzC; Wed, 10 Jul 96 11:42 MET DST From: grog@lemis.de (Greg Lehey) Organisation: LEMIS, Schellnhausen 2, 36325 Feldatal, Germany Phone: +49-6637-919123 Fax: +49-6637-919122 Received: (grog@localhost) by allegro.lemis.de (8.6.9/8.6.9) id KAA22124; Wed, 10 Jul 1996 10:23:26 +0200 Message-Id: <199607100823.KAA22124@allegro.lemis.de> Subject: Recognizing serial ports (was: FreeBSD 2.1 Help) To: skrishna@cisco.com (Sridhar Krishnan) Date: Wed, 10 Jul 1996 10:23:26 +0200 (MET DST) Cc: questions@FreeBSD.org (FreeBSD Questions) In-Reply-To: from "Sridhar Krishnan" at Jul 8, 96 04:34:37 pm X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk Sridhar Krishnan writes: > > I have not resolved the problem using the internal modem on COM1. Here is the > scenario: > > I have MWave card on IBM Aptiva system that combines the functions of a > Sound Card, some DSP, COM1 Fax/Modem. The COM1 has an i/o address of > 02F8h (0x2f8) and uses IRQ 4. I have PS/2 mouse which is working fine. > > Has anybody heard of the Mwave Card ? I scanned through the FAQ for > hardware support and I could not find any. > > The system also comes with two (extrenal) serial ports A & B which are > configured as COM2 (0x3e8, IRQ 3) and COM3 (0x3e8, IRQ 4). Standard PC hardware will not let you share serial port interrupts. I don't know to what extent your hardware is standard, but the fact that the probes don't recognize your ports suggest that this could be the problem. > I have tried kernel configuration: > - sio0 with 0x2f8 and intr. 4 , with/without conflicts clause > and commented out sio1, sio2 and sio3. I saw the WIN95 config, it shows > COM1 at the above address. > > During boot, the kernel says that sio0 is not configured because 0x2f8 > does not respond. I believe it's looking for an interrupt. The other port is holding the interrupt inactive, so it doesn't get one. > The only way sio0 would work is if I configured my > kernel for 0x38h which is actually COM3. That is why my modem is not > responding (sincve it is configured as COM3). I don't quite understand this, but it's probably not the problem. > How do I get the kernel to recognize sio0 ? Does the serial driver only > recognize serial port cards and not this multi-function card. If so, any > ideas how I can use the built-in modem. I'd suggest that you start by choosing a different IRQ for each of your serial ports. It doesn't matter much which you choose, though I'd personally stick with IRQ 4 for sio0, IRQ3 for sio1, and something else (IRQ2? IRQ5? nothing at all?) for sio2. That way the kernel should recognize it at boot. Greg