mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-21 17:47:00 +00:00
fix gpio on rb532 - fixes the cf driver
SVN-Revision: 10888
This commit is contained in:
parent
994e6a8d7e
commit
d0bbe9933e
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
static volatile unsigned char *devCtl3Base;
|
static volatile unsigned char *devCtl3Base;
|
||||||
static unsigned char latchU5State;
|
static unsigned char latchU5State;
|
||||||
static spinlock_t clu5Lock;
|
static spinlock_t clu5Lock = SPIN_LOCK_UNLOCKED;
|
||||||
|
|
||||||
struct rb500_gpio_reg __iomem *rb500_gpio_reg0;
|
struct rb500_gpio_reg __iomem *rb500_gpio_reg0;
|
||||||
EXPORT_SYMBOL(rb500_gpio_reg0);
|
EXPORT_SYMBOL(rb500_gpio_reg0);
|
||||||
@ -116,7 +116,7 @@ EXPORT_SYMBOL(rb500_gpio_set_value);
|
|||||||
|
|
||||||
int rb500_gpio_direction_input(unsigned gpio)
|
int rb500_gpio_direction_input(unsigned gpio)
|
||||||
{
|
{
|
||||||
writel(readl(&rb500_gpio_reg0->gpiocfg) | (1 << gpio), (void *)&rb500_gpio_reg0->gpiocfg);
|
writel(readl(&rb500_gpio_reg0->gpiocfg) & ~(1 << gpio), (void *)&rb500_gpio_reg0->gpiocfg);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -125,7 +125,7 @@ EXPORT_SYMBOL(rb500_gpio_direction_input);
|
|||||||
int rb500_gpio_direction_output(unsigned gpio, int value)
|
int rb500_gpio_direction_output(unsigned gpio, int value)
|
||||||
{
|
{
|
||||||
gpio_set_value(gpio, value);
|
gpio_set_value(gpio, value);
|
||||||
writel(readl(&rb500_gpio_reg0->gpiocfg) & ~(1 << gpio), (void *)&rb500_gpio_reg0->gpiocfg);
|
writel(readl(&rb500_gpio_reg0->gpiocfg) | (1 << gpio), (void *)&rb500_gpio_reg0->gpiocfg);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user