blob: 477e0206e016d1a5075692059fab1d83715ee315 [file] [log] [blame]
David Brownell4c20386c2007-02-12 00:53:11 -08001#ifndef _ARCH_ARM_GPIO_H
2#define _ARCH_ARM_GPIO_H
3
Peter De Schrijver (NVIDIA)44986ab2011-12-21 10:48:45 +01004#if CONFIG_ARCH_NR_GPIO > 0
Stephen Warrenca950232012-01-05 21:36:27 +01005#define ARCH_NR_GPIOS CONFIG_ARCH_NR_GPIO
Peter De Schrijver (NVIDIA)44986ab2011-12-21 10:48:45 +01006#endif
7
David Brownell4c20386c2007-02-12 00:53:11 -08008/* not all ARM platforms necessarily support this API ... */
Rob Herring01464222012-08-28 13:06:41 -05009#ifdef CONFIG_NEED_MACH_GPIO_H
Russell Kinga09e64f2008-08-05 16:14:15 +010010#include <mach/gpio.h>
Rob Herring01464222012-08-28 13:06:41 -050011#endif
David Brownell4c20386c2007-02-12 00:53:11 -080012
Russell King8f3c4532011-08-08 13:58:28 +010013#ifndef __ARM_GPIOLIB_COMPLEX
Russell King22fe6782011-07-26 11:04:51 +010014/* Note: this may rely upon the value of ARCH_NR_GPIOS set in mach/gpio.h */
15#include <asm-generic/gpio.h>
16
17/* The trivial gpiolib dispatchers */
18#define gpio_get_value __gpio_get_value
19#define gpio_set_value __gpio_set_value
20#define gpio_cansleep __gpio_cansleep
21#endif
22
Russell King01e7dc82011-07-26 11:29:42 +010023/*
24 * Provide a default gpio_to_irq() which should satisfy every case.
25 * However, some platforms want to do this differently, so allow them
26 * to override it.
27 */
28#ifndef gpio_to_irq
29#define gpio_to_irq __gpio_to_irq
30#endif
31
David Brownell4c20386c2007-02-12 00:53:11 -080032#endif /* _ARCH_ARM_GPIO_H */