mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 23:42:43 +00:00
cache GPIO addresses to be more efficent
SVN-Revision: 10179
This commit is contained in:
parent
6993d2138c
commit
fae9e82aad
@ -28,19 +28,28 @@ extern void gpio_free(unsigned gpio);
|
|||||||
/* Common GPIO layer */
|
/* Common GPIO layer */
|
||||||
static inline int gpio_get_value(unsigned gpio)
|
static inline int gpio_get_value(unsigned gpio)
|
||||||
{
|
{
|
||||||
void __iomem *gpio_in =
|
static unsigned addr;
|
||||||
(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT);
|
|
||||||
|
|
||||||
return readl(gpio_in) & (1 << gpio);
|
if (!addr) {
|
||||||
|
void __iomem *gpio_in = (void __iomem *)
|
||||||
|
KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT);
|
||||||
|
addr = readl(gpio_in);
|
||||||
|
}
|
||||||
|
|
||||||
|
return addr & (1 << gpio);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void gpio_set_value(unsigned gpio, int value)
|
static inline void gpio_set_value(unsigned gpio, int value)
|
||||||
{
|
{
|
||||||
void __iomem *gpio_out =
|
static unsigned addr;
|
||||||
(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_OUTPUT);
|
|
||||||
unsigned tmp;
|
unsigned tmp;
|
||||||
|
|
||||||
tmp = readl(gpio_out) & ~(1 << gpio);
|
void __iomem *gpio_out =
|
||||||
|
(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_OUTPUT);
|
||||||
|
if (!addr)
|
||||||
|
addr = readl(gpio_out);
|
||||||
|
|
||||||
|
tmp = addr & ~(1 << gpio);
|
||||||
if (value)
|
if (value)
|
||||||
tmp |= 1 << gpio;
|
tmp |= 1 << gpio;
|
||||||
writel(tmp, gpio_out);
|
writel(tmp, gpio_out);
|
||||||
|
Loading…
Reference in New Issue
Block a user