diff options
| author | Michel Dänzer <michel@tungstengraphics.com> | 2006-08-11 18:06:46 +0200 | 
|---|---|---|
| committer | Michel Dänzer <michel@tungstengraphics.com> | 2006-09-28 15:41:35 +0200 | 
| commit | 0c7d7f43610f705e8536a949cf2407efaa5ec217 (patch) | |
| tree | 00766a452a742813db369c32f86200c7a296a84d /linux-core | |
| parent | ab351505f36a6c66405ea7604378268848340a42 (diff) | |
Add support for secondary vertical blank interrupt to i915 driver.
When the vertical blank interrupt is enabled for both pipes, pipe A is
considered primary and pipe B secondary. When it's only enabled for one pipe,
it's always considered primary for backwards compatibility.
Diffstat (limited to 'linux-core')
| -rw-r--r-- | linux-core/i915_drv.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/i915_drv.c b/linux-core/i915_drv.c index c6e25f9b..209500be 100644 --- a/linux-core/i915_drv.c +++ b/linux-core/i915_drv.c @@ -45,12 +45,14 @@ static struct drm_driver driver = {  	 */  	.driver_features =  	    DRIVER_USE_AGP | DRIVER_REQUIRE_AGP | /* DRIVER_USE_MTRR | */ -	    DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_IRQ_VBL, +	    DRIVER_HAVE_IRQ | DRIVER_IRQ_SHARED | DRIVER_IRQ_VBL | +	    DRIVER_IRQ_VBL2,  	.load = i915_driver_load,  	.lastclose = i915_driver_lastclose,  	.preclose = i915_driver_preclose,  	.device_is_agp = i915_driver_device_is_agp,  	.vblank_wait = i915_driver_vblank_wait, +	.vblank_wait2 = i915_driver_vblank_wait2,  	.irq_preinstall = i915_driver_irq_preinstall,  	.irq_postinstall = i915_driver_irq_postinstall,  	.irq_uninstall = i915_driver_irq_uninstall,  | 
