blob: 70c4a6726377ded624a426ca683df1511dd62bc2 [file] [log] [blame]
Ralf Baechle73b43902008-07-16 16:12:25 +01001/*
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>
Ralf Baechle73b43902008-07-16 16:12:25 +010030#include <linux/init.h>
31#include <linux/types.h>
Ralf Baechle73b43902008-07-16 16:12:25 +010032#include <linux/spinlock.h>
Ralf Baechle73b43902008-07-16 16:12:25 +010033#include <linux/platform_device.h>
Florian Fainellid888e252008-08-23 18:54:34 +020034#include <linux/gpio.h>
Ralf Baechle73b43902008-07-16 16:12:25 +010035
36#include <asm/mach-rc32434/rb.h>
Florian Fainellid888e252008-08-23 18:54:34 +020037#include <asm/mach-rc32434/gpio.h>
Ralf Baechle73b43902008-07-16 16:12:25 +010038
Florian Fainellid888e252008-08-23 18:54:34 +020039struct rb532_gpio_chip {
40 struct gpio_chip chip;
41 void __iomem *regbase;
42 void (*set_int_level)(struct gpio_chip *chip, unsigned offset, int value);
43 int (*get_int_level)(struct gpio_chip *chip, unsigned offset);
44 void (*set_int_status)(struct gpio_chip *chip, unsigned offset, int value);
45 int (*get_int_status)(struct gpio_chip *chip, unsigned offset);
46};
Ralf Baechle73b43902008-07-16 16:12:25 +010047
48struct mpmc_device dev3;
49
50static struct resource rb532_gpio_reg0_res[] = {
51 {
52 .name = "gpio_reg0",
Florian Fainelli3c8cf8c2008-08-22 17:01:03 +020053 .start = REGBASE + GPIOBASE,
54 .end = REGBASE + GPIOBASE + sizeof(struct rb532_gpio_reg) - 1,
Ralf Baechle73b43902008-07-16 16:12:25 +010055 .flags = IORESOURCE_MEM,
56 }
57};
58
59static struct resource rb532_dev3_ctl_res[] = {
60 {
61 .name = "dev3_ctl",
Florian Fainelli3c8cf8c2008-08-22 17:01:03 +020062 .start = REGBASE + DEV3BASE,
63 .end = REGBASE + DEV3BASE + sizeof(struct dev_reg) - 1,
Ralf Baechle73b43902008-07-16 16:12:25 +010064 .flags = IORESOURCE_MEM,
65 }
66};
67
68void set_434_reg(unsigned reg_offs, unsigned bit, unsigned len, unsigned val)
69{
Adrian Bunk8b32d6d2008-07-29 09:46:34 +030070 unsigned long flags;
71 unsigned data;
Ralf Baechle73b43902008-07-16 16:12:25 +010072 unsigned i = 0;
73
74 spin_lock_irqsave(&dev3.lock, flags);
75
Florian Fainellic76befc2008-08-22 17:02:03 +020076 data = readl(IDT434_REG_BASE + reg_offs);
Ralf Baechle73b43902008-07-16 16:12:25 +010077 for (i = 0; i != len; ++i) {
78 if (val & (1 << i))
79 data |= (1 << (i + bit));
80 else
81 data &= ~(1 << (i + bit));
82 }
83 writel(data, (IDT434_REG_BASE + reg_offs));
84
85 spin_unlock_irqrestore(&dev3.lock, flags);
86}
87EXPORT_SYMBOL(set_434_reg);
88
89unsigned get_434_reg(unsigned reg_offs)
90{
91 return readl(IDT434_REG_BASE + reg_offs);
92}
93EXPORT_SYMBOL(get_434_reg);
94
95void set_latch_u5(unsigned char or_mask, unsigned char nand_mask)
96{
Adrian Bunk8b32d6d2008-07-29 09:46:34 +030097 unsigned long flags;
Ralf Baechle73b43902008-07-16 16:12:25 +010098
99 spin_lock_irqsave(&dev3.lock, flags);
100
101 dev3.state = (dev3.state | or_mask) & ~nand_mask;
102 writel(dev3.state, &dev3.base);
103
104 spin_unlock_irqrestore(&dev3.lock, flags);
105}
106EXPORT_SYMBOL(set_latch_u5);
107
108unsigned char get_latch_u5(void)
109{
110 return dev3.state;
111}
112EXPORT_SYMBOL(get_latch_u5);
113
Florian Fainellid888e252008-08-23 18:54:34 +0200114/*
115 * Return GPIO level */
116static int rb532_gpio_get(struct gpio_chip *chip, unsigned offset)
Ralf Baechle73b43902008-07-16 16:12:25 +0100117{
Florian Fainellid888e252008-08-23 18:54:34 +0200118 u32 mask = 1 << offset;
119 struct rb532_gpio_chip *gpch;
120
121 gpch = container_of(chip, struct rb532_gpio_chip, chip);
122 return readl(gpch->regbase + GPIOD) & mask;
Ralf Baechle73b43902008-07-16 16:12:25 +0100123}
Ralf Baechle73b43902008-07-16 16:12:25 +0100124
Florian Fainellid888e252008-08-23 18:54:34 +0200125/*
126 * Set output GPIO level
127 */
128static void rb532_gpio_set(struct gpio_chip *chip,
129 unsigned offset, int value)
Ralf Baechle73b43902008-07-16 16:12:25 +0100130{
Florian Fainellid888e252008-08-23 18:54:34 +0200131 unsigned long flags;
132 u32 mask = 1 << offset;
133 u32 tmp;
134 struct rb532_gpio_chip *gpch;
135 void __iomem *gpvr;
Ralf Baechle73b43902008-07-16 16:12:25 +0100136
Florian Fainellid888e252008-08-23 18:54:34 +0200137 gpch = container_of(chip, struct rb532_gpio_chip, chip);
138 gpvr = gpch->regbase + GPIOD;
139
140 local_irq_save(flags);
141 tmp = readl(gpvr);
Ralf Baechle73b43902008-07-16 16:12:25 +0100142 if (value)
Florian Fainellid888e252008-08-23 18:54:34 +0200143 tmp |= mask;
144 else
145 tmp &= ~mask;
146 writel(tmp, gpvr);
147 local_irq_restore(flags);
Ralf Baechle73b43902008-07-16 16:12:25 +0100148}
Ralf Baechle73b43902008-07-16 16:12:25 +0100149
Florian Fainellid888e252008-08-23 18:54:34 +0200150/*
151 * Set GPIO direction to input
152 */
153static int rb532_gpio_direction_input(struct gpio_chip *chip, unsigned offset)
Ralf Baechle73b43902008-07-16 16:12:25 +0100154{
Florian Fainellid888e252008-08-23 18:54:34 +0200155 unsigned long flags;
156 u32 mask = 1 << offset;
157 u32 value;
158 struct rb532_gpio_chip *gpch;
159 void __iomem *gpdr;
160
161 gpch = container_of(chip, struct rb532_gpio_chip, chip);
162 gpdr = gpch->regbase + GPIOCFG;
163
164 local_irq_save(flags);
165 value = readl(gpdr);
166 value &= ~mask;
167 writel(value, gpdr);
168 local_irq_restore(flags);
Ralf Baechle73b43902008-07-16 16:12:25 +0100169
170 return 0;
171}
Ralf Baechle73b43902008-07-16 16:12:25 +0100172
Florian Fainellid888e252008-08-23 18:54:34 +0200173/*
174 * Set GPIO direction to output
175 */
176static int rb532_gpio_direction_output(struct gpio_chip *chip,
177 unsigned offset, int value)
Ralf Baechle73b43902008-07-16 16:12:25 +0100178{
Florian Fainellid888e252008-08-23 18:54:34 +0200179 unsigned long flags;
180 u32 mask = 1 << offset;
181 u32 tmp;
182 struct rb532_gpio_chip *gpch;
183 void __iomem *gpdr;
184
185 gpch = container_of(chip, struct rb532_gpio_chip, chip);
186 writel(mask, gpch->regbase + GPIOD);
187 gpdr = gpch->regbase + GPIOCFG;
188
189 local_irq_save(flags);
190 tmp = readl(gpdr);
191 tmp |= mask;
192 writel(tmp, gpdr);
193 local_irq_restore(flags);
Ralf Baechle73b43902008-07-16 16:12:25 +0100194
195 return 0;
196}
Ralf Baechle73b43902008-07-16 16:12:25 +0100197
Florian Fainellid888e252008-08-23 18:54:34 +0200198/*
199 * Set the GPIO interrupt level
200 */
201static void rb532_gpio_set_int_level(struct gpio_chip *chip,
202 unsigned offset, int value)
Ralf Baechle73b43902008-07-16 16:12:25 +0100203{
Florian Fainellid888e252008-08-23 18:54:34 +0200204 unsigned long flags;
205 u32 mask = 1 << offset;
206 u32 tmp;
207 struct rb532_gpio_chip *gpch;
208 void __iomem *gpil;
Ralf Baechle73b43902008-07-16 16:12:25 +0100209
Florian Fainellid888e252008-08-23 18:54:34 +0200210 gpch = container_of(chip, struct rb532_gpio_chip, chip);
211 gpil = gpch->regbase + GPIOILEVEL;
212
213 local_irq_save(flags);
214 tmp = readl(gpil);
Ralf Baechle73b43902008-07-16 16:12:25 +0100215 if (value)
Florian Fainellid888e252008-08-23 18:54:34 +0200216 tmp |= mask;
217 else
218 tmp &= ~mask;
219 writel(tmp, gpil);
220 local_irq_restore(flags);
Ralf Baechle73b43902008-07-16 16:12:25 +0100221}
Ralf Baechle73b43902008-07-16 16:12:25 +0100222
Florian Fainellid888e252008-08-23 18:54:34 +0200223/*
224 * Get the GPIO interrupt level
225 */
226static int rb532_gpio_get_int_level(struct gpio_chip *chip, unsigned offset)
Ralf Baechle73b43902008-07-16 16:12:25 +0100227{
Florian Fainellid888e252008-08-23 18:54:34 +0200228 u32 mask = 1 << offset;
229 struct rb532_gpio_chip *gpch;
230
231 gpch = container_of(chip, struct rb532_gpio_chip, chip);
232 return readl(gpch->regbase + GPIOILEVEL) & mask;
Ralf Baechle73b43902008-07-16 16:12:25 +0100233}
Ralf Baechle73b43902008-07-16 16:12:25 +0100234
Florian Fainellid888e252008-08-23 18:54:34 +0200235/*
236 * Set the GPIO interrupt status
237 */
238static void rb532_gpio_set_int_status(struct gpio_chip *chip,
239 unsigned offset, int value)
Ralf Baechle73b43902008-07-16 16:12:25 +0100240{
Florian Fainellid888e252008-08-23 18:54:34 +0200241 unsigned long flags;
242 u32 mask = 1 << offset;
243 u32 tmp;
244 struct rb532_gpio_chip *gpch;
245 void __iomem *gpis;
Ralf Baechle73b43902008-07-16 16:12:25 +0100246
Florian Fainellid888e252008-08-23 18:54:34 +0200247 gpch = container_of(chip, struct rb532_gpio_chip, chip);
248 gpis = gpch->regbase + GPIOISTAT;
249
250 local_irq_save(flags);
251 tmp = readl(gpis);
Ralf Baechle73b43902008-07-16 16:12:25 +0100252 if (value)
Florian Fainellid888e252008-08-23 18:54:34 +0200253 tmp |= mask;
254 else
255 tmp &= ~mask;
256 writel(tmp, gpis);
257 local_irq_restore(flags);
Ralf Baechle73b43902008-07-16 16:12:25 +0100258}
Ralf Baechle73b43902008-07-16 16:12:25 +0100259
Florian Fainellid888e252008-08-23 18:54:34 +0200260/*
261 * Get the GPIO interrupt status
262 */
263static int rb532_gpio_get_int_status(struct gpio_chip *chip, unsigned offset)
Ralf Baechle73b43902008-07-16 16:12:25 +0100264{
Florian Fainellid888e252008-08-23 18:54:34 +0200265 u32 mask = 1 << offset;
266 struct rb532_gpio_chip *gpch;
Ralf Baechle73b43902008-07-16 16:12:25 +0100267
Florian Fainellid888e252008-08-23 18:54:34 +0200268 gpch = container_of(chip, struct rb532_gpio_chip, chip);
269 return readl(gpch->regbase + GPIOISTAT) & mask;
Ralf Baechle73b43902008-07-16 16:12:25 +0100270}
Ralf Baechle73b43902008-07-16 16:12:25 +0100271
Florian Fainellid888e252008-08-23 18:54:34 +0200272static struct rb532_gpio_chip rb532_gpio_chip[] = {
273 [0] = {
274 .chip = {
275 .label = "gpio0",
276 .direction_input = rb532_gpio_direction_input,
277 .direction_output = rb532_gpio_direction_output,
278 .get = rb532_gpio_get,
279 .set = rb532_gpio_set,
280 .base = 0,
281 .ngpio = 32,
282 },
283 .get_int_level = rb532_gpio_get_int_level,
284 .set_int_level = rb532_gpio_set_int_level,
285 .get_int_status = rb532_gpio_get_int_status,
286 .set_int_status = rb532_gpio_set_int_status,
287 },
288};
Ralf Baechle73b43902008-07-16 16:12:25 +0100289
290int __init rb532_gpio_init(void)
291{
Florian Fainellid888e252008-08-23 18:54:34 +0200292 struct resource *r;
Ralf Baechle73b43902008-07-16 16:12:25 +0100293
Florian Fainellid888e252008-08-23 18:54:34 +0200294 r = rb532_gpio_reg0_res;
295 rb532_gpio_chip->regbase = ioremap_nocache(r->start, r->end - r->start);
296
297 if (!rb532_gpio_chip->regbase) {
Ralf Baechle73b43902008-07-16 16:12:25 +0100298 printk(KERN_ERR "rb532: cannot remap GPIO register 0\n");
299 return -ENXIO;
300 }
301
Florian Fainellid888e252008-08-23 18:54:34 +0200302 /* Register our GPIO chip */
303 gpiochip_add(&rb532_gpio_chip->chip);
304
305 r = rb532_dev3_ctl_res;
306 dev3.base = ioremap_nocache(r->start, r->end - r->start);
Ralf Baechle73b43902008-07-16 16:12:25 +0100307
308 if (!dev3.base) {
309 printk(KERN_ERR "rb532: cannot remap device controller 3\n");
310 return -ENXIO;
311 }
312
Florian Fainellifa36b042008-10-24 19:53:55 +0200313 /* Set the interrupt status and level for the CF pin */
314 rb532_gpio_set_int_level(&rb532_gpio_chip->chip, CF_GPIO_NUM, 1);
315 rb532_gpio_set_int_status(&rb532_gpio_chip->chip, CF_GPIO_NUM, 0);
316
Ralf Baechle73b43902008-07-16 16:12:25 +0100317 return 0;
318}
319arch_initcall(rb532_gpio_init);