pinctrl: add abx500 pinctrl driver core
[deliverable/linux.git] / include / linux / mfd / abx500 / ab8500-gpio.h
CommitLineData
0cb3fcd7
BB
1/*
2 * Copyright ST-Ericsson 2010.
3 *
4 * Author: Bibek Basu <bibek.basu@stericsson.com>
5 * Licensed under GPLv2.
6 */
7
8#ifndef _AB8500_GPIO_H
9#define _AB8500_GPIO_H
10
11/*
12 * Platform data to register a block: only the initial gpio/irq number.
d6255529
LW
13 * Array sizes are large enough to contain all AB8500 and AB9540 GPIO
14 * registers.
0cb3fcd7
BB
15 */
16
0493e649 17struct abx500_gpio_platform_data {
0cb3fcd7
BB
18 int gpio_base;
19 u32 irq_base;
0493e649
PC
20};
21
22enum abx500_gpio_pull_updown {
23 ABX500_GPIO_PULL_DOWN = 0x0,
24 ABX500_GPIO_PULL_NONE = 0x1,
25 ABX500_GPIO_PULL_UP = 0x3,
26};
27
28enum abx500_gpio_vinsel {
29 ABX500_GPIO_VINSEL_VBAT = 0x0,
30 ABX500_GPIO_VINSEL_VIN_1V8 = 0x1,
31 ABX500_GPIO_VINSEL_VDD_BIF = 0x2,
0cb3fcd7
BB
32};
33
34#endif /* _AB8500_GPIO_H */
This page took 0.19045 seconds and 5 git commands to generate.