blob: 53a06734147f39881d6c29a9132aab2060e14003 [file] [log] [blame]
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +01001/*
2 * Copyright (C) 2009
3 * Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
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 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#include <common.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020024#ifdef CONFIG_MX31
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010025#include <asm/arch/mx31-regs.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020026#endif
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000027#if defined(CONFIG_MX51) || defined(CONFIG_MX53)
Stefano Babicc4ea1422010-07-06 17:05:06 +020028#include <asm/arch/imx-regs.h>
29#endif
30#include <asm/io.h>
31#include <mxc_gpio.h>
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010032
33/* GPIO port description */
34static unsigned long gpio_ports[] = {
Stefano Babicc4ea1422010-07-06 17:05:06 +020035 [0] = GPIO1_BASE_ADDR,
36 [1] = GPIO2_BASE_ADDR,
37 [2] = GPIO3_BASE_ADDR,
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000038#if defined(CONFIG_MX51) || defined(CONFIG_MX53)
Stefano Babicc4ea1422010-07-06 17:05:06 +020039 [3] = GPIO4_BASE_ADDR,
40#endif
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000041#if defined(CONFIG_MX53)
42 [4] = GPIO5_BASE_ADDR,
43 [5] = GPIO6_BASE_ADDR,
44 [6] = GPIO7_BASE_ADDR,
45#endif
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010046};
47
Stefano Babicc4ea1422010-07-06 17:05:06 +020048int mxc_gpio_direction(unsigned int gpio, enum mxc_gpio_direction direction)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010049{
50 unsigned int port = gpio >> 5;
Stefano Babicc4ea1422010-07-06 17:05:06 +020051 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010052 u32 l;
53
54 if (port >= ARRAY_SIZE(gpio_ports))
55 return 1;
56
57 gpio &= 0x1f;
58
Stefano Babicc4ea1422010-07-06 17:05:06 +020059 regs = (struct gpio_regs *)gpio_ports[port];
60
61 l = readl(&regs->gpio_dir);
62
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010063 switch (direction) {
Stefano Babicc4ea1422010-07-06 17:05:06 +020064 case MXC_GPIO_DIRECTION_OUT:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010065 l |= 1 << gpio;
66 break;
Stefano Babicc4ea1422010-07-06 17:05:06 +020067 case MXC_GPIO_DIRECTION_IN:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010068 l &= ~(1 << gpio);
69 }
Stefano Babicc4ea1422010-07-06 17:05:06 +020070 writel(l, &regs->gpio_dir);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010071
72 return 0;
73}
74
Stefano Babicc4ea1422010-07-06 17:05:06 +020075void mxc_gpio_set(unsigned int gpio, unsigned int value)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010076{
77 unsigned int port = gpio >> 5;
Stefano Babicc4ea1422010-07-06 17:05:06 +020078 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010079 u32 l;
80
81 if (port >= ARRAY_SIZE(gpio_ports))
82 return;
83
84 gpio &= 0x1f;
85
Stefano Babicc4ea1422010-07-06 17:05:06 +020086 regs = (struct gpio_regs *)gpio_ports[port];
87
88 l = readl(&regs->gpio_dr);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010089 if (value)
90 l |= 1 << gpio;
91 else
92 l &= ~(1 << gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +020093 writel(l, &regs->gpio_dr);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010094}
Stefano Babic7d27cd02010-04-13 12:07:00 +020095
Stefano Babicc4ea1422010-07-06 17:05:06 +020096int mxc_gpio_get(unsigned int gpio)
Stefano Babic7d27cd02010-04-13 12:07:00 +020097{
98 unsigned int port = gpio >> 5;
Stefano Babicc4ea1422010-07-06 17:05:06 +020099 struct gpio_regs *regs;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200100 u32 l;
101
102 if (port >= ARRAY_SIZE(gpio_ports))
103 return -1;
104
105 gpio &= 0x1f;
106
Stefano Babicc4ea1422010-07-06 17:05:06 +0200107 regs = (struct gpio_regs *)gpio_ports[port];
108
109 l = (readl(&regs->gpio_dr) >> gpio) & 0x01;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200110
111 return l;
112}