2 * Miscellaneous functions for IDT EB434 board
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>
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.
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.
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.
29 #include <linux/kernel.h>
30 #include <linux/init.h>
31 #include <linux/types.h>
32 #include <linux/pci.h>
33 #include <linux/spinlock.h>
35 #include <linux/platform_device.h>
37 #include <asm/addrspace.h>
40 #include <asm/rc32434/rb.h>
42 #define GPIO_BADDR 0xb8050000
44 static volatile unsigned char *devCtl3Base
;
45 static unsigned char latchU5State
;
46 static spinlock_t clu5Lock
= SPIN_LOCK_UNLOCKED
;
48 struct rb500_gpio_reg __iomem
*rb500_gpio_reg0
;
49 EXPORT_SYMBOL(rb500_gpio_reg0
);
51 static struct resource rb500_gpio_reg0_res
[] = {
55 .end
= GPIO_BADDR
+ sizeof(struct rb500_gpio_reg
),
56 .flags
= IORESOURCE_MEM
,
60 void set434Reg(unsigned regOffs
, unsigned bit
, unsigned len
, unsigned val
)
65 spin_lock_irqsave(&clu5Lock
, flags
);
66 data
= *(volatile unsigned *) (IDT434_REG_BASE
+ regOffs
);
67 for (i
= 0; i
!= len
; ++i
) {
69 data
|= (1 << (i
+ bit
));
71 data
&= ~(1 << (i
+ bit
));
73 *(volatile unsigned *) (IDT434_REG_BASE
+ regOffs
) = data
;
74 spin_unlock_irqrestore(&clu5Lock
, flags
);
77 EXPORT_SYMBOL(set434Reg
);
79 void changeLatchU5(unsigned char orMask
, unsigned char nandMask
)
83 spin_lock_irqsave(&clu5Lock
, flags
);
84 latchU5State
= (latchU5State
| orMask
) & ~nandMask
;
86 devCtl3Base
= (volatile unsigned char *)
87 KSEG1ADDR(*(volatile unsigned *)
88 KSEG1ADDR(0x18010030));
89 *devCtl3Base
= latchU5State
;
90 spin_unlock_irqrestore(&clu5Lock
, flags
);
93 EXPORT_SYMBOL(changeLatchU5
);
95 unsigned char getLatchU5State(void)
100 EXPORT_SYMBOL(getLatchU5State
);
102 int rb500_gpio_get_value(unsigned gpio
)
106 reg
= readl(&rb500_gpio_reg0
->gpiod
);
107 return (reg
& (1 << gpio
));
110 EXPORT_SYMBOL(rb500_gpio_get_value
);
112 void rb500_gpio_set_value(unsigned gpio
, int value
)
116 reg
= (u32
)&rb500_gpio_reg0
->gpiod
;
118 writel(value
, (void *)(reg
& (1 << gpio
)));
121 EXPORT_SYMBOL(rb500_gpio_set_value
);
123 int rb500_gpio_direction_input(unsigned gpio
)
127 reg
= (u32
)&rb500_gpio_reg0
->gpiocfg
;
128 writel(0, (void *)(reg
& (1 << gpio
)));
133 EXPORT_SYMBOL(rb500_gpio_direction_input
);
135 int rb500_gpio_direction_output(unsigned gpio
, int value
)
139 reg
= (u32
)&rb500_gpio_reg0
->gpiocfg
;
141 writel(1, (void *)(reg
& (1 << gpio
)));
146 EXPORT_SYMBOL(rb500_gpio_direction_output
);
148 int __init
rb500_gpio_init(void)
150 rb500_gpio_reg0
= ioremap_nocache(rb500_gpio_reg0_res
[0].start
,
151 rb500_gpio_reg0_res
[0].end
- rb500_gpio_reg0_res
[0].start
);
153 if (!rb500_gpio_reg0
) {
154 printk(KERN_ERR
"rb500: cannot remap GPIO register 0\n");