3 * eInfochips Ltd. <www.einfochips.com>
4 * Written-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
7 * Marvell Semiconductor <www.marvell.com>
9 * See file CREDITS for list of people who contributed to this
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.
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.
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,
30 #include <asm/errno.h>
35 #define MV_MAX_GPIO 128
38 int gpio_request(unsigned gpio, const char *label)
40 if (gpio >= MV_MAX_GPIO) {
41 printf("%s: Invalid GPIO requested %d\n", __func__, gpio);
47 int gpio_free(unsigned gpio)
52 int gpio_direction_input(unsigned gpio)
54 struct gpio_reg *gpio_reg_bank;
56 if (gpio >= MV_MAX_GPIO) {
57 printf("%s: Invalid GPIO %d\n", __func__, gpio);
61 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
62 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gcdr);
66 int gpio_direction_output(unsigned gpio, int value)
68 struct gpio_reg *gpio_reg_bank;
70 if (gpio >= MV_MAX_GPIO) {
71 printf("%s: Invalid GPIO %d\n", __func__, gpio);
75 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);
81 int gpio_get_value(unsigned gpio)
83 struct gpio_reg *gpio_reg_bank;
86 if (gpio >= MV_MAX_GPIO) {
87 printf("%s: Invalid GPIO %d\n", __func__, gpio);
91 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
92 gpio_val = readl(&gpio_reg_bank->gplr);
94 return GPIO_VAL(gpio, gpio_val);
97 int gpio_set_value(unsigned gpio, int value)
99 struct gpio_reg *gpio_reg_bank;
101 if (gpio >= MV_MAX_GPIO) {
102 printf("%s: Invalid GPIO %d\n", __func__, gpio);
106 gpio_reg_bank = get_gpio_base(GPIO_TO_REG(gpio));
108 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gpsr);
110 writel(GPIO_TO_BIT(gpio), &gpio_reg_bank->gpcr);