From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rafael J. Wysocki" Subject: Re: [Q] How to tell we're using the KMS (during suspend/resume) outside the graphics driver Date: Tue, 9 Mar 2010 22:08:28 +0100 Message-ID: <201003092208.28175.rjw@sisk.pl> References: <201003062236.09801.rjw@sisk.pl> <201003091234.59598.rjw@sisk.pl> Mime-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org To: James Simmons Cc: Luca Tettamanti , Matthew Garrett , Linux PCI , LKML , Jesse Barnes , ACPI Devel Maling List , pm list , dri-devel@lists.sourceforge.net List-Id: linux-acpi@vger.kernel.org On Tuesday 09 March 2010, James Simmons wrote: > > > > > Second, in the KMS case, we'd be able to skip the kernel VT switch, because > > > > the KMS driver uses its own framebuffer anyway. > > > > > > > > So, is there any reasonable way to check that from the outside of the graphics > > > > driver? It should be general enough to cover the cases when there are two > > > > graphics adapters with different drivers in the system and so forth. > > > > > > Inside the kernel? If you have a struct pci_dev you can get the > > > associated struct drm_device with pci_get_drvdata and then check the > > > KMS feature: drm_core_check_feature(dev, DRIVER_MODESET). > > > > Yeah, I know that. > > > > > I'm note sure how to check that a device is graphic card though :| > > > > Well, that's the "outside of the graphics driver" part of my question. :-) > > if ((pdev->class >> 8) == PCI_CLASS_DISPLAY_VGA) > .... I'm not sure if searching through all PCI devices really is an option. Thanks anyway. Rafael