summaryrefslogtreecommitdiffstats
path: root/drivers/gpio/Makefile
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2013-12-12 11:18:41 +0200
committerLinus Walleij <linus.walleij@linaro.org>2013-12-12 14:33:14 +0100
commit3b31d0eca5fd8d7d485c7cb7319a5cd6a3207726 (patch)
treeb5e0c8075f4f2b0bca12b8d15e8d7048ce2b1168 /drivers/gpio/Makefile
parentbcc0562c776e4b09c7b9f24cddb8724fbe7a3fa5 (diff)
downloadlinux-stable-3b31d0eca5fd8d7d485c7cb7319a5cd6a3207726.tar.gz
linux-stable-3b31d0eca5fd8d7d485c7cb7319a5cd6a3207726.tar.bz2
linux-stable-3b31d0eca5fd8d7d485c7cb7319a5cd6a3207726.zip
gpio: driver for Xtensa GPIO32
GPIO32 is a standard optional extension to the Xtensa architecture core that provides preconfigured output and input ports for intra SoC signaling. The GPIO32 option is implemented as 32bit Tensilica Instruction Extension (TIE) output state called EXPSTATE, and 32bit input wire called IMPWIRE. This driver treats input and output states as two distinct devices. v3: * Use BUG() in xtensa_impwire_set_value() to indicate that it should never be called (Linus Walleij) v2: * Address the comments of Linus Walleij: - Add a few comments - Expand commit log message - Use the BIT() macro for bit offsets - Rewrite CPENABLE handling as static inlines - Use device_initcall() * Depend on !SMP for reason explained in the comments (Marc Gauthier) * Use XCHAL_CP_ID_XTIOP to enable/disable GPIO32 only Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/Makefile')
-rw-r--r--drivers/gpio/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile
index ee95154cb1d2..699e7cd96584 100644
--- a/drivers/gpio/Makefile
+++ b/drivers/gpio/Makefile
@@ -96,3 +96,4 @@ obj-$(CONFIG_GPIO_WM831X) += gpio-wm831x.o
obj-$(CONFIG_GPIO_WM8350) += gpio-wm8350.o
obj-$(CONFIG_GPIO_WM8994) += gpio-wm8994.o
obj-$(CONFIG_GPIO_XILINX) += gpio-xilinx.o
+obj-$(CONFIG_GPIO_XTENSA) += gpio-xtensa.o