linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gpio_cs5535: disable AUX on output
@ 2007-12-03 17:14 Ben Gardner
  0 siblings, 0 replies; only message in thread
From: Ben Gardner @ 2007-12-03 17:14 UTC (permalink / raw)
  To: linux-kernel; +Cc: Andrew Morton

The AMD CS5535/CS5536 GPIO has two alternate output modes: AUX-1 and AUX-2.
When either AUX is enabled, the cs5535_gpio driver cannot control the output.

Some BIOS code for the Geode processor enables AUX-1 for GPIO-1, which
configures it as the PC BEEP output.

This patch will disable AUX-1 and AUX-2 when the user enables output.

Signed-of-by: Ben Gardner <gardner.ben@gmail.com>

--- linux-2.6.23.1.orig/drivers/char/cs5535_gpio.c	2007-10-12
11:43:44.000000000 -0500
+++ linux-2.6.23.1/drivers/char/cs5535_gpio.c	2007-12-03
09:25:49.000000000 -0600
@@ -104,6 +104,11 @@
 		for (j = 0; j < ARRAY_SIZE(rm); j++) {
 			if (c == rm[j].on) {
 				outl(m1, base + rm[j].wr_offset);
+				/* If enabling output, turn off AUX 1 and AUX 2 */
+				if (c == 'O') {
+					outl(m0, base + 0x10);
+					outl(m0, base + 0x14);
+				}
 				break;
 			} else if (c == rm[j].off) {
 				outl(m0, base + rm[j].wr_offset);

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-12-03 17:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-03 17:14 [PATCH] gpio_cs5535: disable AUX on output Ben Gardner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).