blob: f16e9ae4d2b3765533fd937e813cc60488fae528 [file] [log] [blame]
Tom Rix0c872ec2009-05-15 23:48:36 +02001/*
2 * Copyright (c) 2009 Wind River Systems, Inc.
3 * Tom Rix <Tom.Rix@windriver.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 *
20 * This work is derived from the linux 2.6.27 kernel source
21 * To fetch, use the kernel repository
22 * git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
23 * Use the v2.6.27 tag.
24 *
25 * Below is the original's header including its copyright
26 *
27 * linux/arch/arm/plat-omap/gpio.c
28 *
29 * Support functions for OMAP GPIO
30 *
31 * Copyright (C) 2003-2005 Nokia Corporation
32 * Written by Juha Yrjölä <juha.yrjola@nokia.com>
33 *
34 * This program is free software; you can redistribute it and/or modify
35 * it under the terms of the GNU General Public License version 2 as
36 * published by the Free Software Foundation.
37 */
38#include <common.h>
Joe Hershberger365d6072011-11-11 15:55:36 -060039#include <asm/gpio.h>
Tom Rix0c872ec2009-05-15 23:48:36 +020040#include <asm/io.h>
41#include <asm/errno.h>
42
Sanjeev Premi81bdc152011-09-08 10:47:25 -040043#define OMAP_GPIO_DIR_OUT 0
44#define OMAP_GPIO_DIR_IN 1
45
Aneesh V25223a62011-07-21 09:29:29 -040046static inline const struct gpio_bank *get_gpio_bank(int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020047{
Aneesh V25223a62011-07-21 09:29:29 -040048 return &omap_gpio_bank[gpio >> 5];
Tom Rix0c872ec2009-05-15 23:48:36 +020049}
50
51static inline int get_gpio_index(int gpio)
52{
53 return gpio & 0x1f;
54}
55
Nikita Kiryanovdcee1ab2012-11-27 22:40:57 +000056int gpio_is_valid(int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020057{
Axel Lin87bd05d2013-06-21 18:54:25 +080058 return (gpio >= 0) && (gpio < OMAP_MAX_GPIO);
Tom Rix0c872ec2009-05-15 23:48:36 +020059}
60
61static int check_gpio(int gpio)
62{
Nikita Kiryanovdcee1ab2012-11-27 22:40:57 +000063 if (!gpio_is_valid(gpio)) {
Tom Rix0c872ec2009-05-15 23:48:36 +020064 printf("ERROR : check_gpio: invalid GPIO %d\n", gpio);
Joe Hershberger365d6072011-11-11 15:55:36 -060065 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +020066 }
67 return 0;
68}
69
Aneesh V25223a62011-07-21 09:29:29 -040070static void _set_gpio_direction(const struct gpio_bank *bank, int gpio,
71 int is_input)
Tom Rix0c872ec2009-05-15 23:48:36 +020072{
73 void *reg = bank->base;
74 u32 l;
75
76 switch (bank->method) {
77 case METHOD_GPIO_24XX:
Aneesh V25223a62011-07-21 09:29:29 -040078 reg += OMAP_GPIO_OE;
Tom Rix0c872ec2009-05-15 23:48:36 +020079 break;
80 default:
81 return;
82 }
83 l = __raw_readl(reg);
84 if (is_input)
85 l |= 1 << gpio;
86 else
87 l &= ~(1 << gpio);
88 __raw_writel(l, reg);
89}
90
Sanjeev Premi81bdc152011-09-08 10:47:25 -040091/**
92 * Get the direction of the GPIO by reading the GPIO_OE register
93 * corresponding to the specified bank.
94 */
95static int _get_gpio_direction(const struct gpio_bank *bank, int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +020096{
Sanjeev Premi81bdc152011-09-08 10:47:25 -040097 void *reg = bank->base;
98 u32 v;
Tom Rix0c872ec2009-05-15 23:48:36 +020099
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400100 switch (bank->method) {
101 case METHOD_GPIO_24XX:
102 reg += OMAP_GPIO_OE;
103 break;
104 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600105 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400106 }
107
108 v = __raw_readl(reg);
109
110 if (v & (1 << gpio))
111 return OMAP_GPIO_DIR_IN;
112 else
113 return OMAP_GPIO_DIR_OUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200114}
115
Aneesh V25223a62011-07-21 09:29:29 -0400116static void _set_gpio_dataout(const struct gpio_bank *bank, int gpio,
117 int enable)
Tom Rix0c872ec2009-05-15 23:48:36 +0200118{
119 void *reg = bank->base;
120 u32 l = 0;
121
122 switch (bank->method) {
123 case METHOD_GPIO_24XX:
124 if (enable)
Aneesh V25223a62011-07-21 09:29:29 -0400125 reg += OMAP_GPIO_SETDATAOUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200126 else
Aneesh V25223a62011-07-21 09:29:29 -0400127 reg += OMAP_GPIO_CLEARDATAOUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200128 l = 1 << gpio;
129 break;
130 default:
131 printf("omap3-gpio unknown bank method %s %d\n",
132 __FILE__, __LINE__);
133 return;
134 }
135 __raw_writel(l, reg);
136}
137
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400138/**
139 * Set value of the specified gpio
140 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600141int gpio_set_value(unsigned gpio, int value)
Tom Rix0c872ec2009-05-15 23:48:36 +0200142{
Aneesh V25223a62011-07-21 09:29:29 -0400143 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200144
145 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600146 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200147 bank = get_gpio_bank(gpio);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400148 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
Joe Hershberger365d6072011-11-11 15:55:36 -0600149
150 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200151}
152
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400153/**
154 * Get value of the specified gpio
155 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600156int gpio_get_value(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200157{
Aneesh V25223a62011-07-21 09:29:29 -0400158 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200159 void *reg;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400160 int input;
Tom Rix0c872ec2009-05-15 23:48:36 +0200161
162 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600163 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200164 bank = get_gpio_bank(gpio);
165 reg = bank->base;
166 switch (bank->method) {
167 case METHOD_GPIO_24XX:
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400168 input = _get_gpio_direction(bank, get_gpio_index(gpio));
169 switch (input) {
170 case OMAP_GPIO_DIR_IN:
171 reg += OMAP_GPIO_DATAIN;
172 break;
173 case OMAP_GPIO_DIR_OUT:
174 reg += OMAP_GPIO_DATAOUT;
175 break;
176 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600177 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400178 }
Tom Rix0c872ec2009-05-15 23:48:36 +0200179 break;
180 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600181 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200182 }
183 return (__raw_readl(reg)
184 & (1 << get_gpio_index(gpio))) != 0;
185}
186
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400187/**
188 * Set gpio direction as input
189 */
190int gpio_direction_input(unsigned gpio)
Joel A Fernandes569919d2011-09-04 11:10:03 -0500191{
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400192 const struct gpio_bank *bank;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500193
194 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600195 return -1;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500196
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400197 bank = get_gpio_bank(gpio);
Tom Rix0c872ec2009-05-15 23:48:36 +0200198 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400199
200 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200201}
202
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400203/**
204 * Set gpio direction as output
205 */
206int gpio_direction_output(unsigned gpio, int value)
207{
208 const struct gpio_bank *bank;
209
210 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600211 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400212
213 bank = get_gpio_bank(gpio);
214 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
215 _set_gpio_direction(bank, get_gpio_index(gpio), 0);
216
217 return 0;
218}
219
220/**
221 * Request a gpio before using it.
222 *
223 * NOTE: Argument 'label' is unused.
224 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600225int gpio_request(unsigned gpio, const char *label)
Tom Rix0c872ec2009-05-15 23:48:36 +0200226{
227 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600228 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200229
230 return 0;
231}
232
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400233/**
234 * Reset and free the gpio after using it.
235 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600236int gpio_free(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200237{
Joe Hershberger365d6072011-11-11 15:55:36 -0600238 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200239}