KMS on Sandy bridge error device_attach

Konstantin Belousov kostikbel at gmail.com
Sat Jun 23 12:08:46 UTC 2012


On Sat, Jun 23, 2012 at 01:38:35PM +0200, Thomas Zander wrote:
> On Sat, Jun 23, 2012 at 10:59 AM, Konstantin Belousov
> <kostikbel at gmail.com> wrote:
> > Ok, but you did not tried to load i915kms, at least the dmesg you posted
> > lacks an indication.
> 
> Actually, it did. i915kms was in loader.conf.
> 
> dmesg, line 37f:
> Preloaded elf obj module "/boot/kernel/i915kms.ko" at 0xffffffff8113a820.
> Preloaded elf obj module "/boot/kernel/drm2.ko" at 0xffffffff8113ae88.
> ...
> dmesg, lines 482-489:
> vgapci0: <VGA-compatible display> port 0xf000-0xf03f mem
> 0xfb400000-0xfb7fffff,0xd0000000-0xdfffffff irq 16 at device 2.0 on
> pci0
> drmn0: <Intel SandyBridge (M)> on vgapci0
> vgapci0: attempting to allocate 1 MSI vectors (1 supported)
> msi: routing MSI IRQ 264 to local APIC 0 vector 59
> vgapci0: using IRQ 264 for MSI
> info: [drm] MSI enabled 1 message(s)
> error: [drm:pid0:drm_load] *ERROR* Card isn't AGP, or couldn't initialize AGP.
> device_attach: drmn0 attach returned 12
Do you have agp.ko loaded from loader.conf ? If not, what happens
if you add it there ?

The i915kms does have a dependency on agp, so it should have been
auto-loaded if not loaded explicitely. And agp should be probed at
least.

Loading i915kms from loader.conf is something I do not encourage
right now, since you loose VGA console somewhere during the kernel
startup.
> 
> > Let me repeat: I need to see the lines related to the agp probe and
> > attachment, I believe that it will show us the next direction to
> > investigate.
> 
> I did understand what you were after, but sorry, there is nothing more
> in the dmesg output. Do I need to perform additional steps besides
> verbose boot to obtain this data?

Hmm, I probably see an issue. Please try the patch below.

diff --git a/sys/dev/agp/agp_i810.c b/sys/dev/agp/agp_i810.c
index a181ad7..c0f592c 100644
--- a/sys/dev/agp/agp_i810.c
+++ b/sys/dev/agp/agp_i810.c
@@ -700,7 +700,7 @@ static const struct agp_i810_match {
 		.driver = &agp_i810_sb_driver
 	},
 	{
-		.devid = 0x01088086,
+		.devid = 0x010a8086,
 		.name = "SandyBridge server IG",
 		.driver = &agp_i810_sb_driver
 	},
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20120623/8a0cbb9c/attachment.pgp


More information about the freebsd-stable mailing list