[avivo] : ATI Radeon Mobility X1450 results and patches

Rene Ladan r.c.ladan at gmail.com
Tue Jul 31 21:18:36 UTC 2007


Hi Jerome,

I've downloaded and compiled the avivo driver on my Asus A6JE laptop which
has a Radeon Mobility X1450 videocard.  Since it was not already in the list
of known PCI ids, I've added it.

Unfortunately it doesn't want to run here so I'm stuck with VESA at the moment :(
This is with pciaccess 0.8.0, avivo 0.0.999 (with --enable-pciaccess),
and xorg-server-1.2.99.903 running on FreeBSD CURRENT 2007-07-30

I've added several attachments showing PCI layout, kernel/xorg messages, and
driver/kernel patches.  The kernel patch makes the kernel add a (dummy)
/dev/dri/card0 device.  I know that some PCI id patches are hackish, but they
should be correct.  The avivotool dumps were taken on a text console outside of X.

Thanks for working on it :)

Regards,
Rene
-- 
GPG fingerprint = E738 5471 D185 7013 0EE0  4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net)

"It won't fit on the line."
		-- me, 2001


-------------- next part --------------
diff -u include/avivo_chipset.h.orig include/avivo_chipset.h
--- include/avivo_chipset.h.orig	2007-07-29 09:48:51.000000000 +0200
+++ include/avivo_chipset.h	2007-07-29 09:49:27.000000000 +0200
@@ -60,6 +60,7 @@
 #define PCI_CHIP_RV516_7180	0x7180
 #define PCI_CHIP_RV516_XT_7181	0x7181
 #define PCI_CHIP_RV516_7183	0x7183
+#define PCI_CHIP_RV515_M64_7186	0x7186
 #define PCI_CHIP_RV516_7187	0x7187
 #define PCI_CHIP_RV515_M64_7188	0x7188
 #define PCI_CHIP_RV515_M64_718A	0x718A
diff -u xorg/avivo_chipset.c.orig xorg/avivo_chipset.c
--- xorg/avivo_chipset.c.orig	2007-07-29 09:29:33.000000000 +0200
+++ xorg/avivo_chipset.c	2007-07-29 09:46:23.000000000 +0200
@@ -149,6 +149,10 @@
         0x00030000, 0x00ffffff, 0
     },
     {
+        PCI_VENDOR_ATI, 0x7186, PCI_MATCH_ANY, PCI_MATCH_ANY,
+        0x00030000, 0x00ffffff, 0
+    },
+    {
         PCI_VENDOR_ATI, 0x7187, PCI_MATCH_ANY, PCI_MATCH_ANY,
         0x00030000, 0x00ffffff, 0
     },
@@ -338,6 +342,7 @@
     { PCI_CHIP_RV516_7180, "RV516 (Radeon X1300/X1550)" },
     { PCI_CHIP_RV516_XT_7181, "RV516_XT (Radeon X1600)" },
     { PCI_CHIP_RV516_7183, "RV516 (Radeon X1300/X1550)" },
+    { PCI_CHIP_RV515_M64_7186, "RV515_M64 (Mobility Radeon X1450)" },
     { PCI_CHIP_RV516_7187, "RV516 (Radeon X1300/X1550)" },
     { PCI_CHIP_RV515_M64_7188, "RV515_M64 (Mobility Radeon X2300)" },
     { PCI_CHIP_RV515_M64_718A, "RV515_M64 (Mobility Radeon X2300)" },
@@ -410,6 +415,7 @@
     { PCI_CHIP_RV516_7180, PCI_CHIP_RV516_7180, RES_SHARED_VGA },
     { PCI_CHIP_RV516_XT_7181, PCI_CHIP_RV516_XT_7181, RES_SHARED_VGA },
     { PCI_CHIP_RV516_7183, PCI_CHIP_RV516_7183, RES_SHARED_VGA },
+    { PCI_CHIP_RV515_M64_7186, PCI_CHIP_RV515_M64_7186, RES_SHARED_VGA },
     { PCI_CHIP_RV516_7187, PCI_CHIP_RV516_7187, RES_SHARED_VGA },
     { PCI_CHIP_RV515_M64_7188, PCI_CHIP_RV515_M64_7188, RES_SHARED_VGA },
     { PCI_CHIP_RV515_M64_718A, PCI_CHIP_RV515_M64_718A, RES_SHARED_VGA },
@@ -487,6 +493,7 @@
     { PCI_CHIP_RV516_7180, CHIP_FAMILY_RV516 },
     { PCI_CHIP_RV516_XT_7181, CHIP_FAMILY_RV516_XT },
     { PCI_CHIP_RV516_7183, CHIP_FAMILY_RV516 },
+    { PCI_CHIP_RV515_M64_7186, CHIP_FAMILY_RV515_M64 },
     { PCI_CHIP_RV516_7187, CHIP_FAMILY_RV516 },
     { PCI_CHIP_RV515_M64_7188, CHIP_FAMILY_RV515_M64 },
     { PCI_CHIP_RV515_M64_718A, CHIP_FAMILY_RV515_M64 },

-------------- next part --------------
diff -u share/misc/pci_vendors.orig share/misc/pci_vendors
--- share/misc/pci_vendors.orig	2007-07-30 21:57:39.000000000 +0200
+++ share/misc/pci_vendors	2007-07-30 21:57:40.000000000 +0200
@@ -597,6 +597,7 @@
 	7166	Radeon X1300 Series - Secondary
 	7172	FireGL V3300 (RV515GL) - Secondary
 	7181	RV516 XT Radeon X1600 Series
+	7186	RV515 Radeon Mobility X1450 Series
 	71A1	RV516 XT Radeon X1600 Series - Secondary
 	71C0	Radeon X1600 Series
 	71C2	ATI X1600 Pro PCI-E ATI X1600 Pro PCI-E
diff -u sys/dev/drm/radeon_cp.c.orig sys/dev/drm/radeon_cp.c
--- sys/dev/drm/radeon_cp.c.orig	2007-07-30 22:12:30.000000000 +0200
+++ sys/dev/drm/radeon_cp.c	2007-07-30 22:12:40.000000000 +0200
@@ -2205,6 +2205,7 @@
 	case CHIP_R350:
 	case CHIP_R420:
 	case CHIP_RV410:
+	case CHIP_RV515:
 		dev_priv->flags |= CHIP_HAS_HIERZ;
 		break;
 	default:
diff -u sys/dev/drm/radeon_drv.h.orig sys/dev/drm/radeon_drv.h
--- sys/dev/drm/radeon_drv.h.orig	2007-07-30 22:09:35.000000000 +0200
+++ sys/dev/drm/radeon_drv.h	2007-07-30 22:10:20.000000000 +0200
@@ -124,6 +124,7 @@
 	CHIP_R420,
 	CHIP_RV410,
 	CHIP_RS400,
+	CHIP_RV515,
 	CHIP_LAST,
 };
diff u sys/dev/drm/drm_pciids.h.orig sys/dev/drm/drm_pciids.h
--- sys/dev/drm/drm_pciids.h.orig	2007-07-30 22:03:02.000000000 +0200
+++ sys/dev/drm/drm_pciids.h	2007-07-30 22:04:48.000000000 +0200
@@ -134,6 +134,7 @@
 	{0x1002, 0x5e4c, CHIP_RV410|CHIP_NEW_MEMMAP, "ATI Radeon RV410 X700 SE"}, \
 	{0x1002, 0x5e4d, CHIP_RV410|CHIP_NEW_MEMMAP, "ATI Radeon RV410 X700"}, \
 	{0x1002, 0x5e4f, CHIP_RV410|CHIP_NEW_MEMMAP, "ATI Radeon RV410 X700 SE"}, \
+	{0x1002, 0x7186, CHIP_RV515|CHIP_IS_MOBILITY|CHIP_NEW_MEMMAP, "ATI Radeon Mobility RV515 X1450"}, \
 	{0x1002, 0x7834, CHIP_RS300|CHIP_IS_IGP|CHIP_NEW_MEMMAP, "ATI Radeon RS350 9000/9100 IGP"}, \
 	{0x1002, 0x7835, CHIP_RS300|CHIP_IS_IGP|CHIP_IS_MOBILITY|CHIP_NEW_MEMMAP, "ATI Radeon RS350 Mobility IGP"}, \
 	{0, 0, 0, NULL}

-------------- next part --------------
diff -u hw/xfree86/scanpci/pci.ids.orig hw/xfree86/scanpci/pci.ids
--- hw/xfree86/scanpci/pci.ids.orig	2007-07-30 21:05:32.000000000 +0200
+++ hw/xfree86/scanpci/pci.ids	2007-07-30 21:06:52.000000000 +0200
@@ -1148,6 +1148,7 @@
 	7180  RV516 [ATI Radeon X1300/X1550 Series]
 	7181  RV516 XT Radeon X1600 Series Primary
 	7183  RV516 [ATI Radeon X1300/X1550 Series]
+	7186  RV515 [ATI Radeon Mobility X1450 Series]
 	7187  RV516 [ATI Radeon X1300/X1550 Series]
 	7188  M64-S [ATI Mobility Radeon X2300]
 	718a  ATI Mobility Radeon X2300
diff -u hw/xfree86/scanpci/xf86PciIds.h.orig hw/xfree86/scanpci/xf86PciIds.h
--- hw/xfree86/scanpci/xf86PciIds.h.orig	2007-07-30 21:05:45.000000000 +0200
+++ hw/xfree86/scanpci/xf86PciIds.h	2007-07-30 21:09:49.000000000 +0200
@@ -2268,6 +2268,7 @@
 static const char pci_device_1002_7180[] = "RV516 [ATI Radeon X1300/X1550 Series]";
 static const char pci_device_1002_7181[] = "RV516 XT Radeon X1600 Series Primary";
 static const char pci_device_1002_7183[] = "RV516 [ATI Radeon X1300/X1550 Series]";
+static const char pci_device_1002_7186[] = "RV515 [ATI Radeon Mobility X1450 Series]";
 static const char pci_device_1002_7187[] = "RV516 [ATI Radeon X1300/X1550 Series]";
 static const char pci_device_1002_7188[] = "M64-S [ATI Mobility Radeon X2300]";
 static const char pci_device_1002_718a[] = "ATI Mobility Radeon X2300";
@@ -47540,6 +47541,7 @@
 #define pci_ss_list_1002_7180 NULL
 #define pci_ss_list_1002_7181 NULL
 #define pci_ss_list_1002_7183 NULL
+#define pci_ss_list_1002_7186 NULL
 #define pci_ss_list_1002_7187 NULL
 #define pci_ss_list_1002_7188 NULL
 #define pci_ss_list_1002_718a NULL
@@ -71441,6 +71443,15 @@
 #endif
 	0
 };
+static const pciDeviceInfo pci_dev_info_1002_7186 = {
+	0x7186, pci_device_1002_7186,
+#ifdef INIT_SUBSYS_INFO
+	pci_ss_list_1002_7186,
+#else
+	NULL,
+#endif
+	0
+};
 static const pciDeviceInfo pci_dev_info_1002_7187 = {
 	0x7187, pci_device_1002_7187,
 #ifdef INIT_SUBSYS_INFO
@@ -123069,6 +123080,7 @@
 	&pci_dev_info_1002_7180,
 	&pci_dev_info_1002_7181,
 	&pci_dev_info_1002_7183,
+	&pci_dev_info_1002_7186,
 	&pci_dev_info_1002_7187,
 	&pci_dev_info_1002_7188,
 	&pci_dev_info_1002_718a,
diff -u hw/xfree86/scanpci/xf86PciStdIds.h.orig hw/xfree86/scanpci/xf86PciStdIds
--- hw/xfree86/scanpci/xf86PciStdIds.h.orig	2007-07-30 21:06:00.000000000 +0200
+++ hw/xfree86/scanpci/xf86PciStdIds.h	2007-07-30 21:12:45.000000000 +0200
@@ -2268,6 +2268,7 @@
 static const char pci_device_1002_7180[] = "RV516 [ATI Radeon X1300/X1550 Series]";
 static const char pci_device_1002_7181[] = "RV516 XT Radeon X1600 Series Primary";
 static const char pci_device_1002_7183[] = "RV516 [ATI Radeon X1300/X1550 Series]";
+static const char pci_device_1002_7186[] = "RV515 [ATI Radeon Mobility X1450 Series]";
 static const char pci_device_1002_7187[] = "RV516 [ATI Radeon X1300/X1550 Series]";
 static const char pci_device_1002_7188[] = "M64-S [ATI Mobility Radeon X2300]";
 static const char pci_device_1002_718a[] = "ATI Mobility Radeon X2300";
@@ -47540,6 +47541,7 @@
 #define pci_ss_list_1002_7180 NULL
 #define pci_ss_list_1002_7181 NULL
 #define pci_ss_list_1002_7183 NULL
+#define pci_ss_list_1002_7186 NULL
 #define pci_ss_list_1002_7187 NULL
 #define pci_ss_list_1002_7188 NULL
 #define pci_ss_list_1002_718a NULL
@@ -71441,6 +71443,15 @@
 #endif
 	0
 };
+static const pciDeviceInfo pci_dev_info_1002_7186 = {
+	0x7186, pci_device_1002_7186,
+#ifdef INIT_SUBSYS_INFO
+	pci_ss_list_1002_7186,
+#else
+	NULL,
+#endif
+	0
+};
 static const pciDeviceInfo pci_dev_info_1002_7187 = {
 	0x7187, pci_device_1002_7187,
 #ifdef INIT_SUBSYS_INFO
@@ -123069,6 +123080,7 @@
 	&pci_dev_info_1002_7180,
 	&pci_dev_info_1002_7181,
 	&pci_dev_info_1002_7183,
+	&pci_dev_info_1002_7186,
 	&pci_dev_info_1002_7187,
 	&pci_dev_info_1002_7188,
 	&pci_dev_info_1002_718a,

-------------- next part --------------

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X Window System Version 1.2.99.903 (1.3.0 RC 3)
Release Date: 26 March 2007
X Protocol Version 11, Revision 0, Release 1.2.99.903
Build Operating System: UNKNOWN 
Current Operating System: FreeBSD 195-241-221-201.dsl.ip.tiscali.nl 7.0-CURRENT FreeBSD 7.0-CURRENT #13: Mon Jul 30 23:53:14 CEST 2007     root at 195-241-221-201.dsl.ip.tiscali.nl:/usr/obj/usr/src/sys/RENE i386
Build Date: 30 July 2007
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
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/Xorg.8.log", Time: Mon Jul 30 23:58:13 2007
(++) Using config file: "/root/xorg.conf.new"
(==) ServerLayout "X.org Configured"
(**) |-->Screen "Screen0" (0)
(**) |   |-->Monitor "Monitor0"
(**) |   |-->Device "Card0"
(**) |-->Input Device "Mouse0"
(**) |-->Input Device "Keyboard0"
(**) FontPath set to:
	/usr/local/lib/X11/fonts/misc/,
	/usr/local/lib/X11/fonts/TTF/,
	/usr/local/lib/X11/fonts/OTF,
	/usr/local/lib/X11/fonts/Type1/,
	/usr/local/lib/X11/fonts/100dpi/,
	/usr/local/lib/X11/fonts/75dpi/
(**) RgbPath set to "/usr/local/share/X11/rgb"
(**) ModulePath set to "/usr/local/lib/xorg/modules"
(II) Loader magic: 0x81c4c20
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.3
	X.Org Video Driver: 1.2
	X.Org XInput driver : 0.7
	X.Org Server Extension : 0.3
	X.Org Font Renderer : 0.5
(II) Loader running on freebsd
(II) LoadModule: "pcidata"
(II) Loading /usr/local/lib/xorg/modules//libpcidata.so
(II) Module pcidata: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	ABI class: X.Org Video Driver, version 1.2
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(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,27a0 card 1043,1237 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,27a1 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:1b:0: chip 8086,27d8 card 1043,1339 rev 02 class 04,03,00 hdr 00
(II) PCI: 00:1c:0: chip 8086,27d0 card 0000,0000 rev 02 class 06,04,00 hdr 81
(II) PCI: 00:1c:3: chip 8086,27d6 card 0000,0000 rev 02 class 06,04,00 hdr 81
(II) PCI: 00:1d:0: chip 8086,27c8 card 1043,1237 rev 02 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,27c9 card 1043,1237 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,27ca card 1043,1237 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,27cb card 1043,1237 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,27cc card 1043,1237 rev 02 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev e2 class 06,04,01 hdr 01
(II) PCI: 00:1f:0: chip 8086,27b9 card 8086,27b9 rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:2: chip 8086,27c4 card 1043,1237 rev 02 class 01,01,80 hdr 00
(II) PCI: 01:00:0: chip 1002,7186 card 1043,1231 rev 00 class 03,00,00 hdr 00
(II) PCI: 02:00:0: chip 10ec,8168 card 1043,11f5 rev 01 class 02,00,00 hdr 00
(II) PCI: 03:00:0: chip 8086,4222 card 8086,1001 rev 02 class 02,80,00 hdr 00
(II) PCI: 04:01:0: chip 1180,0476 card fffc,ffff rev b3 class 06,07,00 hdr 82
(II) PCI: 04:01:1: chip 1180,0552 card 1043,1437 rev 08 class 0c,00,10 hdr 80
(II) PCI: 04:01:2: chip 1180,0822 card 1043,1437 rev 17 class 08,05,00 hdr 80
(II) PCI: 04:01:3: chip 1180,0592 card 1043,1437 rev 08 class 08,80,00 hdr 80
(II) PCI: End of PCI scan
(II) Intel Bridge workaround enabled
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,5), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x00009000 - 0x0000bfff (0x3000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xfdf00000 - 0xfdffffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xbdf00000 - 0xddefffff (0x20000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:28:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 2 I/O range:
	[0] -1	0	0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0xfe000000 - 0xfe0fffff (0x100000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:28:3), (0,3,3), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 3 non-prefetchable memory range:
	[0] -1	0	0xfe100000 - 0xfe1fffff (0x100000) MX[B]
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 4: bridge is at (0:30:0), (0,4,5), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 4 I/O range:
	[0] -1	0	0x0000d000 - 0x0000dfff (0x1000) IX[B]
(II) Bus 4 non-prefetchable memory range:
	[0] -1	0	0xfe200000 - 0xfeafffff (0x900000) MX[B]
(II) Bus 4 prefetchable memory range:
	[0] -1	0	0xddf00000 - 0xdfefffff (0x2000000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 5: bridge is at (4:1:0), (4,5,5), BCTRL: 0x0400 (VGA_EN is cleared)
(--) PCI:*(1:0:0) ATI Technologies Inc RV515 [ATI Radeon Mobility X1450 Series] rev 0, Mem @ 0xc0000000/28, 0xfdff0000/16, I/O @ 0xb000/8, BIOS @ 0xfdfc0000/17
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
	[0] -1	0	0xfeaff000 - 0xfeafffff (0x1000) MX[B]E
	[1] -1	0	0xfeaff400 - 0xfeaff7ff (0x400) MX[B]E
	[2] -1	0	0xfeaff800 - 0xfeafffff (0x800) MX[B]E
	[3] -1	0	0xfe1ff000 - 0xfe1fffff (0x1000) MX[B]E
	[4] -1	0	0xfe0ff000 - 0xfe0fffff (0x1000) MX[B]E
	[5] -1	0	0xfebfbc00 - 0xfebfbfff (0x400) MX[B]E
	[6] -1	0	0xfebfc000 - 0xfebfffff (0x4000) MX[B]E
	[7] -1	0	0xfdfc0000 - 0xfdfdffff (0x20000) MX[B](B)
	[8] -1	0	0xfdff0000 - 0xfdffffff (0x10000) MX[B](B)
	[9] -1	0	0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
	[10] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]E
	[11] -1	0	0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E
	[12] -1	0	0x0000e480 - 0x0000e4ff (0x80) IX[B]E
	[13] -1	0	0x0000e800 - 0x0000e8ff (0x100) IX[B]E
	[14] -1	0	0x0000e880 - 0x0000e8ff (0x80) IX[B]E
	[15] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]E
	[16] -1	0	0x0000b000 - 0x0000b0ff (0x100) IX[B](B)
(II) PCI Memory resource overlap reduced 0xfeaff000 from 0xfeafffff to 0xfeaff3ff
(II) PCI I/O resource overlap reduced 0x0000e800 from 0x0000e8ff to 0x0000e87f
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xfeaff000 - 0xfeaff3ff (0x400) MX[B]E
	[1] -1	0	0xfeaff400 - 0xfeaff7ff (0x400) MX[B]E
	[2] -1	0	0xfeaff800 - 0xfeafffff (0x800) MX[B]E
	[3] -1	0	0xfe1ff000 - 0xfe1fffff (0x1000) MX[B]E
	[4] -1	0	0xfe0ff000 - 0xfe0fffff (0x1000) MX[B]E
	[5] -1	0	0xfebfbc00 - 0xfebfbfff (0x400) MX[B]E
	[6] -1	0	0xfebfc000 - 0xfebfffff (0x4000) MX[B]E
	[7] -1	0	0xfdfc0000 - 0xfdfdffff (0x20000) MX[B](B)
	[8] -1	0	0xfdff0000 - 0xfdffffff (0x10000) MX[B](B)
	[9] -1	0	0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
	[10] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]E
	[11] -1	0	0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E
	[12] -1	0	0x0000e480 - 0x0000e4ff (0x80) IX[B]E
	[13] -1	0	0x0000e800 - 0x0000e87f (0x80) IX[B]E
	[14] -1	0	0x0000e880 - 0x0000e8ff (0x80) IX[B]E
	[15] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]E
	[16] -1	0	0x0000b000 - 0x0000b0ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0xfeaff000 - 0xfeaff3ff (0x400) MX[B]E
	[5] -1	0	0xfeaff400 - 0xfeaff7ff (0x400) MX[B]E
	[6] -1	0	0xfeaff800 - 0xfeafffff (0x800) MX[B]E
	[7] -1	0	0xfe1ff000 - 0xfe1fffff (0x1000) MX[B]E
	[8] -1	0	0xfe0ff000 - 0xfe0fffff (0x1000) MX[B]E
	[9] -1	0	0xfebfbc00 - 0xfebfbfff (0x400) MX[B]E
	[10] -1	0	0xfebfc000 - 0xfebfffff (0x4000) MX[B]E
	[11] -1	0	0xfdfc0000 - 0xfdfdffff (0x20000) MX[B](B)
	[12] -1	0	0xfdff0000 - 0xfdffffff (0x10000) MX[B](B)
	[13] -1	0	0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
	[14] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[15] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[16] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]E
	[17] -1	0	0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E
	[18] -1	0	0x0000e480 - 0x0000e4ff (0x80) IX[B]E
	[19] -1	0	0x0000e800 - 0x0000e87f (0x80) IX[B]E
	[20] -1	0	0x0000e880 - 0x0000e8ff (0x80) IX[B]E
	[21] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]E
	[22] -1	0	0x0000b000 - 0x0000b0ff (0x100) IX[B](B)
(II) LoadModule: "extmod"
(II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(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 XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "record"
(II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension RECORD
(II) LoadModule: "dbe"
(II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "glx"
(II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.3
(==) AIGLX disabled
(II) Loading extension GLX
(II) LoadModule: "xtrap"
(II) Loading /usr/local/lib/xorg/modules/extensions//libxtrap.so
(II) Module xtrap: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension DEC-XTRAP
(II) LoadModule: "dri"
(II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	ABI class: X.Org Server Extension, version 0.3
(II) Loading extension XFree86-DRI
(II) LoadModule: "freetype"
(II) Loading /usr/local/lib/xorg/modules/fonts//libfreetype.so
(II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
	compiled for 1.2.99.903, module version = 2.1.0
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font FreeType
(II) LoadModule: "type1"
(II) Loading /usr/local/lib/xorg/modules/fonts//libtype1.so
(II) Module type1: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.2
	Module class: X.Org Font Renderer
	ABI class: X.Org Font Renderer, version 0.5
(II) Loading font Type1
(II) LoadModule: "avivo"
(II) Loading /usr/local/lib/xorg/modules/drivers//avivo_drv.so
(II) Module avivo: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 0.0.999
	Module class: X.Org Video Driver
	ABI class: X.Org Video Driver, version 1.2
(II) LoadModule: "mouse"
(II) Loading /usr/local/lib/xorg/modules/input//mouse_drv.so
(II) Module mouse: vendor="X.Org Foundation"
	compiled for 7.2.0, module version = 1.1.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.7
(II) LoadModule: "kbd"
(II) Loading /usr/local/lib/xorg/modules/input//kbd_drv.so
(II) Module kbd: vendor="X.Org Foundation"
	compiled for 7.2.0, module version = 1.1.0
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 0.7
(II) Avivo: driver for Radeon r5xx chipsets: R520 (Radeon X1800),
	R520_M58 (Radeon Mobility X1800), R520_M58 (Mobility FireGL V7200),
	R520 (FireGL V7200), R520 (FireGL), R520_M58 (Mobility FireGL V7100),
	R520_M58 (Radeon Mobility X1800), R520 (Radeon X1800),
	R520 (Radeon X1800), R520 (Radeon X1800), R520 (Radeon X1800),
	RV515 (Radeon X1600), RV515_PRO (Radeon X1300/X1550),
	RV505 (Radeon X1550), RV515 (Radeon Mobility X1400),
	RV515 (Radeon X1300), RV505 (Radeon X1550 64-bit),
	RV515_M52 (Mobility Radeon X1300), RV515_M52 (Mobility Radeon X1300),
	RV515_M52 (Mobility Radeon X1300), RV515_M52 (Mobility Radeon X1300),
	RV515 (Radeon X1300), RV515_LE (Radeon X1300),
	RV515_GL (FireGL V3300), RV515_GL (FireGL V3350),
	RV515 (Radeon X1300), RV505_CE (Radeon X1550 64-bit),
	RV516 (Radeon X1300/X1550), RV516_XT (Radeon X1600),
	RV516 (Radeon X1300/X1550), RV515_M64 (Mobility Radeon X1450),
	RV516 (Radeon X1300/X1550), RV515_M64 (Mobility Radeon X2300),
	RV515_M64 (Mobility Radeon X2300), RV515_M62 (Mobility Radeon X1350),
	RV515_M64 (Mobility Radeon X1450), RV516 (Radeon X1550),
	RV516_LE (Radeon X1550 64-bit), RV530 (Radeon X1600),
	RV530 (Radeon X1600), RV530_M56 (Mobility FireGL V5200),
	RV530_M56 (Radeon Mobility X1600), RV530_LE (Radeon X1600/X1650 PRO),
	RV535 (Radeon X1650), RV530_LE (Radeon X1600),
	RV530_M56 (Mobility FireGL V5250), RV530_M66 (Mobility Radeon X1700),
	RV530_M66 (Mobility Radeon X1700), RV530_LE (Radeon X1600),
	RV535 (Radeon X1650), R580 (Radeon X1900), R580 (Radeon X1900),
	R580 (Radeon X1900), R580 (Radeon X1900), R580 (Radeon X1900),
	R580 (Radeon X1900), R580 (Radeon X1900), R580 (Radeon X1900),
	R580 (Radeon X1900), R580 (Radeon X1900 XT), R580 (Radeon X1900),
	R580 (Radeon X1900), R580 (Radeon X1900), R580 (Radeon X1900),
	R580 (Radeon X1900), RV570 (Radeon X1950 Pro),
	RV570 (Radeon X1950 GT), RV530 (Radeon X1650 XT),
	RV530 (Radeon X1650)
(II) Primary Device is: PCI 01:00:0
(--) Chipset RV515_M64 (Mobility Radeon X1450) found
(II) resource ranges after xf86ClaimFixedResources() call:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0xfeaff000 - 0xfeaff3ff (0x400) MX[B]E
	[5] -1	0	0xfeaff400 - 0xfeaff7ff (0x400) MX[B]E
	[6] -1	0	0xfeaff800 - 0xfeafffff (0x800) MX[B]E
	[7] -1	0	0xfe1ff000 - 0xfe1fffff (0x1000) MX[B]E
	[8] -1	0	0xfe0ff000 - 0xfe0fffff (0x1000) MX[B]E
	[9] -1	0	0xfebfbc00 - 0xfebfbfff (0x400) MX[B]E
	[10] -1	0	0xfebfc000 - 0xfebfffff (0x4000) MX[B]E
	[11] -1	0	0xfdfc0000 - 0xfdfdffff (0x20000) MX[B](B)
	[12] -1	0	0xfdff0000 - 0xfdffffff (0x10000) MX[B](B)
	[13] -1	0	0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
	[14] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[15] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[16] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]E
	[17] -1	0	0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E
	[18] -1	0	0x0000e480 - 0x0000e4ff (0x80) IX[B]E
	[19] -1	0	0x0000e800 - 0x0000e87f (0x80) IX[B]E
	[20] -1	0	0x0000e880 - 0x0000e8ff (0x80) IX[B]E
	[21] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]E
	[22] -1	0	0x0000b000 - 0x0000b0ff (0x100) IX[B](B)
(II) resource ranges after probing:
	[0] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0xfeaff000 - 0xfeaff3ff (0x400) MX[B]E
	[5] -1	0	0xfeaff400 - 0xfeaff7ff (0x400) MX[B]E
	[6] -1	0	0xfeaff800 - 0xfeafffff (0x800) MX[B]E
	[7] -1	0	0xfe1ff000 - 0xfe1fffff (0x1000) MX[B]E
	[8] -1	0	0xfe0ff000 - 0xfe0fffff (0x1000) MX[B]E
	[9] -1	0	0xfebfbc00 - 0xfebfbfff (0x400) MX[B]E
	[10] -1	0	0xfebfc000 - 0xfebfffff (0x4000) MX[B]E
	[11] -1	0	0xfdfc0000 - 0xfdfdffff (0x20000) MX[B](B)
	[12] -1	0	0xfdff0000 - 0xfdffffff (0x10000) MX[B](B)
	[13] -1	0	0xc0000000 - 0xcfffffff (0x10000000) MX[B](B)
	[14] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[15] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[16] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[17] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[18] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[19] -1	0	0x0000c800 - 0x0000c8ff (0x100) IX[B]E
	[20] -1	0	0x0000ffa0 - 0x0000ffbf (0x20) IX[B]E
	[21] -1	0	0x0000e480 - 0x0000e4ff (0x80) IX[B]E
	[22] -1	0	0x0000e800 - 0x0000e87f (0x80) IX[B]E
	[23] -1	0	0x0000e880 - 0x0000e8ff (0x80) IX[B]E
	[24] -1	0	0x0000ec00 - 0x0000ecff (0x100) IX[B]E
	[25] -1	0	0x0000b000 - 0x0000b0ff (0x100) IX[B](B)
	[26] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[27] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/local/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.3
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"(II) Module alread ybuilt-in(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/local/lib/xorg/modules//libvgahw.so
(II) Module vgahw: vendor="X.Org Foundation"
	compiled for 1.2.99.903, module version = 0.1.0
	ABI class: X.Org Video Driver, version 1.2
(II) avivo(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0x0000
(==) avivo(0): Write-combining range (0xfdff0000,0x10000) was already clear
(==) avivo(0): Write-combining range (0xc0000000,0x8000000)
(II) avivo(0): Control memory at 0xfdff0000[size = 65536, 0x00010000]
(II) avivo(0): Frame buffer memory at 0xc0000000[size = 134217728, 0x08000000]
(==) avivo(0): Depth 24, (==) framebuffer bpp 32
(II) avivo(0): added CRTC 0
(II) avivo(0): added CRTC 1
Requesting insufficient memory window!: start: 0xfdf00000 end: 0xfdffffff size 0x10000000
(EE) Cannot find empty range to map base to
(WW) avivo(0): Unrecognized BIOS signature, BIOS data will not be used
(EE) avivo(0): No valid modes.
(II) avivo(0): free screen
(II) UnloadModule: "avivo"
(II) UnloadModule: "vgahw"
(II) Unloading /usr/local/lib/xorg/modules//libvgahw.so
(II) UnloadModule: "fb"
(II) Unloading /usr/local/lib/xorg/modules//libfb.so
(EE) Screen(s) found, but none have a usable configuration.

Fatal server error:
no screens found

-------------- next part --------------
hostb0 at pci0:0:0:	class=0x060000 card=0x12371043 chip=0x27a08086 rev=0x03 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '955XM/945GM/PM/GMS/940GML Express Processor to DRAM Controller'
    class      = bridge
    subclass   = HOST-PCI
pcib1 at pci0:1:0:	class=0x060400 card=0x27a18086 chip=0x27a18086 rev=0x03 hdr=0x01
    vendor     = 'Intel Corporation'
    device     = '955XM/945GM/PM/GMS/940GML Express PCI Express Root Port'
    class      = bridge
    subclass   = PCI-PCI
pcm0 at pci0:27:0:	class=0x040300 card=0x13391043 chip=0x27d88086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) High Definition Audio'
    class      = multimedia
pcib2 at pci0:28:0:	class=0x060400 card=0x27d08086 chip=0x27d08086 rev=0x02 hdr=0x01
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) PCI Express Root Port'
    class      = bridge
    subclass   = PCI-PCI
pcib3 at pci0:28:3:	class=0x060400 card=0x27d68086 chip=0x27d68086 rev=0x02 hdr=0x01
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) PCI Express Root Port'
    class      = bridge
    subclass   = PCI-PCI
uhci0 at pci0:29:0:	class=0x0c0300 card=0x12371043 chip=0x27c88086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) USB Universal Host Controller'
    class      = serial bus
    subclass   = USB
uhci1 at pci0:29:1:	class=0x0c0300 card=0x12371043 chip=0x27c98086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) USB Universal Host Controller'
    class      = serial bus
    subclass   = USB
uhci2 at pci0:29:2:	class=0x0c0300 card=0x12371043 chip=0x27ca8086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) USB Universal Host Controller'
    class      = serial bus
    subclass   = USB
uhci3 at pci0:29:3:	class=0x0c0300 card=0x12371043 chip=0x27cb8086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) USB Universal Host Controller'
    class      = serial bus
    subclass   = USB
ehci0 at pci0:29:7:	class=0x0c0320 card=0x12371043 chip=0x27cc8086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801G (ICH7 Family) USB 2.0 Enhanced Host Controller'
    class      = serial bus
    subclass   = USB
pcib4 at pci0:30:0:	class=0x060401 card=0x24488086 chip=0x24488086 rev=0xe2 hdr=0x01
    vendor     = 'Intel Corporation'
    device     = '82801BAM/CAM/DBM (ICH2-M/3-M/4-M) Hub Interface to PCI Bridge'
    class      = bridge
    subclass   = PCI-PCI
isab0 at pci0:31:0:	class=0x060100 card=0x27b98086 chip=0x27b98086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801GBM (ICH7-M) LPC Interface Controller'
    class      = bridge
    subclass   = PCI-ISA
atapci0 at pci0:31:2:	class=0x010180 card=0x12371043 chip=0x27c48086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '82801GBM/GHM (ICH7-M Family) Serial ATA Storage Controller'
    class      = mass storage
    subclass   = ATA
vgapci0 at pci1:0:0:	class=0x030000 card=0x12311043 chip=0x71861002 rev=0x00 hdr=0x00
    vendor     = 'ATI Technologies Inc.'
    device     = 'RV515 Radeon Mobility X1450 Series'
    class      = display
    subclass   = VGA
re0 at pci2:0:0:	class=0x020000 card=0x11f51043 chip=0x816810ec rev=0x01 hdr=0x00
    vendor     = 'Realtek Semiconductor'
    device     = 'RTL8168/8111 PCI-E Gigabit Ethernet NIC'
    class      = network
    subclass   = ethernet
none0 at pci3:0:0:	class=0x028000 card=0x10018086 chip=0x42228086 rev=0x02 hdr=0x00
    vendor     = 'Intel Corporation'
    device     = '3945ABG Intel 3945ABG Wireless LAN controller'
    class      = network
cbb0 at pci4:1:0:	class=0x060700 card=0x14371043 chip=0x04761180 rev=0xb3 hdr=0x02
    vendor     = 'Ricoh Company, Ltd.'
    device     = 'unknown Ricoh R/RL/5C476(II)'
    class      = bridge
    subclass   = PCI-CardBus
fwohci0 at pci4:1:1:	class=0x0c0010 card=0x14371043 chip=0x05521180 rev=0x08 hdr=0x00
    vendor     = 'Ricoh Company, Ltd.'
    device     = 'RL5c552 IEEE-1394 Controller'
    class      = serial bus
    subclass   = FireWire
none1 at pci4:1:2:	class=0x080500 card=0x14371043 chip=0x08221180 rev=0x17 hdr=0x00
    vendor     = 'Ricoh Company, Ltd.'
    device     = 'SD Bus Host Adapter'
    class      = base peripheral
none2 at pci4:1:3:	class=0x088000 card=0x14371043 chip=0x05921180 rev=0x08 hdr=0x00
    vendor     = 'Ricoh Company, Ltd.'
    device     = 'unknown Ricoh Memory Stick Host Controller'
    class      = base peripheral

-------------- next part --------------
Calibrating clock(s) ... i8254 clock: 1193225 Hz
Timecounter "i8254" frequency 1193182 Hz quality 0
Calibrating TSC clock ... TSC clock: 1828764124 Hz
CPU: Intel(R) Core(TM)2 CPU         T5600  @ 1.83GHz (1828.76-MHz 686-class CPU)
  Origin = "GenuineIntel"  Id = 0x6f6  Stepping = 6
  Features=0xbfebfbff<FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE>
  Features2=0xe3bd<SSE3,RSVD2,MON,DS_CPL,VMX,EST,TM2,SSSE3,CX16,xTPR,PDCM>
  AMD Features=0x20100000<NX,LM>
  AMD Features2=0x1<LAHF>
  Cores per package: 2
Instruction TLB: 4 KB Pages, 4-way set associative, 128 entries
2nd-level cache: 2-MB, 8-way set associative, 64-byte line size
1st-level instruction cache: 32 KB, 8-way set associative, 64 byte line size
1st-level data cache: 32 KB, 8-way set associative, 64 byte line size
L2 cache: 2048 kbytes, 8-way associative, 64 bytes/line
real memory  = 2147287040 (2047 MB)
Physical memory chunk(s):
0x0000000000001000 - 0x000000000009efff, 647168 bytes (158 pages)
0x0000000000100000 - 0x00000000003fffff, 3145728 bytes (768 pages)
0x0000000000c28000 - 0x000000007db80fff, 2096467968 bytes (511833 pages)
avail memory = 2095550464 (1998 MB)
Table 'FACP' at 0x7ffd0200
Table 'APIC' at 0x7ffd0390
MADT: Found table at 0x7ffd0390
MP Configuration Table version 1.4 found at 0xc00fd650
APIC: Using the MADT enumerator.
MADT: Found CPU APIC ID 0 ACPI ID 1: enabled
SMP: Added CPU 0 (AP)
MADT: Found CPU APIC ID 1 ACPI ID 2: enabled
SMP: Added CPU 1 (AP)
ACPI APIC Table: <AMI    OEMAPIC >
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 1
APIC: CPU 1 has ACPI ID 2
bios32: Found BIOS32 Service Directory header at 0xc00f0000
bios32: Entry = 0xf0010 (c00f0010)  Rev = 0  Len = 1
pcibios: PCI BIOS entry at 0xf0000+0x31
pnpbios: Found PnP BIOS data at 0xc00f5820
pnpbios: Entry = f0000:662a  Rev = 1.0
Other BIOS signatures found:
ACPI: RSDP @ 0x0xf7bb0/0x0014 (v  0 ACPIAM)
ACPI: RSDT @ 0x0x7ffd0000/0x0040 (v  1 _ASUS_ Notebook 0x01000712 MSFT 0x00000097)
ACPI: FACP @ 0x0x7ffd0200/0x0084 (v  2 AMI    OEMFACP  0x01000712 MSFT 0x00000097)
ACPI: DSDT @ 0x0x7ffd05e0/0x79BF (v  1  A6Je0 A6Je0005 0x00000005 INTL 0x20051117)
ACPI: FACS @ 0x0x7ffde000/0x0040
ACPI: APIC @ 0x0x7ffd0390/0x005C (v  1 AMI    OEMAPIC  0x01000712 MSFT 0x00000097)
ACPI: MCFG @ 0x0x7ffd03f0/0x003C (v  1 AMI    OEMMCFG  0x01000712 MSFT 0x00000097)
ACPI: BOOT @ 0x0x7ffd05b0/0x0028 (v  1 AMI    OEMBOOT  0x01000712 MSFT 0x00000097)
ACPI: SLIC @ 0x0x7ffd0430/0x0176 (v  1 _ASUS_ Notebook 0x01000712 MSFT 0x00000097)
ACPI: OEMB @ 0x0x7ffde040/0x0046 (v  1 AMI    AMI_OEM  0x01000712 MSFT 0x00000097)
ACPI: HPET @ 0x0x7ffd7fa0/0x0038 (v  1 AMI    OEMHPET  0x01000712 MSFT 0x00000097)
MADT: Found IO APIC ID 2, Interrupt 0 at 0xfec00000
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
ioapic0 <Version 2.0> irqs 0-23 on motherboard
cpu0 BSP:
     ID: 0x00000000   VER: 0x00050014 LDR: 0x00000000 DFR: 0xffffffff
  lint0: 0x00010700 lint1: 0x00000400 TPR: 0x00000000 SVR: 0x000001ff
  timer: 0x000100ef therm: 0x00010000 err: 0x0001000f pcm: 0x00010000
Pentium Pro MTRR support enabled
npx0: INT 16 interface
acpi0: <_ASUS_ Notebook> on motherboard
ioapic0: routing intpin 9 (ISA IRQ 9) to vector 48
acpi_hpet0: <High Precision Event Timer> iomem 0xfed00000-0xfed003ff on acpi0
acpi_hpet0: vend: 0x8086 rev: 0x1 num: 1 hz: 14318180 opts: leg_route count_size
Timecounter "HPET" frequency 14318180 Hz quality 900
pci_open(1):	mode 1 addr port (0x0cf8) is 0x80000094
pci_open(1a):	mode1res=0x80000000 (0x80000000)
pci_cfgcheck:	device 0 [class=060000] [hdr=00] is there (id=27a08086)
pcibios: BIOS version 3.00
AcpiOsDerivePciId: \\_SB_.PCI0.P0P1.CBS0.CBSP -> bus 4 dev 1 func 0
acpi0: Power Button (fixed)
acpi0: wakeup code va 0xd8c99000 pa 0x1000
AcpiOsDerivePciId: \\_SB_.PCI0.SBRG.IELK.RXA0 -> bus 0 dev 0 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.SBRG.FHR0 -> bus 0 dev 31 func 0
AcpiOsDerivePciId: \\_SB_.PCI0.SBRG.PIX0 -> bus 0 dev 31 func 0
acpi0: reservation of 0, a0000 (3) failed
acpi0: reservation of 100000, 7ff00000 (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 0x808-0x80b on acpi0
acpi_ec0: <Embedded Controller: GPE 0x1c> port 0x62,0x66 on acpi0
pci_link0:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0   11   N     0  3 4 5 6 7 11 12
  Validation          0   11   N     0  3 4 5 6 7 11 12
  After Disable       0  255   N     0  3 4 5 6 7 11 12
pci_link1:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    3   N     0  3 4 5 6 7 12
  Validation          0    3   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link2:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    3   N     0  3 4 5 6 7 12
  Validation          0    3   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link3:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    3   N     0  3 4 5 6 7 12
  Validation          0    3   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link4:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    5   N     0  3 4 5 6 7 12
  Validation          0    5   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link5:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    7   N     0  3 4 5 6 7 12
  Validation          0    7   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link6:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    6   N     0  3 4 5 6 7 12
  Validation          0    6   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
pci_link7:        Index  IRQ  Rtd  Ref  IRQs
  Initial Probe       0    4   N     0  3 4 5 6 7 12
  Validation          0    4   N     0  3 4 5 6 7 12
  After Disable       0  255   N     0  3 4 5 6 7 12
cpu0: <ACPI CPU> on acpi0
cpu1: <ACPI CPU> on acpi0
acpi_asus0: Unsupported Asus laptop: A6Je
pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0
pci0: <ACPI PCI bus> on pcib0
pci0: physical bus=0
found->	vendor=0x8086, dev=0x27a0, revid=0x03
	bus=0, slot=0, func=0
	class=06-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x2090, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x27a1, revid=0x03
	bus=0, slot=1, func=0
	class=06-04-00, hdrtype=0x01, mfdev=0
	cmdreg=0x0107, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x0a (2500 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.1.INTA
pcib0: slot 1 INTA hardwired to IRQ 16
found->	vendor=0x8086, dev=0x27d8, revid=0x02
	bus=0, slot=27, func=0
	class=04-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=7
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 64, base 0xfebfc000, size 14, enabled
pcib0: matched entry for 0.27.INTA
pcib0: slot 27 INTA hardwired to IRQ 21
found->	vendor=0x8086, dev=0x27d0, revid=0x02
	bus=0, slot=28, func=0
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0107, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=5
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTA
pcib0: slot 28 INTA hardwired to IRQ 20
found->	vendor=0x8086, dev=0x27d6, revid=0x02
	bus=0, slot=28, func=3
	class=06-04-00, hdrtype=0x01, mfdev=1
	cmdreg=0x0106, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=3
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message
pcib0: matched entry for 0.28.INTD
pcib0: slot 28 INTD hardwired to IRQ 19
found->	vendor=0x8086, dev=0x27c8, revid=0x02
	bus=0, slot=29, func=0
	class=0c-03-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=4
	map[20]: type I/O Port, range 32, base 0xec00, size  5, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x27c9, revid=0x02
	bus=0, slot=29, func=1
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=5
	map[20]: type I/O Port, range 32, base 0xe880, size  5, enabled
pcib0: matched entry for 0.29.INTB
pcib0: slot 29 INTB hardwired to IRQ 20
found->	vendor=0x8086, dev=0x27ca, revid=0x02
	bus=0, slot=29, func=2
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=c, irq=6
	map[20]: type I/O Port, range 32, base 0xe800, size  5, enabled
pcib0: matched entry for 0.29.INTC
pcib0: slot 29 INTC hardwired to IRQ 22
found->	vendor=0x8086, dev=0x27cb, revid=0x02
	bus=0, slot=29, func=3
	class=0c-03-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x0280, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=d, irq=3
	map[20]: type I/O Port, range 32, base 0xe480, size  5, enabled
pcib0: matched entry for 0.29.INTD
pcib0: slot 29 INTD hardwired to IRQ 18
found->	vendor=0x8086, dev=0x27cc, revid=0x02
	bus=0, slot=29, func=7
	class=0c-03-20, hdrtype=0x00, mfdev=0
	cmdreg=0x0106, statreg=0x0290, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=4
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xfebfbc00, size 10, enabled
pcib0: matched entry for 0.29.INTA
pcib0: slot 29 INTA hardwired to IRQ 23
found->	vendor=0x8086, dev=0x2448, revid=0xe2
	bus=0, slot=30, func=0
	class=06-04-01, hdrtype=0x01, mfdev=0
	cmdreg=0x0107, statreg=0x0010, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x02 (500 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x27b9, revid=0x02
	bus=0, slot=31, func=0
	class=06-01-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0007, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
found->	vendor=0x8086, dev=0x27c4, revid=0x02
	bus=0, slot=31, func=2
	class=01-01-80, hdrtype=0x00, mfdev=0
	cmdreg=0x0005, statreg=0x02b0, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=255
	powerspec 2  supports D0 D3  current D0
	map[20]: type I/O Port, range 32, base 0xffa0, size  4, enabled
pcib1: <ACPI PCI-PCI bridge> irq 16 at device 1.0 on pci0
pcib1:   secondary bus     1
pcib1:   subordinate bus   1
pcib1:   I/O decode        0x9000-0xbfff
pcib1:   memory decode     0xfdf00000-0xfdffffff
pcib1:   prefetched decode 0xbdf00000-0xddefffff
pci1: <ACPI PCI bus> on pcib1
pci1: physical bus=1
found->	vendor=0x1002, dev=0x7186, revid=0x00
	bus=1, slot=0, func=0
	class=03-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D1 D2 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Prefetchable Memory, range 32, base 0xc0000000, size 28, enabled
pcib1: requested memory range 0xc0000000-0xcfffffff: good
	map[14]: type I/O Port, range 32, base 0xb000, size  8, enabled
pcib1: requested I/O range 0xb000-0xb0ff: in range
	map[18]: type Memory, range 32, base 0xfdff0000, size 16, enabled
pcib1: requested memory range 0xfdff0000-0xfdffffff: good
pcib1: matched entry for 1.0.INTA
pcib1: slot 0 INTA hardwired to IRQ 16
vgapci0: <VGA-compatible display> port 0xb000-0xb0ff mem 0xc0000000-0xcfffffff,0xfdff0000-0xfdffffff irq 16 at device 0.0 on pci1
acpi_video0: <ACPI video extension> on vgapci0
found VGA CRT or VESA Compatible Analog Monitor(100), idx#0, port#0, detectable by BIOS, head #0
found TV/HDTV or Analog-Video Monitor(210), idx#0, port#1, head #0
found TV/HDTV or Analog-Video Monitor(200), idx#0, port#0, head #0
found Internal/Integrated Digital Flat Panel(110), idx#0, port#1, detectable by BIOS, head #0
drm0: <ATI Radeon Mobility RV515 X1450> on vgapci0
info: [drm] Initialized radeon 1.25.0 20060524
ioapic0: routing intpin 21 (PCI IRQ 21) to vector 49
pcib2: <ACPI PCI-PCI bridge> irq 20 at device 28.0 on pci0
pcib2:   secondary bus     2
pcib2:   subordinate bus   2
pcib2:   I/O decode        0xc000-0xcfff
pcib2:   memory decode     0xfe000000-0xfe0fffff
pcib2:   no prefetched decode
pci2: <ACPI PCI bus> on pcib2
pci2: physical bus=2
found->	vendor=0x10ec, dev=0x8168, revid=0x01
	bus=2, slot=0, func=0
	class=02-00-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0007, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=11
	powerspec 2  supports D0 D1 D2 D3  current D0
	MSI supports 2 messages, 64 bit
	map[10]: type I/O Port, range 32, base 0xc800, size  8, enabled
pcib2: requested I/O range 0xc800-0xc8ff: in range
	map[18]: type Memory, range 64, base 0xfe0ff000, size 12, enabled
pcib2: requested memory range 0xfe0ff000-0xfe0fffff: good
pcib2: matched entry for 2.0.INTA
pcib2: slot 0 INTA hardwired to IRQ 16
pcib2: re0 requested I/O range 0xc800-0xc8ff: in range
pcib2: re0 requested I/O range 0xc800-0xc8ff: in range
pcib2: re0 requested I/O range 0xc800-0xc8ff: in range
pcib2: re0 requested I/O range 0xc800-0xc8ff: in range
msi: routing MSI IRQ 256 to vector 50
msi: routing MSI IRQ 257 to vector 51
pcib3: <ACPI PCI-PCI bridge> irq 19 at device 28.3 on pci0
pcib3:   secondary bus     3
pcib3:   subordinate bus   3
pcib3:   I/O decode        0x0-0x0
pcib3:   memory decode     0xfe100000-0xfe1fffff
pcib3:   no prefetched decode
pci3: <ACPI PCI bus> on pcib3
pci3: physical bus=3
found->	vendor=0x8086, dev=0x4222, revid=0x02
	bus=3, slot=0, func=0
	class=02-80-00, hdrtype=0x00, mfdev=0
	cmdreg=0x0006, statreg=0x0010, cachelnsz=8 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=3
	powerspec 2  supports D0 D3  current D0
	MSI supports 1 message, 64 bit
	map[10]: type Memory, range 32, base 0xfe1ff000, size 12, enabled
pcib3: requested memory range 0xfe1ff000-0xfe1fffff: good
pcib3: matched entry for 3.0.INTA
pcib3: slot 0 INTA hardwired to IRQ 19
pci3: <network> at device 0.0 (no driver attached)
ioapic0: routing intpin 23 (PCI IRQ 23) to vector 52
ioapic0: routing intpin 20 (PCI IRQ 20) to vector 53
ioapic0: routing intpin 22 (PCI IRQ 22) to vector 54
ioapic0: routing intpin 18 (PCI IRQ 18) to vector 55
pcib4: <ACPI PCI-PCI bridge> at device 30.0 on pci0
pcib4:   secondary bus     4
pcib4:   subordinate bus   5
pcib4:   I/O decode        0xd000-0xdfff
pcib4:   memory decode     0xfe200000-0xfeafffff
pcib4:   prefetched decode 0xddf00000-0xdfefffff
pcib4:   Subtractively decoded bridge.
pci4: <ACPI PCI bus> on pcib4
pci4: physical bus=4
found->	vendor=0x1180, dev=0x0476, revid=0xb3
	bus=4, slot=1, func=0
	class=06-07-00, hdrtype=0x02, mfdev=1
	cmdreg=0x0007, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x20 (960 ns), mingnt=0x80 (32000 ns), maxlat=0x00 (0 ns)
	intpin=a, irq=3
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0, size 12, enabled
pcib4: matched entry for 4.1.INTA
pcib4: slot 1 INTA hardwired to IRQ 17
found->	vendor=0x1180, dev=0x0552, revid=0x08
	bus=4, slot=1, func=1
	class=0c-00-10, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x40 (1920 ns), mingnt=0x02 (500 ns), maxlat=0x04 (1000 ns)
	intpin=b, irq=3
	powerspec 2  supports D0 D3  current D0
	map[10]: type Memory, range 32, base 0xfeaff800, size 11, enabled
pcib4: requested memory range 0xfeaff800-0xfeafffff: good
pcib4: matched entry for 4.1.INTB
pcib4: slot 1 INTB hardwired to IRQ 18
found->	vendor=0x1180, dev=0x0822, revid=0x17
	bus=4, slot=1, func=2
	class=08-05-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0006, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x40 (1920 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=3
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0xfeaff400, size  8, enabled
pcib4: requested memory range 0xfeaff400-0xfeaff4ff: good
pcib4: matched entry for 4.1.INTB
pcib4: slot 1 INTB hardwired to IRQ 18
found->	vendor=0x1180, dev=0x0592, revid=0x08
	bus=4, slot=1, func=3
	class=08-80-00, hdrtype=0x00, mfdev=1
	cmdreg=0x0002, statreg=0x0210, cachelnsz=0 (dwords)
	lattimer=0x00 (0 ns), mingnt=0x00 (0 ns), maxlat=0x00 (0 ns)
	intpin=b, irq=3
	powerspec 2  supports D0 D1 D2 D3  current D0
	map[10]: type Memory, range 32, base 0xfeaff000, size  8, enabled
pcib4: requested memory range 0xfeaff000-0xfeaff0ff: good
pcib4: matched entry for 4.1.INTB
pcib4: slot 1 INTB hardwired to IRQ 18
pcib4: cbb0 requested memory range 0xfe200000-0xfeafffff: good
ioapic0: routing intpin 17 (PCI IRQ 17) to vector 56
pci4: <base peripheral> at device 1.2 (no driver attached)
pci4: <base peripheral> at device 1.3 (no driver attached)
isab0: <PCI-ISA bridge> at device 31.0 on pci0
isa0: <ISA bus> on isab0
atapci0: <Intel ICH7M SATA300 controller> port 0x1f0-0x1f7,0x3f6,0x170-0x177,0x376,0xffa0-0xffaf at device 31.2 on pci0
atapci0: Reserved 0x10 bytes for rid 0x20 type 4 at 0xffa0
atapci0: Reserved 0x8 bytes for rid 0x10 type 4 at 0x1f0
atapci0: Reserved 0x1 bytes for rid 0x14 type 4 at 0x3f6
ioapic0: routing intpin 14 (ISA IRQ 14) to vector 57
ioapic0: routing intpin 15 (ISA IRQ 15) to vector 58
acpi_lid0: <Control Method Lid Switch> on acpi0
acpi_button0: <Power Button> on acpi0
acpi_button1: <Sleep Button> on acpi0
acpi_tz0: <Thermal Zone> on acpi0
acpi_acad0: <AC Adapter> on acpi0
ioapic0: routing intpin 1 (ISA IRQ 1) to vector 59
ioapic0: routing intpin 12 (ISA IRQ 12) to vector 60
acpi_asus0: Unsupported Asus laptop: A6Je
sc0: <System console> at flags 0x100 on isa0
sc0: VGA <16 virtual consoles, flags=0x300>
sc0: fb0, kbd1, terminal emulator: sc (syscons terminal)
vga0: <Generic ISA VGA> at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0
lapic: Divisor 2, Frequency 83125647 hz
Timecounter "TSC" frequency 1828764124 Hz quality -100
Timecounters tick every 1.000 msec
acpi_tz0: _AC0: temperature 67.0 >= setpoint 60.0
acpi_tz0: switched from NONE to _AC0: 67.0C
SMP: AP CPU #1 Launched!
cpu1 AP:
     ID: 0x01000000   VER: 0x00050014 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 12 to local APIC 0
ioapic0: Assigning ISA IRQ 14 to local APIC 1
ioapic0: Assigning ISA IRQ 15 to local APIC 0
ioapic0: Assigning PCI IRQ 17 to local APIC 1
ioapic0: Assigning PCI IRQ 18 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 IRQ 256 to local APIC 1
msi: Assigning MSI IRQ 257 to local APIC 0

-------------- next part --------------
Avivo engine:
AVIVO_ENGINE_STATUS	0100c000

Memory controller:
MC00	00000000
MC01	c7ffc000
MC02	003f0000
MC03	00000000
AVIVO_MC_MEMORY_MAP	00000000
MC05	00000160
MC06	00065432
MC07	00000066
MC08	0000001f
MC09	03000000
MC0a	20000000
MC0b	00000000
MC0c	22222222
MC0d	00000000
MC0e	00210800
MC0f	0c004208
MC10	00000000
MC11	00000000
MC12	00000000
MC13	00000000
MC14	00000000
MC15	00000000
MC16	00000000
MC17	00000000
MC18	00000000

CRTC1:
AVIVO_CRTC1_CNTL	00010101
	Enable:	1
	Mystery bit #1:	1
	Mystery bit #2:	1
AVIVO_CRTC1_MODE	00000000
	Text mode:	0
AVIVO_CRTC1_H_TOTAL	1439 (decimal)
AVIVO_CRTC1_H_BLANK	00700570
	Total - Pulse start + disp:	            1392
	Total - disp:	             112
AVIVO_CRTC1_H_SYNC_WID	00200000
	Sync width:	      32
AVIVO_CRTC1_H_SYNC_POL	00000001
	Polarity:	1
AVIVO_CRTC1_V_TOTAL	822 (decimal)
AVIVO_CRTC1_V_BLANK	00140334
	Total - Pulse start + disp:	             820
	Total - disp:	              20
AVIVO_CRTC1_V_SYNC_WID	00060000
	Sync width:	       6
AVIVO_CRTC1_V_SYNC_POL	00000001
	Polarity:	1
AVIVO_CRTC1_SCAN_ENABLE	00000001
AVIVO_CRTC1_FB_FORMAT	00000002
	Format:	   2
AVIVO_CRTC1_FB_LOCATION	c0100000
AVIVO_CRTC1_FB_END	c0500000
AVIVO_CRTC1_PITCH	1280 (decimal)
AVIVO_CRTC1_X_LENGTH	1280 (decimal)
AVIVO_CRTC1_Y_LENGTH	768 (decimal)
AVIVO_CRTC1_EXPANSION_CNTL	00000001
	Enable:	1
AVIVO_CRTC1_EXPANSION_SOURCE	04000300
	Height:	            1024
	Width:	             768
AVIVO_CRTC1_OFFSET_START	00000000
	x:	               0
	y:	               0
AVIVO_CRTC1_OFFSET_END	00000000
	x:	               0
	y:	               0

CRTC2 disabled

DAC1 disabled

DAC2 disabled

TMDS1 disabled (not present)

TMDS2:
AVIVO_TMDS2_CNTL	00001001
	Enable:	1
AVIVO_TMDS_STATUS	00000000
	TMDS2 connected:	0
AVIVO_TMDS2_CLOCK_ENABLE	00000000
AVIVO_TMDS2_CLOCK_CNTL	0000001e
AVIVO_TMDS2_MYSTERY1	01010000
AVIVO_TMDS2_MYSTERY2	00000001
AVIVO_TMDS2_MYSTERY3	00630011

LVDS disabled

Cursor 1 disabled
-------------- next part --------------

BIOS Tables:
------------

Header at 20a, type: 36 [ATOM]
OEM ID: 01 01
ATOM BIOS detected !

Clock info block:
  SCLK    : 480.000000
  MCLK    : 375.000000
  RefClk  : 27.000000
  PPLL Min: 0.000000
  PPLL Max: 1100.000000
Connector table:
0:    00009011 , Id: 0, Type: VGA, DDC: AVIVO connector #1?, DAC: CRT, GPIO: 0x7E40
1:    00001570 , Id: 5, Type: LVDS, DDC: None, DAC: None, GPIO: 0x0198
2:    00000052 , Id: 0, Type: STV, DDC: AVIVO connector #1?, DAC: TV, GPIO: 0x7E40
3:    00009120 , Id: 1, Type: DVI-I, DDC: AVIVO connector #2?, GPIO: 0x7E50 TMDS: Internal
TMDS PLLs:
Maximum frequency: 165000Hz
    0: 165000Hz b0116
    1: 720Hz 1005
    2: 0Hz 9410
    3: 23200Hz 10a3
LVDS timings:
  x: 1280, y: 800, dotclock: 71110
  hblank: 160, hoverplus: 48, hsyncwidth: 32
  vblank: 23, voverplus: 3, vsyncwidth: 6
  power-on delay: 15432


More information about the freebsd-x11 mailing list