blob: e9bf27841cdbabdf7719050b5929bf7f35e027f2 [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 *
Stefano Babicd8e0ca82011-08-21 10:45:44 +02005 * Copyright (C) 2011
6 * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
7 *
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +01008 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26#include <common.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020027#include <asm/arch/imx-regs.h>
Stefano Babicd8e0ca82011-08-21 10:45:44 +020028#include <asm/gpio.h>
Stefano Babicc4ea1422010-07-06 17:05:06 +020029#include <asm/io.h>
Fabio Estevame53bcd92011-04-09 10:43:24 +000030#include <errno.h>
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010031
Stefano Babicd8e0ca82011-08-21 10:45:44 +020032enum mxc_gpio_direction {
33 MXC_GPIO_DIRECTION_IN,
34 MXC_GPIO_DIRECTION_OUT,
35};
36
Vikram Narayanan8d28c212012-04-10 04:26:08 +000037#define GPIO_TO_PORT(n) (n / 32)
Stefano Babicd8e0ca82011-08-21 10:45:44 +020038
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010039/* GPIO port description */
40static unsigned long gpio_ports[] = {
Stefano Babicc4ea1422010-07-06 17:05:06 +020041 [0] = GPIO1_BASE_ADDR,
42 [1] = GPIO2_BASE_ADDR,
43 [2] = GPIO3_BASE_ADDR,
Timo Ketolaeba18682012-04-18 22:55:29 +000044#if defined(CONFIG_MX25) || defined(CONFIG_MX51) || defined(CONFIG_MX53) || \
45 defined(CONFIG_MX6Q)
Stefano Babicc4ea1422010-07-06 17:05:06 +020046 [3] = GPIO4_BASE_ADDR,
47#endif
Jason Liuc8bfe242011-11-25 00:18:03 +000048#if defined(CONFIG_MX53) || defined(CONFIG_MX6Q)
Liu Hui-R6434301643ec2011-01-03 22:27:38 +000049 [4] = GPIO5_BASE_ADDR,
50 [5] = GPIO6_BASE_ADDR,
51 [6] = GPIO7_BASE_ADDR,
52#endif
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010053};
54
Stefano Babicd8e0ca82011-08-21 10:45:44 +020055static int mxc_gpio_direction(unsigned int gpio,
56 enum mxc_gpio_direction direction)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010057{
Vikram Narayananbe282552012-04-10 04:26:20 +000058 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +020059 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010060 u32 l;
61
62 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -060063 return -1;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010064
65 gpio &= 0x1f;
66
Stefano Babicc4ea1422010-07-06 17:05:06 +020067 regs = (struct gpio_regs *)gpio_ports[port];
68
69 l = readl(&regs->gpio_dir);
70
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010071 switch (direction) {
Stefano Babicc4ea1422010-07-06 17:05:06 +020072 case MXC_GPIO_DIRECTION_OUT:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010073 l |= 1 << gpio;
74 break;
Stefano Babicc4ea1422010-07-06 17:05:06 +020075 case MXC_GPIO_DIRECTION_IN:
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010076 l &= ~(1 << gpio);
77 }
Stefano Babicc4ea1422010-07-06 17:05:06 +020078 writel(l, &regs->gpio_dir);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010079
80 return 0;
81}
82
Joe Hershberger365d6072011-11-11 15:55:36 -060083int gpio_set_value(unsigned gpio, int value)
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010084{
Vikram Narayananbe282552012-04-10 04:26:20 +000085 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +020086 struct gpio_regs *regs;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010087 u32 l;
88
89 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -060090 return -1;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010091
92 gpio &= 0x1f;
93
Stefano Babicc4ea1422010-07-06 17:05:06 +020094 regs = (struct gpio_regs *)gpio_ports[port];
95
96 l = readl(&regs->gpio_dr);
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +010097 if (value)
98 l |= 1 << gpio;
99 else
100 l &= ~(1 << gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +0200101 writel(l, &regs->gpio_dr);
Joe Hershberger365d6072011-11-11 15:55:36 -0600102
103 return 0;
Guennadi Liakhovetskib30de3c2009-02-07 01:18:07 +0100104}
Stefano Babic7d27cd02010-04-13 12:07:00 +0200105
Joe Hershberger365d6072011-11-11 15:55:36 -0600106int gpio_get_value(unsigned gpio)
Stefano Babic7d27cd02010-04-13 12:07:00 +0200107{
Vikram Narayananbe282552012-04-10 04:26:20 +0000108 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicc4ea1422010-07-06 17:05:06 +0200109 struct gpio_regs *regs;
Joe Hershberger365d6072011-11-11 15:55:36 -0600110 u32 val;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200111
112 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -0600113 return -1;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200114
115 gpio &= 0x1f;
116
Stefano Babicc4ea1422010-07-06 17:05:06 +0200117 regs = (struct gpio_regs *)gpio_ports[port];
118
Benoît Thébaudeau5dafa452012-08-20 10:55:41 +0000119 val = (readl(&regs->gpio_psr) >> gpio) & 0x01;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200120
Joe Hershberger365d6072011-11-11 15:55:36 -0600121 return val;
Stefano Babic7d27cd02010-04-13 12:07:00 +0200122}
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200123
Joe Hershberger365d6072011-11-11 15:55:36 -0600124int gpio_request(unsigned gpio, const char *label)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200125{
Vikram Narayananbe282552012-04-10 04:26:20 +0000126 unsigned int port = GPIO_TO_PORT(gpio);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200127 if (port >= ARRAY_SIZE(gpio_ports))
Joe Hershberger365d6072011-11-11 15:55:36 -0600128 return -1;
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200129 return 0;
130}
131
Joe Hershberger365d6072011-11-11 15:55:36 -0600132int gpio_free(unsigned gpio)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200133{
Joe Hershberger365d6072011-11-11 15:55:36 -0600134 return 0;
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200135}
136
Joe Hershberger365d6072011-11-11 15:55:36 -0600137int gpio_direction_input(unsigned gpio)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200138{
Joe Hershberger365d6072011-11-11 15:55:36 -0600139 return mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_IN);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200140}
141
Joe Hershberger365d6072011-11-11 15:55:36 -0600142int gpio_direction_output(unsigned gpio, int value)
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200143{
Joe Hershberger365d6072011-11-11 15:55:36 -0600144 int ret = mxc_gpio_direction(gpio, MXC_GPIO_DIRECTION_OUT);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200145
146 if (ret < 0)
147 return ret;
148
Vikram Narayanand71c9c92012-04-10 04:26:30 +0000149 return gpio_set_value(gpio, value);
Stefano Babicd8e0ca82011-08-21 10:45:44 +0200150}