summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-imx/gpio.c
blob: 8d5d4ce2b0452a1954674ac39f48c1dba15e7318 (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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
 *  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 <io.h>
#include <mach/imx-regs.h>
#include <gpio.h>
#include <init.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

struct imx_gpio_chip {
	void __iomem *base;
	struct gpio_chip chip;
};

static void imx_gpio_set_value(struct gpio_chip *chip, unsigned gpio, int value)
{
	struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
	void __iomem *base = imxgpio->base;
	u32 val;

	if (!base)
		return;

	val = readl(base + GPIO_DR);

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

	writel(val, base + GPIO_DR);
}

static int imx_gpio_direction_input(struct gpio_chip *chip, unsigned gpio)
{
	struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
	void __iomem *base = imxgpio->base;
	u32 val;

	if (!base)
		return -EINVAL;

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

	return 0;
}


static int imx_gpio_direction_output(struct gpio_chip *chip, unsigned gpio, int value)
{
	struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
	void __iomem *base = imxgpio->base;
	u32 val;

	gpio_set_value(gpio + chip->base, value);

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

	return 0;
}

static int imx_gpio_get_value(struct gpio_chip *chip, unsigned gpio)
{
	struct imx_gpio_chip *imxgpio = container_of(chip, struct imx_gpio_chip, chip);
	void __iomem *base = imxgpio->base;
	u32 val;

	val = readl(base + GPIO_PSR);

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

static struct gpio_ops imx_gpio_ops = {
	.direction_input = imx_gpio_direction_input,
	.direction_output = imx_gpio_direction_output,
	.get = imx_gpio_get_value,
	.set = imx_gpio_set_value,
};

static int imx_gpio_probe(struct device_d *dev)
{
	struct imx_gpio_chip *imxgpio;

	imxgpio = xzalloc(sizeof(*imxgpio));
	imxgpio->base = dev_request_mem_region(dev, 0);
	imxgpio->chip.ops = &imx_gpio_ops;
	imxgpio->chip.base = -1;
	imxgpio->chip.ngpio = 32;
	imxgpio->chip.dev = dev;
	gpiochip_add(&imxgpio->chip);

	dev_info(dev, "probed gpiochip%d with base %d\n", dev->id, imxgpio->chip.base);

	return 0;
}

static struct driver_d imx_gpio_driver = {
	.name = "imx-gpio",
	.probe = imx_gpio_probe,
};

static int imx_gpio_add(void)
{
	register_driver(&imx_gpio_driver);
	return 0;
}
coredevice_initcall(imx_gpio_add);