2009-02-07 00:18:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009
|
|
|
|
* Guennadi Liakhovetski, DENX Software Engineering, <lg@denx.de>
|
|
|
|
*
|
2011-08-21 08:45:44 +00:00
|
|
|
* Copyright (C) 2011
|
|
|
|
* Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
|
|
|
|
*
|
2009-02-07 00:18:07 +00:00
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* 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>
|
2010-07-06 15:05:06 +00:00
|
|
|
#include <asm/arch/imx-regs.h>
|
2011-08-21 08:45:44 +00:00
|
|
|
#include <asm/gpio.h>
|
2010-07-06 15:05:06 +00:00
|
|
|
#include <asm/io.h>
|
2011-04-09 10:43:24 +00:00
|
|
|
#include <errno.h>
|
2009-02-07 00:18:07 +00:00
|
|
|
|
2011-08-21 08:45:44 +00:00
|
|
|
enum mxc_gpio_direction {
|
|
|
|
MXC_GPIO_DIRECTION_IN,
|
|
|
|
MXC_GPIO_DIRECTION_OUT,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-02-07 00:18:07 +00:00
|
|
|
/* GPIO port description */
|
|
|
|
static unsigned long gpio_ports[] = {
|
2010-07-06 15:05:06 +00:00
|
|
|
[0] = GPIO1_BASE_ADDR,
|
|
|
|
[1] = GPIO2_BASE_ADDR,
|
|
|
|
[2] = GPIO3_BASE_ADDR,
|
2011-01-03 22:27:38 +00:00
|
|
|
#if defined(CONFIG_MX51) || defined(CONFIG_MX53)
|
2010-07-06 15:05:06 +00:00
|
|
|
[3] = GPIO4_BASE_ADDR,
|
|
|
|
#endif
|
2011-01-03 22:27:38 +00:00
|
|
|
#if defined(CONFIG_MX53)
|
|
|
|
[4] = GPIO5_BASE_ADDR,
|
|
|
|
[5] = GPIO6_BASE_ADDR,
|
|
|
|
[6] = GPIO7_BASE_ADDR,
|
|
|
|
#endif
|
2009-02-07 00:18:07 +00:00
|
|
|
};
|
|
|
|
|
2011-08-21 08:45:44 +00:00
|
|
|
static int mxc_gpio_direction(unsigned int gpio,
|
|
|
|
enum mxc_gpio_direction direction)
|
2009-02-07 00:18:07 +00:00
|
|
|
{
|
|
|
|
unsigned int port = gpio >> 5;
|
2010-07-06 15:05:06 +00:00
|
|
|
struct gpio_regs *regs;
|
2009-02-07 00:18:07 +00:00
|
|
|
u32 l;
|
|
|
|
|
|
|
|
if (port >= ARRAY_SIZE(gpio_ports))
|
2011-04-09 10:43:24 +00:00
|
|
|
return -EINVAL;
|
2009-02-07 00:18:07 +00:00
|
|
|
|
|
|
|
gpio &= 0x1f;
|
|
|
|
|
2010-07-06 15:05:06 +00:00
|
|
|
regs = (struct gpio_regs *)gpio_ports[port];
|
|
|
|
|
|
|
|
l = readl(®s->gpio_dir);
|
|
|
|
|
2009-02-07 00:18:07 +00:00
|
|
|
switch (direction) {
|
2010-07-06 15:05:06 +00:00
|
|
|
case MXC_GPIO_DIRECTION_OUT:
|
2009-02-07 00:18:07 +00:00
|
|
|
l |= 1 << gpio;
|
|
|
|
break;
|
2010-07-06 15:05:06 +00:00
|
|
|
case MXC_GPIO_DIRECTION_IN:
|
2009-02-07 00:18:07 +00:00
|
|
|
l &= ~(1 << gpio);
|
|
|
|
}
|
2010-07-06 15:05:06 +00:00
|
|
|
writel(l, ®s->gpio_dir);
|
2009-02-07 00:18:07 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2011-08-21 08:45:44 +00:00
|
|
|
void gpio_set_value(int gpio, int value)
|
2009-02-07 00:18:07 +00:00
|
|
|
{
|
|
|
|
unsigned int port = gpio >> 5;
|
2010-07-06 15:05:06 +00:00
|
|
|
struct gpio_regs *regs;
|
2009-02-07 00:18:07 +00:00
|
|
|
u32 l;
|
|
|
|
|
|
|
|
if (port >= ARRAY_SIZE(gpio_ports))
|
|
|
|
return;
|
|
|
|
|
|
|
|
gpio &= 0x1f;
|
|
|
|
|
2010-07-06 15:05:06 +00:00
|
|
|
regs = (struct gpio_regs *)gpio_ports[port];
|
|
|
|
|
|
|
|
l = readl(®s->gpio_dr);
|
2009-02-07 00:18:07 +00:00
|
|
|
if (value)
|
|
|
|
l |= 1 << gpio;
|
|
|
|
else
|
|
|
|
l &= ~(1 << gpio);
|
2010-07-06 15:05:06 +00:00
|
|
|
writel(l, ®s->gpio_dr);
|
2009-02-07 00:18:07 +00:00
|
|
|
}
|
2010-04-13 10:07:00 +00:00
|
|
|
|
2011-08-21 08:45:44 +00:00
|
|
|
int gpio_get_value(int gpio)
|
2010-04-13 10:07:00 +00:00
|
|
|
{
|
|
|
|
unsigned int port = gpio >> 5;
|
2010-07-06 15:05:06 +00:00
|
|
|
struct gpio_regs *regs;
|
2010-04-13 10:07:00 +00:00
|
|
|
u32 l;
|
|
|
|
|
|
|
|
if (port >= ARRAY_SIZE(gpio_ports))
|
2011-04-09 10:43:24 +00:00
|
|
|
return -EINVAL;
|
2010-04-13 10:07:00 +00:00
|
|
|
|
|
|
|
gpio &= 0x1f;
|
|
|
|
|
2010-07-06 15:05:06 +00:00
|
|
|
regs = (struct gpio_regs *)gpio_ports[port];
|
|
|
|
|
|
|
|
l = (readl(®s->gpio_dr) >> gpio) & 0x01;
|
2010-04-13 10:07:00 +00:00
|
|
|
|
|
|
|
return l;
|
|
|
|
}
|
2011-08-21 08:45:44 +00:00
|
|
|
|
|
|
|
int gpio_request(int gp, const char *label)
|
|
|
|
{
|
|
|
|
unsigned int port = gp >> 5;
|
|
|
|
if (port >= ARRAY_SIZE(gpio_ports))
|
|
|
|
return -EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_free(int gp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void gpio_toggle_value(int gp)
|
|
|
|
{
|
|
|
|
gpio_set_value(gp, !gpio_get_value(gp));
|
|
|
|
}
|
|
|
|
|
|
|
|
int gpio_direction_input(int gp)
|
|
|
|
{
|
|
|
|
return mxc_gpio_direction(gp, MXC_GPIO_DIRECTION_IN);
|
|
|
|
}
|
|
|
|
|
|
|
|
int gpio_direction_output(int gp, int value)
|
|
|
|
{
|
|
|
|
int ret = mxc_gpio_direction(gp, MXC_GPIO_DIRECTION_OUT);
|
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
gpio_set_value(gp, value);
|
|
|
|
return 0;
|
|
|
|
}
|