-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 58628 b: refs/heads/master c: 4ead168 h: refs/heads/master v: v3
- Loading branch information
Florian Fainelli
authored and
Ralf Baechle
committed
Jul 10, 2007
1 parent
6fef05d
commit 8a28673
Showing
5 changed files
with
152 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 82b8d2250c4b606e190853db9505b54b9fb71aa5 | ||
refs/heads/master: 4ead16819b4c61fea9bb73eb470f6bb1d3350e5c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
#ifndef _AU1XXX_GPIO_H_ | ||
#define _AU1XXX_GPIO_H_ | ||
|
||
#include <linux/types.h> | ||
|
||
#define AU1XXX_GPIO_BASE 200 | ||
|
||
struct au1x00_gpio2 { | ||
u32 dir; | ||
u32 reserved; | ||
u32 output; | ||
u32 pinstate; | ||
u32 inten; | ||
u32 enable; | ||
}; | ||
|
||
extern int au1xxx_gpio_get_value(unsigned gpio); | ||
extern void au1xxx_gpio_set_value(unsigned gpio, int value); | ||
extern int au1xxx_gpio_direction_input(unsigned gpio); | ||
extern int au1xxx_gpio_direction_output(unsigned gpio, int value); | ||
|
||
|
||
/* Wrappers for the arch-neutral GPIO API */ | ||
|
||
static inline int gpio_request(unsigned gpio, const char *label) | ||
{ | ||
/* Not yet implemented */ | ||
return 0; | ||
} | ||
|
||
static inline void gpio_free(unsigned gpio) | ||
{ | ||
/* Not yet implemented */ | ||
} | ||
|
||
static inline int gpio_direction_input(unsigned gpio) | ||
{ | ||
return au1xxx_gpio_direction_input(gpio); | ||
} | ||
|
||
static inline int gpio_direction_output(unsigned gpio, int value) | ||
{ | ||
return au1xxx_gpio_direction_output(gpio, value); | ||
} | ||
|
||
static inline int gpio_get_value(unsigned gpio) | ||
{ | ||
return au1xxx_gpio_get_value(gpio); | ||
} | ||
|
||
static inline void gpio_set_value(unsigned gpio, int value) | ||
{ | ||
au1xxx_gpio_set_value(gpio, value); | ||
} | ||
|
||
static inline int gpio_to_irq(unsigned gpio) | ||
{ | ||
return gpio; | ||
} | ||
|
||
static inline int irq_to_gpio(unsigned irq) | ||
{ | ||
return irq; | ||
} | ||
|
||
/* For cansleep */ | ||
#include <asm-generic/gpio.h> | ||
|
||
#endif /* _AU1XXX_GPIO_H_ */ |