diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2013-09-18 07:31:15 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-10-29 16:24:05 -0400 |
commit | 62cf3bc0b59cfb70a021784af914c6ea464d3af7 (patch) | |
tree | 2936407b84050a2c42f3ad4a99f182b3c1a56d05 /arch/mips/bcm47xx | |
parent | 84e8bb5e9284b6833f303947a6966e87f406574a (diff) |
MIPS: BCM47XX: Get GPIO pin from nvram configuration
The nvram contains some gpio configuration for boards. It is stored in
a gpio<number>=name format e.g.
gpio8=wps_button
gpio4=robo_reset
This patches adds a function to parse these entries, so other driver
can use it.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5841/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/bcm47xx')
-rw-r--r-- | arch/mips/bcm47xx/nvram.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/arch/mips/bcm47xx/nvram.c b/arch/mips/bcm47xx/nvram.c index cc40b74940f5..b4c585b1c62e 100644 --- a/arch/mips/bcm47xx/nvram.c +++ b/arch/mips/bcm47xx/nvram.c | |||
@@ -190,3 +190,23 @@ int bcm47xx_nvram_getenv(char *name, char *val, size_t val_len) | |||
190 | return -ENOENT; | 190 | return -ENOENT; |
191 | } | 191 | } |
192 | EXPORT_SYMBOL(bcm47xx_nvram_getenv); | 192 | EXPORT_SYMBOL(bcm47xx_nvram_getenv); |
193 | |||
194 | int bcm47xx_nvram_gpio_pin(const char *name) | ||
195 | { | ||
196 | int i, err; | ||
197 | char nvram_var[10]; | ||
198 | char buf[30]; | ||
199 | |||
200 | for (i = 0; i < 16; i++) { | ||
201 | err = snprintf(nvram_var, sizeof(nvram_var), "gpio%i", i); | ||
202 | if (err <= 0) | ||
203 | continue; | ||
204 | err = bcm47xx_nvram_getenv(nvram_var, buf, sizeof(buf)); | ||
205 | if (err <= 0) | ||
206 | continue; | ||
207 | if (!strcmp(name, buf)) | ||
208 | return i; | ||
209 | } | ||
210 | return -ENOENT; | ||
211 | } | ||
212 | EXPORT_SYMBOL(bcm47xx_nvram_gpio_pin); | ||