From owner-freebsd-amd64@FreeBSD.ORG Mon Aug 3 03:54:39 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ECE48106566B for ; Mon, 3 Aug 2009 03:54:39 +0000 (UTC) (envelope-from lstopcat@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.237]) by mx1.freebsd.org (Postfix) with ESMTP id C35DE8FC08 for ; Mon, 3 Aug 2009 03:54:39 +0000 (UTC) (envelope-from lstopcat@gmail.com) Received: by rv-out-0506.google.com with SMTP id f9so972407rvb.43 for ; Sun, 02 Aug 2009 20:54:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=RnEsuLe/e5XxVExCNNaZhvkUjeN7/eESC6Se6IBGaw8=; b=TJYQRrQQKBBtulxG3i7wo8xNz9OYgGwYHWm9qk0knq9nLdy72GuaA1wTe7C9AZPiWA ySQZBlFPlBFHiNepYlA1QSH3VdoajE3In36D58nKeiqCeDMk/wEkg9Z/sEuxmNPFA4/P 9Ap9Oxot2G9MZ4HVOv7V2q/G50AvfQGqKsk5o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=TkF8qrgDcZ22DjyXTogviKsVoAipWfx7moJJYNvWLjbNMPIPK91GZ/gNJ4FNeBIZSy JRcMecYhxsq7CvP2aKPw2TFQPEn7YKr13m5hhgGKBHSEm2rN4VAWGYVA9QUyY7OXjTj+ 2aQiB9LB/LP0TeIMysjAzELB2E7zLikfd8J4c= MIME-Version: 1.0 Received: by 10.140.128.12 with SMTP id a12mr3234996rvd.219.1249270282491; Sun, 02 Aug 2009 20:31:22 -0700 (PDT) Date: Mon, 3 Aug 2009 11:31:22 +0800 Message-ID: <7ef0ca990908022031w6af27b2dh3d3d944b986451a5@mail.gmail.com> From: ls cat To: freebsd-amd64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: i386 libpcap binary run in amd64 core dumped X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2009 03:54:40 -0000 I need run a sniffer/libpcap program in freebsd-7.2-amd64 which compiled for freebsd-6.2-i386. it coredumped in pcap_setnonblock().seems 7.2-amd64's ioctl() does not recognize the 6.2-i386 bpf ioctl() request. BIOCGDLTLIST request failed. maybe BIOCSRTIMEOUT cause program coredumped. char errstr[1024]; pcap_t *pd1; pd1 = pcap_open_live("em0", 8192, 1, 1000, errstr); pcap_setnonblock(pd1, 1, errstr); kdump of FreeBSD fbsd-6.2: 975 a.out CALL open(0xbfbfe240,0x2,0x2809be26) 975 a.out NAMI "/dev/bpf0" 975 a.out RET open 3 975 a.out CALL ioctl(0x3,BIOCVERSION,0xbfbfe234) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCGBLEN,0xbfbfe230) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCSBLEN,0xbfbfe230) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCSETIF,0xbfbfe760) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCGDLT,0xbfbfe230) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCGDLTLIST,0xbfbfe238) 975 a.out RET ioctl 0 975 a.out CALL break(0x804d000) 975 a.out RET break 0 975 a.out CALL ioctl(0x3,BIOCGDLTLIST,0xbfbfe238) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCSHDRCMPLT,0xbfbfe22c) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCSRTIMEOUT,0xbfbfe220) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCPROMISC,0) 975 a.out RET ioctl 0 975 a.out CALL ioctl(0x3,BIOCGBLEN,0xbfbfe230) 975 a.out RET ioctl 0 975 a.out CALL break(0x8055000) 975 a.out RET break 0 975 a.out CALL ioctl(0x3,BIOCSETF,0xbfbfe210) 975 a.out RET ioctl 0 kdump of FreeBSD fbsd-7.2: 7961 a.out CALL open(0xffffdbd4,O_RDWR,0x280a1cd2) 7961 a.out NAMI "/dev/bpf0" 7961 a.out RET open 3 7961 a.out CALL ioctl(0x3,BIOCVERSION,0xffffdc08) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,BIOCGBLEN,0xffffdc00) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,BIOCSBLEN,0xffffdc00) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,BIOCSETIF,0xffffdbb4) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,BIOCGDLT,0xffffdc00) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,0xc0084279 ,0xffffdbf8) 7961 a.out RET ioctl -1 errno 22 Invalid argument 7961 a.out CALL ioctl(0x3,BIOCSHDRCMPLT,0xffffdc04) 7961 a.out RET ioctl 0 7961 a.out CALL ioctl(0x3,0x8008426d ,0xffffdbd4) 7961 a.out RET ioctl -1 errno 22 Invalid argument 7961 a.out CALL close(0x3) 7961 a.out RET close 0 7961 a.out PSIG SIGSEGV SIG_DFL 7961 a.out NAMI "a.out.core" From owner-freebsd-amd64@FreeBSD.ORG Mon Aug 3 16:12:54 2009 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 81F701065691 for ; Mon, 3 Aug 2009 16:12:54 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 524B78FC15 for ; Mon, 3 Aug 2009 16:12:54 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from bigwig.baldwin.cx (66.111.2.69.static.nyinternet.net [66.111.2.69]) by cyrus.watson.org (Postfix) with ESMTPSA id 0BD9246B1A; Mon, 3 Aug 2009 12:12:54 -0400 (EDT) Received: from jhbbsd.hudson-trading.com (unknown [209.249.190.8]) by bigwig.baldwin.cx (Postfix) with ESMTPA id 617A38A0A2; Mon, 3 Aug 2009 12:12:53 -0400 (EDT) From: John Baldwin To: ls cat Date: Mon, 3 Aug 2009 09:06:03 -0400 User-Agent: KMail/1.9.7 References: <7ef0ca990908022031w6af27b2dh3d3d944b986451a5@mail.gmail.com> In-Reply-To: <7ef0ca990908022031w6af27b2dh3d3d944b986451a5@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200908030906.04244.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0.1 (bigwig.baldwin.cx); Mon, 03 Aug 2009 12:12:53 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.95.1 at bigwig.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-2.5 required=4.2 tests=AWL,BAYES_00, DATE_IN_PAST_03_06,RDNS_NONE autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on bigwig.baldwin.cx Cc: freebsd-amd64@FreeBSD.org Subject: Re: i386 libpcap binary run in amd64 core dumped X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2009 16:12:55 -0000 On Sunday 02 August 2009 11:31:22 pm ls cat wrote: > I need run a sniffer/libpcap program in freebsd-7.2-amd64 which compiled > for freebsd-6.2-i386. it coredumped in pcap_setnonblock().seems 7.2-amd64's > ioctl() does not recognize the 6.2-i386 bpf ioctl() request. BIOCGDLTLIST > request failed. > maybe BIOCSRTIMEOUT cause program coredumped. bpf for 32-bit apps isn't currently supported for FreeBSD/amd64. -- John Baldwin From owner-freebsd-amd64@FreeBSD.ORG Tue Aug 4 20:51:34 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CE85106564A for ; Tue, 4 Aug 2009 20:51:34 +0000 (UTC) (envelope-from david@esn.org.za) Received: from serendipity.wcape.school.za (seren.esn.org.za [196.211.28.252]) by mx1.freebsd.org (Postfix) with ESMTP id 99F128FC15 for ; Tue, 4 Aug 2009 20:51:33 +0000 (UTC) (envelope-from david@esn.org.za) Received: from intsika.ct.esn.org.za ([196.211.28.250] helo=ct.esn.org.za) by serendipity.wcape.school.za with esmtp (Exim 4.30) id 1MYQgY-00052V-0d for freebsd-amd64@freebsd.org; Tue, 04 Aug 2009 22:32:38 +0200 Received: from exchange.ct.esn.org.za ([192.168.0.32]) by ct.esn.org.za with Microsoft SMTPSVC(6.0.3790.3959); Tue, 4 Aug 2009 22:32:37 +0200 Received: from exchange.ct.esn.org.za ([fe80::3c71:5518:de45:c66c]) by exchange.ct.esn.org.za ([fe80::3c71:5518:de45:c66c%10]) with mapi; Tue, 4 Aug 2009 22:30:50 +0200 From: David Peall To: "'freebsd-amd64@freebsd.org'" Date: Tue, 4 Aug 2009 22:30:48 +0200 Thread-Topic: Can't install FreeBSD amd64 (intel DP45SG) Thread-Index: AcoU3yNi6JuapfVaQxer//g1D5EpoQ== Message-ID: <0807767D2D53E649827BC55A3A53B067015C3ACD4F61@exchange.ct.esn.org.za> Accept-Language: en-US, en-ZA Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, en-ZA Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginalArrivalTime: 04 Aug 2009 20:32:37.0854 (UTC) FILETIME=[B4C86FE0:01CA1542] X-Antivirus-Scanned: Clean by seren.wcsn.org.za Subject: Can't install FreeBSD amd64 (intel DP45SG) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Aug 2009 20:51:34 -0000 Hi I tried freebsd-stable but since the machine has not got a problem loading = sysinstall with the i386 release I'm posting it here. I have a new box here a Intel DP45SG and a Quad core Intel with 4GB ram tha= t I would like to install FreeBSD on. I've tried booting with 7.0, 7.1, 7.2 and 8-BETA2 amd64 and all get stuck o= n: Trying to mount root from ufs:/dev/md0 6.3 and 6.4 will boot into sysinstall but not network card detected. By stuck I mean can't scroll lock, caps lock or num lock. There is no acti= vity even if left for hours. I've tried from CD/DVD and pxeboot. I found the following: http://blog.elitecoderz.net/freebsd-freezes-on-trying-to-mount-root-from-uf= sdevmd0-and-is-stucked/2009/01/ Which suggests disabling USB2 I don't seem to have that bios option and tri= ed disabling USB completely, but still no joy. (also leaves me without a ke= yboard ;-)=20 There are no PATA ports for me to mount an older cdrom and there are only U= SB ports on the motherboard. There is also no floppy connector or floppy dr= ive. I'm a bit stuck as to how I should proceed, any ideas welcome. Kind regards -- David Peall=20 From owner-freebsd-amd64@FreeBSD.ORG Wed Aug 5 06:38:27 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62778106566B for ; Wed, 5 Aug 2009 06:38:27 +0000 (UTC) (envelope-from stark@mapper.nl) Received: from smtp-out0.tiscali.nl (smtp-out0.tiscali.nl [195.241.79.175]) by mx1.freebsd.org (Postfix) with ESMTP id EC8808FC12 for ; Wed, 5 Aug 2009 06:38:26 +0000 (UTC) (envelope-from stark@mapper.nl) Received: from [82.170.17.27] (helo=mapper.nl) by smtp-out0.tiscali.nl with esmtp (Exim) (envelope-from ) id 1MYZnu-0006Wh-7z; Wed, 05 Aug 2009 08:16:50 +0200 Received: from bowser ([192.168.0.1] helo=[0.0.0.0]) by mapper.nl with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MYZnN-00038a-Ij; Wed, 05 Aug 2009 08:16:17 +0200 Message-ID: <4A7923AE.2050602@mapper.nl> Date: Wed, 05 Aug 2009 08:16:14 +0200 From: Mark Stapper User-Agent: Thunderbird 2.0.0.22 (Windows/20090605) MIME-Version: 1.0 To: David Peall References: <0807767D2D53E649827BC55A3A53B067015C3ACD4F61@exchange.ct.esn.org.za> In-Reply-To: <0807767D2D53E649827BC55A3A53B067015C3ACD4F61@exchange.ct.esn.org.za> X-Enigmail-Version: 0.96.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigA589C77E72F8354336B8109E" Cc: "'freebsd-amd64@freebsd.org'" Subject: Re: Can't install FreeBSD amd64 (intel DP45SG) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Aug 2009 06:38:27 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigA589C77E72F8354336B8109E Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dear David, In the loader menu, are you able to drop to the loader prompt, and view your hard-disk(s) using: lsdev [-v] Lists all of the devices from which it may be possible to load modules. If -v is specified, more details are printed. If so, you might be able to do a manual install using a i386 livefs ("rescue") disk. You would need both the i386 livefs and a amd64 install medium though(either usb/cdrom or whatever). You said you tried pxeboot, I assume u have another machine at your disposal. You could use that do do a manual install as well(if it runs a system which supports UFS, like freebsd ;-), if not, a VM is your friend)= =2E Another option would be to get a disc image of a freebsd base-install (shouldn't be more then 300mb). All this assuming you are able to boot the generic kernel of course... If you are going the manual install way, you might as well build your custom kernel. Since the kernel included in the install cd's doesn't really work for you anyway. To summarize your best options are probably: 1. Try a manual install using a i386 livefs cd and a amd64 install medium= =2E 2. Use another system to install the base system and put that in the problematic one. Either with or without building your own kernel. I would say the second option, and building your own kernel is your best bet. Hope it helps. Greetz, Mark David Peall wrote: > Hi > > I tried freebsd-stable but since the machine has not got a problem load= ing sysinstall with the i386 release I'm posting it here. > > I have a new box here a Intel DP45SG and a Quad core Intel with 4GB ram= that I would like to install FreeBSD on. > I've tried booting with 7.0, 7.1, 7.2 and 8-BETA2 amd64 and all get stu= ck on: > Trying to mount root from ufs:/dev/md0 > > 6.3 and 6.4 will boot into sysinstall but not network card detected. > > By stuck I mean can't scroll lock, caps lock or num lock. There is no = activity even if left for hours. > > I've tried from CD/DVD and pxeboot. > > I found the following: > http://blog.elitecoderz.net/freebsd-freezes-on-trying-to-mount-root-fro= m-ufsdevmd0-and-is-stucked/2009/01/ > > Which suggests disabling USB2 I don't seem to have that bios option and= tried disabling USB completely, but still no joy. (also leaves me withou= t a keyboard ;-)=20 > > There are no PATA ports for me to mount an older cdrom and there are on= ly USB ports on the motherboard. There is also no floppy connector or flo= ppy drive. I'm a bit stuck as to how I should proceed, any ideas welcome= =2E > > Kind regards > > -- > David Peall=20 > > _______________________________________________ > freebsd-amd64@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 > To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org= " > =20 --------------enigA589C77E72F8354336B8109E Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAkp5I7EACgkQN9xNqOOVnWAQZwCfWjCrRL63+ed8ZwDosu6y6atT ExEAn0gHLr64hYr7WhFQ5JPPFoorOMn9 =7R75 -----END PGP SIGNATURE----- --------------enigA589C77E72F8354336B8109E-- From owner-freebsd-amd64@FreeBSD.ORG Wed Aug 5 20:18:08 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A75AF106566C for ; Wed, 5 Aug 2009 20:18:08 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 798058FC15 for ; Wed, 5 Aug 2009 20:18:07 +0000 (UTC) Received: (qmail invoked by alias); 05 Aug 2009 20:18:05 -0000 Received: from port-92-195-32-176.dynamic.qsc.de (EHLO localhost) [92.195.32.176] by mail.gmx.net (mp062) with SMTP; 05 Aug 2009 22:18:05 +0200 X-Authenticated: #23197544 X-Provags-ID: V01U2FsdGVkX1/YeTA5wK7YGYpZK6GxgV4VMXUFT7pUJudoj6Ag0F hireo6md/1bSMn To: freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Content-Disposition: inline From: Sticky Bit Date: Wed, 5 Aug 2009 22:17:06 +0200 User-Agent: KMail (FreeBSD) MIME-Version: 1.0 Message-Id: <200908052217.06935.stickybit@gmx.net> Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.46 Cc: Subject: [regression] 8.0-CURRENT amd64: SATA disks not attaching, MCP55 controller X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: stickybit@gmx.net List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Aug 2009 20:18:09 -0000 Hello, I have a similar problem with 8.0-CURRENT amd64 like described in PR 128686 and PR 132372 and several older ones. Short: SATA disks will not attach. Some example (please see full logs below): [...] ata3: Identifying devices: 00000001 ata3: New devices: 00000001 ata3: reiniting channel .. ata3: SATA connect time=0ms status=00000123 ata3: reset tp1 mask=01 ostat0=58 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 [...] SATA 300 controller is a MCP55 (ULTRA, not SLI) chip, which is working without any problems for years. Works fine with recent RELENG_7 amd64, but not with RELENG_8 amd64. RELENG_8 i386 seems to attach the disks. So it looks like an amd64 only bug. Should I file a new PR for it? Looks like there is no progress on this matter for months now. Is anyone working on this regression? It would be nice if someone could try to fix it. Thanks in advance! :-) I booted a recent JPSNAP of 8.0-CURRENT livefs FIXIT and saved dmesg output to an usb stick. Below are three verbose boot logs: 1.) 8.0-CURRENT amd64 where SATA disks are not attached 2.) 8.0-CURRENT i386 where SATA disks are attached 3.) 7.2-STABLE amd64 where everything works fine Hope it is useful. If you need more details please let me know. ;-) ******************************************************************************** 1.) 8.0-CURRENT amd64 where SATA disks are not attached ******************************************************************************** Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 8.0-HEAD-20090802-JPSNAP #0: Sun Aug 2 04:29:26 UTC 2009 root@build-amd64-fbsd.allbsd.org:/usr/obj/usr/src/sys/GENERIC WARNING: WITNESS option enabled, expect reduced performance. Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff813fb000. Preloaded mfs_root "/boot/mfsroot" at 0xffffffff813fb1d0. Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 2612054409 Hz CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5000+ (2612.05-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x60fb1 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f L1 2MB data TLB: 8 entries, fully associative L1 2MB instruction TLB: 8 entries, fully associative L1 4KB data TLB: 32 entries, fully associative L1 4KB instruction TLB: 32 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 2MB unified TLB: 0 entries, disabled/not present L2 4KB data TLB: 512 entries, 4-way associative L2 4KB instruction TLB: 512 entries, 4-way associative L2 unified cache: 512 kbytes, 64 bytes/line, 1 lines/tag, 16-way associative real memory = 4294967296 (4096 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009afff, 630784 bytes (154 pages) 0x000000000142a000 - 0x00000000d7767fff, 3593723904 bytes (877374 pages) 0x0000000100000000 - 0x000000011ffeffff, 536805376 bytes (131056 pages) avail memory = 4108021760 (3917 MB) ACPI APIC Table: INTR: Adding local APIC 1 as a target FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 APIC: CPU 0 has ACPI ID 0 APIC: CPU 1 has ACPI ID 1 ULE: setup cpu 0 ULE: setup cpu 1 ACPI: RSDP 0xf7890 00024 (v2 Nvidia) ACPI: XSDT 0xdfee3100 0004C (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: FACP 0xdfeeac80 000F4 (v3 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: DSDT 0xdfee3280 0798A (v1 NVIDIA AWRDACPI 00001000 MSFT 03000000) ACPI: FACS 0xdfee0000 00040 ACPI: SSDT 0xdfeeaec0 0028A (v1 PTLTD POWERNOW 00000001 LTP 00000001) ACPI: HPET 0xdfeeb1c0 00038 (v1 Nvidia ASUSACPI 42302E31 AWRD 00000098) ACPI: MCFG 0xdfeeb240 0003C (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: APIC 0xdfeeadc0 00098 (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) MADT: Found IO APIC ID 4, Interrupt 0 at 0xfec00000 ioapic0: Changing APIC ID to 4 ioapic0: Routing external 8259A's -> intpin 0 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Interrupt override: source 9, irq 9 ioapic0: intpin 9 trigger: level MADT: Interrupt override: source 14, irq 14 MADT: Interrupt override: source 15, irq 15 lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high MADT: Ignoring local NMI routed to ACPI CPU 2 MADT: Ignoring local NMI routed to ACPI CPU 3 ioapic0 irqs 0-23 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000400 wlan: <802.11 Link Layer> nfslock: pseudo-device kbd: new array size 4 kbd1 at kbdmux0 mem: null: io: random: hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 acpi0: on motherboard PCIe: Memory Mapped configuration base @ 0xf0000000 ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48 acpi0: [MPSAFE] acpi0: [ITHREAD] AcpiOsDerivePciId: \\_SB_.PCI0.SMB0.SMCA -> bus 0 dev 1 func 1 acpi0: Power Button (fixed) acpi0: wakeup code va 0xffffff800000e000 pa 0x4000 AcpiOsDerivePciId: \\_SB_.PCI0.LEG0.PIO1 -> bus 0 dev 1 func 0 AcpiOsDerivePciId: \\_SB_.PCI0.LEG0.PIRQ -> bus 0 dev 1 func 0 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, dfde0000 (3) failed ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 7 N 0 5 7 9 10 11 14 15 Validation 0 7 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link8: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link9: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link10: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link11: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link12: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link13: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link14: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link15: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link16: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link17: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link18: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link19: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link20: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 17 Validation 0 255 N 0 17 After Disable 0 255 N 0 17 pci_link21: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 18 Validation 0 255 N 0 18 After Disable 0 255 N 0 18 pci_link22: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 19 Validation 0 255 N 0 19 After Disable 0 255 N 0 19 pci_link23: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link24: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link25: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link26: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link27: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link28: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link29: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link30: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link31: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link32: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link33: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link34: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link35: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link36: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link37: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 acpi_hpet0: vend: 0x10de rev: 0x1 num: 2 hz: 25000000 opts: legacy_route Timecounter "HPET" frequency 25000000 Hz quality 900 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: domain=0, physical bus=0 found-> vendor=0x10de, dev=0x0369, revid=0xa2 domain=0, bus=0, slot=0, func=0 class=05-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0360, revid=0xa3 domain=0, bus=0, slot=1, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x000f, statreg=0x00a0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0368, revid=0xa3 domain=0, bus=0, slot=1, func=1 class=0c-05-00, hdrtype=0x00, mfdev=1 cmdreg=0x0001, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type I/O Port, range 32, base 0xff00, size 6, enabled map[20]: type I/O Port, range 32, base 0x1c00, size 6, enabled map[24]: type I/O Port, range 32, base 0x1c40, size 6, enabled pcib0: matched entry for 0.1.INTA (src \\_SB_.PCI0.APCS:0) pci_link31: Picked IRQ 20 with weight 0 pcib0: slot 1 INTA routed to irq 20 via \\_SB_.PCI0.APCS found-> vendor=0x10de, dev=0x036c, revid=0xa1 domain=0, bus=0, slot=2, func=0 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02f000, size 12, enabled pcib0: matched entry for 0.2.INTA (src \\_SB_.PCI0.APCF:0) pci_link27: Picked IRQ 21 with weight 0 pcib0: slot 2 INTA routed to irq 21 via \\_SB_.PCI0.APCF found-> vendor=0x10de, dev=0x036d, revid=0xa2 domain=0, bus=0, slot=2, func=1 class=0c-03-20, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02e000, size 8, enabled pcib0: matched entry for 0.2.INTB (src \\_SB_.PCI0.APCL:0) pci_link32: Picked IRQ 22 with weight 0 pcib0: slot 2 INTB routed to irq 22 via \\_SB_.PCI0.APCL found-> vendor=0x10de, dev=0x036e, revid=0xa1 domain=0, bus=0, slot=4, func=0 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) powerspec 2 supports D0 D3 current D0 map[20]: type I/O Port, range 32, base 0xfc00, size 4, enabled found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=0 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9f0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbf0, size 2, enabled map[18]: type I/O Port, range 32, base 0x970, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb70, size 2, enabled map[20]: type I/O Port, range 32, base 0xf700, size 4, enabled map[24]: type Memory, range 32, base 0xfe02d000, size 12, enabled pcib0: matched entry for 0.5.INTA (src \\_SB_.PCI0.APSI:0) pci_link35: Picked IRQ 23 with weight 0 pcib0: slot 5 INTA routed to irq 23 via \\_SB_.PCI0.APSI found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=1 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=10 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9e0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbe0, size 2, enabled map[18]: type I/O Port, range 32, base 0x960, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb60, size 2, enabled map[20]: type I/O Port, range 32, base 0xf200, size 4, enabled map[24]: type Memory, range 32, base 0xfe02c000, size 12, enabled pcib0: matched entry for 0.5.INTB (src \\_SB_.PCI0.APSJ:0) pci_link36: Picked IRQ 20 with weight 1 pcib0: slot 5 INTB routed to irq 20 via \\_SB_.PCI0.APSJ found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=2 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=c, irq=11 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0xf100, size 3, enabled map[14]: type I/O Port, range 32, base 0xf000, size 2, enabled map[18]: type I/O Port, range 32, base 0xef00, size 3, enabled map[1c]: type I/O Port, range 32, base 0xee00, size 2, enabled map[20]: type I/O Port, range 32, base 0xed00, size 4, enabled map[24]: type Memory, range 32, base 0xfe02b000, size 12, enabled pcib0: matched entry for 0.5.INTC (src \\_SB_.PCI0.ASA2:0) pci_link37: Picked IRQ 21 with weight 1 pcib0: slot 5 INTC routed to irq 21 via \\_SB_.PCI0.ASA2 found-> vendor=0x10de, dev=0x0370, revid=0xa2 domain=0, bus=0, slot=6, func=0 class=06-04-01, hdrtype=0x01, mfdev=1 cmdreg=0x0107, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x0a (2500 ns) found-> vendor=0x10de, dev=0x0373, revid=0xa3 domain=0, bus=0, slot=8, func=0 class=06-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x01 (250 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 MSI supports 8 messages, 64 bit, vector masks MSI-X supports 8 messages in maps 0x18 and 0x1c map[10]: type Memory, range 32, base 0xfe02a000, size 12, enabled map[14]: type I/O Port, range 32, base 0xec00, size 3, enabled map[18]: type Memory, range 32, base 0xfe029000, size 8, enabled map[1c]: type Memory, range 32, base 0xfe028000, size 4, enabled pcib0: matched entry for 0.8.INTA (src \\_SB_.PCI0.APCH:0) pci_link28: Picked IRQ 22 with weight 1 pcib0: slot 8 INTA routed to irq 22 via \\_SB_.PCI0.APCH found-> vendor=0x10de, dev=0x0377, revid=0xa3 domain=0, bus=0, slot=15, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x18 (6000 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 MSI supports 2 messages, 64 bit found-> vendor=0x1022, dev=0x1100, revid=0x00 domain=0, bus=0, slot=24, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1101, revid=0x00 domain=0, bus=0, slot=24, func=1 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1102, revid=0x00 domain=0, bus=0, slot=24, func=2 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1103, revid=0x00 domain=0, bus=0, slot=24, func=3 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 2.0 on pci0 ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02f000 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 49 ohci0: [MPSAFE] ohci0: [ITHREAD] usbus0: on ohci0 ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 2.1 on pci0 ehci0: Reserved 0x100 bytes for rid 0x10 type 3 at 0xfe02e000 ioapic0: routing intpin 22 (PCI IRQ 22) to lapic 0 vector 50 ehci0: [MPSAFE] ehci0: [ITHREAD] usbus1: EHCI version 1.0 usbus1: on ehci0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 4.0 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xfc00 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata0: stat1=0x00 err=0x00 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=00 stat1=00 devices=0x10000 ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 0 vector 51 ata0: [MPSAFE] ata0: [ITHREAD] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=00 ostat0=ff ostat1=ff ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 0 vector 52 ata1: [MPSAFE] ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xf700-0xf70f mem 0xfe02d000-0xfe02dfff irq 23 at device 5.0 on pci0 atapci1: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf700 ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 0 vector 53 atapci1: [MPSAFE] atapci1: [ITHREAD] atapci1: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02d000 ata2: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9f0 atapci1: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbf0 ata2: SATA connect time=0ms status=00000123 ata2: reset tp1 mask=01 ostat0=50 ostat1=00 ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata2: reset tp2 stat0=50 stat1=00 devices=0x1 ata2: [MPSAFE] ata2: [ITHREAD] ata3: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x18 type 4 at 0x970 atapci1: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb70 ata3: SATA connect time=0ms status=00000123 ata3: reset tp1 mask=01 ostat0=50 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: [MPSAFE] ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xf200-0xf20f mem 0xfe02c000-0xfe02cfff irq 20 at device 5.1 on pci0 atapci2: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf200 ioapic0: routing intpin 20 (PCI IRQ 20) to lapic 0 vector 54 atapci2: [MPSAFE] atapci2: [ITHREAD] atapci2: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02c000 ata4: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9e0 atapci2: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbe0 ata4: SATA connect time=0ms status=00000123 ata4: reset tp1 mask=01 ostat0=50 ostat1=00 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: [MPSAFE] ata4: [ITHREAD] ata5: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x18 type 4 at 0x960 atapci2: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb60 ata5: SATA connect timeout status=00000000 ata5: [MPSAFE] ata5: [ITHREAD] atapci3: port 0xf100-0xf107,0xf000-0xf003,0xef00-0xef07,0xee00-0xee03,0xed00-0xed0f mem 0xfe02b000-0xfe02bfff irq 21 at device 5.2 on pci0 atapci3: Reserved 0x10 bytes for rid 0x20 type 4 at 0xed00 atapci3: [MPSAFE] atapci3: [ITHREAD] atapci3: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02b000 ata6: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x10 type 4 at 0xf100 atapci3: Reserved 0x4 bytes for rid 0x14 type 4 at 0xf000 ata6: SATA connect timeout status=00000000 ata6: [MPSAFE] ata6: [ITHREAD] ata7: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x18 type 4 at 0xef00 atapci3: Reserved 0x4 bytes for rid 0x1c type 4 at 0xee00 ata7: SATA connect timeout status=00000000 ata7: [MPSAFE] ata7: [ITHREAD] pcib1: at device 6.0 on pci0 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xd000-0xdfff pcib1: prefetched decode 0xfde00000-0xfdefffff pcib1: Subtractively decoded bridge. pci1: on pcib1 pci1: domain=0, physical bus=1 found-> vendor=0x1102, dev=0x0002, revid=0x07 domain=0, bus=1, slot=6, func=0 class=04-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x02 (500 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xdc00, size 5, enabled pcib1: requested I/O range 0xdc00-0xdc1f: in range pcib1: matched entry for 1.6.INTA (src \\_SB_.PCI0.APC1:0) pci_link19: Picked IRQ 16 with weight 0 pcib1: slot 6 INTA routed to irq 16 via \\_SB_.PCI0.APC1 found-> vendor=0x1102, dev=0x7002, revid=0x07 domain=0, bus=1, slot=6, func=1 class=09-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xd800, size 3, enabled pcib1: requested I/O range 0xd800-0xd807: in range found-> vendor=0x109e, dev=0x036e, revid=0x11 domain=0, bus=1, slot=7, func=0 class=04-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x10 (4000 ns), maxlat=0x28 (10000 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdeff000, size 12, enabled pcib1: requested memory range 0xfdeff000-0xfdefffff: good pcib1: matched entry for 1.7.INTA (src \\_SB_.PCI0.APC2:0) pci_link20: Picked IRQ 17 with weight 0 pcib1: slot 7 INTA routed to irq 17 via \\_SB_.PCI0.APC2 found-> vendor=0x109e, dev=0x0878, revid=0x11 domain=0, bus=1, slot=7, func=1 class=04-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0xff (63750 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdefe000, size 12, enabled pcib1: requested memory range 0xfdefe000-0xfdefefff: good pcib1: matched entry for 1.7.INTA (src \\_SB_.PCI0.APC2:0) pcib1: slot 7 INTA routed to irq 17 via \\_SB_.PCI0.APC2 pci1: at device 6.0 (no driver attached) pci1: at device 6.1 (no driver attached) pci1: at device 7.0 (no driver attached) pci1: at device 7.1 (no driver attached) nfe0: port 0xec00-0xec07 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 22 at device 8.0 on pci0 nfe0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02a000 nfe0: Reserved 0x100 bytes for rid 0x18 type 3 at 0xfe029000 nfe0: Reserved 0x10 bytes for rid 0x1c type 3 at 0xfe028000 nfe0: attempting to allocate 8 MSI-X vectors (8 supported) msi: routing MSI-X IRQ 256 to local APIC 0 vector 55 msi: routing MSI-X IRQ 257 to local APIC 0 vector 56 msi: routing MSI-X IRQ 258 to local APIC 0 vector 57 msi: routing MSI-X IRQ 259 to local APIC 0 vector 58 msi: routing MSI-X IRQ 260 to local APIC 0 vector 59 msi: routing MSI-X IRQ 261 to local APIC 0 vector 60 msi: routing MSI-X IRQ 262 to local APIC 0 vector 61 msi: routing MSI-X IRQ 263 to local APIC 0 vector 62 nfe0: using IRQs 256-263 for MSI-X nfe0: Using 8 MSIX messages miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto nfe0: bpf attached nfe0: Ethernet address: 00:1d:60:86:3f:16 nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] pcib2: at device 15.0 on pci0 pcib2: domain 0 pcib2: secondary bus 2 pcib2: subordinate bus 2 pcib2: I/O decode 0xc000-0xcfff pcib2: memory decode 0xfdd00000-0xfddfffff pcib2: prefetched decode 0xe0000000-0xefffffff pcib2: could not get PCI interrupt routing table for \\_SB_.PCI0.XVR0 - AE_NOT_FOUND pci2: on pcib2 pci2: domain=0, physical bus=2 found-> vendor=0x1002, dev=0x9589, revid=0x00 domain=0, bus=2, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=7 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Prefetchable Memory, range 64, base 0xe0000000, size 28, enabled pcib2: requested memory range 0xe0000000-0xefffffff: good map[18]: type Memory, range 64, base 0xfdde0000, size 16, enabled pcib2: requested memory range 0xfdde0000-0xfddeffff: good map[20]: type I/O Port, range 32, base 0xcc00, size 8, enabled pcib2: requested I/O range 0xcc00-0xccff: in range pcib0: matched entry for 0.15.INTA (src \\_SB_.PCI0.APC6:0) pci_link24: Picked IRQ 16 with weight 3 pcib0: slot 15 INTA routed to irq 16 via \\_SB_.PCI0.APC6 pcib2: slot 0 INTA is routed to irq 16 found-> vendor=0x1002, dev=0xaa08, revid=0x00 domain=0, bus=2, slot=0, func=1 class=04-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=5 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xfddfc000, size 14, enabled pcib2: requested memory range 0xfddfc000-0xfddfffff: good pcib0: matched entry for 0.15.INTB (src \\_SB_.PCI0.APC7:0) pci_link25: Picked IRQ 16 with weight 9 pcib0: slot 15 INTB routed to irq 16 via \\_SB_.PCI0.APC7 pcib2: slot 0 INTB is routed to irq 16 vgapci0: port 0xcc00-0xccff mem 0xe0000000-0xefffffff,0xfdde0000-0xfddeffff irq 16 at device 0.0 on pci2 pci2: at device 0.1 (no driver attached) acpi_tz0: on acpi0 ACPI Warning: \\_TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference 20090521 nspredef-1058 atrtc1: port 0x70-0x73 on acpi0 atrtc1: registered as a time-of-day clock (resolution 1000000us) atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 63 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: unable to allocate IRQ cpu0: on acpi0 cpu0: switching to generic Cx mode powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 ex_isa_identify() ahc_isa_probe 0: ioport 0xc00 alloc failed ahc_isa_probe 1: ioport 0x1c00 alloc failed ahc_isa_probe 12: ioport 0xcc00 alloc failed ahc_isa_probe 13: ioport 0xdc00 alloc failed ahc_isa_probe 14: ioport 0xec00 alloc failed isa_probe_children: disabling PnP devices atkbdc: atkbdc0 already exists; skipping it sc: sc0 already exists; skipping it isa_probe_children: probing non-PnP devices orm0: at iomem 0xc0000-0xcffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd1, terminal emulator: scteken (teken terminal) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atrtc0: at port 0x70 irq 8 on isa0 atrtc0: Warning: Couldn't map I/O. atrtc0: Warning: Couldn't map Interrupt. atrtc1: removed as time-of-day clock: clock atrtc has higher resolution atrtc0: registered as a time-of-day clock (resolution 1000000us) fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 ppc0: cannot reserve I/O port range ppc0: failed to probe at irq 7 on isa0 uart0: failed to probe at port 0x3f8-0x3ff irq 4 on isa0 uart1: failed to probe at port 0x2f8-0x2ff irq 3 on isa0 isa_probe_children: probing PnP devices Device configuration finished. Reducing kern.maxvnodes 258310 -> 100000 procfs registered lapic: Divisor 2, Frequency 100463634 hz Timecounter "TSC" frequency 2612054409 Hz quality -100 Timecounters tick every 1.000 msec lo0: bpf attached hptrr: no controller detected. ata0: Identifying devices: 00010000 ata0: New devices: 00010000 md0: Preloaded image 4194304 bytes at 0xffffffff80ff9940 usbus0: 12Mbps Full Speed USB v1.0 usbus1: 480Mbps High Speed USB v2.0 ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=80 wire acd0: setting PIO4 on nForce MCP55 chip acd0: setting UDMA33 on nForce MCP55 chip ugen0.1: at usbus0 uhub0: on usbus0 ugen1.1: at usbus1 uhub1: on usbus1 acd0: DVDR drive at ata0 as master acd0: read 6890KB/s (6890KB/s) write 1722KB/s (1722KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, DVDRAM, packet acd0: Writes: CDR, CDRW, DVDR, DVDRAM, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: CD-RW 120mm data disc ata1: Identifying devices: 00000000 ata1: New devices: 00000000 ata2: Identifying devices: 00000001 ata2: New devices: 00000001 acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc=0x64 ascq=0x00 uhub0: 10 ports with 10 removable, self powered ata2: reiniting channel .. ata2: SATA connect time=0ms status=00000123 ata2: reset tp1 mask=01 ostat0=58 ostat1=00 ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata2: reset tp2 stat0=50 stat1=00 devices=0x1 ata2: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc=0x64 ascq=0x00 ata2: reiniting channel .. ata2: SATA connect time=0ms status=00000123 ata2: reset tp1 mask=01 ostat0=58 ostat1=00 ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata2: reset tp2 stat0=50 stat1=00 devices=0x1 ata2: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 ata3: Identifying devices: 00000001 ata3: New devices: 00000001 ata3: reiniting channel .. ata3: SATA connect time=0ms status=00000123 ata3: reset tp1 mask=01 ostat0=58 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 ata3: reiniting channel .. ata3: SATA connect time=0ms status=00000123 ata3: reset tp1 mask=01 ostat0=58 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 uhub1: 10 ports with 10 removable, self powered ata4: Identifying devices: 00000001 ata4: New devices: 00000001 ugen1.2: at usbus1 umass0: on usbus1 umass0: SCSI over Bulk-Only; quirks = 0x0000 ata4: reiniting channel .. ata4: SATA connect time=0ms status=00000123 ata4: reset tp1 mask=01 ostat0=58 ostat1=00 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 umass0:0:0:-1: Attached to scbus0 pass0 at umass-sim0 bus 0 target 0 lun 0 pass0: Removable Direct Access SCSI-2 device pass0: 40.000MB/s transfers GEOM: new disk da0 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-2 device da0: 40.000MB/s transfers da0: 250MB (512000 512 byte sectors: 64H 32S/T 250C) ata4: reiniting channel .. ata4: SATA connect time=0ms status=00000123 ata4: reset tp1 mask=01 ostat0=58 ostat1=00 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: reinit done .. unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 ata5: Identifying devices: 00000000 ata5: New devices: 00000000 ata6: Identifying devices: 00000000 ata6: New devices: 00000000 ata7: Identifying devices: 00000000 ata7: New devices: 00000000 ATA PseudoRAID loaded SMP: AP CPU #1 Launched! cpu1 AP: ID: 0x01000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000400 ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 1 vector 48 ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 1 vector 49 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 1 vector 50 ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 1 vector 51 msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 52 msi: Assigning MSI-X IRQ 259 to local APIC 1 vector 53 msi: Assigning MSI-X IRQ 261 to local APIC 1 vector 54 msi: Assigning MSI-X IRQ 263 to local APIC 1 vector 55 WARNING: WITNESS option enabled, expect reduced performance. Root mount waiting for: usbus1 Trying to mount root from ufs:/dev/md0 ******************************************************************************** 2.) 8.0-CURRENT i386 where SATA disks are attached ******************************************************************************** Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 8.0-HEAD-20090803-JPSNAP #0: Mon Aug 3 02:31:54 UTC 2009 root@build-i386-fbsd-2.allbsd.org:/usr/obj/i386/usr/src/sys/GENERIC WARNING: WITNESS option enabled, expect reduced performance. Preloaded elf kernel "/boot/kernel/kernel" at 0xc1539000. Preloaded mfs_root "/boot/mfsroot" at 0xc153919c. Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 2612057115 Hz CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5000+ (2612.06-MHz 686-class CPU) Origin = "AuthenticAMD" Id = 0x60fb1 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Data TLB: 32 entries, fully associative Instruction TLB: 32 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 internal cache: 512 kbytes, 64 bytes/line, 1 lines/tag, 8-way associative real memory = 4294967296 (4096 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009dfff, 643072 bytes (157 pages) 0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages) 0x0000000001826000 - 0x00000000dbf7ffff, 3665141760 bytes (894810 pages) avail memory = 3663675392 (3493 MB) Table 'FACP' at 0xdfeeac80 Table 'SSDT' at 0xdfeeaec0 Table 'HPET' at 0xdfeeb1c0 Table 'MCFG' at 0xdfeeb240 Table 'APIC' at 0xdfeeadc0 MADT: Found table at 0xdfeeadc0 MP Configuration Table version 1.4 found at 0xc00f1400 APIC: Using the MADT enumerator. MADT: Found CPU APIC ID 0 ACPI ID 0: enabled SMP: Added CPU 0 (AP) MADT: Found CPU APIC ID 1 ACPI ID 1: enabled SMP: Added CPU 1 (AP) MADT: Found CPU APIC ID 2 ACPI ID 2: disabled MADT: Found CPU APIC ID 3 ACPI ID 3: disabled ACPI APIC Table: INTR: Adding local APIC 1 as a target FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs FreeBSD/SMP: 1 package(s) x 2 core(s) cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 APIC: CPU 0 has ACPI ID 0 APIC: CPU 1 has ACPI ID 1 bios32: Found BIOS32 Service Directory header at 0xc00fb9d0 bios32: Entry = 0xf1e80 (c00f1e80) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0xf0000+0x1eb0 pnpbios: Found PnP BIOS data at 0xc00fc520 pnpbios: Entry = f0000:c550 Rev = 1.0 Other BIOS signatures found: ULE: setup cpu 0 ULE: setup cpu 1 ACPI: RSDP 0xf7890 00024 (v2 Nvidia) ACPI: XSDT 0xdfee3100 0004C (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: FACP 0xdfeeac80 000F4 (v3 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: DSDT 0xdfee3280 0798A (v1 NVIDIA AWRDACPI 00001000 MSFT 03000000) ACPI: FACS 0xdfee0000 00040 ACPI: SSDT 0xdfeeaec0 0028A (v1 PTLTD POWERNOW 00000001 LTP 00000001) ACPI: HPET 0xdfeeb1c0 00038 (v1 Nvidia ASUSACPI 42302E31 AWRD 00000098) ACPI: MCFG 0xdfeeb240 0003C (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) ACPI: APIC 0xdfeeadc0 00098 (v1 Nvidia ASUSACPI 42302E31 AWRD 00000000) MADT: Found IO APIC ID 4, Interrupt 0 at 0xfec00000 ioapic0: Changing APIC ID to 4 ioapic0: Routing external 8259A's -> intpin 0 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Interrupt override: source 9, irq 9 ioapic0: intpin 9 trigger: level MADT: Interrupt override: source 14, irq 14 MADT: Interrupt override: source 15, irq 15 lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high MADT: Ignoring local NMI routed to ACPI CPU 2 MADT: Ignoring local NMI routed to ACPI CPU 3 ioapic0 irqs 0-23 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000400 wlan: <802.11 Link Layer> random: nfslock: pseudo-device kbd: new array size 4 kbd1 at kbdmux0 mem: Pentium Pro MTRR support enabled io: null: hptrr: RocketRAID 17xx/2xxx SATA controller driver v1.2 npx0: INT 16 interface acpi0: on motherboard PCIe: Memory Mapped configuration base @ 0xf0000000 pcibios: BIOS version 3.00 ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 0 vector 48 acpi0: [MPSAFE] acpi0: [ITHREAD] AcpiOsDerivePciId: \\_SB_.PCI0.SMB0.SMCA -> bus 0 dev 1 func 1 acpi0: Power Button (fixed) acpi0: wakeup code va 0xc7478000 pa 0x1000 AcpiOsDerivePciId: \\_SB_.PCI0.LEG0.PIO1 -> bus 0 dev 1 func 0 AcpiOsDerivePciId: \\_SB_.PCI0.LEG0.PIRQ -> bus 0 dev 1 func 0 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, dfde0000 (3) failed ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 7 N 0 5 7 9 10 11 14 15 Validation 0 7 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link8: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link9: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link10: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link11: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link12: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link13: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link14: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link15: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link16: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link17: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link18: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link19: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link20: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 17 Validation 0 255 N 0 17 After Disable 0 255 N 0 17 pci_link21: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 18 Validation 0 255 N 0 18 After Disable 0 255 N 0 18 pci_link22: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 19 Validation 0 255 N 0 19 After Disable 0 255 N 0 19 pci_link23: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link24: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link25: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link26: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link27: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link28: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link29: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link30: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link31: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link32: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link33: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link34: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link35: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link36: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link37: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 acpi_hpet0: vend: 0x10de rev: 0x1 num: 2 hz: 25000000 opts: legacy_route Timecounter "HPET" frequency 25000000 Hz quality 900 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: domain=0, physical bus=0 found-> vendor=0x10de, dev=0x0369, revid=0xa2 domain=0, bus=0, slot=0, func=0 class=05-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0360, revid=0xa3 domain=0, bus=0, slot=1, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x000f, statreg=0x00a0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0368, revid=0xa3 domain=0, bus=0, slot=1, func=1 class=0c-05-00, hdrtype=0x00, mfdev=1 cmdreg=0x0001, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type I/O Port, range 32, base 0xff00, size 6, enabled map[20]: type I/O Port, range 32, base 0x1c00, size 6, enabled map[24]: type I/O Port, range 32, base 0x1c40, size 6, enabled pcib0: matched entry for 0.1.INTA (src \\_SB_.PCI0.APCS:0) pci_link31: Picked IRQ 20 with weight 0 pcib0: slot 1 INTA routed to irq 20 via \\_SB_.PCI0.APCS found-> vendor=0x10de, dev=0x036c, revid=0xa1 domain=0, bus=0, slot=2, func=0 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02f000, size 12, enabled pcib0: matched entry for 0.2.INTA (src \\_SB_.PCI0.APCF:0) pci_link27: Picked IRQ 21 with weight 0 pcib0: slot 2 INTA routed to irq 21 via \\_SB_.PCI0.APCF found-> vendor=0x10de, dev=0x036d, revid=0xa2 domain=0, bus=0, slot=2, func=1 class=0c-03-20, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02e000, size 8, enabled pcib0: matched entry for 0.2.INTB (src \\_SB_.PCI0.APCL:0) pci_link32: Picked IRQ 22 with weight 0 pcib0: slot 2 INTB routed to irq 22 via \\_SB_.PCI0.APCL found-> vendor=0x10de, dev=0x036e, revid=0xa1 domain=0, bus=0, slot=4, func=0 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) powerspec 2 supports D0 D3 current D0 map[20]: type I/O Port, range 32, base 0xfc00, size 4, enabled found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=0 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9f0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbf0, size 2, enabled map[18]: type I/O Port, range 32, base 0x970, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb70, size 2, enabled map[20]: type I/O Port, range 32, base 0xf700, size 4, enabled map[24]: type Memory, range 32, base 0xfe02d000, size 12, enabled pcib0: matched entry for 0.5.INTA (src \\_SB_.PCI0.APSI:0) pci_link35: Picked IRQ 23 with weight 0 pcib0: slot 5 INTA routed to irq 23 via \\_SB_.PCI0.APSI found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=1 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=10 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9e0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbe0, size 2, enabled map[18]: type I/O Port, range 32, base 0x960, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb60, size 2, enabled map[20]: type I/O Port, range 32, base 0xf200, size 4, enabled map[24]: type Memory, range 32, base 0xfe02c000, size 12, enabled pcib0: matched entry for 0.5.INTB (src \\_SB_.PCI0.APSJ:0) pci_link36: Picked IRQ 20 with weight 1 pcib0: slot 5 INTB routed to irq 20 via \\_SB_.PCI0.APSJ found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=2 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=c, irq=11 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0xf100, size 3, enabled map[14]: type I/O Port, range 32, base 0xf000, size 2, enabled map[18]: type I/O Port, range 32, base 0xef00, size 3, enabled map[1c]: type I/O Port, range 32, base 0xee00, size 2, enabled map[20]: type I/O Port, range 32, base 0xed00, size 4, enabled map[24]: type Memory, range 32, base 0xfe02b000, size 12, enabled pcib0: matched entry for 0.5.INTC (src \\_SB_.PCI0.ASA2:0) pci_link37: Picked IRQ 21 with weight 1 pcib0: slot 5 INTC routed to irq 21 via \\_SB_.PCI0.ASA2 found-> vendor=0x10de, dev=0x0370, revid=0xa2 domain=0, bus=0, slot=6, func=0 class=06-04-01, hdrtype=0x01, mfdev=1 cmdreg=0x0107, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x0a (2500 ns) found-> vendor=0x10de, dev=0x0373, revid=0xa3 domain=0, bus=0, slot=8, func=0 class=06-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x01 (250 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 MSI supports 8 messages, 64 bit, vector masks MSI-X supports 8 messages in maps 0x18 and 0x1c map[10]: type Memory, range 32, base 0xfe02a000, size 12, enabled map[14]: type I/O Port, range 32, base 0xec00, size 3, enabled map[18]: type Memory, range 32, base 0xfe029000, size 8, enabled map[1c]: type Memory, range 32, base 0xfe028000, size 4, enabled pcib0: matched entry for 0.8.INTA (src \\_SB_.PCI0.APCH:0) pci_link28: Picked IRQ 22 with weight 1 pcib0: slot 8 INTA routed to irq 22 via \\_SB_.PCI0.APCH found-> vendor=0x10de, dev=0x0377, revid=0xa3 domain=0, bus=0, slot=15, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x18 (6000 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 MSI supports 2 messages, 64 bit found-> vendor=0x1022, dev=0x1100, revid=0x00 domain=0, bus=0, slot=24, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1101, revid=0x00 domain=0, bus=0, slot=24, func=1 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1102, revid=0x00 domain=0, bus=0, slot=24, func=2 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1103, revid=0x00 domain=0, bus=0, slot=24, func=3 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 2.0 on pci0 ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02f000 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 0 vector 49 ohci0: [MPSAFE] ohci0: [ITHREAD] usbus0: on ohci0 ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 2.1 on pci0 ehci0: Reserved 0x100 bytes for rid 0x10 type 3 at 0xfe02e000 ioapic0: routing intpin 22 (PCI IRQ 22) to lapic 0 vector 50 ehci0: [MPSAFE] ehci0: [ITHREAD] usbus1: EHCI version 1.0 usbus1: on ehci0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 4.0 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xfc00 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata0: stat1=0x00 err=0x00 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=00 stat1=00 devices=0x10000 ioapic0: routing intpin 14 (ISA IRQ 14) to lapic 0 vector 51 ata0: [MPSAFE] ata0: [ITHREAD] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=00 ostat0=ff ostat1=ff ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 0 vector 52 ata1: [MPSAFE] ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xf700-0xf70f mem 0xfe02d000-0xfe02dfff irq 23 at device 5.0 on pci0 atapci1: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf700 ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 0 vector 53 atapci1: [MPSAFE] atapci1: [ITHREAD] atapci1: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02d000 ata2: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9f0 atapci1: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbf0 ata2: SATA connect time=0ms status=00000123 ata2: reset tp1 mask=01 ostat0=50 ostat1=00 ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata2: reset tp2 stat0=50 stat1=00 devices=0x1 ata2: [MPSAFE] ata2: [ITHREAD] ata3: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x18 type 4 at 0x970 atapci1: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb70 ata3: SATA connect time=0ms status=00000123 ata3: reset tp1 mask=01 ostat0=50 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: [MPSAFE] ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xf200-0xf20f mem 0xfe02c000-0xfe02cfff irq 20 at device 5.1 on pci0 atapci2: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf200 ioapic0: routing intpin 20 (PCI IRQ 20) to lapic 0 vector 54 atapci2: [MPSAFE] atapci2: [ITHREAD] atapci2: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02c000 ata4: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9e0 atapci2: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbe0 ata4: SATA connect time=0ms status=00000123 ata4: reset tp1 mask=01 ostat0=50 ostat1=00 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: [MPSAFE] ata4: [ITHREAD] ata5: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x18 type 4 at 0x960 atapci2: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb60 ata5: SATA connect timeout status=00000000 ata5: [MPSAFE] ata5: [ITHREAD] atapci3: port 0xf100-0xf107,0xf000-0xf003,0xef00-0xef07,0xee00-0xee03,0xed00-0xed0f mem 0xfe02b000-0xfe02bfff irq 21 at device 5.2 on pci0 atapci3: Reserved 0x10 bytes for rid 0x20 type 4 at 0xed00 atapci3: [MPSAFE] atapci3: [ITHREAD] atapci3: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02b000 ata6: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x10 type 4 at 0xf100 atapci3: Reserved 0x4 bytes for rid 0x14 type 4 at 0xf000 ata6: SATA connect timeout status=00000000 ata6: [MPSAFE] ata6: [ITHREAD] ata7: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x18 type 4 at 0xef00 atapci3: Reserved 0x4 bytes for rid 0x1c type 4 at 0xee00 ata7: SATA connect timeout status=00000000 ata7: [MPSAFE] ata7: [ITHREAD] pcib1: at device 6.0 on pci0 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xd000-0xdfff pcib1: prefetched decode 0xfde00000-0xfdefffff pcib1: Subtractively decoded bridge. pci1: on pcib1 pci1: domain=0, physical bus=1 found-> vendor=0x1102, dev=0x0002, revid=0x07 domain=0, bus=1, slot=6, func=0 class=04-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x02 (500 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xdc00, size 5, enabled pcib1: requested I/O range 0xdc00-0xdc1f: in range pcib1: matched entry for 1.6.INTA (src \\_SB_.PCI0.APC1:0) pci_link19: Picked IRQ 16 with weight 0 pcib1: slot 6 INTA routed to irq 16 via \\_SB_.PCI0.APC1 found-> vendor=0x1102, dev=0x7002, revid=0x07 domain=0, bus=1, slot=6, func=1 class=09-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xd800, size 3, enabled pcib1: requested I/O range 0xd800-0xd807: in range found-> vendor=0x109e, dev=0x036e, revid=0x11 domain=0, bus=1, slot=7, func=0 class=04-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x10 (4000 ns), maxlat=0x28 (10000 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdeff000, size 12, enabled pcib1: requested memory range 0xfdeff000-0xfdefffff: good pcib1: matched entry for 1.7.INTA (src \\_SB_.PCI0.APC2:0) pci_link20: Picked IRQ 17 with weight 0 pcib1: slot 7 INTA routed to irq 17 via \\_SB_.PCI0.APC2 found-> vendor=0x109e, dev=0x0878, revid=0x11 domain=0, bus=1, slot=7, func=1 class=04-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0xff (63750 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdefe000, size 12, enabled pcib1: requested memory range 0xfdefe000-0xfdefefff: good pcib1: matched entry for 1.7.INTA (src \\_SB_.PCI0.APC2:0) pcib1: slot 7 INTA routed to irq 17 via \\_SB_.PCI0.APC2 pci1: at device 6.0 (no driver attached) pci1: at device 6.1 (no driver attached) pci1: at device 7.0 (no driver attached) pci1: at device 7.1 (no driver attached) nfe0: port 0xec00-0xec07 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 22 at device 8.0 on pci0 nfe0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02a000 nfe0: Reserved 0x100 bytes for rid 0x18 type 3 at 0xfe029000 nfe0: Reserved 0x10 bytes for rid 0x1c type 3 at 0xfe028000 nfe0: attempting to allocate 8 MSI-X vectors (8 supported) msi: routing MSI-X IRQ 256 to local APIC 0 vector 55 msi: routing MSI-X IRQ 257 to local APIC 0 vector 56 msi: routing MSI-X IRQ 258 to local APIC 0 vector 57 msi: routing MSI-X IRQ 259 to local APIC 0 vector 58 msi: routing MSI-X IRQ 260 to local APIC 0 vector 59 msi: routing MSI-X IRQ 261 to local APIC 0 vector 60 msi: routing MSI-X IRQ 262 to local APIC 0 vector 61 msi: routing MSI-X IRQ 263 to local APIC 0 vector 62 nfe0: using IRQs 256-263 for MSI-X nfe0: Using 8 MSIX messages miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto nfe0: bpf attached nfe0: Ethernet address: 00:1d:60:86:3f:16 nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] pcib2: at device 15.0 on pci0 pcib2: domain 0 pcib2: secondary bus 2 pcib2: subordinate bus 2 pcib2: I/O decode 0xc000-0xcfff pcib2: memory decode 0xfdd00000-0xfddfffff pcib2: prefetched decode 0xe0000000-0xefffffff pcib2: could not get PCI interrupt routing table for \\_SB_.PCI0.XVR0 - AE_NOT_FOUND pci2: on pcib2 pci2: domain=0, physical bus=2 found-> vendor=0x1002, dev=0x9589, revid=0x00 domain=0, bus=2, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=7 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Prefetchable Memory, range 64, base 0xe0000000, size 28, enabled pcib2: requested memory range 0xe0000000-0xefffffff: good map[18]: type Memory, range 64, base 0xfdde0000, size 16, enabled pcib2: requested memory range 0xfdde0000-0xfddeffff: good map[20]: type I/O Port, range 32, base 0xcc00, size 8, enabled pcib2: requested I/O range 0xcc00-0xccff: in range pcib0: matched entry for 0.15.INTA (src \\_SB_.PCI0.APC6:0) pci_link24: Picked IRQ 16 with weight 3 pcib0: slot 15 INTA routed to irq 16 via \\_SB_.PCI0.APC6 pcib2: slot 0 INTA is routed to irq 16 found-> vendor=0x1002, dev=0xaa08, revid=0x00 domain=0, bus=2, slot=0, func=1 class=04-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=5 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xfddfc000, size 14, enabled pcib2: requested memory range 0xfddfc000-0xfddfffff: good pcib0: matched entry for 0.15.INTB (src \\_SB_.PCI0.APC7:0) pci_link25: Picked IRQ 16 with weight 9 pcib0: slot 15 INTB routed to irq 16 via \\_SB_.PCI0.APC7 pcib2: slot 0 INTB is routed to irq 16 vgapci0: port 0xcc00-0xccff mem 0xe0000000-0xefffffff,0xfdde0000-0xfddeffff irq 16 at device 0.0 on pci2 pci2: at device 0.1 (no driver attached) acpi_tz0: on acpi0 ACPI Warning: \\_TZ_.THRM._PSL: Return Package type mismatch at index 0 - found [NULL Object Descriptor], expected Reference 20090521 nspredef-1058 atrtc1: port 0x70-0x73 on acpi0 atrtc1: registered as a time-of-day clock (resolution 1000000us) atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 ioapic0: routing intpin 1 (ISA IRQ 1) to lapic 0 vector 63 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: unable to allocate IRQ cpu0: on acpi0 cpu0: switching to generic Cx mode powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff unknown: status reg test failed ff ahc_isa_probe 0: ioport 0xc00 alloc failed ahc_isa_probe 1: ioport 0x1c00 alloc failed ahc_isa_probe 12: ioport 0xcc00 alloc failed ahc_isa_probe 13: ioport 0xdc00 alloc failed ahc_isa_probe 14: ioport 0xec00 alloc failed pnp_identify: Trying Read_Port at 203 pnp_identify: Trying Read_Port at 243 pnp_identify: Trying Read_Port at 283 pnp_identify: Trying Read_Port at 2c3 pnp_identify: Trying Read_Port at 303 pnp_identify: Trying Read_Port at 343 pnp_identify: Trying Read_Port at 383 pnp_identify: Trying Read_Port at 3c3 PNP Identify complete ex_isa_identify() isa_probe_children: disabling PnP devices pmtimer0 on isa0 ata: ata0 already exists; skipping it ata: ata1 already exists; skipping it atkbdc: atkbdc0 already exists; skipping it sc: sc0 already exists; skipping it isa_probe_children: probing non-PnP devices orm0: at iomem 0xc0000-0xcffff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd1, terminal emulator: scteken (teken terminal) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 atrtc0: at port 0x70 irq 8 on isa0 atrtc0: Warning: Couldn't map I/O. atrtc0: Warning: Couldn't map Interrupt. atrtc1: removed as time-of-day clock: clock atrtc has higher resolution atrtc0: registered as a time-of-day clock (resolution 1000000us) fdc0 failed to probe at port 0x3f0-0x3f5,0x3f7 irq 6 drq 2 on isa0 ppc0: parallel port not found. ppc0: failed to probe at irq 7 on isa0 uart0: failed to probe at port 0x3f8-0x3ff irq 4 on isa0 uart1: failed to probe at port 0x2f8-0x2ff irq 3 on isa0 isa_probe_children: probing PnP devices Device configuration finished. Reducing kern.maxvnodes 230097 -> 100000 procfs registered lapic: Divisor 2, Frequency 100463744 hz Timecounter "TSC" frequency 2612057115 Hz quality -100 Timecounters tick every 1.000 msec lo0: bpf attached hptrr: no controller detected. ata0: Identifying devices: 00010000 ata0: New devices: 00010000 md0: Preloaded image 4423680 bytes at 0xc10ffcbc usbus0: 12Mbps Full Speed USB v1.0 usbus1: 480Mbps High Speed USB v2.0 ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=80 wire acd0: setting PIO4 on nForce MCP55 chip acd0: setting UDMA33 on nForce MCP55 chip acd0: DVDR drive at ata0 as master acd0: read 6890KB/s (6890KB/s) write 1722KB/s (1722KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, DVDRAM, packet acd0: Writes: CDR, CDRW, DVDR, DVDRAM, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: CD-RW 120mm data disc ata1: Identifying devices: 00000000 ata1: New devices: 00000000 ata2: Identifying devices: 00000001 ata2: New devices: 00000001 ata2-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire ad4: 305245MB at ata2-master SATA300 ad4: 625142448 sectors [620181C/16H/63S] 16 sectors/interrupt 1 depth queue ad4: nVidia check1 failed ad4: Adaptec check1 failed ad4: LSI (v3) check1 failed ad4: LSI (v2) check1 failed ad4: FreeBSD check1 failed ata3: Identifying devices: 00000001 ata3: New devices: 00000001 ata3-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire ad6: 305245MB at ata3-master SATA300 ad6: 625142448 sectors [620181C/16H/63S] 16 sectors/interrupt 1 depth queue ad6: nVidia check1 failed ad6: Adaptec check1 failed ad6: LSI (v3) check1 failed ad6: LSI (v2) check1 failed ad6: FreeBSD check1 failed ata4: Identifying devices: 00000001 ata4: New devices: 00000001 ata4-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire ad8: 476940MB at ata4-master SATA300 ad8: 976773168 sectors [969021C/16H/63S] 16 sectors/interrupt 1 depth queue ad8: nVidia check1 failed ad8: Adaptec check1 failed ad8: LSI (v3) check1 failed ad8: LSI (v2) check1 failed ad8: FreeBSD check1 failed ata5: Identifying devices: 00000000 ata5: New devices: 00000000 ata6: Identifying devices: 00000000 ata6: New devices: 00000000 ata7: Identifying devices: 00000000 ata7: New devices: 00000000 ATA PseudoRAID loaded SMP: AP CPU #1 Launched! cpu1 AP: ID: 0x01000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00000400 ioapic0: routing intpin 9 (ISA IRQ 9) to lapic 1 vector 48 ioapic0: routing intpin 15 (ISA IRQ 15) to lapic 1 vector 49 ioapic0: routing intpin 21 (PCI IRQ 21) to lapic 1 vector 50 ioapic0: routing intpin 23 (PCI IRQ 23) to lapic 1 vector 51 msi: Assigning MSI-X IRQ 257 to local APIC 1 vector 52 msi: Assigning MSI-X IRQ 259 to local APIC 1 vector 53 msi: Assigning MSI-X IRQ 261 to local APIC 1 vector 54 msi: Assigning MSI-X IRQ 263 to local APIC 1 vector 55 WARNING: WITNESS option enabled, expect reduced performance. ugen0.1: at usbus0 uhub0: on usbus0 acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc=0x64 ascq=0x00 uhub0: 10 ports with 10 removable, self powered ugen1.1: at usbus1 uhub1: on usbus1 GEOM: new disk ad4 acd0: FAILURE - READ_BIG ILLEGAL REQUEST asc=0x64 ascq=0x00 GEOM: new disk ad6 GEOM: new disk ad8 Root mount waiting for: usbus1 uhub1: 10 ports with 10 removable, self powered Root mount waiting for: usbus1 ugen1.2: at usbus1 umass0: on usbus1 umass0: SCSI over Bulk-Only; quirks = 0x0000 Root mount waiting for: usbus1 umass0:0:0:-1: Attached to scbus0 pass0 at umass-sim0 bus 0 target 0 lun 0 pass0: Removable Direct Access SCSI-2 device pass0: 40.000MB/s transfers GEOM: new disk da0 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Removable Direct Access SCSI-2 device da0: 40.000MB/s transfers da0: 250MB (512000 512 byte sectors: 64H 32S/T 250C) Trying to mount root from ufs:/dev/md0 ******************************************************************************** 3.) 7.2-STABLE amd64 where everything works fine ******************************************************************************** Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 7.2-STABLE #0 r195860: Sat Jul 25 05:28:19 CEST 2009 root@nx01.nexus.local:/usr/obj/usr/src/sys/BEASTIE Preloaded elf kernel "/boot/kernel/kernel" at 0xffffffff8087b000. Preloaded elf obj module "/boot/kernel/if_nfe.ko" at 0xffffffff8087b1d0. Preloaded elf obj module "/boot/kernel/snd_emu10k1.ko" at 0xffffffff8087b6f8. Preloaded elf obj module "/boot/kernel/sound.ko" at 0xffffffff8087bca8. Preloaded elf obj module "/boot/kernel/snd_hda.ko" at 0xffffffff8087c310. Preloaded elf obj module "/boot/kernel/amdtemp.ko" at 0xffffffff8087c8f8. Preloaded elf obj module "/boot/kernel/geom_journal.ko" at 0xffffffff8087ce20. Preloaded elf obj module "/boot/kernel/radeon.ko" at 0xffffffff8087d490. Preloaded elf obj module "/boot/kernel/drm.ko" at 0xffffffff8087d9f8. Calibrating clock(s) ... i8254 clock: 1193211 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz quality 0 Calibrating TSC clock ... TSC clock: 2612055199 Hz CPU: AMD Athlon(tm) 64 X2 Dual Core Processor 5000+ (2612.06-MHz K8-class CPU) Origin = "AuthenticAMD" Id = 0x60fb1 Stepping = 1 Features=0x178bfbff Features2=0x2001 AMD Features=0xea500800 AMD Features2=0x11f Cores per package: 2 L1 2MB data TLB: 8 entries, fully associative L1 2MB instruction TLB: 8 entries, fully associative L1 4KB data TLB: 32 entries, fully associative L1 4KB instruction TLB: 32 entries, fully associative L1 data cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L1 instruction cache: 64 kbytes, 64 bytes/line, 1 lines/tag, 2-way associative L2 2MB unified TLB: 0 entries, disabled/not present L2 4KB data TLB: 512 entries, 4-way associative L2 4KB instruction TLB: 512 entries, 4-way associative L2 unified cache: 512 kbytes, 64 bytes/line, 1 lines/tag, 16-way associative usable memory = 4285329408 (4086 MB) Physical memory chunk(s): 0x0000000000001000 - 0x000000000009afff, 630784 bytes (154 pages) 0x00000000008ab000 - 0x00000000d7767fff, 3605778432 bytes (880317 pages) 0x0000000100000000 - 0x000000011ffeffff, 536805376 bytes (131056 pages) avail memory = 4119957504 (3929 MB) ACPI APIC Table: INTR: Adding local APIC 1 as a target FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 APIC: CPU 0 has ACPI ID 0 APIC: CPU 1 has ACPI ID 1 ULE: setup cpu group 0 ULE: setup cpu 0 ULE: adding cpu 0 to group 0: cpus 1 mask 0x1 ULE: setup cpu group 1 ULE: setup cpu 1 ULE: adding cpu 1 to group 1: cpus 1 mask 0x2 ACPI: RSDP @ 0x0xf7890/0x0024 (v 2 Nvidia) ACPI: XSDT @ 0x0xdfee3100/0x004C (v 1 Nvidia ASUSACPI 0x42302E31 AWRD 0x00000000) ACPI: FACP @ 0x0xdfeeac80/0x00F4 (v 3 Nvidia ASUSACPI 0x42302E31 AWRD 0x00000000) ACPI: DSDT @ 0x0xdfee3280/0x798A (v 1 NVIDIA AWRDACPI 0x00001000 MSFT 0x03000000) ACPI: FACS @ 0x0xdfee0000/0x0040 ACPI: SSDT @ 0x0xdfeeaec0/0x028A (v 1 PTLTD POWERNOW 0x00000001 LTP 0x00000001) ACPI: HPET @ 0x0xdfeeb1c0/0x0038 (v 1 Nvidia ASUSACPI 0x42302E31 AWRD 0x00000098) ACPI: MCFG @ 0x0xdfeeb240/0x003C (v 1 Nvidia ASUSACPI 0x42302E31 AWRD 0x00000000) ACPI: APIC @ 0x0xdfeeadc0/0x0098 (v 1 Nvidia ASUSACPI 0x42302E31 AWRD 0x00000000) MADT: Found IO APIC ID 4, Interrupt 0 at 0xfec00000 ioapic0: Changing APIC ID to 4 ioapic0: Routing external 8259A's -> intpin 0 MADT: Interrupt override: source 0, irq 2 ioapic0: Routing IRQ 0 -> intpin 2 MADT: Interrupt override: source 9, irq 9 ioapic0: intpin 9 trigger: level MADT: Interrupt override: source 14, irq 14 MADT: Interrupt override: source 15, irq 15 lapic0: Routing NMI -> LINT1 lapic0: LINT1 trigger: edge lapic0: LINT1 polarity: high lapic1: Routing NMI -> LINT1 lapic1: LINT1 trigger: edge lapic1: LINT1 polarity: high MADT: Ignoring local NMI routed to ACPI CPU 2 MADT: Ignoring local NMI routed to ACPI CPU 3 ioapic0 irqs 0-23 on motherboard cpu0 BSP: ID: 0x00000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000100ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010000 snd_unit_init() u=0x00ff8000 [512] d=0x00007c00 [32] c=0x000003ff [1024] feeder_register: snd_unit=-1 snd_maxautovchans=16 latency=5 feeder_buffersize=16384 feeder_rate_min=1 feeder_rate_max=2016000 feeder_rate_round=25 kbd: new array size 4 kbd1 at kbdmux0 mem: io: null: random: acpi0: on motherboard ioapic0: routing intpin 9 (ISA IRQ 9) to vector 48 acpi0: [MPSAFE] acpi0: [ITHREAD] AcpiOsDerivePciId: \_SB_.PCI0.SMB0.SMCA -> bus 0 dev 1 func 1 acpi0: Power Button (fixed) AcpiOsDerivePciId: \_SB_.PCI0.LEG0.PIO1 -> bus 0 dev 1 func 0 AcpiOsDerivePciId: \_SB_.PCI0.LEG0.PIRQ -> bus 0 dev 1 func 0 acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, dfde0000 (3) failed ACPI timer: 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 1/1 -> 10 Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1008-0x100b on acpi0 pci_link0: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link1: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link2: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link3: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link4: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link5: Index IRQ Rtd Ref IRQs Initial Probe 0 7 N 0 5 7 9 10 11 14 15 Validation 0 7 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link6: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link7: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link8: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link9: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link10: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link11: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link12: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link13: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link14: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link15: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 5 7 9 10 11 14 15 Validation 0 255 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link16: Index IRQ Rtd Ref IRQs Initial Probe 0 5 N 0 5 7 9 10 11 14 15 Validation 0 5 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link17: Index IRQ Rtd Ref IRQs Initial Probe 0 10 N 0 5 7 9 10 11 14 15 Validation 0 10 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link18: Index IRQ Rtd Ref IRQs Initial Probe 0 11 N 0 5 7 9 10 11 14 15 Validation 0 11 N 0 5 7 9 10 11 14 15 After Disable 0 255 N 0 5 7 9 10 11 14 15 pci_link19: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link20: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 17 Validation 0 255 N 0 17 After Disable 0 255 N 0 17 pci_link21: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 18 Validation 0 255 N 0 18 After Disable 0 255 N 0 18 pci_link22: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 19 Validation 0 255 N 0 19 After Disable 0 255 N 0 19 pci_link23: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link24: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link25: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link26: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 16 Validation 0 255 N 0 16 After Disable 0 255 N 0 16 pci_link27: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link28: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link29: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link30: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link31: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link32: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link33: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link34: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link35: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link36: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 pci_link37: Index IRQ Rtd Ref IRQs Initial Probe 0 255 N 0 20 21 22 23 Validation 0 255 N 0 20 21 22 23 After Disable 0 255 N 0 20 21 22 23 acpi_hpet0: iomem 0xfefff000-0xfefff3ff on acpi0 acpi_hpet0: vend: 0x10de rev: 0x1 num: 2 hz: 25000000 opts: legacy_route Timecounter "HPET" frequency 25000000 Hz quality 900 acpi_button0: on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pci0: domain=0, physical bus=0 found-> vendor=0x10de, dev=0x0369, revid=0xa2 domain=0, bus=0, slot=0, func=0 class=05-00-00, hdrtype=0x00, mfdev=0 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0360, revid=0xa3 domain=0, bus=0, slot=1, func=0 class=06-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x000f, statreg=0x00a0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x10de, dev=0x0368, revid=0xa3 domain=0, bus=0, slot=1, func=1 class=0c-05-00, hdrtype=0x00, mfdev=1 cmdreg=0x0001, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 map[10]: type I/O Port, range 32, base 0xff00, size 6, enabled map[20]: type I/O Port, range 32, base 0x1c00, size 6, enabled map[24]: type I/O Port, range 32, base 0x1c40, size 6, enabled pcib0: matched entry for 0.1.INTA (src \_SB_.PCI0.APCS:0) pci_link31: Picked IRQ 20 with weight 0 pcib0: slot 1 INTA routed to irq 20 via \_SB_.PCI0.APCS found-> vendor=0x10de, dev=0x036c, revid=0xa1 domain=0, bus=0, slot=2, func=0 class=0c-03-10, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02f000, size 12, enabled pcib0: matched entry for 0.2.INTA (src \_SB_.PCI0.APCF:0) pci_link27: Picked IRQ 21 with weight 0 pcib0: slot 2 INTA routed to irq 21 via \_SB_.PCI0.APCF found-> vendor=0x10de, dev=0x036d, revid=0xa2 domain=0, bus=0, slot=2, func=1 class=0c-03-20, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=11 powerspec 2 supports D0 D1 D2 D3 current D0 map[10]: type Memory, range 32, base 0xfe02e000, size 8, enabled pcib0: matched entry for 0.2.INTB (src \_SB_.PCI0.APCL:0) pci_link32: Picked IRQ 22 with weight 0 pcib0: slot 2 INTB routed to irq 22 via \_SB_.PCI0.APCL found-> vendor=0x10de, dev=0x036e, revid=0xa1 domain=0, bus=0, slot=4, func=0 class=01-01-8a, hdrtype=0x00, mfdev=0 cmdreg=0x0005, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) powerspec 2 supports D0 D3 current D0 map[20]: type I/O Port, range 32, base 0xfc00, size 4, enabled found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=0 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=a, irq=5 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9f0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbf0, size 2, enabled map[18]: type I/O Port, range 32, base 0x970, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb70, size 2, enabled map[20]: type I/O Port, range 32, base 0xf700, size 4, enabled map[24]: type Memory, range 32, base 0xfe02d000, size 12, enabled pcib0: matched entry for 0.5.INTA (src \_SB_.PCI0.APSI:0) pci_link35: Picked IRQ 23 with weight 0 pcib0: slot 5 INTA routed to irq 23 via \_SB_.PCI0.APSI found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=1 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=b, irq=10 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0x9e0, size 3, enabled map[14]: type I/O Port, range 32, base 0xbe0, size 2, enabled map[18]: type I/O Port, range 32, base 0x960, size 3, enabled map[1c]: type I/O Port, range 32, base 0xb60, size 2, enabled map[20]: type I/O Port, range 32, base 0xf200, size 4, enabled map[24]: type Memory, range 32, base 0xfe02c000, size 12, enabled pcib0: matched entry for 0.5.INTB (src \_SB_.PCI0.APSJ:0) pci_link36: Picked IRQ 20 with weight 1 pcib0: slot 5 INTB routed to irq 20 via \_SB_.PCI0.APSJ found-> vendor=0x10de, dev=0x037f, revid=0xa3 domain=0, bus=0, slot=5, func=2 class=01-01-85, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x03 (750 ns), maxlat=0x01 (250 ns) intpin=c, irq=11 powerspec 2 supports D0 D3 current D0 MSI supports 4 messages, 64 bit map[10]: type I/O Port, range 32, base 0xf100, size 3, enabled map[14]: type I/O Port, range 32, base 0xf000, size 2, enabled map[18]: type I/O Port, range 32, base 0xef00, size 3, enabled map[1c]: type I/O Port, range 32, base 0xee00, size 2, enabled map[20]: type I/O Port, range 32, base 0xed00, size 4, enabled map[24]: type Memory, range 32, base 0xfe02b000, size 12, enabled pcib0: matched entry for 0.5.INTC (src \_SB_.PCI0.ASA2:0) pci_link37: Picked IRQ 21 with weight 1 pcib0: slot 5 INTC routed to irq 21 via \_SB_.PCI0.ASA2 found-> vendor=0x10de, dev=0x0370, revid=0xa2 domain=0, bus=0, slot=6, func=0 class=06-04-01, hdrtype=0x01, mfdev=1 cmdreg=0x0107, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x04 (1000 ns), maxlat=0x0a (2500 ns) found-> vendor=0x10de, dev=0x0373, revid=0xa3 domain=0, bus=0, slot=8, func=0 class=06-80-00, hdrtype=0x00, mfdev=0 cmdreg=0x0007, statreg=0x00b0, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x01 (250 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 2 supports D0 D1 D2 D3 current D0 MSI supports 8 messages, 64 bit, vector masks MSI-X supports 8 messages in maps 0x18 and 0x1c map[10]: type Memory, range 32, base 0xfe02a000, size 12, enabled map[14]: type I/O Port, range 32, base 0xec00, size 3, enabled map[18]: type Memory, range 32, base 0xfe029000, size 8, enabled map[1c]: type Memory, range 32, base 0xfe028000, size 4, enabled pcib0: matched entry for 0.8.INTA (src \_SB_.PCI0.APCH:0) pci_link28: Picked IRQ 22 with weight 1 pcib0: slot 8 INTA routed to irq 22 via \_SB_.PCI0.APCH found-> vendor=0x10de, dev=0x0377, revid=0xa3 domain=0, bus=0, slot=15, func=0 class=06-04-00, hdrtype=0x01, mfdev=0 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x18 (6000 ns), maxlat=0x00 (0 ns) powerspec 2 supports D0 D3 current D0 MSI supports 2 messages, 64 bit found-> vendor=0x1022, dev=0x1100, revid=0x00 domain=0, bus=0, slot=24, func=0 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1101, revid=0x00 domain=0, bus=0, slot=24, func=1 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1102, revid=0x00 domain=0, bus=0, slot=24, func=2 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0000, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) found-> vendor=0x1022, dev=0x1103, revid=0x00 domain=0, bus=0, slot=24, func=3 class=06-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0000, statreg=0x0010, cachelnsz=0 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) pci0: at device 0.0 (no driver attached) isab0: at device 1.0 on pci0 isa0: on isab0 pci0: at device 1.1 (no driver attached) ohci0: mem 0xfe02f000-0xfe02ffff irq 21 at device 2.0 on pci0 ohci0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02f000 ioapic0: routing intpin 21 (PCI IRQ 21) to vector 49 ohci0: [GIANT-LOCKED] ohci0: [ITHREAD] usb0: OHCI version 1.0, legacy support usb0: SMM does not respond, resetting usb0: on ohci0 usb0: USB revision 1.0 uhub0: on usb0 uhub0: 10 ports with 10 removable, self powered ehci0: mem 0xfe02e000-0xfe02e0ff irq 22 at device 2.1 on pci0 ehci0: Reserved 0x100 bytes for rid 0x10 type 3 at 0xfe02e000 ioapic0: routing intpin 22 (PCI IRQ 22) to vector 50 ehci0: [GIANT-LOCKED] ehci0: [ITHREAD] usb1: EHCI version 1.0 usb1: companion controller, 10 ports each: usb0 usb1: on ehci0 usb1: USB revision 2.0 uhub1: on usb1 uhub1: 10 ports with 10 removable, self powered atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xfc00-0xfc0f at device 4.0 on pci0 atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xfc00 ata0: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0 atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6 ata0: reset tp1 mask=03 ostat0=50 ostat1=00 ata0: stat0=0x00 err=0x01 lsb=0x14 msb=0xeb ata0: stat1=0x00 err=0x00 lsb=0x00 msb=0x00 ata0: reset tp2 stat0=00 stat1=00 devices=0x4 ioapic0: routing intpin 14 (ISA IRQ 14) to vector 51 ata0: [MPSAFE] ata0: [ITHREAD] ata1: on atapci0 atapci0: Reserved 0x8 bytes for rid 0x18 type 4 at 0x170 atapci0: Reserved 0x1 bytes for rid 0x1c type 4 at 0x376 ata1: reset tp1 mask=00 ostat0=ff ostat1=ff ioapic0: routing intpin 15 (ISA IRQ 15) to vector 52 ata1: [MPSAFE] ata1: [ITHREAD] atapci1: port 0x9f0-0x9f7,0xbf0-0xbf3,0x970-0x977,0xb70-0xb73,0xf700-0xf70f mem 0xfe02d000-0xfe02dfff irq 23 at device 5.0 on pci0 atapci1: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf700 ioapic0: routing intpin 23 (PCI IRQ 23) to vector 53 atapci1: [MPSAFE] atapci1: [ITHREAD] atapci1: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02d000 ata2: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9f0 atapci1: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbf0 ata2: SATA connect time=0ms ata2: reset tp1 mask=01 ostat0=50 ostat1=00 ata2: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata2: reset tp2 stat0=50 stat1=00 devices=0x1 ata2: [MPSAFE] ata2: [ITHREAD] ata3: on atapci1 atapci1: Reserved 0x8 bytes for rid 0x18 type 4 at 0x970 atapci1: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb70 ata3: SATA connect time=0ms ata3: reset tp1 mask=01 ostat0=50 ostat1=00 ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata3: reset tp2 stat0=50 stat1=00 devices=0x1 ata3: [MPSAFE] ata3: [ITHREAD] atapci2: port 0x9e0-0x9e7,0xbe0-0xbe3,0x960-0x967,0xb60-0xb63,0xf200-0xf20f mem 0xfe02c000-0xfe02cfff irq 20 at device 5.1 on pci0 atapci2: Reserved 0x10 bytes for rid 0x20 type 4 at 0xf200 ioapic0: routing intpin 20 (PCI IRQ 20) to vector 54 atapci2: [MPSAFE] atapci2: [ITHREAD] atapci2: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02c000 ata4: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x10 type 4 at 0x9e0 atapci2: Reserved 0x4 bytes for rid 0x14 type 4 at 0xbe0 ata4: SATA connect time=0ms ata4: reset tp1 mask=01 ostat0=50 ostat1=00 ata4: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 ata4: reset tp2 stat0=50 stat1=00 devices=0x1 ata4: [MPSAFE] ata4: [ITHREAD] ata5: on atapci2 atapci2: Reserved 0x8 bytes for rid 0x18 type 4 at 0x960 atapci2: Reserved 0x4 bytes for rid 0x1c type 4 at 0xb60 ata5: SATA connect status=00000000 ata5: [MPSAFE] ata5: [ITHREAD] atapci3: port 0xf100-0xf107,0xf000-0xf003,0xef00-0xef07,0xee00-0xee03,0xed00-0xed0f mem 0xfe02b000-0xfe02bfff irq 21 at device 5.2 on pci0 atapci3: Reserved 0x10 bytes for rid 0x20 type 4 at 0xed00 atapci3: [MPSAFE] atapci3: [ITHREAD] atapci3: Reserved 0x1000 bytes for rid 0x24 type 3 at 0xfe02b000 ata6: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x10 type 4 at 0xf100 atapci3: Reserved 0x4 bytes for rid 0x14 type 4 at 0xf000 ata6: SATA connect status=00000000 ata6: [MPSAFE] ata6: [ITHREAD] ata7: on atapci3 atapci3: Reserved 0x8 bytes for rid 0x18 type 4 at 0xef00 atapci3: Reserved 0x4 bytes for rid 0x1c type 4 at 0xee00 ata7: SATA connect status=00000000 ata7: [MPSAFE] ata7: [ITHREAD] pcib1: at device 6.0 on pci0 pcib1: domain 0 pcib1: secondary bus 1 pcib1: subordinate bus 1 pcib1: I/O decode 0xd000-0xdfff pcib1: prefetched decode 0xfde00000-0xfdefffff pcib1: Subtractively decoded bridge. pci1: on pcib1 pci1: domain=0, physical bus=1 found-> vendor=0x1102, dev=0x0002, revid=0x07 domain=0, bus=1, slot=6, func=0 class=04-01-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x02 (500 ns), maxlat=0x14 (5000 ns) intpin=a, irq=10 powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xdc00, size 5, enabled pcib1: requested I/O range 0xdc00-0xdc1f: in range pcib1: matched entry for 1.6.INTA (src \_SB_.PCI0.APC1:0) pci_link19: Picked IRQ 16 with weight 0 pcib1: slot 6 INTA routed to irq 16 via \_SB_.PCI0.APC1 found-> vendor=0x1102, dev=0x7002, revid=0x07 domain=0, bus=1, slot=6, func=1 class=09-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0005, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) powerspec 1 supports D0 D1 D2 D3 current D0 map[10]: type I/O Port, range 32, base 0xd800, size 3, enabled pcib1: requested I/O range 0xd800-0xd807: in range found-> vendor=0x109e, dev=0x036e, revid=0x11 domain=0, bus=1, slot=7, func=0 class=04-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x10 (4000 ns), maxlat=0x28 (10000 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdeff000, size 12, enabled pcib1: requested memory range 0xfdeff000-0xfdefffff: good pcib1: matched entry for 1.7.INTA (src \_SB_.PCI0.APC2:0) pci_link20: Picked IRQ 17 with weight 0 pcib1: slot 7 INTA routed to irq 17 via \_SB_.PCI0.APC2 found-> vendor=0x109e, dev=0x0878, revid=0x11 domain=0, bus=1, slot=7, func=1 class=04-80-00, hdrtype=0x00, mfdev=1 cmdreg=0x0006, statreg=0x0290, cachelnsz=0 (dwords) lattimer=0x20 (960 ns), mingnt=0x04 (1000 ns), maxlat=0xff (63750 ns) intpin=a, irq=11 powerspec 2 supports D0 D3 current D0 map[10]: type Prefetchable Memory, range 32, base 0xfdefe000, size 12, enabled pcib1: requested memory range 0xfdefe000-0xfdefefff: good pcib1: matched entry for 1.7.INTA (src \_SB_.PCI0.APC2:0) pcib1: slot 7 INTA routed to irq 17 via \_SB_.PCI0.APC2 pcm0: port 0xdc00-0xdc1f irq 16 at device 6.0 on pci1 pcm0: Reserved 0x20 bytes for rid 0x10 type 4 at 0xdc00 emu: setmap (465a000, 800), nseg=1, error=0 emu: setmap (4659000, 1000), nseg=1, error=0 pcm0: pcm0: Codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: Primary codec extended features surround DAC pcm0: ac97 codec dac ready count: 0 pcm0: Mixer "vol": pcm0: Mixer "pcm": pcm0: Mixer "speaker": pcm0: Mixer "line": pcm0: Mixer "mic": pcm0: Mixer "cd": pcm0: Mixer "rec": pcm0: Mixer "igain": pcm0: Mixer "ogain": pcm0: Mixer "line1": pcm0: Mixer "phin": pcm0: Mixer "phout": pcm0: Mixer "video": ioapic0: routing intpin 16 (PCI IRQ 16) to vector 55 pcm0: [MPSAFE] pcm0: [ITHREAD] pcm0: clone manager: deadline=750ms flags=0x8000001e emu: setmap (4689000, 1000), nseg=1, error=0 emu: setmap (4687000, 1000), nseg=1, error=0 emu: setmap (4685000, 1000), nseg=1, error=0 emu: setmap (4683000, 1000), nseg=1, error=0 pcm0: sndbuf_setmap 4680000, 1000; 0xffffff0004680000 -> 4680000 pcm0: sndbuf_setmap 467e000, 1000; 0xffffff000467e000 -> 467e000 pci1: at device 7.0 (no driver attached) pci1: at device 7.1 (no driver attached) nfe0: port 0xec00-0xec07 mem 0xfe02a000-0xfe02afff,0xfe029000-0xfe0290ff,0xfe028000-0xfe02800f irq 22 at device 8.0 on pci0 nfe0: Reserved 0x1000 bytes for rid 0x10 type 3 at 0xfe02a000 nfe0: Reserved 0x100 bytes for rid 0x18 type 3 at 0xfe029000 nfe0: Reserved 0x10 bytes for rid 0x1c type 3 at 0xfe028000 nfe0: attempting to allocate 8 MSI-X vectors (8 supported) msi: routing MSI-X IRQ 256 to vector 56 msi: routing MSI-X IRQ 257 to vector 57 msi: routing MSI-X IRQ 258 to vector 58 msi: routing MSI-X IRQ 259 to vector 59 msi: routing MSI-X IRQ 260 to vector 60 msi: routing MSI-X IRQ 261 to vector 61 msi: routing MSI-X IRQ 262 to vector 62 msi: routing MSI-X IRQ 263 to vector 63 nfe0: using IRQs 256-263 for MSI-X nfe0: Using 8 MSIX messages miibus0: on nfe0 e1000phy0: PHY 1 on miibus0 e1000phy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, 1000baseT, 1000baseT-FDX, auto nfe0: bpf attached nfe0: Ethernet address: 00:1d:60:86:3f:16 nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] nfe0: [MPSAFE] nfe0: [FILTER] pcib2: at device 15.0 on pci0 pcib2: domain 0 pcib2: secondary bus 2 pcib2: subordinate bus 2 pcib2: I/O decode 0xc000-0xcfff pcib2: memory decode 0xfdd00000-0xfddfffff pcib2: prefetched decode 0xe0000000-0xefffffff pcib2: could not get PCI interrupt routing table for \_SB_.PCI0.XVR0 - AE_NOT_FOUND pci2: on pcib2 pci2: domain=0, physical bus=2 found-> vendor=0x1002, dev=0x9589, revid=0x00 domain=0, bus=2, slot=0, func=0 class=03-00-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=a, irq=7 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Prefetchable Memory, range 64, base 0xe0000000, size 28, enabled pcib2: requested memory range 0xe0000000-0xefffffff: good map[18]: type Memory, range 64, base 0xfdde0000, size 16, enabled pcib2: requested memory range 0xfdde0000-0xfddeffff: good map[20]: type I/O Port, range 32, base 0xcc00, size 8, enabled pcib2: requested I/O range 0xcc00-0xccff: in range pcib0: matched entry for 0.15.INTA (src \_SB_.PCI0.APC6:0) pci_link24: Picked IRQ 16 with weight 3 pcib0: slot 15 INTA routed to irq 16 via \_SB_.PCI0.APC6 pcib2: slot 0 INTA is routed to irq 16 found-> vendor=0x1002, dev=0xaa08, revid=0x00 domain=0, bus=2, slot=0, func=1 class=04-03-00, hdrtype=0x00, mfdev=1 cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords) lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns) intpin=b, irq=5 powerspec 3 supports D0 D1 D2 D3 current D0 MSI supports 1 message, 64 bit map[10]: type Memory, range 64, base 0xfddfc000, size 14, enabled pcib2: requested memory range 0xfddfc000-0xfddfffff: good pcib0: matched entry for 0.15.INTB (src \_SB_.PCI0.APC7:0) pci_link25: Picked IRQ 16 with weight 9 pcib0: slot 15 INTB routed to irq 16 via \_SB_.PCI0.APC7 pcib2: slot 0 INTB is routed to irq 16 vgapci0: port 0xcc00-0xccff mem 0xe0000000-0xefffffff,0xfdde0000-0xfddeffff irq 16 at device 0.0 on pci2 drm0: on vgapci0 vgapci0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 264 to vector 64 vgapci0: using IRQ 264 for MSI info: [drm] MSI enabled 1 message(s) vgapci0: Reserved 0x10000 bytes for rid 0x18 type 3 at 0xfdde0000 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] Initialized radeon 1.29.0 20080528 hdac0: mem 0xfddfc000-0xfddfffff irq 16 at device 0.1 on pci2 hdac0: HDA Driver Revision: 20090624_0136 hdac0: Reserved 0x4000 bytes for rid 0x10 type 3 at 0xfddfc000 hdac0: attempting to allocate 1 MSI vectors (1 supported) msi: routing MSI IRQ 265 to vector 65 hdac0: using IRQ 265 for MSI hdac0: [MPSAFE] hdac0: [ITHREAD] amdtemp0: on hostb3 acpi_tz0: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 atkbd: the current kbd controller command byte 0047 atkbd: keyboard ID 0x41ab (2) kbd0 at atkbd0 kbd0: atkbd0, AT 101/102 (2), config:0x0, flags:0x3d0000 ioapic0: routing intpin 1 (ISA IRQ 1) to vector 66 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] cpu0: on acpi0 cpu0: switching to generic Cx mode powernow0: on cpu0 cpu1: on acpi0 powernow1: on cpu1 atkbdc: atkbdc0 already exists; skipping it sc: sc0 already exists; skipping it vga: vga0 already exists; skipping it isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: at iomem 0xc0000-0xcffff on isa0 fdc0 failed to probe at port 0x3f0 irq 6 drq 2 on isa0 ppc0 failed to probe at irq 7 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> sc0: fb0, kbd1, terminal emulator: sc (syscons terminal) sio0 failed to probe at port 0x3f8 irq 4 on isa0 sio1 failed to probe at port 0x2f8 irq 3 on isa0 sio2: not probed (disabled) sio3: not probed (disabled) vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 isa_probe_children: probing PnP devices ums0: on uhub0 ums0: 6 buttons and Z dir. Device configuration finished. Reducing kern.maxvnodes 259045 -> 100000 procfs registered lapic: Divisor 2, Frequency 100463669 hz Timecounter "TSC" frequency 2612055199 Hz quality -100 Timecounters tick every 1.000 msec lo0: bpf attached ata0-master: pio=PIO4 wdma=WDMA2 udma=UDMA33 cable=80 wire acd0: setting PIO4 on nForce MCP55 chip acd0: setting UDMA33 on nForce MCP55 chip acd0: DVDR drive at ata0 as master acd0: read 6890KB/s (6890KB/s) write 6890KB/s (6890KB/s), 2048KB buffer, UDMA33 acd0: Reads: CDR, CDRW, CDDA stream, DVDROM, DVDR, DVDRAM, packet acd0: Writes: CDR, CDRW, DVDR, DVDRAM, test write, burnproof acd0: Audio: play, 256 volume levels acd0: Mechanism: ejectable tray, unlocked acd0: Medium: no/blank disc ata2-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire ad4: 305245MB at ata2-master SATA300 ad4: 625142448 sectors [620181C/16H/63S] 16 sectors/interrupt 1 depth queue ata3-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire ad6: 305245MB at ata3-master SATA300 ad6: 625142448 sectors [620181C/16H/63S] 16 sectors/interrupt 1 depth queue ata4-master: pio=PIO4 wdma=WDMA2 udma=UDMA133 cable=40 wire GEOM: new disk ad4 GEOM: new disk ad6 ad8: 476940MB at ata4-master SATA300 ad8: 976773168 sectors [969021C/16H/63S] 16 sectors/interrupt 1 depth queue hdac0: Probing codec #0... hdac0: HDA Codec #0: ATI R6xx HDMI hdac0: HDA Codec ID: 0x1002aa01 hdac0: Vendor: 0x1002 hdac0: Device: 0xaa01 hdac0: Revision: 0x00 hdac0: Stepping: 0x00 hdac0: PCI Subvendor: 0xaa081458 hdac0: Found audio FG nid=1 startnode=2 endnode=4 total=2 hdac0: hdac0: Processing audio FG cad=0 nid=1... hdac0: GPIO: 0x00000000 NumGPIO=0 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=0 hdac0: nid 3 0x18560010 as 1 seq 0 Digital-out Jack jack 6 loc 24 color Unknown misc 0 hdac0: Patched pins configuration: hdac0: nid 3 0x18560010 as 1 seq 0 Digital-out Jack jack 6 loc 24 color Unknown misc 0 hdac0: 1 associations found: hdac0: Association 0 (1) out: hdac0: Pin nid=3 seq=0 hdac0: Tracing association 0 (1) hdac0: Pin 3 traced to DAC 2 hdac0: Association 0 (1) trace succeeded hdac0: Tracing input monitor hdac0: Tracing beeper hdac0: FG config/quirks: forcestereo ivref50 ivref80 ivref100 ivref hdac0: hdac0: +-------------------+ hdac0: | DUMPING HDA NODES | hdac0: +-------------------+ hdac0: hdac0: Default Parameter hdac0: ----------------- hdac0: Stream cap: 0x00000001 hdac0: PCM hdac0: PCM cap: 0x00020040 hdac0: 16 bits, 48 KHz hdac0: IN amp: 0x00000000 hdac0: OUT amp: 0x00000000 hdac0: hdac0: nid: 2 hdac0: Name: audio output hdac0: Widget cap: 0x00000201 hdac0: DIGITAL STEREO hdac0: Association: 0 (0x00000001) hdac0: OSS: pcm (pcm) hdac0: Stream cap: 0x00000001 hdac0: PCM hdac0: PCM cap: 0x00020040 hdac0: 16 bits, 48 KHz hdac0: hdac0: nid: 3 hdac0: Name: pin: Digital-out (Jack) hdac0: Widget cap: 0x00400381 hdac0: DIGITAL UNSOL STEREO hdac0: Association: 0 (0x00000001) hdac0: Pin cap: 0x00000094 hdac0: PDC OUT hdac0: Pin config: 0x18560010 hdac0: Pin control: 0x00000040 OUT hdac0: connections: 1 hdac0: | hdac0: + <- nid=2 [audio output] hdac0: pcm1: at cad 0 nid 1 on hdac0 pcm1: +--------------------------------------+ pcm1: | DUMPING PCM Playback/Record Channels | pcm1: +--------------------------------------+ pcm1: pcm1: Playback: pcm1: pcm1: Stream cap: 0x00000005 pcm1: AC3 PCM pcm1: PCM cap: 0x00020040 pcm1: 16 bits, 48 KHz pcm1: DAC: 2 pcm1: pcm1: +-------------------------------+ pcm1: | DUMPING Playback/Record Paths | pcm1: +-------------------------------+ pcm1: pcm1: Playback: pcm1: pcm1: nid=3 [pin: Digital-out (Jack)] pcm1: | pcm1: + <- nid=2 [audio output] [src: pcm] pcm1: pcm1: +-------------------------+ pcm1: | DUMPING Volume Controls | pcm1: +-------------------------+ pcm1: pcm1: clone manager: deadline=750ms flags=0x8000001e pcm1: sndbuf_setmap 11ffb0000, 4000; 0xffffff80761e5000 -> 11ffb0000 SMP: AP CPU #1 Launched! cpu1 AP: ID: 0x01000000 VER: 0x80050010 LDR: 0x00000000 DFR: 0xffffffff lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff timer: 0x000200ef therm: 0x00010000 err: 0x00010000 pcm: 0x00010000 ioapic0: Assigning ISA IRQ 1 to local APIC 0 ioapic0: Assigning ISA IRQ 9 to local APIC 1 ioapic0: Assigning ISA IRQ 14 to local APIC 0 ioapic0: Assigning ISA IRQ 15 to local APIC 1 ioapic0: Assigning PCI IRQ 16 to local APIC 0 ioapic0: Assigning PCI IRQ 20 to local APIC 1 ioapic0: Assigning PCI IRQ 21 to local APIC 0 ioapic0: Assigning PCI IRQ 22 to local APIC 1 ioapic0: Assigning PCI IRQ 23 to local APIC 0 msi: Assigning MSI-X IRQ 256 to local APIC 1 msi: Assigning MSI-X IRQ 257 to local APIC 0 msi: Assigning MSI-X IRQ 258 to local APIC 1 msi: Assigning MSI-X IRQ 259 to local APIC 0 msi: Assigning MSI-X IRQ 260 to local APIC 1 msi: Assigning MSI-X IRQ 261 to local APIC 0 msi: Assigning MSI-X IRQ 262 to local APIC 1 msi: Assigning MSI-X IRQ 263 to local APIC 0 msi: Assigning MSI IRQ 265 to local APIC 1 GEOM: new disk ad8 GEOM_JOURNAL: Journal 3957365166: ad8p5 contains journal. GEOM_JOURNAL: Journal 3957365166: ad8p6 contains data. GEOM_JOURNAL: Journal ad8p6 clean. GEOM_JOURNAL: Journal 3080637776: ad8p7 contains journal. GEOM_JOURNAL: Journal 3080637776: ad8p8 contains data. GEOM_JOURNAL: Journal ad8p8 clean. GEOM_JOURNAL: Journal 3804427845: ad8p9 contains journal. GEOM_JOURNAL: Journal 3804427845: ad8p10 contains data. GEOM_JOURNAL: Journal ad8p10 clean. GEOM_JOURNAL: Journal 2042519215: ad8p11 contains journal. GEOM_JOURNAL: Journal 2042519215: ad8p12 contains data. GEOM_JOURNAL: Journal ad8p12 clean. GEOM_JOURNAL: Journal 2341797152: ad8p14 contains journal. GEOM_JOURNAL: Journal 2341797152: ad8p15 contains data. GEOM_JOURNAL: Journal ad8p15 clean. GEOM_JOURNAL: Journal 4137560276: ad8p16 contains journal. GEOM_JOURNAL: Journal 4137560276: ad8p17 contains data. GEOM_JOURNAL: Journal ad8p17 clean. GEOM_JOURNAL: Journal 3657364065: ad8p18 contains journal. GEOM_JOURNAL: Journal 3657364065: ad8p19 contains data. GEOM_JOURNAL: Journal ad8p19 clean. Trying to mount root from ufs:/dev/ad8p2 -- Regards From owner-freebsd-amd64@FreeBSD.ORG Thu Aug 6 07:47:30 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27588106564A; Thu, 6 Aug 2009 07:47:30 +0000 (UTC) (envelope-from flo@kasimir.com) Received: from mail.solomo.de (mail.solomo.de [85.214.49.72]) by mx1.freebsd.org (Postfix) with ESMTP id D700D8FC08; Thu, 6 Aug 2009 07:47:29 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.solomo.de (Postfix) with ESMTP id 8D75B3F4A7; Thu, 6 Aug 2009 09:29:01 +0200 (CEST) X-Virus-Scanned: amavisd-new at vistream.de Received: from mail.solomo.de ([127.0.0.1]) by localhost (mail.solomo.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nIlPJzEpMuKB; Thu, 6 Aug 2009 09:28:59 +0200 (CEST) Received: from nibbler.vistream.local (relay3.vistream.de [87.139.10.28]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mail.solomo.de (Postfix) with ESMTPSA id 39A193F4AE; Thu, 6 Aug 2009 09:28:59 +0200 (CEST) Message-ID: <4A7A863A.7080608@kasimir.com> Date: Thu, 06 Aug 2009 09:28:58 +0200 From: Florian Smeets User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.1.3pre) Gecko/20090805 Shredder/3.0b4pre MIME-Version: 1.0 To: stickybit@gmx.net References: <200908052217.06935.stickybit@gmx.net> In-Reply-To: <200908052217.06935.stickybit@gmx.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: [regression] 8.0-CURRENT amd64: SATA disks not attaching, MCP55 controller X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2009 07:47:30 -0000 On 8/5/09 10:17 PM, Sticky Bit wrote: > Hello, > > I have a similar problem with 8.0-CURRENT amd64 like described in PR 128686 > and PR 132372 and several older ones. Short: SATA disks will not attach. > > Some example (please see full logs below): > > [...] > ata3: Identifying devices: 00000001 > ata3: New devices: 00000001 > ata3: reiniting channel .. > ata3: SATA connect time=0ms status=00000123 > ata3: reset tp1 mask=01 ostat0=58 ostat1=00 > ata3: stat0=0x50 err=0x01 lsb=0x00 msb=0x00 > ata3: reset tp2 stat0=50 stat1=00 devices=0x1 > ata3: reinit done .. > unknown: FAILURE - ATA_IDENTIFY timed out LBA=0 > [...] > > SATA 300 controller is a MCP55 (ULTRA, not SLI) chip, which is working without > any problems for years. Works fine with recent RELENG_7 amd64, but not with > RELENG_8 amd64. > > RELENG_8 i386 seems to attach the disks. So it looks like an amd64 only bug. > Hi, i had the same problem with MCP55 on amd64, i tried the new ahci module but to no avail. However if you set hw.pci.mcfg=0 the disks are found by the normal ata driver (this is already mentioned in one of the PRs). Cheers, Florian From owner-freebsd-amd64@FreeBSD.ORG Thu Aug 6 13:07:50 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE851106564A for ; Thu, 6 Aug 2009 13:07:50 +0000 (UTC) (envelope-from fabrizio.invernizzi@telecomitalia.it) Received: from GRFEDG702BA020.telecomitalia.it (grfedg702ba020.telecomitalia.it [156.54.233.201]) by mx1.freebsd.org (Postfix) with ESMTP id 59A008FC22 for ; Thu, 6 Aug 2009 13:07:50 +0000 (UTC) Content-Type: multipart/mixed; boundary="_a0b183b2-1975-4caf-82e9-e6e6bd9bff3c_" Received: from GRFHUB702BA020.griffon.local (10.188.101.112) by GRFEDG702BA020.telecomitalia.it (10.188.45.101) with Microsoft SMTP Server (TLS) id 8.1.340.0; Thu, 6 Aug 2009 14:56:58 +0200 Received: from GRFMBX702BA020.griffon.local ([10.188.101.12]) by GRFHUB702BA020.griffon.local ([10.188.101.112]) with mapi; Thu, 6 Aug 2009 14:56:58 +0200 From: Invernizzi Fabrizio To: "freebsd-amd64@freebsd.org" Date: Thu, 6 Aug 2009 14:56:59 +0200 Thread-Topic: Problem with pmcstat Thread-Index: AcoWlWLC3VOFFoKrT+SO08SUC7v0FQ== Message-ID: <36A93B31228D3B49B691AD31652BCAE9A4569675DE@GRFMBX702BA020.griffon.local> Accept-Language: it-IT Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: it-IT MIME-Version: 1.0 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Problem with pmcstat X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2009 13:07:51 -0000 --_a0b183b2-1975-4caf-82e9-e6e6bd9bff3c_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hi all i am doing some performance testing with FreeBSD (64 bit) and i would like = to use pmcstat. I recompiled the kernel with options HWPMC_HOOKS device hwpmc When i restart the system looks like being ok #sysctl -a | grep hwpmc kern.hwpmc.nbuffers: 16 kern.hwpmc.logbuffersize: 4 kern.hwpmc.mtxpoolsize: 32 kern.hwpmc.nsamples: 32 kern.hwpmc.hashsize: 16 but the pmcstat gives me this error: # pmcstat -s p6-hw-int-rx -w 1 pmcstat: ERROR: Initialization of the pmc(3) library failed: No such file o= r directory I googled a lot, but nothing about this problem. Consider that on the same = hardware with 7.2-RELEASE 32 bit everything was working. Anyone can help me? This are some details: uname -a FreeBSD INTRUDER-64.ipv6.tilab.com 7.2-RELEASE FreeBSD 7.2-RELEASE #3: Thu = Aug 6 11:36:53 CEST 2009 amd64 Server: HP DL 180G5 ------------------------------------------------------------------ Telecom Italia Fabrizio INVERNIZZI Technology - TILAB Accesso Fisso e Trasporto Via Reiss Romoli, 274 10148 Torino Tel. +39 011 2285497 Mob. +39 3316001344 Fax +39 06 41867287 Questo messaggio e i suoi allegati sono indirizzati esclusivamente alle per= sone indicate. La diffusione, copia o qualsiasi altra azione derivante dall= a conoscenza di queste informazioni sono rigorosamente vietate. Qualora abb= iate ricevuto questo documento per errore siete cortesemente pregati di dar= ne immediata comunicazione al mittente e di provvedere alla sua distruzione= , Grazie. This e-mail and any attachments is confidential and may contain privileged = information intended for the addressee(s) only. Dissemination, copying, pri= nting or use by anybody else is unauthorised. If you are not the intended r= ecipient, please delete this message and any attachments and advise the sen= der by return e-mail, Thanks. [cid:00000000000000000000000000000001@TI.Disclaimer]Rispetta l'ambiente. No= n stampare questa mail se non ? necessario. --_a0b183b2-1975-4caf-82e9-e6e6bd9bff3c_-- From owner-freebsd-amd64@FreeBSD.ORG Thu Aug 6 18:03:23 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB9701065670 for ; Thu, 6 Aug 2009 18:03:23 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.239]) by mx1.freebsd.org (Postfix) with ESMTP id A05888FC19 for ; Thu, 6 Aug 2009 18:03:23 +0000 (UTC) Received: by rv-out-0506.google.com with SMTP id f9so210508rvb.43 for ; Thu, 06 Aug 2009 11:03:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=j/+mgG7JaQ1LN8WvDGeI3nEO8E7TUxDDWbBM9FY07nU=; b=KU5g5RlVf3+wLdOBnpnYTkq0n/Hixm+UEBsK3L5nYf9iwaTtgpi5xL29D1PhinzpA+ xWqWkup+/FkeRtrorxfNcBB37zYgOgrHKZnD6yfmh/4x7x3zrNAoILCQjOPm/ThTkId3 3A3FTObu9G3p4/TL0LEYEcnbGMgBt4zjq8SM8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=k7LiYZveDYGTyWkZFlO8tEHMrk8RHbJW79jF7rOWJnxPz2XYxEmdxQd03ZQk6g4tZN bSy+O8KSKzeIsLpghzsEYeaJRCCV4D/FijamxqKIfzJGxIa70f76yyDra4zUo9ypyAK+ HEHGIF9YkCly4HUBCbWcebsfYg7jMBMbo6Yqc= MIME-Version: 1.0 Received: by 10.143.16.9 with SMTP id t9mr28512wfi.105.1249577497803; Thu, 06 Aug 2009 09:51:37 -0700 (PDT) In-Reply-To: <36A93B31228D3B49B691AD31652BCAE9A4569675DE@GRFMBX702BA020.griffon.local> References: <36A93B31228D3B49B691AD31652BCAE9A4569675DE@GRFMBX702BA020.griffon.local> Date: Thu, 6 Aug 2009 22:21:37 +0530 Message-ID: <84dead720908060951j605338e3vb48cd41f13810f29@mail.gmail.com> From: Joseph Koshy To: Invernizzi Fabrizio Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-amd64@freebsd.org" Subject: Re: Problem with pmcstat X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2009 18:03:24 -0000 > i am doing some performance testing with FreeBSD (64 bit) and i would like to use pmcstat. > I recompiled the kernel with > options HWPMC_HOOKS > device hwpmc > > When i restart the system looks like being ok > > #sysctl -a | grep hwpmc > kern.hwpmc.nbuffers: 16 > kern.hwpmc.logbuffersize: 4 > kern.hwpmc.mtxpoolsize: 32 > kern.hwpmc.nsamples: 32 > kern.hwpmc.hashsize: 16 > > but the pmcstat gives me this error: > > # pmcstat -s p6-hw-int-rx -w 1 > pmcstat: ERROR: Initialization of the pmc(3) library failed: No such file or directory > > I googled a lot, but nothing about this problem. Consider that on the same hardware with 7.2-RELEASE 32 bit everything was working. > Anyone can help me? > > This are some details: > > uname -a > FreeBSD INTRUDER-64.ipv6.tilab.com 7.2-RELEASE FreeBSD 7.2-RELEASE #3: Thu Aug 6 11:36:53 CEST 2009 amd64 > > Server: HP DL 180G5 i386 vs amd64 should not make a difference here. What CPU are you running on and what does hwpmc(4) print out at module initialization time? Koshy From owner-freebsd-amd64@FreeBSD.ORG Thu Aug 6 18:22:24 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69E341065676 for ; Thu, 6 Aug 2009 18:22:24 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id B4F408FC1C for ; Thu, 6 Aug 2009 18:22:23 +0000 (UTC) Received: (qmail invoked by alias); 06 Aug 2009 18:22:21 -0000 Received: from port-92-195-32-176.dynamic.qsc.de (EHLO localhost) [92.195.32.176] by mail.gmx.net (mp011) with SMTP; 06 Aug 2009 20:22:21 +0200 X-Authenticated: #23197544 X-Provags-ID: V01U2FsdGVkX1+CT4AOoKCCi15ezcXYJde2Rp0+Vy2KGmheE1Nzj1 nYcMm9DERqTSkT From: Sticky Bit To: Florian Smeets Date: Thu, 6 Aug 2009 20:21:56 +0200 User-Agent: KMail (FreeBSD) References: <200908052217.06935.stickybit@gmx.net> <4A7A863A.7080608@kasimir.com> In-Reply-To: <4A7A863A.7080608@kasimir.com> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200908062021.56672.stickybit@gmx.net> Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 X-FuHaFi: 0.65 Cc: freebsd-current@freebsd.org, freebsd-amd64@freebsd.org Subject: Re: [regression] 8.0-CURRENT amd64: SATA disks not attaching, MCP55 controller X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: stickybit@gmx.net List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Aug 2009 18:22:24 -0000 On Thu August 6 2009 09:28:58 Florian Smeets wrote: > i had the same problem with MCP55 on amd64, i tried the new ahci module > but to no avail. > > However if you set hw.pci.mcfg=0 the disks are found by the normal ata Thanks for the hint! I tried it again with 'set hw.pci.mcfg=0' from boot loader prompt and now it actually finds and attaches the disks as usual. But I do not know if I need 'support for PCI-e memory mapped config access', where it is needed and if it can cause problems later with an RELENG_8 installation if it is disabled like in RELENG_7. I only have one PCIe device, a PCIe graphics card, which is working well with drm.ko / radeon.ko modules and radeonhd driver under RELENG_7. Is it safe to stay with 'hw.pci.mcfg=0' under RELENG_8 for the future? And if so, should the default setting be changed from enabled to disabled for 8.0-RELEASE if it is not yet mature enough and the cause of problems? Looks like several people are affected by this regression. -- Regards From owner-freebsd-amd64@FreeBSD.ORG Fri Aug 7 06:33:58 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FA1C1065679 for ; Fri, 7 Aug 2009 06:33:58 +0000 (UTC) (envelope-from fabrizio.invernizzi@telecomitalia.it) Received: from GRFEDG702BA020.telecomitalia.it (grfedg702ba020.telecomitalia.it [156.54.233.201]) by mx1.freebsd.org (Postfix) with ESMTP id C048C8FC0A for ; Fri, 7 Aug 2009 06:33:57 +0000 (UTC) Received: from GRFHUB701BA020.griffon.local (10.188.101.111) by GRFEDG702BA020.telecomitalia.it (10.188.45.101) with Microsoft SMTP Server (TLS) id 8.1.340.0; Fri, 7 Aug 2009 08:33:56 +0200 Received: from GRFMBX702BA020.griffon.local ([10.188.101.12]) by grfhub701ba020.griffon.local ([10.188.101.111]) with mapi; Fri, 7 Aug 2009 08:33:56 +0200 From: Invernizzi Fabrizio To: Joseph Koshy Date: Fri, 7 Aug 2009 08:33:54 +0200 Thread-Topic: Problem with pmcstat Thread-Index: AcoWtiwwYN56DlOpSfGMy9MecCmEMQAcmGNA Message-ID: <36A93B31228D3B49B691AD31652BCAE9A456967666@GRFMBX702BA020.griffon.local> References: <36A93B31228D3B49B691AD31652BCAE9A4569675DE@GRFMBX702BA020.griffon.local> <84dead720908060951j605338e3vb48cd41f13810f29@mail.gmail.com> In-Reply-To: <84dead720908060951j605338e3vb48cd41f13810f29@mail.gmail.com> Accept-Language: it-IT, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: it-IT, en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: "freebsd-amd64@freebsd.org" Subject: RE: Problem with pmcstat X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Aug 2009 06:33:58 -0000 This Is my dmesg: CPU: Intel(R) Xeon(R) CPU E5420 @ 2.50GHz (2503.74-MHz K8-class = CPU) Origin =3D "GenuineIntel" Id =3D 0x10676 Stepping =3D 6 Features=3D0xbfebfbff Features2=3D0xce3bd> AMD Features=3D0x20100800 AMD Features2=3D0x1 Cores per package: 4 usable memory =3D 8575586304 (8178 MB) avail memory =3D 8281559040 (7897 MB) When I try to load the hwpmc module I obtain this error: #kldload hwpmc.ko kldload: can't load hwpmc.ko: Exec format error Fabrizio > -----Original Message----- > From: Joseph Koshy [mailto:joseph.koshy@gmail.com] > Sent: gioved=EC 6 agosto 2009 18.52 > To: Invernizzi Fabrizio > Cc: freebsd-amd64@freebsd.org > Subject: Re: Problem with pmcstat > > > i am doing some performance testing with FreeBSD (64 bit) > and i would like to use pmcstat. > > I recompiled the kernel with > > options HWPMC_HOOKS > > device hwpmc > > > > When i restart the system looks like being ok > > > > #sysctl -a | grep hwpmc > > kern.hwpmc.nbuffers: 16 > > kern.hwpmc.logbuffersize: 4 > > kern.hwpmc.mtxpoolsize: 32 > > kern.hwpmc.nsamples: 32 > > kern.hwpmc.hashsize: 16 > > > > but the pmcstat gives me this error: > > > > # pmcstat -s p6-hw-int-rx -w 1 > > pmcstat: ERROR: Initialization of the pmc(3) library > failed: No such > > file or directory > > > > I googled a lot, but nothing about this problem. Consider > that on the same hardware with 7.2-RELEASE 32 bit everything > was working. > > Anyone can help me? > > > > This are some details: > > > > uname -a > > FreeBSD INTRUDER-64.ipv6.tilab.com 7.2-RELEASE FreeBSD > 7.2-RELEASE #3: Thu Aug 6 11:36:53 CEST 2009 amd64 > > > > Server: HP DL 180G5 > > i386 vs amd64 should not make a difference here. > > What CPU are you running on and what does hwpmc(4) print out > at module initialization time? > > Koshy > Questo messaggio e i suoi allegati sono indirizzati esclusivamente alle per= sone indicate. La diffusione, copia o qualsiasi altra azione derivante dall= a conoscenza di queste informazioni sono rigorosamente vietate. Qualora abb= iate ricevuto questo documento per errore siete cortesemente pregati di dar= ne immediata comunicazione al mittente e di provvedere alla sua distruzione= , Grazie. This e-mail and any attachments is confidential and may contain privileged = information intended for the addressee(s) only. Dissemination, copying, pri= nting or use by anybody else is unauthorised. If you are not the intended r= ecipient, please delete this message and any attachments and advise the sen= der by return e-mail, Thanks. From owner-freebsd-amd64@FreeBSD.ORG Fri Aug 7 13:31:08 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D96A1065670 for ; Fri, 7 Aug 2009 13:31:08 +0000 (UTC) (envelope-from david@esn.org.za) Received: from serendipity.wcape.school.za (seren.esn.org.za [196.211.28.252]) by mx1.freebsd.org (Postfix) with ESMTP id 2254C8FC16 for ; Fri, 7 Aug 2009 13:31:03 +0000 (UTC) Received: from intsika.ct.esn.org.za ([196.211.28.250] helo=ct.esn.org.za) by serendipity.wcape.school.za with esmtp (Exim 4.30) id 1MZPX6-0003YJ-Ps for freebsd-amd64@freebsd.org; Fri, 07 Aug 2009 15:30:56 +0200 Received: from exchange.ct.esn.org.za ([192.168.0.32]) by ct.esn.org.za with Microsoft SMTPSVC(6.0.3790.3959); Fri, 7 Aug 2009 15:30:56 +0200 Received: from exchange.ct.esn.org.za ([fe80::3c71:5518:de45:c66c]) by exchange.ct.esn.org.za ([fe80::3c71:5518:de45:c66c%10]) with mapi; Fri, 7 Aug 2009 15:29:00 +0200 From: David Peall To: "'freebsd-amd64@freebsd.org'" Date: Fri, 7 Aug 2009 15:28:59 +0200 Thread-Topic: Can't install FreeBSD amd64 (intel DP45SG) Thread-Index: AcoVlxnk+eEvhyF6RKm1zs8HCUxCqgBx/cYg Message-ID: <0807767D2D53E649827BC55A3A53B067015C3ACD505A@exchange.ct.esn.org.za> References: <0807767D2D53E649827BC55A3A53B067015C3ACD4F61@exchange.ct.esn.org.za> <4A7923AE.2050602@mapper.nl> In-Reply-To: <4A7923AE.2050602@mapper.nl> Accept-Language: en-US, en-ZA Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US, en-ZA Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginalArrivalTime: 07 Aug 2009 13:30:56.0258 (UTC) FILETIME=[4B188620:01CA1763] X-Antivirus-Scanned: Clean by seren.wcsn.org.za Subject: RE: Can't install FreeBSD amd64 (intel DP45SG) X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Aug 2009 13:31:08 -0000 > 2. Use another system to install the base system and put that in the > problematic one. Either with or without building your own kernel. >=20 > I would say the second option, and building your own kernel is your best Right so I'm ready to build my custom kernel and do a pxeboot. I'm just un= sure of what device / driver is causing the problem and am not sure what to= do at this point. > your hard-disk(s) using: > lsdev [-v] I get the pxeboot nfs disk and my 500gb raid array as disk0. Regards -- David Peall :: IT Manager e-Schools' Network :: http://www.esn.org.za/ Phone +27 (021) 674-9140 > -----Original Message----- > From: Mark Stapper [mailto:stark@mapper.nl] > Sent: 05 August 2009 08:16 AM > To: David Peall > Cc: 'freebsd-amd64@freebsd.org' > Subject: Re: Can't install FreeBSD amd64 (intel DP45SG) >=20 > Dear David, >=20 > In the loader menu, are you able to drop to the loader prompt, and view > your hard-disk(s) using: > lsdev [-v] >=20 > Lists all of the devices from which it may be possible to load modules. > If -v is specified, more details are printed. >=20 > If so, you might be able to do a manual install using a i386 livefs > ("rescue") disk. You would need both the i386 livefs and a amd64 install > medium though(either usb/cdrom or whatever). > You said you tried pxeboot, I assume u have another machine at your > disposal. You could use that do do a manual install as well(if it runs a > system which supports UFS, like freebsd ;-), if not, a VM is your friend)= . > Another option would be to get a disc image of a freebsd base-install > (shouldn't be more then 300mb). > All this assuming you are able to boot the generic kernel of course... > If you are going the manual install way, you might as well build your > custom kernel. Since the kernel included in the install cd's doesn't > really work for you anyway. > To summarize your best options are probably: > 1. Try a manual install using a i386 livefs cd and a amd64 install medium= . > 2. Use another system to install the base system and put that in the > problematic one. Either with or without building your own kernel. >=20 > I would say the second option, and building your own kernel is your best > bet. > Hope it helps. > Greetz, > Mark > David Peall wrote: > > Hi > > > > I tried freebsd-stable but since the machine has not got a problem load= ing > sysinstall with the i386 release I'm posting it here. > > > > I have a new box here a Intel DP45SG and a Quad core Intel with 4GB ram= that > I would like to install FreeBSD on. > > I've tried booting with 7.0, 7.1, 7.2 and 8-BETA2 amd64 and all get stu= ck > on: > > Trying to mount root from ufs:/dev/md0 > > > > 6.3 and 6.4 will boot into sysinstall but not network card detected. > > > > By stuck I mean can't scroll lock, caps lock or num lock. There is no > activity even if left for hours. > > > > I've tried from CD/DVD and pxeboot. > > > > I found the following: > > http://blog.elitecoderz.net/freebsd-freezes-on-trying-to-mount-root-fro= m- > ufsdevmd0-and-is-stucked/2009/01/ > > > > Which suggests disabling USB2 I don't seem to have that bios option and > tried disabling USB completely, but still no joy. (also leaves me without= a > keyboard ;-) > > > > There are no PATA ports for me to mount an older cdrom and there are on= ly > USB ports on the motherboard. There is also no floppy connector or floppy > drive. I'm a bit stuck as to how I should proceed, any ideas welcome. > > > > Kind regards > > > > -- > > David Peall > > > > _______________________________________________ > > freebsd-amd64@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-amd64 > > To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@freebsd.org= " > > >=20 From owner-freebsd-amd64@FreeBSD.ORG Fri Aug 7 15:04:21 2009 Return-Path: Delivered-To: freebsd-amd64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0B4C106564A for ; Fri, 7 Aug 2009 15:04:21 +0000 (UTC) (envelope-from joseph.koshy@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.175]) by mx1.freebsd.org (Postfix) with ESMTP id A43FD8FC1A for ; Fri, 7 Aug 2009 15:04:21 +0000 (UTC) Received: by wf-out-1314.google.com with SMTP id 24so624826wfg.7 for ; Fri, 07 Aug 2009 08:04:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ShBY1B0D8FyAE8MWIMOl42Dvxgt6GpqoNymywQ82HSc=; b=D6I6vqmT+CvYdC9V6qA8gGElCdNGSupaj+w81J9NjTuJPecMfuZgAvtEW6NDtFovYi rQ19i8SA1YuQTTSfJTe2XH9WvcQbKsKqFNXhq47X/w1Yk2pIQeJc8KXtx1Ra0JfxZGfD aDQN07w2S8lcI/fsn5kAjv0vZz4BrHAkNbLWk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=i3YyzlEaROGoofauxMVeULpSDVBlILRaF6UqiyWK/XlvQZaec2y/lZMnfrTb85HhAa Ge0F4ej2p6usR7Ae7bvJ/LdR4Qu0CTXOj0BtB2eIGIgTk+jtvLKjy/L9YLRmg0XNZd4A 3hyM+mo7LMykAwCrFNJia9U5y5yfFz7ehMvtY= MIME-Version: 1.0 Received: by 10.142.229.5 with SMTP id b5mr139600wfh.37.1249657461109; Fri, 07 Aug 2009 08:04:21 -0700 (PDT) In-Reply-To: <36A93B31228D3B49B691AD31652BCAE9A456967666@GRFMBX702BA020.griffon.local> References: <36A93B31228D3B49B691AD31652BCAE9A4569675DE@GRFMBX702BA020.griffon.local> <84dead720908060951j605338e3vb48cd41f13810f29@mail.gmail.com> <36A93B31228D3B49B691AD31652BCAE9A456967666@GRFMBX702BA020.griffon.local> Date: Fri, 7 Aug 2009 20:34:21 +0530 Message-ID: <84dead720908070804i202d8f6fnff344f4bfd910b59@mail.gmail.com> From: Joseph Koshy To: Invernizzi Fabrizio Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-amd64@freebsd.org" Subject: Re: Problem with pmcstat X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Aug 2009 15:04:22 -0000 > When I try to load the hwpmc module I obtain this error: > > #kldload hwpmc.ko > kldload: can't load hwpmc.ko: Exec format error Any additional error messages on the console (see /var/log/messages or dmesg output)? Koshy From owner-freebsd-amd64@FreeBSD.ORG Mon Aug 3 11:06:52 2009 Return-Path: Delivered-To: freebsd-amd64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C7E01065691 for ; Mon, 3 Aug 2009 11:06:52 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 08B3F8FC29 for ; Mon, 3 Aug 2009 11:06:52 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n73B6poV088507 for ; Mon, 3 Aug 2009 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n73B6pUX088503 for freebsd-amd64@FreeBSD.org; Mon, 3 Aug 2009 11:06:51 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 3 Aug 2009 11:06:51 GMT Message-Id: <200908031106.n73B6pUX088503@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-amd64@FreeBSD.org X-Mailman-Approved-At: Fri, 07 Aug 2009 15:49:30 +0000 Cc: Subject: Current problem reports assigned to freebsd-amd64@FreeBSD.org X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Aug 2009 11:06:52 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o amd64/136884 amd64 [install] Try to install FreeBSD 7.2 amd64 on a prolia o amd64/136814 amd64 [mxge] mxge driver error s i386/135447 amd64 [i386] [request] Intel Core i7 and Nehalem-EP new feat o amd64/135265 amd64 [install] Boot from install cd hangs on HP DL160 G5 wi o amd64/135040 amd64 [ata] FreeBSD/amd64 does not (always) detect disk on S o amd64/134978 amd64 [panic] g_up pmap amd64 panic o amd64/134786 amd64 [vfs] [patch] vfs.bufspace sysctl wideness on amd64 o amd64/134757 amd64 32 bit processes on 64 bit platforms occasionally drop o amd64/133977 amd64 [panic] [ffs] "panic: ffs_blkfree: freeing free block" o amd64/133701 amd64 Recompiling the kernel with k8temp or smbios break GEO o amd64/132574 amd64 [boot] [hang] Freeze on bootstrap loader (CD) using AT o amd64/132372 amd64 [ata] No disks found (nVidia nForce MCP55 sata control o amd64/132019 amd64 [install] kernel trap 12 while installation o amd64/131906 amd64 [ata] SATA data corruption with Promise PDC20378 (amd6 o amd64/131456 amd64 ACPI & ATA problems o amd64/131314 amd64 [modules] [panic] large modules fail to load on amd64 o amd64/131209 amd64 [panic] [bce] 7.1-STABLE amd64 crash - m0 NULL f amd64/130885 amd64 sockstat(1) on amd64 does not work o amd64/130864 amd64 [hang] Problem with copying files to a large partition o amd64/130817 amd64 FreeBSD does not support HP DL160G5 [regression] o amd64/130494 amd64 [boot] netbooting BTX fails on amd64 o amd64/130483 amd64 [mxge] MSI must be disabled when Myricom 10Gbps Card i o amd64/130368 amd64 [hang] Switching from xorg to console locks up compute o amd64/129889 amd64 [boot] [hang] The booting process stops at the line mo o amd64/129721 amd64 [hang] Motherboard K9N2G Neo-FD hangs on boot of 7.0-R o amd64/129667 amd64 [ata] Elitegroup A780GM-A IDE controller not recognize o amd64/129426 amd64 [panic] FreeBSD 7.0 crash after subdiskXX: detached o amd64/129315 amd64 [boot] [reboot] amd64 motherboard: Intel DG965WH mothe f amd64/128978 amd64 [install] FreeBSD 6.3 64-bit panics at boot time duri o amd64/128810 amd64 AMD 64 port installation o amd64/128765 amd64 [install] Install CD loads to Install choices but stop o amd64/128686 amd64 [ata] can't detect SATA Disk on 8.0-Current with NF550 o amd64/128263 amd64 [panic] 2 amd64 dl380 g5 with dual quadcore xeons, 8 a o amd64/128259 amd64 csh(1): "`" crashes csh o amd64/127640 amd64 gcc(1) will not build shared libraries with -fprofile- o amd64/127484 amd64 [timecounters] Drift problem with FreeBSD 7.0 and 7.1 o amd64/127451 amd64 [scheduler] incorrect load on quad core o amd64/127397 amd64 [amd64] 32bit application on FreeBSD-6.3 amd64 gets SI s amd64/127276 amd64 ldd(1) invokes linux yes o amd64/127129 amd64 mdconfig(8) is core dumping with Segmentation Fault 11 o amd64/125873 amd64 [smbd] [panic] Repeated kernel panics, trap 12 page fa o amd64/125002 amd64 [install] amd64, SATA hard disks not detected o amd64/124432 amd64 [panic] 7.0-STABLE panic: invalbuf: dirty bufs o amd64/124134 amd64 [kernel] The kernel doesn't follow the calling convent o amd64/123562 amd64 [install] FreeBSD amd64 not installs o amd64/123520 amd64 [ahd] unable to boot from net while using ahd o amd64/123456 amd64 fstat(1): /usr/bin/fstat shows error messages and hang f amd64/123275 amd64 [cbb] [pcmcia] cbb/pcmcia drivers on amd64 failure [re o kern/122782 amd64 [modules] accf_http.ko kernel module is not loadable o amd64/122695 amd64 [cpufreq] Lack of cpufreq control using amd64 eith cor o amd64/122624 amd64 unusable minimal installation of FreeBSD-7.0 o amd64/122549 amd64 7.0-RELEASE-amd64-bootonly.iso doesn't work w/ serial o amd64/122468 amd64 Compile problems after upgrading to 7.0 o amd64/122174 amd64 [panic] 7.0 no longer includes "device atpic" so fails o amd64/121590 amd64 [est] [p4tcc] [acpi_perf] setting dev.cpu.0.freq somet o amd64/120202 amd64 [amd64] [patch] [panic] kernel panic at start_all_aps, o amd64/119591 amd64 [amd64] [patch] time_t on 64-bit architecture o amd64/117418 amd64 [hang] FreeBSD 6.2 crash on amd64 4400+ with ssh o amd64/117316 amd64 [acpi] ACPI lockups on SuperMicro motherboard o amd64/117296 amd64 [ata] I don`t see second SATA IDE on VIA VT8237A a amd64/117186 amd64 [modules] kldload Unsupported file type on STABLE amd6 s amd64/116689 amd64 [request] support for MSI K9MM-V o amd64/116620 amd64 [hang] ifconfig spins when creating carp(4) device on o amd64/116322 amd64 [panic] At start fsck on current, the system panics o amd64/116159 amd64 [panic] Panic while debugging on CURRENT s amd64/115815 amd64 [ata] [request] Gigabyte GA-M61P-S3 Motherboard unsupp o amd64/115581 amd64 [Makefile] [patch] -mfancy-math-387 has no effect o amd64/115194 amd64 LCD screen remains blank after Dell XPS M1210 lid is c o amd64/114270 amd64 [cpufreq] cpufreq doesnt work when compiled in to kern o amd64/112222 amd64 [libc] 32-bit libc incorrectly converts some FP number o amd64/110599 amd64 [geli] geli attach to gmirror device hangs and cannot s amd64/108861 amd64 [nve] nve(4) driver on FreeBSD 6.2 AMD64 does not work o amd64/106186 amd64 [panic] panic in swap_pager_swap_init (amd64/smp/6.2-p f amd64/105531 amd64 [ata] gigabyte GA-M51GM-S2G / nVidia nForce 430 - does f amd64/105514 amd64 [boot] FreeBSD/amd64 - Fails to boot on HP Pavilion dv o amd64/102716 amd64 ex with no argument in an xterm gets SIGSEGV o amd64/97337 amd64 [dri] xorg reboots system if dri module is enabled o amd64/95888 amd64 [ata] kernel: ad2: TIMEOUT - WRITE_DMA retrying on HP o amd64/94677 amd64 [panic] panic in amd64 install at non-root user creati o amd64/93961 amd64 [busdma] Problem in bounce buffer handling in sys/amd6 o amd64/92337 amd64 [em] FreeBSD 6.0 Release Intel Pro 1000 MT em1 no buff o amd64/91405 amd64 [asr] [panic] Kernel panic caused by asr on 6.0-amd64 o amd64/89501 amd64 [install] System crashes on install using ftp on local o amd64/88790 amd64 [panic] kernel panic on first boot (after the FreeBSD o amd64/88568 amd64 [panic] 6.0-RELEASE install cd does not boot with usb o amd64/87689 amd64 [powerd] [hang] powerd hangs SMP Opteron 244 5-STABLE o amd64/87316 amd64 [vge] "vge0 attach returned 6" on FreeBSD 6.0-RC1 amd6 o amd64/87305 amd64 [smp] Dual Opteron / FreeBSD 5 & 6 / powerd results in s amd64/85273 amd64 [install] FreeBSD (NetBSD or OpenBSD) not install on l o amd64/78406 amd64 [panic]AMD64 w/ SCSI: issue 'rm -r /usr/ports' and sys o amd64/76136 amd64 [hang] system halts before reboot o amd64/74747 amd64 [panic] System panic on shutdown when process will not 92 problems total.