blob: 662a10ecd8e7fc3c418150b5f5db7d6d1805ca51 [file] [log] [blame]
Gabor Juhos6eae43c2011-01-04 21:28:15 +01001/*
2 * Atheros AR71XX/AR724X/AR913X GPIO API support
3 *
Gabor Juhos5b5b5442012-03-14 10:45:23 +01004 * Copyright (C) 2010-2011 Jaiganesh Narayanan <jnarayanan@atheros.com>
5 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
Gabor Juhos6eae43c2011-01-04 21:28:15 +01006 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 *
Gabor Juhos5b5b5442012-03-14 10:45:23 +01008 * Parts of this file are based on Atheros' 2.6.15/2.6.31 BSP
9 *
Gabor Juhos6eae43c2011-01-04 21:28:15 +010010 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published
12 * by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/types.h>
19#include <linux/spinlock.h>
20#include <linux/io.h>
21#include <linux/ioport.h>
22#include <linux/gpio.h>
23
24#include <asm/mach-ath79/ar71xx_regs.h>
25#include <asm/mach-ath79/ath79.h>
26#include "common.h"
27
28static void __iomem *ath79_gpio_base;
29static unsigned long ath79_gpio_count;
30static DEFINE_SPINLOCK(ath79_gpio_lock);
31
32static void __ath79_gpio_set_value(unsigned gpio, int value)
33{
34 void __iomem *base = ath79_gpio_base;
35
36 if (value)
37 __raw_writel(1 << gpio, base + AR71XX_GPIO_REG_SET);
38 else
39 __raw_writel(1 << gpio, base + AR71XX_GPIO_REG_CLEAR);
40}
41
42static int __ath79_gpio_get_value(unsigned gpio)
43{
44 return (__raw_readl(ath79_gpio_base + AR71XX_GPIO_REG_IN) >> gpio) & 1;
45}
46
47static int ath79_gpio_get_value(struct gpio_chip *chip, unsigned offset)
48{
49 return __ath79_gpio_get_value(offset);
50}
51
52static void ath79_gpio_set_value(struct gpio_chip *chip,
53 unsigned offset, int value)
54{
55 __ath79_gpio_set_value(offset, value);
56}
57
58static int ath79_gpio_direction_input(struct gpio_chip *chip,
59 unsigned offset)
60{
61 void __iomem *base = ath79_gpio_base;
62 unsigned long flags;
63
64 spin_lock_irqsave(&ath79_gpio_lock, flags);
65
66 __raw_writel(__raw_readl(base + AR71XX_GPIO_REG_OE) & ~(1 << offset),
67 base + AR71XX_GPIO_REG_OE);
68
69 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
70
71 return 0;
72}
73
74static int ath79_gpio_direction_output(struct gpio_chip *chip,
75 unsigned offset, int value)
76{
77 void __iomem *base = ath79_gpio_base;
78 unsigned long flags;
79
80 spin_lock_irqsave(&ath79_gpio_lock, flags);
81
82 if (value)
83 __raw_writel(1 << offset, base + AR71XX_GPIO_REG_SET);
84 else
85 __raw_writel(1 << offset, base + AR71XX_GPIO_REG_CLEAR);
86
87 __raw_writel(__raw_readl(base + AR71XX_GPIO_REG_OE) | (1 << offset),
88 base + AR71XX_GPIO_REG_OE);
89
90 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
91
92 return 0;
93}
94
Gabor Juhos5b5b5442012-03-14 10:45:23 +010095static int ar934x_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
96{
97 void __iomem *base = ath79_gpio_base;
98 unsigned long flags;
99
100 spin_lock_irqsave(&ath79_gpio_lock, flags);
101
102 __raw_writel(__raw_readl(base + AR71XX_GPIO_REG_OE) | (1 << offset),
103 base + AR71XX_GPIO_REG_OE);
104
105 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
106
107 return 0;
108}
109
110static int ar934x_gpio_direction_output(struct gpio_chip *chip, unsigned offset,
111 int value)
112{
113 void __iomem *base = ath79_gpio_base;
114 unsigned long flags;
115
116 spin_lock_irqsave(&ath79_gpio_lock, flags);
117
118 if (value)
119 __raw_writel(1 << offset, base + AR71XX_GPIO_REG_SET);
120 else
121 __raw_writel(1 << offset, base + AR71XX_GPIO_REG_CLEAR);
122
123 __raw_writel(__raw_readl(base + AR71XX_GPIO_REG_OE) & ~(1 << offset),
124 base + AR71XX_GPIO_REG_OE);
125
126 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
127
128 return 0;
129}
130
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100131static struct gpio_chip ath79_gpio_chip = {
132 .label = "ath79",
133 .get = ath79_gpio_get_value,
134 .set = ath79_gpio_set_value,
135 .direction_input = ath79_gpio_direction_input,
136 .direction_output = ath79_gpio_direction_output,
137 .base = 0,
138};
139
Gabor Juhos8838bec2013-01-29 08:19:12 +0000140static void __iomem *ath79_gpio_get_function_reg(void)
141{
142 u32 reg = 0;
143
144 if (soc_is_ar71xx() ||
145 soc_is_ar724x() ||
146 soc_is_ar913x() ||
147 soc_is_ar933x())
148 reg = AR71XX_GPIO_REG_FUNC;
149 else if (soc_is_ar934x())
150 reg = AR934X_GPIO_REG_FUNC;
151 else
152 BUG();
153
154 return ath79_gpio_base + reg;
155}
156
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100157void ath79_gpio_function_enable(u32 mask)
158{
Gabor Juhos8838bec2013-01-29 08:19:12 +0000159 void __iomem *reg = ath79_gpio_get_function_reg();
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100160 unsigned long flags;
161
162 spin_lock_irqsave(&ath79_gpio_lock, flags);
163
Gabor Juhos8838bec2013-01-29 08:19:12 +0000164 __raw_writel(__raw_readl(reg) | mask, reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100165 /* flush write */
Gabor Juhos8838bec2013-01-29 08:19:12 +0000166 __raw_readl(reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100167
168 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
169}
170
171void ath79_gpio_function_disable(u32 mask)
172{
Gabor Juhos8838bec2013-01-29 08:19:12 +0000173 void __iomem *reg = ath79_gpio_get_function_reg();
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100174 unsigned long flags;
175
176 spin_lock_irqsave(&ath79_gpio_lock, flags);
177
Gabor Juhos8838bec2013-01-29 08:19:12 +0000178 __raw_writel(__raw_readl(reg) & ~mask, reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100179 /* flush write */
Gabor Juhos8838bec2013-01-29 08:19:12 +0000180 __raw_readl(reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100181
182 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
183}
184
185void ath79_gpio_function_setup(u32 set, u32 clear)
186{
Gabor Juhos8838bec2013-01-29 08:19:12 +0000187 void __iomem *reg = ath79_gpio_get_function_reg();
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100188 unsigned long flags;
189
190 spin_lock_irqsave(&ath79_gpio_lock, flags);
191
Gabor Juhos8838bec2013-01-29 08:19:12 +0000192 __raw_writel((__raw_readl(reg) & ~clear) | set, reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100193 /* flush write */
Gabor Juhos8838bec2013-01-29 08:19:12 +0000194 __raw_readl(reg);
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100195
196 spin_unlock_irqrestore(&ath79_gpio_lock, flags);
197}
198
199void __init ath79_gpio_init(void)
200{
201 int err;
202
203 if (soc_is_ar71xx())
204 ath79_gpio_count = AR71XX_GPIO_COUNT;
Gabor Juhosb4da14a2012-08-04 18:01:24 +0200205 else if (soc_is_ar7240())
206 ath79_gpio_count = AR7240_GPIO_COUNT;
207 else if (soc_is_ar7241() || soc_is_ar7242())
208 ath79_gpio_count = AR7241_GPIO_COUNT;
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100209 else if (soc_is_ar913x())
210 ath79_gpio_count = AR913X_GPIO_COUNT;
Gabor Juhosfdfbcf42011-06-20 21:26:07 +0200211 else if (soc_is_ar933x())
212 ath79_gpio_count = AR933X_GPIO_COUNT;
Gabor Juhos5b5b5442012-03-14 10:45:23 +0100213 else if (soc_is_ar934x())
214 ath79_gpio_count = AR934X_GPIO_COUNT;
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100215 else
216 BUG();
217
218 ath79_gpio_base = ioremap_nocache(AR71XX_GPIO_BASE, AR71XX_GPIO_SIZE);
219 ath79_gpio_chip.ngpio = ath79_gpio_count;
Gabor Juhos5b5b5442012-03-14 10:45:23 +0100220 if (soc_is_ar934x()) {
221 ath79_gpio_chip.direction_input = ar934x_gpio_direction_input;
222 ath79_gpio_chip.direction_output = ar934x_gpio_direction_output;
223 }
Gabor Juhos6eae43c2011-01-04 21:28:15 +0100224
225 err = gpiochip_add(&ath79_gpio_chip);
226 if (err)
227 panic("cannot add AR71xx GPIO chip, error=%d", err);
228}
229
230int gpio_get_value(unsigned gpio)
231{
232 if (gpio < ath79_gpio_count)
233 return __ath79_gpio_get_value(gpio);
234
235 return __gpio_get_value(gpio);
236}
237EXPORT_SYMBOL(gpio_get_value);
238
239void gpio_set_value(unsigned gpio, int value)
240{
241 if (gpio < ath79_gpio_count)
242 __ath79_gpio_set_value(gpio, value);
243 else
244 __gpio_set_value(gpio, value);
245}
246EXPORT_SYMBOL(gpio_set_value);
247
248int gpio_to_irq(unsigned gpio)
249{
250 /* FIXME */
251 return -EINVAL;
252}
253EXPORT_SYMBOL(gpio_to_irq);
254
255int irq_to_gpio(unsigned irq)
256{
257 /* FIXME */
258 return -EINVAL;
259}
260EXPORT_SYMBOL(irq_to_gpio);