summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/gpio.c
blob: c6a59a66cf89b658556f73051eb4a5a0c1d76428 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 *  arch/arm/mach-imx/gpio.c
 *
 *  author: Sascha Hauer
 *  Created: april 20th, 2004
 *  Copyright: Synertronixx GmbH
 *
 *  Common code for i.MX machines
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */

#include <common.h>
#include <errno.h>
#include <asm/io.h>
#include <mach/imx-regs.h>

#if defined CONFIG_ARCH_IMX1 || defined CONFIG_ARCH_IMX21 || defined CONFIG_ARCH_IMX27
#define GPIO_DR		0x1c
#define GPIO_GDIR	0x00
#define GPIO_PSR	0x24
#define GPIO_ICR1	0x28
#define GPIO_ICR2	0x2C
#define GPIO_IMR	0x30
#define GPIO_ISR	0x34
#else
#define GPIO_DR		0x00
#define GPIO_GDIR	0x04
#define GPIO_PSR	0x08
#define GPIO_ICR1	0x0C
#define GPIO_ICR2	0x10
#define GPIO_IMR	0x14
#define GPIO_ISR	0x18
#define GPIO_ISR	0x18
#endif

extern void *imx_gpio_base[];
extern int imx_gpio_count;

static void *gpio_get_base(unsigned gpio)
{
	if (gpio >= imx_gpio_count)
		return 0;

	return imx_gpio_base[gpio / 32];
}

void gpio_set_value(unsigned gpio, int value)
{
	void *base = gpio_get_base(gpio);
	int shift = gpio % 32;
	u32 val;

	if (!base)
		return;

	val = readl(base + GPIO_DR);

	if (value)
		val |= 1 << shift;
	else
		val &= ~(1 << shift);

	writel(val, base + GPIO_DR);
}

int gpio_direction_input(unsigned gpio)
{
	void *base = gpio_get_base(gpio);
	int shift = gpio % 32;
	u32 val;

	if (!base)
		return -EINVAL;

	val = readl(base + GPIO_GDIR);
	val &= ~(1 << shift);
	writel(val, base + GPIO_GDIR);

	return 0;
}


int gpio_direction_output(unsigned gpio, int value)
{
	void *base = gpio_get_base(gpio);
	int shift = gpio % 32;
	u32 val;

	if (!base)
		return -EINVAL;

	gpio_set_value(gpio, value);

	val = readl(base + GPIO_GDIR);
	val |= 1 << shift;
	writel(val, base + GPIO_GDIR);

	return 0;
}

int gpio_get_value(unsigned gpio)
{
	void *base = gpio_get_base(gpio);
	int shift = gpio % 32;
	u32 val;

	if (!base)
		return -EINVAL;

	val = readl(base + GPIO_PSR);

	return val & (1 << shift) ? 1 : 0;
}