Commit | Line | Data |
---|---|---|
73b4390f RB |
1 | /* |
2 | * Miscellaneous functions for IDT EB434 board | |
3 | * | |
4 | * Copyright 2004 IDT Inc. (rischelp@idt.com) | |
5 | * Copyright 2006 Phil Sutter <n0-1@freewrt.org> | |
6 | * Copyright 2007 Florian Fainelli <florian@openwrt.org> | |
7 | * | |
8 | * This program is free software; you can redistribute it and/or modify it | |
9 | * under the terms of the GNU General Public License as published by the | |
10 | * Free Software Foundation; either version 2 of the License, or (at your | |
11 | * option) any later version. | |
12 | * | |
13 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | |
14 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | |
15 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | |
16 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | |
17 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | |
18 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | |
19 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | |
20 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | |
22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
23 | * | |
24 | * You should have received a copy of the GNU General Public License along | |
25 | * with this program; if not, write to the Free Software Foundation, Inc., | |
26 | * 675 Mass Ave, Cambridge, MA 02139, USA. | |
27 | */ | |
28 | ||
29 | #include <linux/kernel.h> | |
73b4390f RB |
30 | #include <linux/init.h> |
31 | #include <linux/types.h> | |
cae39d13 | 32 | #include <linux/export.h> |
73b4390f | 33 | #include <linux/spinlock.h> |
73b4390f | 34 | #include <linux/platform_device.h> |
41f6f8ec | 35 | #include <linux/gpio/driver.h> |
73b4390f RB |
36 | |
37 | #include <asm/mach-rc32434/rb.h> | |
d888e25b FF |
38 | #include <asm/mach-rc32434/gpio.h> |
39 | ||
bf64f7fe JL |
40 | #define GPIOBASE 0x050000 |
41 | /* Offsets relative to GPIOBASE */ | |
42 | #define GPIOFUNC 0x00 | |
43 | #define GPIOCFG 0x04 | |
44 | #define GPIOD 0x08 | |
45 | #define GPIOILEVEL 0x0C | |
46 | #define GPIOISTAT 0x10 | |
47 | #define GPIONMIEN 0x14 | |
48 | #define IMASK6 0x38 | |
49 | ||
d888e25b FF |
50 | struct rb532_gpio_chip { |
51 | struct gpio_chip chip; | |
52 | void __iomem *regbase; | |
d888e25b | 53 | }; |
73b4390f | 54 | |
73b4390f RB |
55 | static struct resource rb532_gpio_reg0_res[] = { |
56 | { | |
70342287 RB |
57 | .name = "gpio_reg0", |
58 | .start = REGBASE + GPIOBASE, | |
59 | .end = REGBASE + GPIOBASE + sizeof(struct rb532_gpio_reg) - 1, | |
60 | .flags = IORESOURCE_MEM, | |
73b4390f RB |
61 | } |
62 | }; | |
63 | ||
2e373952 PS |
64 | /* rb532_set_bit - sanely set a bit |
65 | * | |
66 | * bitval: new value for the bit | |
67 | * offset: bit index in the 4 byte address range | |
68 | * ioaddr: 4 byte aligned address being altered | |
69 | */ | |
70 | static inline void rb532_set_bit(unsigned bitval, | |
71 | unsigned offset, void __iomem *ioaddr) | |
72 | { | |
73 | unsigned long flags; | |
74 | u32 val; | |
75 | ||
2e373952 PS |
76 | local_irq_save(flags); |
77 | ||
78 | val = readl(ioaddr); | |
5379a5fd PS |
79 | val &= ~(!bitval << offset); /* unset bit if bitval == 0 */ |
80 | val |= (!!bitval << offset); /* set bit if bitval == 1 */ | |
2e373952 PS |
81 | writel(val, ioaddr); |
82 | ||
83 | local_irq_restore(flags); | |
84 | } | |
85 | ||
86 | /* rb532_get_bit - read a bit | |
87 | * | |
88 | * returns the boolean state of the bit, which may be > 1 | |
89 | */ | |
90 | static inline int rb532_get_bit(unsigned offset, void __iomem *ioaddr) | |
91 | { | |
635c9907 | 92 | return readl(ioaddr) & (1 << offset); |
2e373952 PS |
93 | } |
94 | ||
d888e25b FF |
95 | /* |
96 | * Return GPIO level */ | |
97 | static int rb532_gpio_get(struct gpio_chip *chip, unsigned offset) | |
73b4390f | 98 | { |
d888e25b FF |
99 | struct rb532_gpio_chip *gpch; |
100 | ||
41f6f8ec | 101 | gpch = gpiochip_get_data(chip); |
8eb248fa | 102 | return !!rb532_get_bit(offset, gpch->regbase + GPIOD); |
73b4390f | 103 | } |
73b4390f | 104 | |
d888e25b FF |
105 | /* |
106 | * Set output GPIO level | |
107 | */ | |
55ba5375 BG |
108 | static int rb532_gpio_set(struct gpio_chip *chip, unsigned int offset, |
109 | int value) | |
73b4390f | 110 | { |
d888e25b | 111 | struct rb532_gpio_chip *gpch; |
73b4390f | 112 | |
41f6f8ec | 113 | gpch = gpiochip_get_data(chip); |
2e373952 | 114 | rb532_set_bit(value, offset, gpch->regbase + GPIOD); |
55ba5375 BG |
115 | |
116 | return 0; | |
73b4390f | 117 | } |
73b4390f | 118 | |
d888e25b FF |
119 | /* |
120 | * Set GPIO direction to input | |
121 | */ | |
122 | static int rb532_gpio_direction_input(struct gpio_chip *chip, unsigned offset) | |
73b4390f | 123 | { |
d888e25b | 124 | struct rb532_gpio_chip *gpch; |
73b4390f | 125 | |
41f6f8ec | 126 | gpch = gpiochip_get_data(chip); |
73b4390f | 127 | |
33763d57 PS |
128 | /* disable alternate function in case it's set */ |
129 | rb532_set_bit(0, offset, gpch->regbase + GPIOFUNC); | |
73b4390f | 130 | |
2e373952 | 131 | rb532_set_bit(0, offset, gpch->regbase + GPIOCFG); |
73b4390f RB |
132 | return 0; |
133 | } | |
73b4390f | 134 | |
d888e25b FF |
135 | /* |
136 | * Set GPIO direction to output | |
137 | */ | |
138 | static int rb532_gpio_direction_output(struct gpio_chip *chip, | |
139 | unsigned offset, int value) | |
73b4390f | 140 | { |
d888e25b | 141 | struct rb532_gpio_chip *gpch; |
d888e25b | 142 | |
41f6f8ec | 143 | gpch = gpiochip_get_data(chip); |
d888e25b | 144 | |
33763d57 PS |
145 | /* disable alternate function in case it's set */ |
146 | rb532_set_bit(0, offset, gpch->regbase + GPIOFUNC); | |
73b4390f | 147 | |
2e373952 PS |
148 | /* set the initial output value */ |
149 | rb532_set_bit(value, offset, gpch->regbase + GPIOD); | |
150 | ||
151 | rb532_set_bit(1, offset, gpch->regbase + GPIOCFG); | |
d888e25b | 152 | return 0; |
73b4390f | 153 | } |
73b4390f | 154 | |
832f5dac AB |
155 | static int rb532_gpio_to_irq(struct gpio_chip *chip, unsigned gpio) |
156 | { | |
157 | return 8 + 4 * 32 + gpio; | |
158 | } | |
159 | ||
2e373952 PS |
160 | static struct rb532_gpio_chip rb532_gpio_chip[] = { |
161 | [0] = { | |
162 | .chip = { | |
163 | .label = "gpio0", | |
164 | .direction_input = rb532_gpio_direction_input, | |
165 | .direction_output = rb532_gpio_direction_output, | |
166 | .get = rb532_gpio_get, | |
55ba5375 | 167 | .set_rv = rb532_gpio_set, |
832f5dac | 168 | .to_irq = rb532_gpio_to_irq, |
2e373952 PS |
169 | .base = 0, |
170 | .ngpio = 32, | |
171 | }, | |
172 | }, | |
173 | }; | |
73b4390f | 174 | |
d888e25b | 175 | /* |
2e373952 | 176 | * Set GPIO interrupt level |
d888e25b | 177 | */ |
2e373952 | 178 | void rb532_gpio_set_ilevel(int bit, unsigned gpio) |
73b4390f | 179 | { |
2e373952 | 180 | rb532_set_bit(bit, gpio, rb532_gpio_chip->regbase + GPIOILEVEL); |
73b4390f | 181 | } |
2e373952 | 182 | EXPORT_SYMBOL(rb532_gpio_set_ilevel); |
73b4390f | 183 | |
d888e25b | 184 | /* |
2e373952 | 185 | * Set GPIO interrupt status |
d888e25b | 186 | */ |
2e373952 | 187 | void rb532_gpio_set_istat(int bit, unsigned gpio) |
73b4390f | 188 | { |
2e373952 | 189 | rb532_set_bit(bit, gpio, rb532_gpio_chip->regbase + GPIOISTAT); |
73b4390f | 190 | } |
2e373952 | 191 | EXPORT_SYMBOL(rb532_gpio_set_istat); |
73b4390f | 192 | |
d888e25b | 193 | /* |
2e373952 | 194 | * Configure GPIO alternate function |
d888e25b | 195 | */ |
0fc6bc0d | 196 | void rb532_gpio_set_func(unsigned gpio) |
73b4390f | 197 | { |
0fc6bc0d | 198 | rb532_set_bit(1, gpio, rb532_gpio_chip->regbase + GPIOFUNC); |
73b4390f | 199 | } |
0fc6bc0d | 200 | EXPORT_SYMBOL(rb532_gpio_set_func); |
d888e25b | 201 | |
b796d046 | 202 | static int __init rb532_gpio_init(void) |
73b4390f | 203 | { |
d888e25b | 204 | struct resource *r; |
73b4390f | 205 | |
d888e25b | 206 | r = rb532_gpio_reg0_res; |
4bdc0d67 | 207 | rb532_gpio_chip->regbase = ioremap(r->start, resource_size(r)); |
d888e25b FF |
208 | |
209 | if (!rb532_gpio_chip->regbase) { | |
73b4390f RB |
210 | printk(KERN_ERR "rb532: cannot remap GPIO register 0\n"); |
211 | return -ENXIO; | |
212 | } | |
213 | ||
d888e25b | 214 | /* Register our GPIO chip */ |
41f6f8ec | 215 | gpiochip_add_data(&rb532_gpio_chip->chip, rb532_gpio_chip); |
d888e25b | 216 | |
73b4390f RB |
217 | return 0; |
218 | } | |
219 | arch_initcall(rb532_gpio_init); |