blob: 29f19badda5ddf68c1bbe1c9bf11dc722adc3698 [file] [log] [blame]
Marek Vasut6b6440d2011-11-08 23:18:13 +00001/*
2 * Freescale i.MX28 GPIO control code
3 *
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5 * on behalf of DENX Software Engineering GmbH
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <common.h>
27#include <netdev.h>
28#include <asm/errno.h>
29#include <asm/io.h>
30#include <asm/arch/iomux.h>
31#include <asm/arch/imx-regs.h>
32
33#if defined(CONFIG_MX23)
34#define PINCTRL_BANKS 3
35#define PINCTRL_DOUT(n) (0x0500 + ((n) * 0x10))
36#define PINCTRL_DIN(n) (0x0600 + ((n) * 0x10))
37#define PINCTRL_DOE(n) (0x0700 + ((n) * 0x10))
38#define PINCTRL_PIN2IRQ(n) (0x0800 + ((n) * 0x10))
39#define PINCTRL_IRQEN(n) (0x0900 + ((n) * 0x10))
40#define PINCTRL_IRQSTAT(n) (0x0c00 + ((n) * 0x10))
41#elif defined(CONFIG_MX28)
42#define PINCTRL_BANKS 5
43#define PINCTRL_DOUT(n) (0x0700 + ((n) * 0x10))
44#define PINCTRL_DIN(n) (0x0900 + ((n) * 0x10))
45#define PINCTRL_DOE(n) (0x0b00 + ((n) * 0x10))
46#define PINCTRL_PIN2IRQ(n) (0x1000 + ((n) * 0x10))
47#define PINCTRL_IRQEN(n) (0x1100 + ((n) * 0x10))
48#define PINCTRL_IRQSTAT(n) (0x1400 + ((n) * 0x10))
49#else
50#error "Please select CONFIG_MX23 or CONFIG_MX28"
51#endif
52
53#define GPIO_INT_FALL_EDGE 0x0
54#define GPIO_INT_LOW_LEV 0x1
55#define GPIO_INT_RISE_EDGE 0x2
56#define GPIO_INT_HIGH_LEV 0x3
57#define GPIO_INT_LEV_MASK (1 << 0)
58#define GPIO_INT_POL_MASK (1 << 1)
59
60void mxs_gpio_init(void)
61{
62 int i;
63
64 for (i = 0; i < PINCTRL_BANKS; i++) {
65 writel(0, MXS_PINCTRL_BASE + PINCTRL_PIN2IRQ(i));
66 writel(0, MXS_PINCTRL_BASE + PINCTRL_IRQEN(i));
67 /* Use SCT address here to clear the IRQSTAT bits */
68 writel(0xffffffff, MXS_PINCTRL_BASE + PINCTRL_IRQSTAT(i) + 8);
69 }
70}
71
Joe Hershberger365d6072011-11-11 15:55:36 -060072int gpio_get_value(unsigned gpio)
Marek Vasut6b6440d2011-11-08 23:18:13 +000073{
Joe Hershberger365d6072011-11-11 15:55:36 -060074 uint32_t bank = PAD_BANK(gpio);
Marek Vasut6b6440d2011-11-08 23:18:13 +000075 uint32_t offset = PINCTRL_DIN(bank);
Otavio Salvadorddcf13b2012-08-05 09:05:30 +000076 struct mxs_register_32 *reg =
77 (struct mxs_register_32 *)(MXS_PINCTRL_BASE + offset);
Marek Vasut6b6440d2011-11-08 23:18:13 +000078
Joe Hershberger365d6072011-11-11 15:55:36 -060079 return (readl(&reg->reg) >> PAD_PIN(gpio)) & 1;
Marek Vasut6b6440d2011-11-08 23:18:13 +000080}
81
Joe Hershberger365d6072011-11-11 15:55:36 -060082void gpio_set_value(unsigned gpio, int value)
Marek Vasut6b6440d2011-11-08 23:18:13 +000083{
Joe Hershberger365d6072011-11-11 15:55:36 -060084 uint32_t bank = PAD_BANK(gpio);
Marek Vasut6b6440d2011-11-08 23:18:13 +000085 uint32_t offset = PINCTRL_DOUT(bank);
Otavio Salvadorddcf13b2012-08-05 09:05:30 +000086 struct mxs_register_32 *reg =
87 (struct mxs_register_32 *)(MXS_PINCTRL_BASE + offset);
Marek Vasut6b6440d2011-11-08 23:18:13 +000088
89 if (value)
Joe Hershberger365d6072011-11-11 15:55:36 -060090 writel(1 << PAD_PIN(gpio), &reg->reg_set);
Marek Vasut6b6440d2011-11-08 23:18:13 +000091 else
Joe Hershberger365d6072011-11-11 15:55:36 -060092 writel(1 << PAD_PIN(gpio), &reg->reg_clr);
Marek Vasut6b6440d2011-11-08 23:18:13 +000093}
94
Joe Hershberger365d6072011-11-11 15:55:36 -060095int gpio_direction_input(unsigned gpio)
Marek Vasut6b6440d2011-11-08 23:18:13 +000096{
Joe Hershberger365d6072011-11-11 15:55:36 -060097 uint32_t bank = PAD_BANK(gpio);
Marek Vasut6b6440d2011-11-08 23:18:13 +000098 uint32_t offset = PINCTRL_DOE(bank);
Otavio Salvadorddcf13b2012-08-05 09:05:30 +000099 struct mxs_register_32 *reg =
100 (struct mxs_register_32 *)(MXS_PINCTRL_BASE + offset);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000101
Joe Hershberger365d6072011-11-11 15:55:36 -0600102 writel(1 << PAD_PIN(gpio), &reg->reg_clr);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000103
104 return 0;
105}
106
Joe Hershberger365d6072011-11-11 15:55:36 -0600107int gpio_direction_output(unsigned gpio, int value)
Marek Vasut6b6440d2011-11-08 23:18:13 +0000108{
Joe Hershberger365d6072011-11-11 15:55:36 -0600109 uint32_t bank = PAD_BANK(gpio);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000110 uint32_t offset = PINCTRL_DOE(bank);
Otavio Salvadorddcf13b2012-08-05 09:05:30 +0000111 struct mxs_register_32 *reg =
112 (struct mxs_register_32 *)(MXS_PINCTRL_BASE + offset);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000113
Joe Hershberger365d6072011-11-11 15:55:36 -0600114 writel(1 << PAD_PIN(gpio), &reg->reg_set);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000115
Joe Hershberger365d6072011-11-11 15:55:36 -0600116 gpio_set_value(gpio, value);
Marek Vasut6b6440d2011-11-08 23:18:13 +0000117
118 return 0;
119}
120
Joe Hershberger365d6072011-11-11 15:55:36 -0600121int gpio_request(unsigned gpio, const char *label)
Marek Vasut6b6440d2011-11-08 23:18:13 +0000122{
Joe Hershberger365d6072011-11-11 15:55:36 -0600123 if (PAD_BANK(gpio) >= PINCTRL_BANKS)
124 return -1;
Marek Vasut6b6440d2011-11-08 23:18:13 +0000125
126 return 0;
127}
128
Joe Hershberger365d6072011-11-11 15:55:36 -0600129int gpio_free(unsigned gpio)
Marek Vasut6b6440d2011-11-08 23:18:13 +0000130{
Joe Hershberger365d6072011-11-11 15:55:36 -0600131 return 0;
Marek Vasut6b6440d2011-11-08 23:18:13 +0000132}