diff options
author | Erik Gilling <konkers@android.com> | 2010-03-15 22:40:06 -0400 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2010-08-05 17:57:02 -0400 |
commit | 3c92db9ac0ca3eee8e46e2424b6c074e2e394ad9 (patch) | |
tree | 91bce4b3fa4cd34e415476a903d71dd759f9d598 /arch/arm/mach-tegra/include | |
parent | 2d5cd9a38b3792426115adbedce539bd45ee640e (diff) |
[ARM] tegra: add GPIO support
v2: fixes from Mike Rapoport:
- move gpio-names.h to arch/arm/mach-tegra
fixes from Russell King
- include linux/io.h and linux/gpio.h instead of asm/io.h
and asm/gpio.h
additional changes:
- add macros to convert between irq and gpio numbers for platform data
- change for_each_bit to for_each_set_bit in gpio.c
v3:
- minor bugfixes
Signed-off-by: Colin Cross <ccross@android.com>
Signed-off-by: Erik Gilling <konkers@android.com>
Diffstat (limited to 'arch/arm/mach-tegra/include')
-rw-r--r-- | arch/arm/mach-tegra/include/mach/gpio.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/include/mach/gpio.h b/arch/arm/mach-tegra/include/mach/gpio.h new file mode 100644 index 000000000000..540e822e50f7 --- /dev/null +++ b/arch/arm/mach-tegra/include/mach/gpio.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-tegra/include/mach/gpio.h | ||
3 | * | ||
4 | * Copyright (C) 2010 Google, Inc. | ||
5 | * | ||
6 | * Author: | ||
7 | * Erik Gilling <konkers@google.com> | ||
8 | * | ||
9 | * This software is licensed under the terms of the GNU General Public | ||
10 | * License version 2, as published by the Free Software Foundation, and | ||
11 | * may be copied, distributed, and modified under those terms. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | */ | ||
19 | |||
20 | #ifndef __MACH_TEGRA_GPIO_H | ||
21 | #define __MACH_TEGRA_GPIO_H | ||
22 | |||
23 | #include <mach/irqs.h> | ||
24 | |||
25 | #define ARCH_NR_GPIOS INT_GPIO_NR | ||
26 | |||
27 | #include <asm-generic/gpio.h> | ||
28 | |||
29 | #define gpio_get_value __gpio_get_value | ||
30 | #define gpio_set_value __gpio_set_value | ||
31 | #define gpio_cansleep __gpio_cansleep | ||
32 | |||
33 | #define TEGRA_GPIO_TO_IRQ(gpio) (INT_GPIO_BASE + (gpio)) | ||
34 | #define TEGRA_IRQ_TO_GPIO(irq) ((gpio) - INT_GPIO_BASE) | ||
35 | |||
36 | static inline int gpio_to_irq(unsigned int gpio) | ||
37 | { | ||
38 | if (gpio < ARCH_NR_GPIOS) | ||
39 | return INT_GPIO_BASE + gpio; | ||
40 | return -EINVAL; | ||
41 | } | ||
42 | |||
43 | static inline int irq_to_gpio(unsigned int irq) | ||
44 | { | ||
45 | if ((irq >= INT_GPIO_BASE) && (irq < INT_GPIO_BASE + INT_GPIO_NR)) | ||
46 | return irq - INT_GPIO_BASE; | ||
47 | return -EINVAL; | ||
48 | } | ||
49 | |||
50 | void tegra_gpio_enable(int gpio); | ||
51 | void tegra_gpio_disable(int gpio); | ||
52 | |||
53 | #endif | ||