2 * arch/arm/plat-orion/include/plat/gpio.h
4 * Marvell Orion SoC GPIO handling.
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
14 #include <linux/init.h>
17 * GENERIC_GPIO primitives.
19 #define gpio_get_value __gpio_get_value
20 #define gpio_set_value __gpio_set_value
21 #define gpio_cansleep __gpio_cansleep
24 * Orion-specific GPIO API extensions.
26 void orion_gpio_set_unused(unsigned pin
);
27 void orion_gpio_set_blink(unsigned pin
, int blink
);
29 #define GPIO_INPUT_OK (1 << 0)
30 #define GPIO_OUTPUT_OK (1 << 1)
31 void orion_gpio_set_valid(unsigned pin
, int mode
);
33 /* Initialize gpiolib. */
34 void __init
orion_gpio_init(void);
37 * GPIO interrupt handling.
39 extern struct irq_chip orion_gpio_irq_chip
;
40 void orion_gpio_irq_handler(int irqoff
);