From: Aurelien Jarno <aurelien@aurel32.net>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-mips@linux-mips.org
Subject: [PATCH -mm][MIPS] Add GPIO support to the BCM947xx platform
Date: Wed, 15 Aug 2007 13:24:03 +0200 [thread overview]
Message-ID: <20070815112403.GA17615@hall.aurel32.net> (raw)
The patch below adds GPIO support to the BCM947xx platform. It will be
used by a GPIO LED driver.
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
--- a/include/asm-mips/mach-bcm947xx/gpio.h
+++ b/include/asm-mips/mach-bcm947xx/gpio.h
@@ -0,0 +1,89 @@
+/*
+ * This file is subject to the terms and conditions of the GNU General Public
+ * License. See the file "COPYING" in the main directory of this archive
+ * for more details.
+ *
+ * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net>
+ */
+
+#ifndef __BCM947XX_GPIO_H
+#define __BCM947XX_GPIO_H
+
+#include <linux/ssb/ssb.h>
+#include <linux/ssb/ssb_driver_chipcommon.h>
+#include <linux/ssb/ssb_driver_extif.h>
+#include <asm/mach-bcm947xx/bcm947xx.h>
+
+static inline int gpio_request(unsigned gpio, const char *label)
+{
+ return 0;
+}
+
+static inline void gpio_free(unsigned gpio)
+{
+}
+
+static inline int gpio_to_irq(unsigned gpio)
+{
+ if (ssb_bcm947xx.chipco.dev)
+ return ssb_mips_irq(ssb_bcm947xx.chipco.dev) + 2;
+ else if (ssb_bcm947xx.extif.dev)
+ return ssb_mips_irq(ssb_bcm947xx.extif.dev) + 2;
+ else
+ return -EINVAL;
+}
+
+static inline int gpio_get_value(unsigned gpio)
+{
+ if (ssb_bcm947xx.chipco.dev)
+ return ssb_chipco_gpio_in(&ssb_bcm947xx.chipco, 1 << gpio);
+ else if (ssb_bcm947xx.extif.dev)
+ return ssb_extif_gpio_in(&ssb_bcm947xx.extif, 1 << gpio);
+ else
+ return 0;
+}
+
+static inline void gpio_set_value(unsigned gpio, int value)
+{
+ if (ssb_bcm947xx.chipco.dev)
+ ssb_chipco_gpio_out(&ssb_bcm947xx.chipco,
+ 1 << gpio,
+ value ? 1 << gpio : 0);
+ else if (ssb_bcm947xx.extif.dev)
+ ssb_extif_gpio_out(&ssb_bcm947xx.extif,
+ 1 << gpio,
+ value ? 1 << gpio : 0);
+}
+
+static inline int gpio_direction_input(unsigned gpio)
+{
+ if (ssb_bcm947xx.chipco.dev)
+ ssb_chipco_gpio_outen(&ssb_bcm947xx.chipco,
+ 1 << gpio, 0);
+ else if (ssb_bcm947xx.extif.dev)
+ ssb_extif_gpio_outen(&ssb_bcm947xx.extif,
+ 1 << gpio, 0);
+ else
+ return -EINVAL;
+ return 0;
+}
+
+static inline int gpio_direction_output(unsigned gpio, int value)
+{
+ gpio_set_value(gpio, value);
+
+ if (ssb_bcm947xx.chipco.dev)
+ ssb_chipco_gpio_outen(&ssb_bcm947xx.chipco,
+ 1 << gpio, 1 << gpio);
+ else if (ssb_bcm947xx.extif.dev)
+ ssb_extif_gpio_outen(&ssb_bcm947xx.extif,
+ 1 << gpio, 1 << gpio);
+ else
+ return -EINVAL;
+ return 0;
+}
+
+/* cansleep wrappers */
+#include <asm-generic/gpio.h>
+
+#endif /* __BCM947XX_GPIO_H */
--
.''`. Aurelien Jarno | GPG: 1024D/F1BCDB73
: :' : Debian developer | Electrical Engineer
`. `' aurel32@debian.org | aurelien@aurel32.net
`- people.debian.org/~aurel32 | www.aurel32.net
reply other threads:[~2007-08-15 11:27 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070815112403.GA17615@hall.aurel32.net \
--to=aurelien@aurel32.net \
--cc=akpm@linux-foundation.org \
--cc=linux-mips@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox