From owner-freebsd-stable@FreeBSD.ORG Tue Apr 12 19:35:13 2011 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB18E1065675 for ; Tue, 12 Apr 2011 19:35:13 +0000 (UTC) (envelope-from przemyslaw@frasunek.com) Received: from lagoon.freebsd.lublin.pl (lagoon.freebsd.lublin.pl [IPv6:2a02:2928:a::3]) by mx1.freebsd.org (Postfix) with ESMTP id 6B8C38FC0A for ; Tue, 12 Apr 2011 19:35:13 +0000 (UTC) Received: from [IPv6:2a02:2928:a:ffff:8c0b:32ff:fee0:8d92] (unknown [IPv6:2a02:2928:a:ffff:8c0b:32ff:fee0:8d92]) by lagoon.freebsd.lublin.pl (Postfix) with ESMTPSA id BED9923946A for ; Tue, 12 Apr 2011 21:35:11 +0200 (CEST) Message-ID: <4DA4A96F.9000507@frasunek.com> Date: Tue, 12 Apr 2011 21:35:11 +0200 From: Przemyslaw Frasunek User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.14) Gecko/20110223 Thunderbird/3.1.8 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Missing serial port after enabling serial console in loader.conf X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Apr 2011 19:35:13 -0000 Hello, I'm struggling with enabling serial console on Intel SR1630GP server platform and FreeBSD 7.4. In default configuration, my serial ports are detected correctly: sio0: <16550A-compatible COM port> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 sio0: type 16550A sio0: [FILTER] sio1: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 on acpi0 sio1: type 16550A sio1: [FILTER] Both serial ports are usable - sio0 is redirected to BMC and sio1 is a physical port. I can use getty on both ports. If I put following statements in /boot/loader.conf: boot_multicons="YES" boot_serial="YES" console="comconsole,vidconsole" I have correct output on serial console from loader and booting kernel, however after kernel is booted, the port is missing. Dmesg shows, that only one port is being detected, which formerly was sio1: sio0: <16550A-compatible COM port> port 0x2f8-0x2ff irq 3 flags 0x10 on acpi0 sio0: type 16550A, console sio0: [FILTER] Thus, I'm unable to run getty. I belive that this issue might be related to ACPI, as similar problem was already reported in http://markmail.org/message/chu6ilwhsxtarkfm Is there any solution to this problem?