All of lore.kernel.org
 help / color / mirror / Atom feed
* Enable GSE interrupt on Broadwell and later?
@ 2015-12-01 20:53 Mark Kettenis
  2015-12-01 21:46 ` Ville Syrjälä
  0 siblings, 1 reply; 2+ messages in thread
From: Mark Kettenis @ 2015-12-01 20:53 UTC (permalink / raw)
  To: intel-gfx

I just committed the following cange to the OpenBSD inteldrm(4)
driver, which currently is mostly a port of the Linux 3.14 codebase.
This enables the GSE interrupt on Broadwell.  Without this interrupt,
the ASLE backlight brightness mechanism doesn't work.  I've verified
that this fixed the ACPI _BCM/_BCQ-based brightness mechanism on a
MacBookPro12,1 and a 3rd gen Lenovo X1 Carbon.  And as far as I can
tell the current Linux code still doesn't enable the GSE interrupt.
So people over there might want to consider a diff like the one below.

Cheers.

Mark


Index: i915_irq.c
===================================================================
RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_irq.c,v
retrieving revision 1.29
diff -u -p -r1.29 i915_irq.c
--- i915_irq.c	23 Sep 2015 23:12:12 -0000	1.29
+++ i915_irq.c	1 Dec 2015 20:43:05 -0000
@@ -3019,6 +3019,10 @@ static void gen8_de_irq_postinstall(stru
 	I915_WRITE(GEN8_DE_PORT_IMR, ~GEN8_AUX_CHANNEL_A);
 	I915_WRITE(GEN8_DE_PORT_IER, GEN8_AUX_CHANNEL_A);
 	POSTING_READ(GEN8_DE_PORT_IER);
+
+	I915_WRITE(GEN8_DE_MISC_IMR, ~GEN8_DE_MISC_GSE);
+	I915_WRITE(GEN8_DE_MISC_IER, GEN8_DE_MISC_GSE);
+	POSTING_READ(GEN8_DE_MISC_IER);
 }
 
 static int gen8_irq_postinstall(struct drm_device *dev)
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Enable GSE interrupt on Broadwell and later?
  2015-12-01 20:53 Enable GSE interrupt on Broadwell and later? Mark Kettenis
@ 2015-12-01 21:46 ` Ville Syrjälä
  0 siblings, 0 replies; 2+ messages in thread
From: Ville Syrjälä @ 2015-12-01 21:46 UTC (permalink / raw)
  To: Mark Kettenis; +Cc: intel-gfx

On Tue, Dec 01, 2015 at 09:53:50PM +0100, Mark Kettenis wrote:
> I just committed the following cange to the OpenBSD inteldrm(4)
> driver, which currently is mostly a port of the Linux 3.14 codebase.
> This enables the GSE interrupt on Broadwell.  Without this interrupt,
> the ASLE backlight brightness mechanism doesn't work.  I've verified
> that this fixed the ACPI _BCM/_BCQ-based brightness mechanism on a
> MacBookPro12,1 and a 3rd gen Lenovo X1 Carbon.  And as far as I can
> tell the current Linux code still doesn't enable the GSE interrupt.
> So people over there might want to consider a diff like the one below.

Yep, looks like you're correct, we still don't enable it. Let's cook up
a patch...

> 
> Cheers.
> 
> Mark
> 
> 
> Index: i915_irq.c
> ===================================================================
> RCS file: /cvs/src/sys/dev/pci/drm/i915/i915_irq.c,v
> retrieving revision 1.29
> diff -u -p -r1.29 i915_irq.c
> --- i915_irq.c	23 Sep 2015 23:12:12 -0000	1.29
> +++ i915_irq.c	1 Dec 2015 20:43:05 -0000
> @@ -3019,6 +3019,10 @@ static void gen8_de_irq_postinstall(stru
>  	I915_WRITE(GEN8_DE_PORT_IMR, ~GEN8_AUX_CHANNEL_A);
>  	I915_WRITE(GEN8_DE_PORT_IER, GEN8_AUX_CHANNEL_A);
>  	POSTING_READ(GEN8_DE_PORT_IER);
> +
> +	I915_WRITE(GEN8_DE_MISC_IMR, ~GEN8_DE_MISC_GSE);
> +	I915_WRITE(GEN8_DE_MISC_IER, GEN8_DE_MISC_GSE);
> +	POSTING_READ(GEN8_DE_MISC_IER);
>  }
>  
>  static int gen8_irq_postinstall(struct drm_device *dev)
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-12-01 21:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-01 20:53 Enable GSE interrupt on Broadwell and later? Mark Kettenis
2015-12-01 21:46 ` Ville Syrjälä

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.