Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 20 Oct 2015 10:31:21 +0200
From:      Nils Beyer <nbe@renzel.net>
To:        freebsd-x11@FreeBSD.org
Subject:   Re: Testing the new i915 driver (rev. 3820047)
References:  <56224C70.8040906@FreeBSD.org>

| previous in thread | raw e-mail | index | archive | help

--nextPart2084846.HHO0l36TJ6
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 8Bit

Hi Jean-Sébastien,

first of all, big thanks for your hard work here.


Jean-Sébastien Pédron wrote:
> [...]
> As a reminder, informations are available on the wiki:
> https://wiki.freebsd.org/Graphics/Update%20i915%20GPU%20driver%20to%20Linux%203.8
> 
> Please continue to test! Thank you for your help :)

I tried to get my ValleyView (deviceID=0x0f31) running. It's hosted on a

	Lenovo G50-30

Out of the box, it doesn't work at all. Missing some stuff in "agp_i810.c" and
"i915_drv.c" as it seems. And the tunable "drm.i915.enable_unsupported=1" needs
to be set.

I've fiddled around a litte bit and imported some code from DragonFly BSD to
get the modules "agp" and "i915kms" loading and attaching at least. Please see
my attachment for what I've done.

It still doesn't work with X11 though I'm testing it remotely and have the
LCD panel flipped shut. It seems to be stuck in an endless loop. Perhaps,
in the blink of an eye, you see something that I've done wrong and has to
be corrected.

Nevertheless, I'm going to continue fiddling around. At least, it doesn't
panic... ;-)



TIA and regards,
Nils
--nextPart2084846.HHO0l36TJ6
Content-Type: text/x-patch; name="ValleyView.001.patch"
Content-Disposition: attachment; filename="ValleyView.001.patch"
Content-Transfer-Encoding: 8Bit

diff --git a/sys/amd64/conf/GENERIC b/sys/amd64/conf/GENERIC
index 5c7f7c0..6bcde97 100644
--- a/sys/amd64/conf/GENERIC
+++ b/sys/amd64/conf/GENERIC
@@ -82,14 +82,14 @@ options 	RCTL			# Resource limits
 options 	KDB			# Enable kernel debugger support.
 options 	KDB_TRACE		# Print a stack trace for a panic.
 # For full debugger support use (turn off in stable branch):
-options 	DDB			# Support DDB.
-options 	GDB			# Support remote GDB.
-options 	DEADLKRES		# Enable the deadlock resolver
-options 	INVARIANTS		# Enable calls of extra sanity checking
-options 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
-options 	WITNESS			# Enable checks to detect deadlocks and cycles
-options 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
-options 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
+#options 	DDB			# Support DDB.
+#options 	GDB			# Support remote GDB.
+#options 	DEADLKRES		# Enable the deadlock resolver
+#options 	INVARIANTS		# Enable calls of extra sanity checking
+#options 	INVARIANT_SUPPORT	# Extra sanity checks of internal structures, required by INVARIANTS
+#options 	WITNESS			# Enable checks to detect deadlocks and cycles
+#options 	WITNESS_SKIPSPIN	# Don't run witness on spinlocks for speed
+#options 	MALLOC_DEBUG_MAXZONES=8	# Separate malloc(9) zones
 
 # Make an SMP-capable kernel by default
 options 	SMP			# Symmetric MultiProcessor Kernel
@@ -200,7 +200,7 @@ device		vt
 device		vt_vga
 device		vt_efifb
 
-device		agp			# support several AGP chipsets
+#device		agp			# support several AGP chipsets
 
 # PCCARD (PCMCIA) support
 # PCMCIA and cardbus bridge support
diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c
index c9ebcc5..2376c0d 100644
--- a/sys/dev/agp/agp_i810.c
+++ b/sys/dev/agp/agp_i810.c
@@ -112,11 +112,13 @@ static int agp_i810_get_gtt_total_entries(device_t dev);
 static int agp_i965_get_gtt_total_entries(device_t dev);
 static int agp_gen5_get_gtt_total_entries(device_t dev);
 static int agp_sb_get_gtt_total_entries(device_t dev);
+static int agp_vlv_get_gtt_total_entries(device_t dev);
 
 static int agp_i810_install_gatt(device_t dev);
 static int agp_i830_install_gatt(device_t dev);
 static int agp_i965_install_gatt(device_t dev);
 static int agp_g4x_install_gatt(device_t dev);
+static int agp_vlv_install_gatt(device_t dev);
 
 static void agp_i810_deinstall_gatt(device_t dev);
 static void agp_i830_deinstall_gatt(device_t dev);
@@ -133,6 +135,8 @@ static void agp_g4x_install_gtt_pte(device_t dev, u_int index,
     vm_offset_t physical, int flags);
 static void agp_sb_install_gtt_pte(device_t dev, u_int index,
     vm_offset_t physical, int flags);
+static void agp_vlv_install_gtt_pte(device_t dev, u_int index,
+    vm_offset_t physical, int flags);
 
 static void agp_i810_write_gtt(device_t dev, u_int index, uint32_t pte);
 static void agp_i915_write_gtt(device_t dev, u_int index, uint32_t pte);
@@ -535,16 +539,16 @@ static const struct agp_i810_driver agp_i810_valleyview_driver = {
 	.gen = 7,
 	.busdma_addr_mask_sz = 40,
 	.res_spec = agp_g4x_res_spec,
-	.check_active = agp_sb_check_active,
+	.check_active = NULL,
 	.set_desc = agp_i810_set_desc,
 	.dump_regs = agp_sb_dump_regs,
 	.get_stolen_size = agp_sb_get_stolen_size,
 	.get_gtt_mappable_entries = agp_i915_get_gtt_mappable_entries,
-	.get_gtt_total_entries = agp_sb_get_gtt_total_entries,
-	.install_gatt = agp_g4x_install_gatt,
-	.deinstall_gatt = agp_i830_deinstall_gatt,
+	.get_gtt_total_entries = agp_vlv_get_gtt_total_entries,
+	.install_gatt = agp_vlv_install_gatt,
+	.deinstall_gatt = agp_i830_deinstall_gatt, /* is equivalent to agp_sb_deinstall_gatt */
 	.write_gtt = agp_sb_write_gtt,
-	.install_gtt_pte = agp_sb_install_gtt_pte,
+	.install_gtt_pte = agp_vlv_install_gtt_pte,
 	.read_gtt_pte = agp_g4x_read_gtt_pte,
 	.read_gtt_pte_paddr = agp_sb_read_gtt_pte_paddr,
 	.set_aperture = agp_i915_set_aperture,
@@ -984,6 +988,11 @@ static const struct agp_i810_match {
 		.driver = &agp_i810_valleyview_driver
 	},
 	{
+		.devid = 0x0F318086,
+		.name = "Valleyview (mobile)",
+		.driver = &agp_i810_valleyview_driver
+	},
+	{
 		.devid = 0,
 	}
 };
@@ -995,18 +1004,23 @@ agp_i810_match(device_t dev)
 
 	if (pci_get_class(dev) != PCIC_DISPLAY
 	    || (pci_get_subclass(dev) != PCIS_DISPLAY_VGA &&
-	    pci_get_subclass(dev) != PCIS_DISPLAY_OTHER))
+	    pci_get_subclass(dev) != PCIS_DISPLAY_OTHER)) {
+		printf("AGP: agp_i810_match: device class or subclass for device ID %0x is wrong.\n", pci_get_devid(dev));
 		return (NULL);
+	}
 
 	devid = pci_get_devid(dev);
 	for (i = 0; agp_i810_matches[i].devid != 0; i++) {
 		if (agp_i810_matches[i].devid == devid)
 			break;
 	}
-	if (agp_i810_matches[i].devid == 0)
+	if (agp_i810_matches[i].devid == 0) {
+		printf("AGP: agp_i810_match: cannot find match for device ID %0x.\n", devid);
 		return (NULL);
-	else
+	} else {
+		printf("AGP: agp_i810_match: found match for device ID %0x.\n", devid);
 		return (&agp_i810_matches[i]);
+	}
 }
 
 /*
@@ -1103,7 +1117,7 @@ agp_82852_set_desc(device_t dev, const struct agp_i810_match *match)
 static void
 agp_i810_set_desc(device_t dev, const struct agp_i810_match *match)
 {
-
+	printf("AGP: agp_i810_set_desc\n");
 	device_set_desc(dev, match->name);
 }
 
@@ -1130,11 +1144,13 @@ agp_i810_probe(device_t dev)
 	/*
 	 * checking whether internal graphics device has been activated.
 	 */
-	err = match->driver->check_active(bdev);
-	if (err != 0) {
-		if (bootverbose)
-			printf("i810: disabled, not probing\n");
-		return (err);
+	if (match->driver->check_active != NULL) {
+		err = match->driver->check_active(bdev);
+		if (err != 0) {
+			if (bootverbose)
+				printf("i810: disabled, not probing\n");
+			return (err);
+		}
 	}
 
 	match->driver->set_desc(dev, match);
@@ -1203,6 +1219,7 @@ agp_i965_dump_regs(device_t dev)
 static void
 agp_sb_dump_regs(device_t dev)
 {
+	printf("AGP: agp_sb_dump_regs\n");
 	struct agp_i810_softc *sc = device_get_softc(dev);
 
 	device_printf(dev, "AGP_SNB_GFX_MODE: %08x\n",
@@ -1398,6 +1415,7 @@ agp_i915_get_stolen_size(device_t dev)
 static int
 agp_sb_get_stolen_size(device_t dev)
 {
+	printf("AGP: agp_sb_get_stolen_size\n");
 	struct agp_i810_softc *sc;
 	uint16_t gmch_ctl;
 
@@ -1454,6 +1472,7 @@ agp_sb_get_stolen_size(device_t dev)
 		break;
 	}
 	sc->stolen = (sc->stolen_size - 4) / 4096;
+	printf("AGP: agp_sb_get_stolen_size: sc->stolen = %d\n", sc->stolen);
 	return (0);
 }
 
@@ -1494,12 +1513,14 @@ agp_i830_get_gtt_mappable_entries(device_t dev)
 static int
 agp_i915_get_gtt_mappable_entries(device_t dev)
 {
+	printf("AGP: agp_i915_get_gtt_mappable_entries\n");
 	struct agp_i810_softc *sc;
 	uint32_t ap;
 
 	sc = device_get_softc(dev);
 	ap = AGP_GET_APERTURE(dev);
 	sc->gtt_mappable_entries = ap >> AGP_PAGE_SHIFT;
+	printf("AGP: agp_i915_get_gtt_mappable_entries: sc->gtt_mappable_entries=%0x\n", sc->gtt_mappable_entries);
 	return (0);
 }
 
@@ -1602,12 +1623,14 @@ agp_gen5_get_gtt_total_entries(device_t dev)
 static int
 agp_sb_get_gtt_total_entries(device_t dev)
 {
+	printf("AGP: agp_sb_get_gtt_total_entries\n");
 	struct agp_i810_softc *sc;
 	uint16_t gcc1;
 
 	sc = device_get_softc(dev);
 
 	gcc1 = pci_read_config(sc->bdev, AGP_SNB_GCC1, 2);
+	printf("AGP: agp_sb_get_gtt_total_entries: gcc1=%0x\n", gcc1);
 	switch (gcc1 & AGP_SNB_GTT_SIZE_MASK) {
 	default:
 	case AGP_SNB_GTT_SIZE_0M:
@@ -1624,6 +1647,32 @@ agp_sb_get_gtt_total_entries(device_t dev)
 }
 
 static int
+agp_vlv_get_gtt_total_entries(device_t dev)
+{
+	printf("AGP: agp_sb_get_gtt_total_entries\n");
+	struct agp_i810_softc *sc;
+	uint16_t gcc1;
+
+	sc = device_get_softc(dev);
+
+	gcc1 = pci_read_config(dev, AGP_SNB_GCC1, 2); /* XXX: config is not read from bridge device? */
+	printf("AGP: agp_sb_get_gtt_total_entries: gcc1=%0x\n", gcc1);
+	switch (gcc1 & AGP_SNB_GTT_SIZE_MASK) {
+		default:
+		case AGP_SNB_GTT_SIZE_0M:
+			printf("Bad GTT size mask: 0x%04x\n", gcc1);
+			return (ENXIO);
+		case AGP_SNB_GTT_SIZE_1M:
+			sc->gtt_total_entries = 1024 * 1024 / 4;
+			break;
+		case AGP_SNB_GTT_SIZE_2M:
+			sc->gtt_total_entries = 2 * 1024 * 1024 / 4;
+			break;
+	}
+	return (0);
+}
+
+static int
 agp_i810_install_gatt(device_t dev)
 {
 	struct agp_i810_softc *sc;
@@ -1703,13 +1752,39 @@ agp_i965_install_gatt(device_t dev)
 static int
 agp_g4x_install_gatt(device_t dev)
 {
-
 	return (agp_gen4_install_gatt(dev, 2 * 1024 * 1024));
 }
 
 static int
+agp_vlv_install_gatt(device_t dev)
+{
+	printf("AGP: agp_vlv_install_gatt\n");
+	void *pg = contigmalloc(4096, M_AGP, M_WAITOK | M_ZERO,
+			        0x10000, 0xFFFFFFFFU,
+				PAGE_SIZE, PAGE_SIZE);
+	struct agp_i810_softc *sc;
+	uint32_t pte;
+	int i;
+
+	/*
+	 * Make the entire aperture valid by pointing to a page of junk
+	 * memory.
+	 *
+	 * NOTE: valleyview has not PGTBL_CTL
+	 */
+	sc = device_get_softc(dev);
+	pte = vtophys(pg) | 0x03;
+	printf("AGP: agp_vlv_install_gatt: pte=%0.x\n", pte);
+	for (i = 0; i < 2 * 1024 * 1024; i += 4)
+		bus_write_4(sc->sc_res[0], i + (2 * 1024 * 1024), pte);
+
+	return 0;
+}
+
+static int
 agp_i810_attach(device_t dev)
 {
+	printf("AGP: agp_i810_attach\n");
 	struct agp_i810_softc *sc;
 	int error;
 
@@ -1894,7 +1969,7 @@ agp_i830_set_aperture(device_t dev, u_int32_t aperture)
 static int
 agp_i915_set_aperture(device_t dev, u_int32_t aperture)
 {
-
+	printf("AGP: agp_i915_set_aperture\n");
 	return (agp_generic_set_aperture(dev, aperture));
 }
 
@@ -2043,12 +2118,38 @@ agp_sb_install_gtt_pte(device_t dev, u_int index, vm_offset_t physical,
 		pte |= GEN6_PTE_LLC | gfdt;
 
 	pte |= (physical & 0x000000ff00000000ull) >> 28;
+	printf("AGP: writing index %0x with pte %0x\n", index, pte);
+	agp_sb_write_gtt(dev, index, pte);
+}
+
+#define GEN6_PTE_ADDR_ENCODE(addr) ((addr) | (((addr) >> 28) & 0xff0))
+#define GEN6_PTE_VALID (1 << 0)
+#define BYT_PTE_WRITEABLE (1 << 1)
+#define BYT_PTE_SNOOPED_BY_CPU_CACHES (1 << 2)
+static void
+agp_vlv_install_gtt_pte(device_t dev, u_int index,
+			vm_offset_t physical, int flags)
+{
+	printf("AGP: agp_vlv_install_gtt_pte\n");
+	int type_mask;
+	uint32_t pte;
+
+	pte = GEN6_PTE_ADDR_ENCODE(physical) | GEN6_PTE_VALID;
+	pte |= BYT_PTE_WRITEABLE;
+
+	type_mask = flags & ~AGP_USER_CACHED_MEMORY_GFDT;
+	if (type_mask != AGP_USER_MEMORY) {
+		 pte |= BYT_PTE_SNOOPED_BY_CPU_CACHES;
+		 if (flags & AGP_USER_CACHED_MEMORY_GFDT)
+			pte |= GEN6_PTE_GFDT;
+	}
 	agp_sb_write_gtt(dev, index, pte);
 }
 
 static void
 agp_sb_write_gtt(device_t dev, u_int index, uint32_t pte)
 {
+	printf("AGP: agp_sb_write_gtt\n");
 	struct agp_i810_softc *sc;
 
 	sc = device_get_softc(dev);
@@ -2482,21 +2583,21 @@ agp_intel_gtt_get(device_t dev)
 static int
 agp_i810_chipset_flush_setup(device_t dev)
 {
-
+	printf("AGP: agp_i810_chipset_flush_setup\n");
 	return (0);
 }
 
 static void
 agp_i810_chipset_flush_teardown(device_t dev)
 {
-
+	printf("AGP: agp_i810_chipset_flush_teardown\n");
 	/* Nothing to do. */
 }
 
 static void
 agp_i810_chipset_flush(device_t dev)
 {
-
+	printf("AGP: agp_i810_chipset_flush\n");
 	/* Nothing to do. */
 }
 
diff --git a/sys/dev/drm2/drm_pciids.h b/sys/dev/drm2/drm_pciids.h
index b1a95b6..251ae92 100644
--- a/sys/dev/drm2/drm_pciids.h
+++ b/sys/dev/drm2/drm_pciids.h
@@ -87,6 +87,7 @@
 	{0x8086, 0x0155, 0, "Intel Valleyview (desktop)"}, \
 	{0x8086, 0x0157, 0, "Intel Valleyview (mobile)"}, \
 	{0x8086, 0x0F30, 0, "Intel Valleyview (mobile)"}, \
+	{0x8086, 0x0F31, 0, "Intel Valleyview (mobile)"}, \
 	{0x8086, 0x2562, 0, "Intel i845G GMCH"}, \
 	{0x8086, 0x2572, 0, "Intel i865G GMCH"}, \
 	{0x8086, 0x2582, 0, "Intel i915G"}, \
diff --git a/sys/dev/drm2/i915/i915_drv.c b/sys/dev/drm2/i915/i915_drv.c
index d8a7805..4c6a1ea 100644
--- a/sys/dev/drm2/i915/i915_drv.c
+++ b/sys/dev/drm2/i915/i915_drv.c
@@ -414,7 +414,8 @@ static const struct intel_gfx_device_id {
 	INTEL_VGA_DEVICE(0x0D06, &intel_haswell_m_info), /* CRW GT1 mobile */
 	INTEL_VGA_DEVICE(0x0D16, &intel_haswell_m_info), /* CRW GT2 mobile */
 	INTEL_VGA_DEVICE(0x0D26, &intel_haswell_m_info), /* CRW GT2 mobile */
-	INTEL_VGA_DEVICE(0x0f30, &intel_valleyview_m_info),
+	INTEL_VGA_DEVICE(0x0F30, &intel_valleyview_m_info),
+	INTEL_VGA_DEVICE(0x0F31, &intel_valleyview_m_info),
 	INTEL_VGA_DEVICE(0x0157, &intel_valleyview_m_info),
 	INTEL_VGA_DEVICE(0x0155, &intel_valleyview_d_info),
 	{0, 0}
@@ -436,6 +437,7 @@ void intel_detect_pch(struct drm_device *dev)
 	 * underneath. This is a requirement from virtualization team.
 	 */
 	pch = pci_find_class(PCIC_BRIDGE, PCIS_BRIDGE_ISA);
+	DRM_DEBUG_KMS("Trying to find PCIC_BRIDGE\n");
 	if (pch) {
 		if (pci_get_vendor(pch) == PCI_VENDOR_ID_INTEL) {
 			unsigned short id;
@@ -470,6 +472,8 @@ void intel_detect_pch(struct drm_device *dev)
 				WARN_ON(!IS_HASWELL(dev));
 			}
 			BUG_ON(dev_priv->num_pch_pll > I915_NUM_PLLS);
+		} else {
+			DRM_DEBUG_KMS("Cannot find PCI bridge\n");
 		}
 	}
 }
@@ -941,6 +945,7 @@ i915_get_device_id(int device)
 			continue;
 		return (did->info);
 	}
+	DRM_DEBUG_KMS("Cannot find my device ID %0x in i915 device list.\n", device);
 	return (NULL);
 }
 
@@ -970,13 +975,14 @@ static int i915_probe(device_t kdev)
 	 * (gasp!) to share buffers between X and the client. Hence we need to
 	 * keep around the fake agp stuff for gen3, even when kms is enabled. */
 	if (intel_info->gen != 3) {
+		DRM_DEBUG_KMS("Is not a gen3 device.\n");
 		driver.driver_features &=
 			~(DRIVER_USE_AGP | DRIVER_REQUIRE_AGP);
 	} else if (!intel_agp_enabled) {
 		DRM_ERROR("drm/i915 can't work without intel_agp module!\n");
 		return (ENXIO);
 	}
-
+	DRM_DEBUG_KMS("i915_probe returns %0x.\n", -drm_probe_helper(kdev, pciidlist));
 	return -drm_probe_helper(kdev, pciidlist);
 }
 
@@ -1163,6 +1169,7 @@ static struct pci_driver i915_pci_driver = {
 
 static int __init i915_attach(device_t kdev)
 {
+	DRM_DEBUG_KMS("Entering i915_attach.\n");
 	driver.num_ioctls = i915_max_ioctl;
 
 	/*


--nextPart2084846.HHO0l36TJ6
Content-Type: text/plain; name="ValleyView.dmesg_capped.LoadingModules.txt"
Content-Disposition: attachment; filename="ValleyView.dmesg_capped.LoadingModules.txt"
Content-Transfer-Encoding: 8Bit

Starting sendmail_msp_queue.
Starting cron.
eval: cannot open /etc/fstab: No such file or directory
Starting background file system checks in 60 seconds.

Tue Oct 20 09:59:47 CEST 2015
tun0: bpf attached
tun0: link state changed to UP
AGP: agp_i810_match: found match for device ID f318086.
AGP: agp_i810_match: found match for device ID f318086.
AGP: agp_i810_set_desc
AGP: agp_i810_match: found match for device ID f318086.
AGP: agp_i810_set_desc
agp0: <Valleyview (mobile)> on vgapci0
AGP: agp_i810_attach
AGP: agp_i810_match: found match for device ID f318086.
AGP: agp_sb_get_stolen_size
AGP: agp_sb_get_stolen_size: sc->stolen = 1048575
AGP: agp_vlv_install_gatt
AGP: agp_vlv_install_gatt: pte=2f9da003
AGP: agp_i915_get_gtt_mappable_entries
AGP: agp_i915_get_gtt_mappable_entries: sc->gtt_mappable_entries=10000
AGP: agp_sb_get_gtt_total_entries
AGP: agp_sb_get_gtt_total_entries: gcc1=211
AGP: agp_i810_chipset_flush_setup
agp0: aperture size is 256M, detected 4194300k stolen memory
AGP: agp_sb_dump_regs
agp0: AGP_SNB_GFX_MODE: 00000000
agp0: AGP_SNB_GCC1: 0x0000
agp0: Mappable GTT entries: 65536
agp0: Total GTT entries: 524288
random: harvesting attach, 8 bytes (4 bits) from agp0
AGP: agp_i810_match: device class or subclass for device ID 114010de is wrong.
info: [drm] Initialized drm 1.1.0 20060810
[drm:KMS:pid986:i915_probe] Is not a gen3 device.
[drm:pid986:drm_probe_helper] drmn0 desc: Intel Valleyview (mobile)
[drm:KMS:pid986:i915_probe] i915_probe returns 0.
drmn0: <Intel Valleyview (mobile)> on vgapci0
[drm:KMS:pid986:i915_attach] Entering i915_attach.
[drm:pid986:drm_get_pci_dev] 
[drm:pid986:drm_ctxbitmap_next] bit : 0
[drm:pid986:drm_ctxbitmap_init] drm_ctxbitmap_init : 0
[drm:pid986:drm_get_minor] 
[drm:pid986:drm_get_minor] new minor assigned 64
[drm:pid986:drm_get_minor] 
[drm:pid986:drm_get_minor] new minor assigned 0
[drm:KMS:pid986:i915_dump_device_info] i915 device info: gen=7, pciid=0x0f31 flags=is_mobile,need_gfx_hws,is_valleyview,has_hotplug,has_bsd_ring,has_blt_ring,info: [drm] Memory usable by graphics device = 2048M
[drm:KMS:pid986:i915_gem_gtt_init] GMADR size = 256M
[drm:KMS:pid986:i915_gem_gtt_init] GTT stolen size = 0M
[drm:pid986:drm_addmap_core] offset = 0xa3000000, size = 0x00200000, type = 1
[drm:KMS:pid986:intel_detect_pch] Trying to find PCIC_BRIDGE
pcib0: allocated type 3 (0xa3815020-0xa381901f) for rid 100 of drmn0
iicbus0: <Philips I2C bus> on iicbb0 addr 0xff
iic0: <I2C generic I/O> on iicbus0
random: harvesting attach, 8 bytes (4 bits) from iic0
random: harvesting attach, 8 bytes (4 bits) from iicbus0
random: harvesting attach, 8 bytes (4 bits) from iicbb0
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb0
iic1: <I2C generic I/O> on iicbus1
random: harvesting attach, 8 bytes (4 bits) from iic1
random: harvesting attach, 8 bytes (4 bits) from iicbus1
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus0
iicbus2: <Philips I2C bus> on iicbb1 addr 0x0
iic2: <I2C generic I/O> on iicbus2
random: harvesting attach, 8 bytes (4 bits) from iic2
random: harvesting attach, 8 bytes (4 bits) from iicbus2
random: harvesting attach, 8 bytes (4 bits) from iicbb1
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb1
iic3: <I2C generic I/O> on iicbus3
random: harvesting attach, 8 bytes (4 bits) from iic3
random: harvesting attach, 8 bytes (4 bits) from iicbus3
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus1
iicbus4: <Philips I2C bus> on iicbb2 addr 0x0
iic4: <I2C generic I/O> on iicbus4
random: harvesting attach, 8 bytes (4 bits) from iic4
random: harvesting attach, 8 bytes (4 bits) from iicbus4
random: harvesting attach, 8 bytes (4 bits) from iicbb2
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb2
iic5: <I2C generic I/O> on iicbus5
random: harvesting attach, 8 bytes (4 bits) from iic5
random: harvesting attach, 8 bytes (4 bits) from iicbus5
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus2
iicbus6: <Philips I2C bus> on iicbb3 addr 0x0
iic6: <I2C generic I/O> on iicbus6
random: harvesting attach, 8 bytes (4 bits) from iic6
random: harvesting attach, 8 bytes (4 bits) from iicbus6
random: harvesting attach, 8 bytes (4 bits) from iicbb3
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb3
iic7: <I2C generic I/O> on iicbus7
random: harvesting attach, 8 bytes (4 bits) from iic7
random: harvesting attach, 8 bytes (4 bits) from iicbus7
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus3
iicbus8: <Philips I2C bus> on iicbb4 addr 0x0
iic8: <I2C generic I/O> on iicbus8
random: harvesting attach, 8 bytes (4 bits) from iic8
random: harvesting attach, 8 bytes (4 bits) from iicbus8
random: harvesting attach, 8 bytes (4 bits) from iicbb4
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb4
iic9: <I2C generic I/O> on iicbus9
random: harvesting attach, 8 bytes (4 bits) from iic9
random: harvesting attach, 8 bytes (4 bits) from iicbus9
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus4
iicbus10: <Philips I2C bus> on iicbb5 addr 0x0
iic10: <I2C generic I/O> on iicbus10
random: harvesting attach, 8 bytes (4 bits) from iic10
random: harvesting attach, 8 bytes (4 bits) from iicbus10
random: harvesting attach, 8 bytes (4 bits) from iicbb5
random: harvesting attach, 8 bytes (4 bits) from intel_iicbb5
iic11: <I2C generic I/O> on iicbus11
random: harvesting attach, 8 bytes (4 bits) from iic11
random: harvesting attach, 8 bytes (4 bits) from iicbus11
random: harvesting attach, 8 bytes (4 bits) from intel_gmbus5
[drm:pid986:intel_opregion_setup] graphic opregion physical addr: 0x78be7018
[drm:pid986:intel_opregion_setup] Public ACPI methods supported
[drm:pid986:intel_opregion_setup] ASLE supported
[drm:pid986:drm_pci_enable_msi] MSI count = 1
vgapci0: attempting to allocate 1 MSI vectors (1 supported)
msi: routing MSI IRQ 260 to local APIC 4 vector 50
vgapci0: using IRQ 260 for MSI
info: [drm] MSI enabled 1 message(s)
info: [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
info: [drm] Driver supports precise vblank timestamp query.
[drm:KMS:pid986:init_vbt_defaults] Set default to SSC at 100MHz
[drm:KMS:pid986:intel_parse_bios] Using VBT from OpRegion: $VBT VALLEYVIEW     d
[drm:KMS:pid986:parse_general_features] BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 0 lvds_ssc_freq 120 display_clock_mode 0 fdi_rx_polarity_inverted 0
[drm:KMS:pid986:parse_general_definitions] crt_ddc_bus_pin: 2
[drm:KMS:pid986:parse_lfp_panel_data] Found panel mode in BIOS VBT tables:
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 0:"1024x768" 0 65000 1024 1048 1184 1344 768 771 777 806 0x8 0xa
[drm:KMS:pid986:parse_lfp_panel_data] VBT initial LVDS value 0
[drm:KMS:pid986:parse_sdvo_device_mapping] No SDVO device info is found in VBT
[drm:KMS:pid986:i915_gem_init_stolen] found 0 bytes of stolen memory at 01070000
[drm:KMS:pid986:intel_modeset_init] 2 display pipes available.
[drm:KMS:pid986:intel_pch_pll_init] No PCH PLLs on this hardware, skipping initialisation
[drm:KMS:pid986:intel_lvds_init] LVDS is not present in VBT
[drm:KMS:pid986:intel_dp_init_panel_power_sequencer] cur t1_t3 3997 t8 3 t9 3 t10 3997 t11_t12 3000
[drm:KMS:pid986:intel_dp_init_panel_power_sequencer] vbt t1_t3 2000 t8 10 t9 2000 t10 500 t11_t12 5000
[drm:KMS:pid986:intel_dp_init_panel_power_sequencer] panel power up delay 400, power down delay 400, power cycle delay 500
[drm:KMS:pid986:intel_dp_init_panel_power_sequencer] backlight on delay 1, off delay 200
[drm:KMS:pid986:intel_dp_i2c_init] i2c_init DPDDC-C
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] Turn eDP VDD on
[drm:KMS:pid986:ironlake_wait_panel_power_cycle] Wait for panel power cycle
[drm:KMS:pid986:ironlake_wait_panel_status] mask b800000f value 00000000 status 2f9da003 control abcda003
error: [drm:pid986:ironlake_wait_panel_status] *ERROR* Panel status timeout: status 2f9da003 control abcda003
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] PCH_PP_STATUS: 0x2f9da003 PCH_PP_CONTROL: 0xabcda00b
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] eDP was not running
random: harvesting attach, 8 bytes (4 bits) from drm_iic_dp_aux0
[drm:KMS:pid986:intel_dp_i2c_aux_ch] aux_i2c nack
[drm:KMS:pid986:intel_dp_i2c_aux_ch] aux_i2c nack
[drm:KMS:pid986:ironlake_edp_panel_vdd_off] Turn eDP VDD off 1
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] Turn eDP VDD on
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] eDP VDD already on
[drm:KMS:pid986:ironlake_edp_panel_vdd_off] Turn eDP VDD off 1
error: [drm:pid986:intel_pch_rawclk] *ERROR* WARN ON: !HAS_PCH_SPLIT(dev)[drm:KMS:pid986:intel_dp_init_panel_power_sequencer_registers] panel power sequencer register settings: PP_ON 0xf9d000a, PP_OFF 0xf9d07d0, PP_DIV 0x9505
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] Turn eDP VDD on
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] eDP VDD already on
[drm:KMS:pid986:iic_dp_aux_xfer] dp_aux_xfer return 0
[drm:KMS:pid986:iic_dp_aux_xfer] dp_aux_xfer return 0
[drm:KMS:pid986:drm_edid_to_eld] ELD: no CEA Extension found
[drm:KMS:pid986:ironlake_edp_panel_vdd_off] Turn eDP VDD off 1
[drm:KMS:pid986:intel_panel_get_backlight] get backlight PWM = 7812
[drm:KMS:pid986:intel_gmbus_force_bit] enabling bit-banging on Philips I2C bus. force bit now 790148889
random: harvesting attach, 8 bytes (4 bits) from intel_sdvo_ddc_proxy397632
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0038 r(1)
[drm:KMS:pid986:intel_sdvo_read_byte] i2c transfer returned -6
[drm:KMS:pid986:intel_sdvo_init] No SDVO device found on SDVOB
[drm:KMS:pid986:intel_gmbus_force_bit] disabling bit-banging on Philips I2C bus. force bit now 790148888
[drm:KMS:pid986:intel_dp_i2c_init] i2c_init DPDDC-B
random: harvesting attach, 8 bytes (4 bits) from drm_iic_dp_aux1
[drm:KMS:pid986:intel_dp_aux_ch] dp_aux_ch timeout status 0x51450064
[drm:KMS:pid986:intel_dp_i2c_aux_ch] aux_ch failed -60
[drm:KMS:pid986:intel_dp_aux_ch] dp_aux_ch timeout status 0x51450064
[drm:KMS:pid986:intel_dp_i2c_aux_ch] aux_ch failed -60
drmn0: taking over the fictitious range 0x80000000-0x90000000
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:KMS:pid986:init_status_page] render ring hws offset: 0x00001000
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:KMS:pid986:init_status_page] bsd ring hws offset: 0x00025000
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:KMS:pid986:init_status_page] blitter ring hws offset: 0x00048000
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CRTC:3] hw state readout: enabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CRTC:5] hw state readout: disabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [ENCODER:8:DAC-8] hw state readout: disabled, pipe=0
[drm:KMS:pid986:intel_modeset_setup_hw_state] [ENCODER:9:TMDS-9] hw state readout: enabled, pipe=1
[drm:KMS:pid986:intel_modeset_setup_hw_state] [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[drm:KMS:pid986:intel_modeset_setup_hw_state] [ENCODER:19:TMDS-19] hw state readout: disabled, pipe=0
[drm:KMS:pid986:intel_modeset_setup_hw_state] [ENCODER:21:TMDS-21] hw state readout: disabled, pipe=0
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CONNECTOR:10:eDP-1] hw state readout: enabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CONNECTOR:7:VGA-1] hw state readout: disabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CONNECTOR:18:HDMI-A-1] hw state readout: disabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CONNECTOR:20:DP-1] hw state readout: disabled
[drm:KMS:pid986:intel_modeset_setup_hw_state] [CONNECTOR:22:HDMI-A-2] hw state readout: disabled
[drm:KMS:pid986:intel_sanitize_encoder] [ENCODER:9:TMDS-9] has active connectors but no active pipe!
[drm:KMS:pid986:intel_sanitize_encoder] [ENCODER:9:TMDS-9] manually disabled
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] Turn eDP VDD on
[drm:KMS:pid986:ironlake_wait_panel_power_cycle] Wait for panel power cycle
[drm:KMS:pid986:ironlake_wait_panel_status] mask b800000f value 00000000 status 2f680005 control 2f680005
error: [drm:pid986:ironlake_wait_panel_status] *ERROR* Panel status timeout: status 2f680005 control 2f680005
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] PCH_PP_STATUS: 0x2f680005 PCH_PP_CONTROL: 0xabcd000d
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] eDP was not running
[drm:KMS:pid986:intel_panel_actually_set_backlight] set backlight PWM = 0
[drm:KMS:pid986:ironlake_edp_backlight_off] 
[drm:KMS:pid986:ironlake_edp_panel_off] Turn eDP power off
[drm:KMS:pid986:ironlake_wait_panel_off] Wait for panel power off time
[drm:KMS:pid986:ironlake_wait_panel_status] mask b000000f value 00000000 status 2f680005 control abcd0000
error: [drm:pid986:ironlake_wait_panel_status] *ERROR* Panel status timeout: status 2f680005 control abcd0000
[drm:pid986:drm_calc_vbltimestamp_from_scanoutpos] crtc 0: Noop due to uninitialized mode.
[drm:KMS:pid986:valleyview_update_wm] Setting FIFO watermarks - A: plane=2, cursor=2, B: plane=2, cursor=2, SR: plane=0, cursor=0
[drm:KMS:pid986:intel_sanitize_crtc] [CRTC:3] hw state adjusted, was enabled, now disabled
[drm:KMS:pid986:intel_connector_check_state] [CONNECTOR:10:eDP-1]
error: [drm:pid986:intel_connector_check_state] *ERROR* wrong connector dpms state
error: [drm:pid986:intel_connector_check_state] *ERROR* active connector not linked to encoder
error: [drm:pid986:intel_connector_check_state] *ERROR* encoder->connectors_active not set
error: [drm:pid986:intel_connector_check_state] *ERROR* WARN ON: !encoder->base.crtc[drm:KMS:pid986:intel_modeset_check_state] [ENCODER:8:DAC-8]
[drm:KMS:pid986:intel_modeset_check_state] [ENCODER:9:TMDS-9]
error: [drm:pid986:intel_modeset_check_state] *ERROR* encoder's hw state doesn't match sw tracking (expected 0, found 1)
[drm:KMS:pid986:intel_modeset_check_state] [ENCODER:17:TMDS-17]
[drm:KMS:pid986:intel_modeset_check_state] [ENCODER:19:TMDS-19]
[drm:KMS:pid986:intel_modeset_check_state] [ENCODER:21:TMDS-21]
[drm:KMS:pid986:intel_modeset_check_state] [CRTC:3]
[drm:KMS:pid986:intel_modeset_check_state] [CRTC:5]
[drm:pid986:drm_irq_install] irq=260
info: [drm] Connector eDP-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.eDP-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector VGA-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.VGA-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector DP-1: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.DP-1
info: [drm]   - kern.vt.fb.default_mode
info: [drm] Connector HDMI-A-2: get mode from tunables:
info: [drm]   - kern.vt.fb.modes.HDMI-A-2
info: [drm]   - kern.vt.fb.default_mode
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:10:eDP-1]
error: [drm:pid986:intel_dp_check_edp] *ERROR* eDP powered off while attempting aux channel communication.
[drm:KMS:pid986:intel_dp_check_edp] Status 0x2f680005 Control 0xabcd0000
error: [drm:pid986:intel_dp_check_edp] *ERROR* eDP powered off while attempting aux channel communication.
[drm:KMS:pid986:intel_dp_check_edp] Status 0x2f680005 Control 0xabcd0000
[drm:KMS:pid986:intel_dp_detect] DPCD: 11 0A FF 41 00 00 01 FF 02 00 00 00 00 09 00

[drm:KMS:pid986:ironlake_edp_panel_vdd_on] Turn eDP VDD on
[drm:KMS:pid986:ironlake_wait_panel_power_cycle] Wait for panel power cycle
[drm:KMS:pid986:ironlake_wait_panel_status] mask b800000f value 00000000 status 2f680005 control abcd0000
error: [drm:pid986:ironlake_wait_panel_status] *ERROR* Panel status timeout: status 2f680005 control abcd0000
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] PCH_PP_STATUS: 0x2f680005 PCH_PP_CONTROL: 0xabcd0008
[drm:KMS:pid986:ironlake_edp_panel_vdd_on] eDP was not running
[drm:KMS:pid986:intel_dp_probe_oui] Sink OUI: 940bd5
[drm:KMS:pid986:intel_dp_probe_oui] Branch OUI: 000000
[drm:KMS:pid986:ironlake_edp_panel_vdd_off] Turn eDP VDD off 1
[drm:KMS:pid986:drm_edid_to_eld] ELD: no CEA Extension found
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:10:eDP-1] probed modes :
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 23:"1366x768" 60 72300 1366 1414 1446 1526 768 771 777 790 0x48 0x9
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:7:VGA-1]
[drm:KMS:pid986:valleyview_crt_detect_hotplug] trigger hotplug detect cycle: adpa=0x18
[drm:KMS:pid986:valleyview_crt_detect_hotplug] valleyview hotplug adpa=0x18, result 0
[drm:KMS:pid986:intel_crt_detect] CRT detected via hotplug
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 5 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 4 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 3 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 2 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 1 error 6
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:7:VGA-1] probed modes :
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 27:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 25:"800x600" 60 40000 800 840 968 1056 600 601 605 628 0x40 0x5
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 24:"800x600" 56 36000 800 824 896 1024 600 601 603 625 0x40 0x5
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 26:"848x480" 60 33750 848 864 976 1088 480 486 494 517 0x40 0x5
[drm:KMS:pid986:drm_mode_debug_printmodeline] Modeline 11:"640x480" 60 25175 640 656 752 800 480 489 492 525 0x40 0xa
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:18:HDMI-A-1]
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 5 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 4 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 3 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 2 error 6
[drm:KMS:pid986:gmbus_xfer] GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[drm:KMS:pid986:drm_do_probe_ddc_edid] iicbus_transfer countdown 1 error 6
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:18:HDMI-A-1] disconnected
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:20:DP-1]
[drm:KMS:pid986:intel_dp_detect] DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:20:DP-1] disconnected
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:22:HDMI-A-2]
info: [drm] GMBUS [i915 gmbus dpc] timed out, falling back to bit banging on pin 4
[drm:KMS:pid986:drm_edid_block_valid] Raw EDID:
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00
drmn0: warning: HDMI-A-2: EDID block 0 invalid.
[drm:KMS:pid986:drm_helper_probe_single_connector_modes] [CONNECTOR:22:HDMI-A-2] disconnected
[drm:KMS:pid986:drm_setup_crtcs] 
[drm:KMS:pid986:drm_enable_connectors] connector 10 enabled? yes
[drm:KMS:pid986:drm_enable_connectors] connector 7 enabled? yes
[drm:KMS:pid986:drm_enable_connectors] connector 18 enabled? no
[drm:KMS:pid986:drm_enable_connectors] connector 20 enabled? no
[drm:KMS:pid986:drm_enable_connectors] connector 22 enabled? no
[drm:KMS:pid986:drm_target_preferred] looking for cmdline mode on connector 10
[drm:KMS:pid986:drm_target_preferred] looking for preferred mode on connector 10
[drm:KMS:pid986:drm_target_preferred] found mode 1366x768
[drm:KMS:pid986:drm_target_preferred] looking for cmdline mode on connector 7
[drm:KMS:pid986:drm_target_preferred] looking for preferred mode on connector 7
[drm:KMS:pid986:drm_target_preferred] found mode 1024x768
[drm:KMS:pid986:drm_setup_crtcs] picking CRTCs for 8192x8192 config
[drm:KMS:pid986:drm_setup_crtcs] desired mode 1366x768 set on crtc 3
[drm:KMS:pid986:drm_setup_crtcs] desired mode 1024x768 set on crtc 5
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:KMS:pid986:intelfb_create] allocated 1366x768 (s 24bits) fb: 0x0006a000, bo 0xfffff8002f6ca800
fbd0 on drmn0
VT: Replacing driver "vga" with new "fb".
[drm:KMS:pid0:intel_crtc_set_config] [CRTC:3] [FB:30] #connectors=1 (x y) (0 0)
[drm:KMS:pid0:intel_set_config_compute_mode_changes] crtc has no fb, full mode set
[drm:KMS:pid0:intel_set_config_compute_mode_changes] modes are different, full mode set
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 28:"1366x768" 60 72300 1366 1414 1446 1526 768 771 777 790 0x48 0x9
[drm:KMS:pid0:intel_modeset_stage_output_state] encoder changed, full mode switch
[drm:KMS:pid0:intel_modeset_stage_output_state] [CONNECTOR:10:eDP-1] to [CRTC:3]
[drm:KMS:pid0:intel_modeset_stage_output_state] crtc changed, full mode switch
[drm:KMS:pid0:intel_crtc_set_config] attempting to set mode from userspace
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 28:"1366x768" 60 72300 1366 1414 1446 1526 768 771 777 790 0x48 0x9
[drm:KMS:pid0:intel_set_mode] set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[drm:KMS:pid0:intel_dp_mode_fixup] DP link computation with max lane count 1 max bw 0a pixel clock 72300KHz
[drm:KMS:pid0:intel_dp_mode_fixup] DP link bw 0a lane count 1 clock 270000 bpp 24
[drm:KMS:pid0:intel_dp_mode_fixup] DP link bw required 173520 available 216000
[drm:KMS:pid0:intel_modeset_adjusted_mode] [CRTC:3]
[drm:pid0:drm_vblank_get] enabling vblank on crtc 0, ret: -22
[drm:KMS:pid0:i9xx_crtc_mode_set] Mode for pipe A:
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 28:"1366x768" 60 72300 1366 1414 1446 1526 768 771 777 790 0x48 0x9
[drm:KMS:pid0:i9xx_update_plane] Writing base 0006A000 00000000 0 0 5504
[drm:KMS:pid0:valleyview_update_wm] Setting FIFO watermarks - A: plane=2, cursor=2, B: plane=2, cursor=2, SR: plane=0, cursor=0
[drm:KMS:pid0:intel_crtc_mode_set] [ENCODER:9:TMDS-9] set [MODE:28:1366x768]
[drm:KMS:pid0:g4x_check_srwm] SR watermark: display plane 57, cursor 6
[drm:KMS:pid0:g4x_check_srwm] SR watermark: display plane 111, cursor 10
[drm:KMS:pid0:valleyview_update_wm] Setting FIFO watermarks - A: plane=109, cursor=6, B: plane=2, cursor=2, SR: plane=57, cursor=10
error: [drm:pid0:assert_panel_unlocked] *ERROR* panel assertion failure, pipe A regs locked
error: [drm:pid0:intel_enable_dp] *ERROR* WARN ON: dp_reg & DP_PORT_EN[drm:pid0:drm_calc_timestamping_constants] crtc 3: hwmode: htotal 1526, vtotal 790, vdisplay 768
[drm:pid0:drm_calc_timestamping_constants] crtc 3: clock 270000 kHz framedur 4464290 linedur 5651, pixeldur 3
[drm:KMS:pid0:intel_connector_check_state] [CONNECTOR:10:eDP-1]
error: [drm:pid0:intel_connector_check_state] *ERROR* encoder active on the wrong pipe
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:8:DAC-8]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:9:TMDS-9]
error: [drm:pid0:intel_modeset_check_state] *ERROR* active encoder's pipe doesn't match(expected 0, found 1)
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:17:TMDS-17]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:19:TMDS-19]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:21:TMDS-21]
[drm:KMS:pid0:intel_modeset_check_state] [CRTC:3]
[drm:KMS:pid0:intel_modeset_check_state] [CRTC:5]
[drm:KMS:pid0:intel_crtc_set_config] [CRTC:5] [FB:30] #connectors=1 (x y) (0 0)
[drm:KMS:pid0:intel_set_config_compute_mode_changes] crtc has no fb, full mode set
[drm:KMS:pid0:intel_set_config_compute_mode_changes] modes are different, full mode set
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 29:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[drm:KMS:pid0:intel_modeset_stage_output_state] encoder changed, full mode switch
[drm:KMS:pid0:intel_modeset_stage_output_state] [CONNECTOR:10:eDP-1] to [CRTC:3]
[drm:KMS:pid0:intel_modeset_stage_output_state] [CONNECTOR:7:VGA-1] to [CRTC:5]
[drm:KMS:pid0:intel_modeset_stage_output_state] crtc changed, full mode switch
[drm:KMS:pid0:intel_crtc_set_config] attempting to set mode from userspace
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 29:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[drm:KMS:pid0:intel_set_mode] set mode pipe masks: modeset: 2, prepare: 2, disable: 0
[drm:KMS:pid0:intel_modeset_adjusted_mode] [CRTC:5]
[drm:pid0:drm_vblank_get] enabling vblank on crtc 1, ret: -22
error: [drm:pid0:intel_dpio_write] *ERROR* DPIO write wait timed out
error: [drm:pid0:intel_dpio_write] *ERROR* DPIO idle wait timed out
error: [drm:pid0:intel_dpio_write] *ERROR* DPIO idle wait timed out
error: [drm:pid0:intel_dpio_write] *ERROR* DPIO idle wait timed out
random: harvesting attach, 8 bytes (4 bits) from fbd0
error: [drm:pid0:vlv_update_pll] *ERROR* DPLL 1 failed to lock
error: [drm:pid0:intel_dpio_write] *ERROR* DPIO idle wait timed out
drmn0: More than 8 outputs detected
info: [drm] Initialized i915 1.6.0 20080730 for drmn0 on minor 0
[drm:KMS:pid0:i9xx_crtc_mode_set] Mode for pipe B:
random: harvesting attach, 8 bytes (4 bits) from drmn0
[drm:KMS:pid0:drm_mode_debug_printmodeline] Modeline 29:"1024x768" 60 65000 1024 1048 1184 1344 768 771 777 806 0x40 0xa
[drm:KMS:pid986:i915_get_device_id] Cannot find my device ID 1140 in i915 device list.
[drm:KMS:pid0:ironlake_wait_for_vblank] vblank wait timed out
[drm:KMS:pid0:ironlake_wait_for_vblank] vblank wait timed out
[drm:KMS:pid0:i9xx_update_plane] Writing base 0006A000 00000000 0 0 5504
[drm:KMS:pid0:g4x_check_srwm] SR watermark: display plane 57, cursor 6
[drm:KMS:pid0:g4x_check_srwm] SR watermark: display plane 111, cursor 10
[drm:KMS:pid0:valleyview_update_wm] Setting FIFO watermarks - A: plane=109, cursor=6, B: plane=2, cursor=2, SR: plane=57, cursor=10
[drm:KMS:pid0:intel_crtc_mode_set] [ENCODER:8:DAC-8] set [MODE:29:1024x768]
[drm:KMS:pid0:valleyview_update_wm] Setting FIFO watermarks - A: plane=109, cursor=6, B: plane=150, cursor=6, SR: plane=0, cursor=0
[drm:KMS:pid0:ironlake_wait_for_vblank] vblank wait timed out
[drm:pid0:drm_calc_timestamping_constants] crtc 5: hwmode: htotal 1344, vtotal 806, vdisplay 768
[drm:pid0:drm_calc_timestamping_constants] crtc 5: clock 65000 kHz framedur 16664856 linedur 20676, pixeldur 15
[drm:KMS:pid0:intel_connector_check_state] [CONNECTOR:10:eDP-1]
error: [drm:pid0:intel_connector_check_state] *ERROR* encoder active on the wrong pipe
[drm:KMS:pid0:intel_connector_check_state] [CONNECTOR:7:VGA-1]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:8:DAC-8]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:9:TMDS-9]
error: [drm:pid0:intel_modeset_check_state] *ERROR* active encoder's pipe doesn't match(expected 0, found 1)
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:17:TMDS-17]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:19:TMDS-19]
[drm:KMS:pid0:intel_modeset_check_state] [ENCODER:21:TMDS-21]
[drm:KMS:pid0:intel_modeset_check_state] [CRTC:3]
[drm:KMS:pid0:intel_modeset_check_state] [CRTC:5]
[drm:KMS:pid0:ironlake_panel_vdd_off_sync] PCH_PP_STATUS: 0x2f680005 PCH_PP_CONTROL: 0xabcd0000


--nextPart2084846.HHO0l36TJ6
Content-Type: text/plain; name="ValleyView.dmesg_capped.TryingX11.txt"
Content-Disposition: attachment; filename="ValleyView.dmesg_capped.TryingX11.txt"
Content-Transfer-Encoding: 8Bit

[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x80406469, nr=0x69, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc0086457, nr=0x57, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x20006458, nr=0x58, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc010645b, nr=0x5b, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc010645b, nr=0x5b, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc0106464, nr=0x64, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x800c645f, nr=0x5f, dev 0xfffff8002f008600, auth=1
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
AGP: agp_vlv_install_gtt_pte
AGP: agp_sb_write_gtt
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc010645b, nr=0x5b, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x80406469, nr=0x69, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc00c6466, nr=0x66, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x80406469, nr=0x69, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0xc0086457, nr=0x57, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x20006458, nr=0x58, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x8020645d, nr=0x5d, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x80406469, nr=0x69, dev 0xfffff8002f008600, auth=1
[drm:pid1036:drm_ioctl] pid=1036, cmd=0x20006458, nr=0x58, dev 0xfffff8002f008600, auth=1


--nextPart2084846.HHO0l36TJ6--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?>