diff options
author | Anton Vorontsov <avorontsov@ru.mvista.com> | 2008-04-11 09:06:45 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-16 17:46:11 -0400 |
commit | 863fbf4966a7ac301a4077e4a04d73e8abfdd7b2 (patch) | |
tree | bbe7d6f08f9dbd706882c48024d41fc2578c3370 /drivers/of/Kconfig | |
parent | a2879fef7ccd1e0891a8f147c20ce6f1501e373b (diff) |
[POWERPC] OF helpers for the GPIO API
This implements various helpers to support OF bindings for the GPIO
LIB API.
Previously this was PowerPC specific, but it seems this code isn't
arch-dependent anyhow, so let's place it into of/.
SPARC will not see this addition yet, real hardware seem to not use
GPIOs at all. But this might change:
http://www.leox.org/docs/faq_MLleon.html
"16-bit I/O port" sounds promising. :-)
Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'drivers/of/Kconfig')
-rw-r--r-- | drivers/of/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/of/Kconfig b/drivers/of/Kconfig index c03072b12f42..3354ad766a49 100644 --- a/drivers/of/Kconfig +++ b/drivers/of/Kconfig | |||
@@ -1,3 +1,9 @@ | |||
1 | config OF_DEVICE | 1 | config OF_DEVICE |
2 | def_bool y | 2 | def_bool y |
3 | depends on OF && (SPARC || PPC_OF) | 3 | depends on OF && (SPARC || PPC_OF) |
4 | |||
5 | config OF_GPIO | ||
6 | def_bool y | ||
7 | depends on OF && PPC_OF && HAVE_GPIO_LIB | ||
8 | help | ||
9 | OpenFirmware GPIO accessors | ||