2 * Atheros AR7XXX/AR9XXX SoC GPIO API support
4 * Copyright (C) 2008-2011 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/module.h>
15 #include <linux/types.h>
16 #include <linux/spinlock.h>
18 #include <linux/ioport.h>
19 #include <linux/gpio.h>
21 #include <asm/mach-ar71xx/ar71xx.h>
23 static DEFINE_SPINLOCK(ar71xx_gpio_lock
);
25 unsigned long ar71xx_gpio_count
;
26 EXPORT_SYMBOL(ar71xx_gpio_count
);
28 void __ar71xx_gpio_set_value(unsigned gpio
, int value
)
30 void __iomem
*base
= ar71xx_gpio_base
;
33 __raw_writel(1 << gpio
, base
+ AR71XX_GPIO_REG_SET
);
35 __raw_writel(1 << gpio
, base
+ AR71XX_GPIO_REG_CLEAR
);
37 EXPORT_SYMBOL(__ar71xx_gpio_set_value
);
39 int __ar71xx_gpio_get_value(unsigned gpio
)
41 return (__raw_readl(ar71xx_gpio_base
+ AR71XX_GPIO_REG_IN
) >> gpio
) & 1;
43 EXPORT_SYMBOL(__ar71xx_gpio_get_value
);
45 static int ar71xx_gpio_get_value(struct gpio_chip
*chip
, unsigned offset
)
47 return __ar71xx_gpio_get_value(offset
);
50 static void ar71xx_gpio_set_value(struct gpio_chip
*chip
,
51 unsigned offset
, int value
)
53 __ar71xx_gpio_set_value(offset
, value
);
56 static int ar71xx_gpio_direction_input(struct gpio_chip
*chip
,
59 void __iomem
*base
= ar71xx_gpio_base
;
62 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
64 __raw_writel(__raw_readl(base
+ AR71XX_GPIO_REG_OE
) & ~(1 << offset
),
65 base
+ AR71XX_GPIO_REG_OE
);
67 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
72 static int ar71xx_gpio_direction_output(struct gpio_chip
*chip
,
73 unsigned offset
, int value
)
75 void __iomem
*base
= ar71xx_gpio_base
;
78 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
81 __raw_writel(1 << offset
, base
+ AR71XX_GPIO_REG_SET
);
83 __raw_writel(1 << offset
, base
+ AR71XX_GPIO_REG_CLEAR
);
85 __raw_writel(__raw_readl(base
+ AR71XX_GPIO_REG_OE
) | (1 << offset
),
86 base
+ AR71XX_GPIO_REG_OE
);
88 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
93 static int ar934x_gpio_direction_input(struct gpio_chip
*chip
,
96 void __iomem
*base
= ar71xx_gpio_base
;
99 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
101 __raw_writel(__raw_readl(base
+ AR71XX_GPIO_REG_OE
) | (1 << offset
),
102 base
+ AR71XX_GPIO_REG_OE
);
104 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
109 static int ar934x_gpio_direction_output(struct gpio_chip
*chip
,
110 unsigned offset
, int value
)
112 void __iomem
*base
= ar71xx_gpio_base
;
115 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
118 __raw_writel(1 << offset
, base
+ AR71XX_GPIO_REG_SET
);
120 __raw_writel(1 << offset
, base
+ AR71XX_GPIO_REG_CLEAR
);
122 __raw_writel(__raw_readl(base
+ AR71XX_GPIO_REG_OE
) & ~(1 << offset
),
123 base
+ AR71XX_GPIO_REG_OE
);
125 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
130 static struct gpio_chip ar71xx_gpio_chip
= {
132 .get
= ar71xx_gpio_get_value
,
133 .set
= ar71xx_gpio_set_value
,
134 .direction_input
= ar71xx_gpio_direction_input
,
135 .direction_output
= ar71xx_gpio_direction_output
,
137 .ngpio
= AR71XX_GPIO_COUNT
,
140 void ar71xx_gpio_function_enable(u32 mask
)
142 void __iomem
*base
= ar71xx_gpio_base
;
146 if (ar71xx_soc
== AR71XX_SOC_AR9341
||
147 ar71xx_soc
== AR71XX_SOC_AR9342
||
148 ar71xx_soc
== AR71XX_SOC_AR9344
) {
149 reg
= AR934X_GPIO_REG_FUNC
;
151 reg
= AR71XX_GPIO_REG_FUNC
;
154 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
156 __raw_writel(__raw_readl(base
+ reg
) | mask
, base
+ reg
);
158 (void) __raw_readl(base
+ reg
);
160 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
163 void ar71xx_gpio_function_disable(u32 mask
)
165 void __iomem
*base
= ar71xx_gpio_base
;
169 if (ar71xx_soc
== AR71XX_SOC_AR9341
||
170 ar71xx_soc
== AR71XX_SOC_AR9342
||
171 ar71xx_soc
== AR71XX_SOC_AR9344
) {
172 reg
= AR934X_GPIO_REG_FUNC
;
174 reg
= AR71XX_GPIO_REG_FUNC
;
177 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
179 __raw_writel(__raw_readl(base
+ reg
) & ~mask
, base
+ reg
);
181 (void) __raw_readl(base
+ reg
);
183 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
186 void ar71xx_gpio_function_setup(u32 set
, u32 clear
)
188 void __iomem
*base
= ar71xx_gpio_base
;
192 if (ar71xx_soc
== AR71XX_SOC_AR9341
||
193 ar71xx_soc
== AR71XX_SOC_AR9342
||
194 ar71xx_soc
== AR71XX_SOC_AR9344
) {
195 reg
= AR934X_GPIO_REG_FUNC
;
197 reg
= AR71XX_GPIO_REG_FUNC
;
200 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
202 __raw_writel((__raw_readl(base
+ reg
) & ~clear
) | set
, base
+ reg
);
204 (void) __raw_readl(base
+ reg
);
206 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
208 EXPORT_SYMBOL(ar71xx_gpio_function_setup
);
210 void __init
ar71xx_gpio_output_select(unsigned gpio
, u8 val
)
212 void __iomem
*base
= ar71xx_gpio_base
;
217 if (ar71xx_soc
!= AR71XX_SOC_AR9341
&&
218 ar71xx_soc
!= AR71XX_SOC_AR9342
&&
219 ar71xx_soc
!= AR71XX_SOC_AR9344
)
222 if (gpio
>= AR934X_GPIO_COUNT
)
225 reg
= AR934X_GPIO_REG_OUT_FUNC0
+ 4 * (gpio
/ 4);
228 spin_lock_irqsave(&ar71xx_gpio_lock
, flags
);
230 t
= __raw_readl(base
+ reg
);
233 __raw_writel(t
, base
+ reg
);
236 (void) __raw_readl(base
+ reg
);
238 spin_unlock_irqrestore(&ar71xx_gpio_lock
, flags
);
241 void __init
ar71xx_gpio_init(void)
245 if (!request_mem_region(AR71XX_GPIO_BASE
, AR71XX_GPIO_SIZE
,
246 "AR71xx GPIO controller"))
247 panic("cannot allocate AR71xx GPIO registers page");
249 switch (ar71xx_soc
) {
250 case AR71XX_SOC_AR7130
:
251 case AR71XX_SOC_AR7141
:
252 case AR71XX_SOC_AR7161
:
253 ar71xx_gpio_chip
.ngpio
= AR71XX_GPIO_COUNT
;
256 case AR71XX_SOC_AR7240
:
257 ar71xx_gpio_chip
.ngpio
= AR7240_GPIO_COUNT
;
260 case AR71XX_SOC_AR7241
:
261 case AR71XX_SOC_AR7242
:
262 ar71xx_gpio_chip
.ngpio
= AR7241_GPIO_COUNT
;
265 case AR71XX_SOC_AR9130
:
266 case AR71XX_SOC_AR9132
:
267 ar71xx_gpio_chip
.ngpio
= AR91XX_GPIO_COUNT
;
270 case AR71XX_SOC_AR9330
:
271 case AR71XX_SOC_AR9331
:
272 ar71xx_gpio_chip
.ngpio
= AR933X_GPIO_COUNT
;
275 case AR71XX_SOC_AR9341
:
276 case AR71XX_SOC_AR9342
:
277 case AR71XX_SOC_AR9344
:
278 ar71xx_gpio_chip
.ngpio
= AR934X_GPIO_COUNT
;
279 ar71xx_gpio_chip
.direction_input
= ar934x_gpio_direction_input
;
280 ar71xx_gpio_chip
.direction_output
= ar934x_gpio_direction_output
;
287 err
= gpiochip_add(&ar71xx_gpio_chip
);
289 panic("cannot add AR71xx GPIO chip, error=%d", err
);
292 int gpio_to_irq(unsigned gpio
)
294 return AR71XX_GPIO_IRQ(gpio
);
296 EXPORT_SYMBOL(gpio_to_irq
);
298 int irq_to_gpio(unsigned irq
)
300 return irq
- AR71XX_GPIO_IRQ_BASE
;
302 EXPORT_SYMBOL(irq_to_gpio
);