blob: c80891cd505220a6fb7d14c1b5465550ebd331e7 [file] [log] [blame]
Ajay Bhargav0c442292011-08-22 17:57:38 +05301/*
2 * (C) Copyright 2011
3 * eInfochips Ltd. <www.einfochips.com>
4 * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
5 *
6 * (C) Copyright 2010
7 * Marvell Semiconductor <www.marvell.com>
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
25 * MA 02110-1301 USA
26 */
27
28#include <common.h>
29#include <asm/io.h>
30#include <asm/errno.h>
31#include "mvgpio.h"
32#include <asm/gpio.h>
33
34#ifndef MV_MAX_GPIO
35#define MV_MAX_GPIO 128
36#endif
37
Joe Hershberger365d6072011-11-11 15:55:36 -060038int gpio_request(unsigned gpio, const char *label)
Ajay Bhargav0c442292011-08-22 17:57:38 +053039{
Joe Hershberger365d6072011-11-11 15:55:36 -060040 if (gpio >= MV_MAX_GPIO) {
41 printf("%s: Invalid GPIO requested %d\n", __func__, gpio);
42 return -1;
Ajay Bhargav0c442292011-08-22 17:57:38 +053043 }
44 return 0;
45}
46
Joe Hershberger365d6072011-11-11 15:55:36 -060047int gpio_free(unsigned gpio)
Ajay Bhargav0c442292011-08-22 17:57:38 +053048{
Ajay Bhargav0c442292011-08-22 17:57:38 +053049 return 0;
50}
51
Joe Hershberger365d6072011-11-11 15:55:36 -060052int gpio_direction_input(unsigned gpio)
Ajay Bhargav0c442292011-08-22 17:57:38 +053053{
54 struct gpio_reg *gpio_reg_bank;
55
Joe Hershberger365d6072011-11-11 15:55:36 -060056 if (gpio >= MV_MAX_GPIO) {
57 printf("%s: Invalid GPIO %d\n", __func__, gpio);
58 return -1;
Ajay Bhargav0c442292011-08-22 17:57:38 +053059 }
60
Joe Hershberger365d6072011-11-11 15:55:36 -060061 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
62 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gcdr);
Ajay Bhargav0c442292011-08-22 17:57:38 +053063 return 0;
64}
65
Joe Hershberger365d6072011-11-11 15:55:36 -060066int gpio_direction_output(unsigned gpio, int value)
Ajay Bhargav0c442292011-08-22 17:57:38 +053067{
68 struct gpio_reg *gpio_reg_bank;
Ajay Bhargav0c442292011-08-22 17:57:38 +053069
Joe Hershberger365d6072011-11-11 15:55:36 -060070 if (gpio >= MV_MAX_GPIO) {
71 printf("%s: Invalid GPIO %d\n", __func__, gpio);
72 return -1;
Ajay Bhargav0c442292011-08-22 17:57:38 +053073 }
74
Joe Hershberger365d6072011-11-11 15:55:36 -060075 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
76 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gsdr);
77 gpio_set_value(gpio, value);
78 return 0;
Ajay Bhargav0c442292011-08-22 17:57:38 +053079}
80
Joe Hershberger365d6072011-11-11 15:55:36 -060081int gpio_get_value(unsigned gpio)
82{
83 struct gpio_reg *gpio_reg_bank;
84 u32 gpio_val;
85
86 if (gpio >= MV_MAX_GPIO) {
87 printf("%s: Invalid GPIO %d\n", __func__, gpio);
88 return -1;
89 }
90
91 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
92 gpio_val = readl(&gpio_reg_bank->gplr);
93
94 return GPIO_VAL(gpio, gpio_val);
95}
96
97int gpio_set_value(unsigned gpio, int value)
Ajay Bhargav0c442292011-08-22 17:57:38 +053098{
99 struct gpio_reg *gpio_reg_bank;
100
Joe Hershberger365d6072011-11-11 15:55:36 -0600101 if (gpio >= MV_MAX_GPIO) {
102 printf("%s: Invalid GPIO %d\n", __func__, gpio);
103 return -1;
Ajay Bhargav0c442292011-08-22 17:57:38 +0530104 }
105
Joe Hershberger365d6072011-11-11 15:55:36 -0600106 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
Ajay Bhargav0c442292011-08-22 17:57:38 +0530107 if (value)
Joe Hershberger365d6072011-11-11 15:55:36 -0600108 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gpsr);
Ajay Bhargav0c442292011-08-22 17:57:38 +0530109 else
Joe Hershberger365d6072011-11-11 15:55:36 -0600110 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gpcr);
111
112 return 0;
Ajay Bhargav0c442292011-08-22 17:57:38 +0530113}