blob: fc89f2a42b12b0c8690a80e52d5842b5902e9e0a [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
56static inline int gpio_valid(int gpio)
57{
58 if (gpio < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -060059 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +020060 if (gpio < 192)
61 return 0;
Joe Hershberger365d6072011-11-11 15:55:36 -060062 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +020063}
64
65static int check_gpio(int gpio)
66{
67 if (gpio_valid(gpio) < 0) {
68 printf("ERROR : check_gpio: invalid GPIO %d\n", gpio);
Joe Hershberger365d6072011-11-11 15:55:36 -060069 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +020070 }
71 return 0;
72}
73
Aneesh V25223a62011-07-21 09:29:29 -040074static void _set_gpio_direction(const struct gpio_bank *bank, int gpio,
75 int is_input)
Tom Rix0c872ec2009-05-15 23:48:36 +020076{
77 void *reg = bank->base;
78 u32 l;
79
80 switch (bank->method) {
81 case METHOD_GPIO_24XX:
Aneesh V25223a62011-07-21 09:29:29 -040082 reg += OMAP_GPIO_OE;
Tom Rix0c872ec2009-05-15 23:48:36 +020083 break;
84 default:
85 return;
86 }
87 l = __raw_readl(reg);
88 if (is_input)
89 l |= 1 << gpio;
90 else
91 l &= ~(1 << gpio);
92 __raw_writel(l, reg);
93}
94
Sanjeev Premi81bdc152011-09-08 10:47:25 -040095/**
96 * Get the direction of the GPIO by reading the GPIO_OE register
97 * corresponding to the specified bank.
98 */
99static int _get_gpio_direction(const struct gpio_bank *bank, int gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200100{
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400101 void *reg = bank->base;
102 u32 v;
Tom Rix0c872ec2009-05-15 23:48:36 +0200103
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400104 switch (bank->method) {
105 case METHOD_GPIO_24XX:
106 reg += OMAP_GPIO_OE;
107 break;
108 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600109 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400110 }
111
112 v = __raw_readl(reg);
113
114 if (v & (1 << gpio))
115 return OMAP_GPIO_DIR_IN;
116 else
117 return OMAP_GPIO_DIR_OUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200118}
119
Aneesh V25223a62011-07-21 09:29:29 -0400120static void _set_gpio_dataout(const struct gpio_bank *bank, int gpio,
121 int enable)
Tom Rix0c872ec2009-05-15 23:48:36 +0200122{
123 void *reg = bank->base;
124 u32 l = 0;
125
126 switch (bank->method) {
127 case METHOD_GPIO_24XX:
128 if (enable)
Aneesh V25223a62011-07-21 09:29:29 -0400129 reg += OMAP_GPIO_SETDATAOUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200130 else
Aneesh V25223a62011-07-21 09:29:29 -0400131 reg += OMAP_GPIO_CLEARDATAOUT;
Tom Rix0c872ec2009-05-15 23:48:36 +0200132 l = 1 << gpio;
133 break;
134 default:
135 printf("omap3-gpio unknown bank method %s %d\n",
136 __FILE__, __LINE__);
137 return;
138 }
139 __raw_writel(l, reg);
140}
141
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400142/**
143 * Set value of the specified gpio
144 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600145int gpio_set_value(unsigned gpio, int value)
Tom Rix0c872ec2009-05-15 23:48:36 +0200146{
Aneesh V25223a62011-07-21 09:29:29 -0400147 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200148
149 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600150 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200151 bank = get_gpio_bank(gpio);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400152 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
Joe Hershberger365d6072011-11-11 15:55:36 -0600153
154 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200155}
156
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400157/**
158 * Get value of the specified gpio
159 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600160int gpio_get_value(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200161{
Aneesh V25223a62011-07-21 09:29:29 -0400162 const struct gpio_bank *bank;
Tom Rix0c872ec2009-05-15 23:48:36 +0200163 void *reg;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400164 int input;
Tom Rix0c872ec2009-05-15 23:48:36 +0200165
166 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600167 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200168 bank = get_gpio_bank(gpio);
169 reg = bank->base;
170 switch (bank->method) {
171 case METHOD_GPIO_24XX:
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400172 input = _get_gpio_direction(bank, get_gpio_index(gpio));
173 switch (input) {
174 case OMAP_GPIO_DIR_IN:
175 reg += OMAP_GPIO_DATAIN;
176 break;
177 case OMAP_GPIO_DIR_OUT:
178 reg += OMAP_GPIO_DATAOUT;
179 break;
180 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600181 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400182 }
Tom Rix0c872ec2009-05-15 23:48:36 +0200183 break;
184 default:
Joe Hershberger365d6072011-11-11 15:55:36 -0600185 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200186 }
187 return (__raw_readl(reg)
188 & (1 << get_gpio_index(gpio))) != 0;
189}
190
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400191/**
192 * Set gpio direction as input
193 */
194int gpio_direction_input(unsigned gpio)
Joel A Fernandes569919d2011-09-04 11:10:03 -0500195{
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400196 const struct gpio_bank *bank;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500197
198 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600199 return -1;
Joel A Fernandes569919d2011-09-04 11:10:03 -0500200
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400201 bank = get_gpio_bank(gpio);
Tom Rix0c872ec2009-05-15 23:48:36 +0200202 _set_gpio_direction(bank, get_gpio_index(gpio), 1);
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400203
204 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200205}
206
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400207/**
208 * Set gpio direction as output
209 */
210int gpio_direction_output(unsigned gpio, int value)
211{
212 const struct gpio_bank *bank;
213
214 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600215 return -1;
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400216
217 bank = get_gpio_bank(gpio);
218 _set_gpio_dataout(bank, get_gpio_index(gpio), value);
219 _set_gpio_direction(bank, get_gpio_index(gpio), 0);
220
221 return 0;
222}
223
224/**
225 * Request a gpio before using it.
226 *
227 * NOTE: Argument 'label' is unused.
228 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600229int gpio_request(unsigned gpio, const char *label)
Tom Rix0c872ec2009-05-15 23:48:36 +0200230{
231 if (check_gpio(gpio) < 0)
Joe Hershberger365d6072011-11-11 15:55:36 -0600232 return -1;
Tom Rix0c872ec2009-05-15 23:48:36 +0200233
234 return 0;
235}
236
Sanjeev Premi81bdc152011-09-08 10:47:25 -0400237/**
238 * Reset and free the gpio after using it.
239 */
Joe Hershberger365d6072011-11-11 15:55:36 -0600240int gpio_free(unsigned gpio)
Tom Rix0c872ec2009-05-15 23:48:36 +0200241{
Joe Hershberger365d6072011-11-11 15:55:36 -0600242 return 0;
Tom Rix0c872ec2009-05-15 23:48:36 +0200243}