From owner-freebsd-mobile Mon Apr 29 9:50:28 2002 Delivered-To: freebsd-mobile@freebsd.org Received: from lerlaptop.iadfw.net (lerlaptop.iadfw.net [206.66.13.21]) by hub.freebsd.org (Postfix) with ESMTP id 257CF37B435; Mon, 29 Apr 2002 09:47:10 -0700 (PDT) Received: from lerlaptop.iadfw.net (localhost [127.0.0.1]) by lerlaptop (8.12.3/8.12.3) with ESMTP id g3TGkncA000189; Mon, 29 Apr 2002 11:46:49 -0500 (CDT) (envelope-from ler@lerlaptop.iadfw.net) Received: (from ler@localhost) by lerlaptop.iadfw.net (8.12.3/8.12.3/Submit) id g3TGknTk000188; Mon, 29 Apr 2002 11:46:49 -0500 (CDT) Date: Mon, 29 Apr 2002 11:46:49 -0500 From: Larry Rosenman To: freebsd-stable@freebsd.org Cc: freebsd-mobile@freebsd.org Subject: Re: New Laptop: i810: HELP Message-ID: <20020429164649.GA176@lerlaptop.iadfw.net> References: <20020429144310.GA10697@lerlaptop.iadfw.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020429144310.GA10697@lerlaptop.iadfw.net> User-Agent: Mutt/1.3.28i X-Mailer: Mutt http://www.mutt.org/ Sender: owner-freebsd-mobile@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org * Larry Rosenman [020429 09:43]: > I bought myself a new laptop yesterday, and am having issues > getting XFree86 4.2.0 to initialize. The issue appears to be > the /dev/agpgart device says it's not configured, although the > Laptop has the I830M chips, and I loaded agp.ko in /boot/loader.conf It's a Fujitsu C6651 LapTop, if anyone cares, 256MB mem, P-IIIM at 1.13Ghz 20GB HDD, and 4 USB ports (which, apparently we need to update the driver for, but that's a different thread, after we get X running). The XFree86 is 4.2.0, installed via the PACKAGES. Following up to myself... Made SOME progress... We still die, but it's closer. Any of y'all have any ideas? with this patch in /usr/src/sys/pci/agp_i810.c: --- agp_i810.c.orig Thu Oct 19 05:36:27 2000 +++ agp_i810.c Mon Apr 29 11:28:02 2002 @@ -87,6 +87,9 @@ case 0x11328086: return ("Intel 82815 (i815 GMCH) SVGA controller"); + + case 0x35778086: + return ("Intel 82830M (i830M GMCH) SVGA controller"); }; return NULL; @@ -116,6 +119,10 @@ case 0x11328086: devid = 0x11308086; break; + + case 0x35778086: + devid = 0x35758086; + break; }; if (device_get_children(device_get_parent(dev), &children, &nchildren)) return 0; @@ -150,12 +157,14 @@ } smram = pci_read_config(bdev, AGP_I810_SMRAM, 1); +#if 0 if ((smram & AGP_I810_SMRAM_GMS) == AGP_I810_SMRAM_GMS_DISABLED) { if (bootverbose) printf("I810: disabled, not probing\n"); return ENXIO; } +#endif device_verbose(dev); device_set_desc(dev, desc); I get the following XFree86 log: XFree86 Version 4.2.0 / X Window System (protocol Version 11, revision 0, vendor release 6600) Release Date: 18 January 2002 If the server is older than 6-12 months, or if your card is newer than the above date, look for a newer version before reporting problems. (See http://www.XFree86.Org/) Build Operating System: FreeBSD 4.5 i386 [ELF] Module Loader present Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/XFree86.0.log", Time: Mon Apr 29 11:38:43 2002 (==) Using config file: "/etc/X11/XF86Config" (==) ServerLayout "Simple Layout" (**) |-->Screen "Screen 1" (0) (**) | |-->Monitor "My Monitor" (**) | |-->Device "Intel 810-1" (**) |-->Input Device "Mouse1" (**) |-->Input Device "Keyboard1" (**) Option "AutoRepeat" "500 30" (**) Option "XkbRules" "xfree86" (**) XKB: rules: "xfree86" (**) Option "XkbModel" "pc104" (**) XKB: model: "pc104" (**) Option "XkbLayout" "us" (**) XKB: layout: "us" (==) Keyboard: CustomKeycode disabled (WW) `fonts.dir' not found (or not valid) in "/usr/X11R6/lib/X11/fonts/local/". Entry deleted from font path. (Run 'mkfontdir' on "/usr/X11R6/lib/X11/fonts/local/"). (**) FontPath set to "/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/" (**) RgbPath set to "/usr/X11R6/lib/X11/rgb" (==) ModulePath set to "/usr/X11R6/lib/modules" (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (II) Module ABI versions: XFree86 ANSI C Emulation: 0.1 XFree86 Video Driver: 0.5 XFree86 XInput driver : 0.3 XFree86 Server Extension : 0.1 XFree86 Font Renderer : 0.3 (II) Loader running on freebsd (II) LoadModule: "bitmap" (II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a (II) Module bitmap: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Bitmap (II) LoadModule: "pcidata" (II) Loading /usr/X11R6/lib/modules/libpcidata.a (II) Module pcidata: vendor="The XFree86 Project" compiled for 4.2.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) PCI: Probing config type using method 1 (II) PCI: Config type is 1 (II) PCI: stages = 0x03, oldVal1 = 0x00000000, mode1Res1 = 0x80000000 (II) PCI: PCI scan (all values are in hex) (II) PCI: 00:00:0: chip 8086,3575 card 10cf,113b rev 04 class 06,00,00 hdr 00 (II) PCI: 00:02:0: chip 8086,3577 card 10cf,113c rev 04 class 03,00,00 hdr 80 (II) PCI: 00:02:1: chip 8086,3577 card 10cf,113c rev 00 class 03,80,00 hdr 80 (II) PCI: 00:1d:0: chip 8086,2482 card 10cf,113d rev 02 class 0c,03,00 hdr 80 (II) PCI: 00:1d:1: chip 8086,2484 card 10cf,113d rev 02 class 0c,03,00 hdr 00 (II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev 42 class 06,04,00 hdr 01 (II) PCI: 00:1f:0: chip 8086,248c card 0000,0000 rev 02 class 06,01,00 hdr 80 (II) PCI: 00:1f:1: chip 8086,248a card 10cf,113d rev 02 class 01,01,8a hdr 00 (II) PCI: 00:1f:3: chip 8086,2483 card 10cf,113d rev 02 class 0c,05,00 hdr 00 (II) PCI: 00:1f:5: chip 8086,2485 card 10cf,112f rev 02 class 04,01,00 hdr 00 (II) PCI: 00:1f:6: chip 8086,2486 card 10cf,10d1 rev 02 class 07,03,00 hdr 00 (II) PCI: 01:0a:0: chip 104c,ac55 card 0000,0000 rev 01 class 06,07,00 hdr 82 (II) PCI: 01:0a:1: chip 104c,ac55 card 0000,0000 rev 01 class 06,07,00 hdr 82 (II) PCI: 01:0d:0: chip 10ec,8139 card 10cf,111c rev 10 class 02,00,00 hdr 00 (II) PCI: 01:0e:0: chip 10cf,2010 card 10cf,112b rev 01 class 0c,00,10 hdr 00 (II) PCI: End of PCI scan (II) LoadModule: "scanpci" (II) Loading /usr/X11R6/lib/modules/libscanpci.a (II) Module scanpci: vendor="The XFree86 Project" compiled for 4.2.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) UnloadModule: "scanpci" (II) Unloading /usr/X11R6/lib/modules/libscanpci.a (II) Host-to-PCI bridge: (II) PCI-to-ISA bridge: (II) PCI-to-PCI bridge: (II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus 0 I/O range: [0] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) Bus 0 non-prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 0 prefetchable memory range: [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] (II) Bus 1: bridge is at (0:30:0), (0,1,3), BCTRL: 0x04 (VGA_EN is cleared) (II) Bus 1 I/O range: [0] -1 0x00002000 - 0x000020ff (0x100) IX[B] [1] -1 0x00002400 - 0x000024ff (0x100) IX[B] [2] -1 0x00002800 - 0x000028ff (0x100) IX[B] [3] -1 0x00002c00 - 0x00002cff (0x100) IX[B] (II) Bus 1 non-prefetchable memory range: [0] -1 0xe0200000 - 0xe02fffff (0x100000) MX[B] (II) Bus 1 prefetchable memory range: (II) Bus -1: bridge is at (0:31:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set) (II) Bus -1 I/O range: (II) Bus -1 non-prefetchable memory range: (II) Bus -1 prefetchable memory range: (--) PCI:*(0:2:0) Intel i830M rev 4, Mem @ 0xe8000000/27, 0xe0000000/19 (--) PCI: (0:2:1) Intel i830M rev 0, Mem @ 0xf0000000/27, 0xe0080000/19 (II) Addressable bus resource ranges are [0] -1 0x00000000 - 0xffffffff (0x0) MX[B] [1] -1 0x00000000 - 0x0000ffff (0x10000) IX[B] (II) OS-reported resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) Active PCI resource ranges: [0] -1 0xe0200000 - 0xe03fffff (0x200000) MX[B]E [1] -1 0xe0200800 - 0xe0200fff (0x800) MX[B]E [2] -1 0xe0100000 - 0xe01fffff (0x100000) MX[B]E [3] -1 0xe0080000 - 0xe00fffff (0x80000) MX[B](B) [4] -1 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [5] -1 0xe0000000 - 0xe007ffff (0x80000) MX[B](B) [6] -1 0xe8000000 - 0xefffffff (0x8000000) MX[B](B) [7] -1 0x00002000 - 0x000020ff (0x100) IX[B]E [8] -1 0x00001800 - 0x000018ff (0x100) IX[B]E [9] -1 0x00001400 - 0x000014ff (0x100) IX[B]E [10] -1 0x00001880 - 0x000018ff (0x80) IX[B]E [11] -1 0x00001000 - 0x000010ff (0x100) IX[B]E [12] -1 0x00001c00 - 0x00001cff (0x100) IX[B]E [13] -1 0x00001c20 - 0x00001c3f (0x20) IX[B]E [14] -1 0x00000374 - 0x00000377 (0x4) IX[B]E [15] -1 0x00000170 - 0x0000017f (0x10) IX[B]E [16] -1 0x000003f4 - 0x000003f7 (0x4) IX[B]E [17] -1 0x000001f0 - 0x000001ff (0x10) IX[B]E [18] -1 0x000018e0 - 0x000018ff (0x20) IX[B]E [19] -1 0x000018c0 - 0x000018ff (0x40) IX[B]E (II) PCI Memory resource overlap reduced 0xe0200000 from 0xe03fffff to 0xe02007ff (II) PCI I/O resource overlap reduced 0x00001800 from 0x000018ff to 0x0000187f (II) PCI I/O resource overlap reduced 0x00001880 from 0x000018ff to 0x000018bf (II) PCI I/O resource overlap reduced 0x00001c00 from 0x00001cff to 0x00001c1f (II) PCI I/O resource overlap reduced 0x000018c0 from 0x000018ff to 0x000018df (II) Active PCI resource ranges after removing overlaps: [0] -1 0xe0200000 - 0xe02007ff (0x800) MX[B]E [1] -1 0xe0200800 - 0xe0200fff (0x800) MX[B]E [2] -1 0xe0100000 - 0xe01fffff (0x100000) MX[B]E [3] -1 0xe0080000 - 0xe00fffff (0x80000) MX[B](B) [4] -1 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [5] -1 0xe0000000 - 0xe007ffff (0x80000) MX[B](B) [6] -1 0xe8000000 - 0xefffffff (0x8000000) MX[B](B) [7] -1 0x00002000 - 0x000020ff (0x100) IX[B]E [8] -1 0x00001800 - 0x0000187f (0x80) IX[B]E [9] -1 0x00001400 - 0x000014ff (0x100) IX[B]E [10] -1 0x00001880 - 0x000018bf (0x40) IX[B]E [11] -1 0x00001000 - 0x000010ff (0x100) IX[B]E [12] -1 0x00001c00 - 0x00001c1f (0x20) IX[B]E [13] -1 0x00001c20 - 0x00001c3f (0x20) IX[B]E [14] -1 0x00000374 - 0x00000377 (0x4) IX[B]E [15] -1 0x00000170 - 0x0000017f (0x10) IX[B]E [16] -1 0x000003f4 - 0x000003f7 (0x4) IX[B]E [17] -1 0x000001f0 - 0x000001ff (0x10) IX[B]E [18] -1 0x000018e0 - 0x000018ff (0x20) IX[B]E [19] -1 0x000018c0 - 0x000018df (0x20) IX[B]E (II) OS-reported resource ranges after removing overlaps with PCI: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [6] -1 0x00000000 - 0x000000ff (0x100) IX[B] (II) All system resource ranges: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xe0200000 - 0xe02007ff (0x800) MX[B]E [6] -1 0xe0200800 - 0xe0200fff (0x800) MX[B]E [7] -1 0xe0100000 - 0xe01fffff (0x100000) MX[B]E [8] -1 0xe0080000 - 0xe00fffff (0x80000) MX[B](B) [9] -1 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [10] -1 0xe0000000 - 0xe007ffff (0x80000) MX[B](B) [11] -1 0xe8000000 - 0xefffffff (0x8000000) MX[B](B) [12] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0x00002000 - 0x000020ff (0x100) IX[B]E [15] -1 0x00001800 - 0x0000187f (0x80) IX[B]E [16] -1 0x00001400 - 0x000014ff (0x100) IX[B]E [17] -1 0x00001880 - 0x000018bf (0x40) IX[B]E [18] -1 0x00001000 - 0x000010ff (0x100) IX[B]E [19] -1 0x00001c00 - 0x00001c1f (0x20) IX[B]E [20] -1 0x00001c20 - 0x00001c3f (0x20) IX[B]E [21] -1 0x00000374 - 0x00000377 (0x4) IX[B]E [22] -1 0x00000170 - 0x0000017f (0x10) IX[B]E [23] -1 0x000003f4 - 0x000003f7 (0x4) IX[B]E [24] -1 0x000001f0 - 0x000001ff (0x10) IX[B]E [25] -1 0x000018e0 - 0x000018ff (0x20) IX[B]E [26] -1 0x000018c0 - 0x000018df (0x20) IX[B]E (II) LoadModule: "dbe" (II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a (II) Module dbe: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "extmod" (II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a (II) Module extmod: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 Module class: XFree86 Server Extension ABI class: XFree86 Server Extension, version 0.1 (II) Loading extension SHAPE (II) Loading extension MIT-SUNDRY-NONSTANDARD (II) Loading extension BIG-REQUESTS (II) Loading extension SYNC (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XC-MISC (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-Misc (II) Loading extension DPMS (II) Loading extension FontCache (II) Loading extension TOG-CUP (II) Loading extension Extended-Visual-Information (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) LoadModule: "type1" (II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a (II) Module type1: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.1 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font Type1 (II) Loading font CID (II) LoadModule: "freetype" (II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a (II) Module freetype: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.1.10 Module class: XFree86 Font Renderer ABI class: XFree86 Font Renderer, version 0.3 (II) Loading font FreeType (II) LoadModule: "i810" (II) Loading /usr/X11R6/lib/modules/drivers/i810_drv.o (II) Module i810: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.1.0 Module class: XFree86 Video Driver ABI class: XFree86 Video Driver, version 0.5 (II) LoadModule: "mouse" (II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o (II) Module mouse: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 Module class: XFree86 XInput Driver ABI class: XFree86 XInput driver, version 0.3 (II) I810: Driver for Intel i810 chipset: i810, i810-dc100, i810e, i815, i830M (II) Primary Device is: PCI 00:02:0 (--) Assigning device section with no busID to primary device (WW) I810: No matching Device section for instance (BusID PCI:0:2:1) found (--) Chipset i830M found (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xe0200000 - 0xe02007ff (0x800) MX[B]E [6] -1 0xe0200800 - 0xe0200fff (0x800) MX[B]E [7] -1 0xe0100000 - 0xe01fffff (0x100000) MX[B]E [8] -1 0xe0080000 - 0xe00fffff (0x80000) MX[B](B) [9] -1 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [10] -1 0xe0000000 - 0xe007ffff (0x80000) MX[B](B) [11] -1 0xe8000000 - 0xefffffff (0x8000000) MX[B](B) [12] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [13] -1 0x00000000 - 0x000000ff (0x100) IX[B] [14] -1 0x00002000 - 0x000020ff (0x100) IX[B]E [15] -1 0x00001800 - 0x0000187f (0x80) IX[B]E [16] -1 0x00001400 - 0x000014ff (0x100) IX[B]E [17] -1 0x00001880 - 0x000018bf (0x40) IX[B]E [18] -1 0x00001000 - 0x000010ff (0x100) IX[B]E [19] -1 0x00001c00 - 0x00001c1f (0x20) IX[B]E [20] -1 0x00001c20 - 0x00001c3f (0x20) IX[B]E [21] -1 0x00000374 - 0x00000377 (0x4) IX[B]E [22] -1 0x00000170 - 0x0000017f (0x10) IX[B]E [23] -1 0x000003f4 - 0x000003f7 (0x4) IX[B]E [24] -1 0x000001f0 - 0x000001ff (0x10) IX[B]E [25] -1 0x000018e0 - 0x000018ff (0x20) IX[B]E [26] -1 0x000018c0 - 0x000018df (0x20) IX[B]E (II) resource ranges after probing: [0] -1 0xffe00000 - 0xffffffff (0x200000) MX[B](B) [1] -1 0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B) [2] -1 0x000f0000 - 0x000fffff (0x10000) MX[B] [3] -1 0x000c0000 - 0x000effff (0x30000) MX[B] [4] -1 0x00000000 - 0x0009ffff (0xa0000) MX[B] [5] -1 0xe0200000 - 0xe02007ff (0x800) MX[B]E [6] -1 0xe0200800 - 0xe0200fff (0x800) MX[B]E [7] -1 0xe0100000 - 0xe01fffff (0x100000) MX[B]E [8] -1 0xe0080000 - 0xe00fffff (0x80000) MX[B](B) [9] -1 0xf0000000 - 0xf7ffffff (0x8000000) MX[B](B) [10] -1 0xe0000000 - 0xe007ffff (0x80000) MX[B](B) [11] -1 0xe8000000 - 0xefffffff (0x8000000) MX[B](B) [12] 0 0x000a0000 - 0x000affff (0x10000) MS[B] [13] 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [14] 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [15] -1 0x0000ffff - 0x0000ffff (0x1) IX[B] [16] -1 0x00000000 - 0x000000ff (0x100) IX[B] [17] -1 0x00002000 - 0x000020ff (0x100) IX[B]E [18] -1 0x00001800 - 0x0000187f (0x80) IX[B]E [19] -1 0x00001400 - 0x000014ff (0x100) IX[B]E [20] -1 0x00001880 - 0x000018bf (0x40) IX[B]E [21] -1 0x00001000 - 0x000010ff (0x100) IX[B]E [22] -1 0x00001c00 - 0x00001c1f (0x20) IX[B]E [23] -1 0x00001c20 - 0x00001c3f (0x20) IX[B]E [24] -1 0x00000374 - 0x00000377 (0x4) IX[B]E [25] -1 0x00000170 - 0x0000017f (0x10) IX[B]E [26] -1 0x000003f4 - 0x000003f7 (0x4) IX[B]E [27] -1 0x000001f0 - 0x000001ff (0x10) IX[B]E [28] -1 0x000018e0 - 0x000018ff (0x20) IX[B]E [29] -1 0x000018c0 - 0x000018df (0x20) IX[B]E [30] 0 0x000003b0 - 0x000003bb (0xc) IS[B] [31] 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Setting vga for screen 0. (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/X11R6/lib/modules/libvgahw.a (II) Module vgahw: vendor="The XFree86 Project" compiled for 4.2.0, module version = 0.1.0 ABI class: XFree86 Video Driver, version 0.5 (II) Loading sub module "int10" (II) LoadModule: "int10" (II) Loading /usr/X11R6/lib/modules/libint10.a (II) Module int10: vendor="The XFree86 Project" compiled for 4.2.0, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.5 (**) I810(0): Depth 24, (--) framebuffer bpp 32 (==) I810(0): RGB weight 888 (==) I810(0): Default visual is TrueColor (==) I810(0): Write-combining range (0xa0000,0x20000) was already clear (==) I810(0): Write-combining range (0xf0000,0x10000) (WW) I810(0): Bad V_BIOS checksum (II) I810(0): Primary V_BIOS segment is: 0xc000 (--) I810(0): Chipset: "i830" (--) I810(0): Linear framebuffer at 0xE8000000 (--) I810(0): IO registers at addr 0xE0000000 (II) I810(0): detected 8192K stolen memory. (II) I810(0): I810CheckAvailableMemory: 208896k available (==) I810(0): Will alloc AGP framebuffer: 8192 kByte (==) I810(0): Using gamma correction (1.0, 1.0, 1.0) c000:01a2: 62 ILLEGAL X86 OPCODE! (II) I810(0): Failed to detect active display devices (EE) I810(0): Couldn't detect display devices. (II) UnloadModule: "i810" (II) UnloadModule: "int10" (II) Unloading /usr/X11R6/lib/modules/libint10.a (II) UnloadModule: "vgahw" (II) Unloading /usr/X11R6/lib/modules/libvgahw.a (EE) Screen(s) found, but none have a usable configuration. Fatal server error: no screens found When reporting a problem related to a server crash, please send the full server output, not just the last messages. This can be found in the log file "/var/log/XFree86.0.log". Please report problems to xfree86@xfree86.org. Here is a verbose dmesg: Copyright (c) 1992-2002 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 4.5-STABLE #14: Mon Apr 29 11:31:10 CDT 2002 ler@lerlaptop:/usr/obj/usr/src/sys/LERLAPTOP Calibrating clock(s) ... TSC clock: 1129562703 Hz, i8254 clock: 1193174 Hz CLK_USE_I8254_CALIBRATION not specified - using default frequency Timecounter "i8254" frequency 1193182 Hz CLK_USE_TSC_CALIBRATION not specified - using old calibration method CPU: Pentium III/Pentium III Xeon/Celeron (1129.58-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6b1 Stepping = 1 Features=0x383f9ff real memory = 259522560 (253440K bytes) Physical memory chunk(s): 0x00001000 - 0x0009efff, 647168 bytes (158 pages) 0x003be000 - 0x0f6dffff, 254943232 bytes (62242 pages) 0x0f700000 - 0x0f777fff, 491520 bytes (120 pages) avail memory = 248741888 (242912K bytes) bios32: Found BIOS32 Service Directory header at 0xc00f63d0 bios32: Entry = 0xfd850 (c00fd850) Rev = 0 Len = 1 pcibios: PCI BIOS entry at 0x11e pnpbios: Found PnP BIOS data at 0xc00f6420 pnpbios: Entry = f0000:92bd Rev = 1.0 Other BIOS signatures found: ACPI: 000f6400 Preloaded elf kernel "kernel" at 0xc0397000. Preloaded elf module "agp.ko" at 0xc03970a8. Preloaded elf module "accf_data.ko" at 0xc0397144. Preloaded elf module "accf_http.ko" at 0xc03971e8. Pentium Pro MTRR support enabled pci_open(1): mode 1 addr port (0x0cf8) is 0x80000058 pci_open(1a): mode1res=0x80000000 (0x80000000) pci_cfgcheck: device 0 [class=060000] [hdr=00] is there (id=35758086) Using $PIR table, 9 entries at 0xc00fdf30 apm0: on motherboard apm: found APM BIOS v1.2, connected at v1.2 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard found-> vendor=0x8086, dev=0x3575, revid=0x04 class=06-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base 00000000, size 0 found-> vendor=0x8086, dev=0x3577, revid=0x04 class=03-00-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base e8000000, size 27 map[14]: type 1, range 32, base e0000000, size 19 found-> vendor=0x8086, dev=0x3577, revid=0x00 class=03-80-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 map[10]: type 1, range 32, base f0000000, size 27 map[14]: type 1, range 32, base e0080000, size 19 found-> vendor=0x8086, dev=0x2482, revid=0x02 class=0c-03-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[20]: type 1, range 32, base 000018c0, size 5 found-> vendor=0x8086, dev=0x2484, revid=0x02 class=0c-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=b, irq=11 map[20]: type 1, range 32, base 000018e0, size 5 found-> vendor=0x8086, dev=0x2448, revid=0x42 class=06-04-00, hdrtype=0x01, mfdev=0 subordinatebus=3 secondarybus=1 found-> vendor=0x8086, dev=0x248c, revid=0x02 class=06-01-00, hdrtype=0x00, mfdev=1 subordinatebus=0 secondarybus=0 found-> vendor=0x8086, dev=0x248a, revid=0x02 class=01-01-8a, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=255 map[10]: type 1, range 32, base 000001f0, size 3 map[14]: type 1, range 32, base 000003f4, size 2 map[18]: type 1, range 32, base 00000170, size 3 map[1c]: type 1, range 32, base 00000374, size 2 map[20]: type 1, range 32, base 00001c20, size 4 map[24]: type 1, range 32, base e0100000, size 10 found-> vendor=0x8086, dev=0x2483, revid=0x02 class=0c-05-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=b, irq=11 map[20]: type 1, range 32, base 00001c00, size 5 found-> vendor=0x8086, dev=0x2485, revid=0x02 class=04-01-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=b, irq=11 map[10]: type 1, range 32, base 00001000, size 8 map[14]: type 1, range 32, base 00001880, size 6 found-> vendor=0x8086, dev=0x2486, revid=0x02 class=07-03-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=b, irq=11 map[10]: type 1, range 32, base 00001400, size 8 map[14]: type 1, range 32, base 00001800, size 7 pci0: on pcib0 agp0: mem 0xe0000000-0xe007ffff,0xe8000000-0xefffffff irq 11 at device 2.0 on pci0 agp0: allocating GATT for aperture of size 32M pci0: (vendor=0x8086, dev=0x3577) at 2.1 uhci0: port 0x18c0-0x18df irq 11 at device 29.0 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0x18e0-0x18ff irq 11 at device 29.1 on pci0 using shared irq11. usb1: on uhci1 usb1: USB revision 1.0 uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered pcib1: at device 30.0 on pci0 found-> vendor=0x104c, dev=0xac55, revid=0x01 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=2 secondarybus=2 intpin=a, irq=11 found-> vendor=0x104c, dev=0xac55, revid=0x01 class=06-07-00, hdrtype=0x02, mfdev=1 subordinatebus=3 secondarybus=3 intpin=b, irq=11 found-> vendor=0x10ec, dev=0x8139, revid=0x10 class=02-00-00, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base 00002000, size 8 map[14]: type 1, range 32, base e0200800, size 8 found-> vendor=0x10cf, dev=0x2010, revid=0x01 class=0c-00-10, hdrtype=0x00, mfdev=0 subordinatebus=0 secondarybus=0 intpin=a, irq=11 map[10]: type 1, range 32, base e0200000, size 11 pci1: on pcib1 Found unknown YENTA PCI-CARDBUS Bridge devid 0xac55104c pcic0: irq 11 at device 10.0 on pci1 pcic0: PCI Memory allocated: 0x44000000 pcic0: PCI Configuration space: 0x00: 0xac55104c 0x02100007 0x06070001 0x00824008 0x10: 0x44000000 0x020000a0 0x00020201 0x00000000 0x20: 0x00000000 0x00000000 0x00000000 0x00000000 0x30: 0x00000000 0x00000000 0x00000000 0x07e0010b 0x40: 0x116410cf 0x00000001 0x00000000 0x00000000 0x50: 0x00000000 0x00000000 0x00000000 0x00000000 0x60: 0x00000000 0x00000000 0x00000000 0x00000000 0x70: 0x00000000 0x00000000 0x00000000 0x00000000 0x80: 0x00649060 0x00000000 0x00000000 0x01c61d22 0x90: 0x404682c0 0x00000000 0x00000000 0x00000000 0xa0: 0xfe120001 0x00c00000 0x00000004 0x0000000b 0xb0: 0x09000000 0x00000000 0x00000000 0x00000000 0xc0: 0x00000000 0x00000000 0x00000000 0x00000000 0xd0: 0x00000000 0x00000000 0x00000000 0x00000000 0xe0: 0x00000000 0x00000000 0x00000000 0x00000000 0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 pccard0: on pcic0 Found unknown YENTA PCI-CARDBUS Bridge devid 0xac55104c pcic1: irq 11 at device 10.1 on pci1 pcic1: PCI Memory allocated: 0x44001000 pcic1: PCI Configuration space: 0x00: 0xac55104c 0x02100007 0x06070001 0x00824008 0x10: 0x44001000 0x020000a0 0x00030301 0x00000000 0x20: 0x00000000 0x00000000 0x00000000 0x00000000 0x30: 0x00000000 0x00000000 0x00000000 0x07e0020b 0x40: 0x116410cf 0x00000001 0x00000000 0x00000000 0x50: 0x00000000 0x00000000 0x00000000 0x00000000 0x60: 0x00000000 0x00000000 0x00000000 0x00000000 0x70: 0x00000000 0x00000000 0x00000000 0x00000000 0x80: 0x00649060 0x00000000 0x00000000 0x01c61d22 0x90: 0x404683c0 0x00000000 0x00000000 0x00000000 0xa0: 0xfe120001 0x00c00000 0x00000804 0x0000000b 0xb0: 0x09000000 0x00000000 0x00000000 0x00000000 0xc0: 0x00000000 0x00000000 0x00000000 0x00000000 0xd0: 0x00000000 0x00000000 0x00000000 0x00000000 0xe0: 0x00000000 0x00000000 0x00000000 0x00000000 0xf0: 0x00000000 0x00000000 0x00000000 0x00000000 pccard1: on pcic1 rl0: port 0x2000-0x20ff mem 0xe0200800-0xe02008ff irq 11 at device 13.0 on pci1 rl0: Ethernet address: 00:e0:00:7e:d0:45 miibus0: on rl0 rlphy0: on miibus0 rlphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto bpf: rl0 attached pci1: (vendor=0x10cf, dev=0x2010) at 14.0 irq 11 isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1c20-0x1c2f,0x374-0x377,0x170-0x177,0x3f4-0x3f7,0x1f0-0x1f7 mem 0xe0100000-0xe01003ff at device 31.1 on pci0 ata0: iobase=0x01f0 altiobase=0x03f6 bmaddr=0x1c20 ata0: mask=03 ostat0=50 ostat2=00 ata0-master: ATAPI 00 00 ata0-slave: ATAPI 00 00 ata0: mask=03 stat0=50 stat1=00 ata0-master: ATA 01 a5 ata0: devices=01 ata0: at 0x1f0 irq 14 on atapci0 ata1: iobase=0x0170 altiobase=0x0376 bmaddr=0x1c28 ata1: mask=03 ostat0=50 ostat2=00 ata1-master: ATAPI 14 eb ata1-slave: ATAPI 14 eb ata1: mask=03 stat0=00 stat1=00 ata1: devices=0c ata1: at 0x170 irq 15 on atapci0 ichsmb0: port 0x1c00-0x1c1f irq 11 at device 31.3 on pci0 pcm0: port 0x1880-0x18bf,0x1000-0x10ff irq 11 at device 31.5 on pci0 pcm0: ac97 codec id 0x83847656 (SigmaTel STAC9756/9757) pcm0: ac97 codec features 18 bit DAC, 18 bit ADC, 5 bit master volume, SigmaTel 3D Enhancement pcm0: ac97 primary codec extended features variable rate PCM, reserved 1, AMAP pcm0: sndbuf_setmap 29000, 4000; 0xd3bda000 -> 29000 pcm0: sndbuf_setmap 2d000, 4000; 0xd3bde000 -> 2d000 pcm0: measured ac97 link rate at 48014 Hz, will use 48000 Hz pci0: (vendor=0x8086, dev=0x2486) at 31.6 irq 11 ata-: ata0 exists, using next available unit number ata-: ata1 exists, using next available unit number pcic-: pcic0 exists, using next available unit number pcic-: pcic1 exists, using next available unit number Trying Read_Port at 203 Trying Read_Port at 243 Trying Read_Port at 283 Trying Read_Port at 2c3 Trying Read_Port at 303 Trying Read_Port at 343 Trying Read_Port at 383 Trying Read_Port at 3c3 pnpbios: 17 devices, largest 266 bytes PNP0c02: adding io range 0x10-0x18, size=0x9, align=0x1 PNP0c02: adding io range 0x1f-0x1f, size=0x1, align=0x1 PNP0c02: adding io range 0x22-0x22, size=0x1, align=0x1 PNP0c02: adding io range 0x24-0x25, size=0x2, align=0x1 PNP0c02: adding io range 0x28-0x29, size=0x2, align=0x1 PNP0c02: adding io range 0x2c-0x2d, size=0x2, align=0x1 PNP0c02: adding io range 0x30-0x31, size=0x2, align=0x1 PNP0c02: adding io range 0x34-0x35, size=0x2, align=0x1 PNP0c02: adding io range 0x38-0x39, size=0x2, align=0x1 PNP0c02: adding io range 0x3c-0x3d, size=0x2, align=0x1 PNP0c02: adding io range 0x4e-0x4f, size=0x2, align=0x1 PNP0c02: adding io range 0x50-0x52, size=0x3, align=0x1 PNP0c02: adding io range 0x62-0x62, size=0x1, align=0x1 PNP0c02: adding io range 0x66-0x66, size=0x1, align=0x1 PNP0c02: adding io range 0x72-0x77, size=0x6, align=0x1 PNP0c02: adding io range 0x80-0x80, size=0x1, align=0x1 PNP0c02: adding io range 0x90-0x9f, size=0x10, align=0x1 PNP0c02: adding io range 0xa4-0xa5, size=0x2, align=0x1 PNP0c02: adding io range 0xa8-0xa9, size=0x2, align=0x1 PNP0c02: adding io range 0xac-0xad, size=0x2, align=0x1 PNP0c02: adding io range 0xb0-0xbd, size=0xe, align=0x1 PNP0c02: adding io range 0x4d0-0x4d1, size=0x2, align=0x1 PNP0c02: adding io range 0xf800-0xf87f, size=0x80, align=0x1 PNP0c02: adding io range 0xf880-0xf8ff, size=0x80, align=0x1 PNP0c02: adding io range 0xfc00-0xfc7f, size=0x80, align=0x1 PNP0c02: adding io range 0xfc80-0xfcbf, size=0x40, align=0x1 PNP0c02: adding io range 0xfd00-0xfd6f, size=0x70, align=0x1 PNP0c02: adding io range 0xfe00-0xfe0f, size=0x10, align=0x1 PNP0c02: adding fixed memory32 range 0xfff00000-0xffffffff, size=0x100000 PNP0c02: adding fixed memory32 range 0xffb00000-0xffbfffff, size=0x100000 PNP0c02: end config pnpbios: handle 0 device ID PNP0c02 (020cd041) PNP0c01: adding fixed memory32 range 0-0x9ffff, size=0xa0000 PNP0c01: adding fixed memory32 range 0xe4000-0xfffff, size=0x1c000 PNP0c01: adding fixed memory32 range 0x100000-0xfffffff, size=0xff00000 PNP0c01: end config pnpbios: handle 2 device ID PNP0c01 (010cd041) PNP0c04: adding io range 0xf0-0xff, size=0x10, align=0x1 PNP0c04: adding irq mask 0x2000 PNP0c04: end config pnpbios: handle 3 device ID PNP0c04 (040cd041) PNP0800: adding io range 0x61-0x61, size=0x1, align=0x1 PNP0800: end config pnpbios: handle 4 device ID PNP0800 (0008d041) PNP0303: adding io range 0x60-0x60, size=0x1, align=0x1 PNP0303: adding io range 0x64-0x64, size=0x1, align=0x1 PNP0303: adding irq mask 00x2 PNP0303: end config pnpbios: handle 5 device ID PNP0303 (0303d041) PNP0200: adding io range 0-0xf, size=0x10, align=0x1 PNP0200: adding io range 0x81-0x8f, size=0xf, align=0x1 PNP0200: adding io range 0xc0-0xdf, size=0x20, align=0x1 PNP0200: adding dma mask 0x10 PNP0200: end config pnpbios: handle 7 device ID PNP0200 (0002d041) PNP0000: adding io range 0x20-0x21, size=0x2, align=0x1 PNP0000: adding io range 0xa0-0xa1, size=0x2, align=0x1 PNP0000: adding irq mask 00x4 PNP0000: end config pnpbios: handle 8 device ID PNP0000 (0000d041) PNP0100: adding io range 0x40-0x43, size=0x4, align=0x1 PNP0100: adding irq mask 00x1 PNP0100: end config pnpbios: handle 9 device ID PNP0100 (0001d041) PNP0b00: adding io range 0x70-0x71, size=0x2, align=0x1 PNP0b00: adding irq mask 0x100 PNP0b00: end config pnpbios: handle 10 device ID PNP0b00 (000bd041) PNP0a03: adding io range 0xcf8-0xcff, size=0x8, align=0x1 PNP0a03: end config pnpbios: handle 11 device ID PNP0a03 (030ad041) PNP0c02: adding fixed memory32 range 0xcf000-0xcffff, size=0x1000 PNP0c02: end config pnpbios: handle 12 device ID PNP0c02 (020cd041) PNP0f13: adding irq mask 0000 PNP0f13: end config pnpbios: handle 13 device ID PNP0f13 (130fd041) PNP0700: adding io range 0x3f0-0x3f5, size=0x6, align=0x1 PNP0700: adding io range 0x3f7-0x3f7, size=0x1, align=0x1 PNP0700: adding irq mask 0x40 PNP0700: adding dma mask 0x4 PNP0700: end config pnpbios: handle 14 device ID PNP0700 (0007d041) PNP0501: adding io range 0x3f8-0x3ff, size=0x8, align=0x1 PNP0501: adding irq mask 0x10 PNP0501: end config pnpbios: handle 15 device ID PNP0501 (0105d041) SMCf010: adding io range 0x2e8-0x2ef, size=0x8, align=0x1 SMCf010: adding io range 0x400-0x43f, size=0x40, align=0x80 SMCf010: adding irq mask 00x8 SMCf010: adding dma mask 0x8 SMCf010: end config pnpbios: handle 17 device ID SMCf010 (10f0a34d) PNP0400: adding io range 0x378-0x37f, size=0x8, align=0x1 PNP0400: adding io range 0x778-0x77b, size=0x4, align=0x1 PNP0400: adding irq mask 0x80 PNP0400: end config pnpbios: handle 19 device ID PNP0400 (0004d041) PNP0e03: adding io range 0-0xffffffff, size=0, align=0 PNP0e03: end config pnpbios: handle 21 device ID PNP0e03 (030ed041) isa_probe_children: disabling PnP devices isa_probe_children: probing non-PnP devices orm0: