projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed SIP connection tracking helper, licence unclear, unresolved symbols
[openwrt.git]
/
openwrt
/
target
/
linux
/
package
/
diag
/
diag_led.c
diff --git
a/openwrt/target/linux/package/diag/diag_led.c
b/openwrt/target/linux/package/diag/diag_led.c
index
8d4acd5
..
e4dc391
100644
(file)
--- a/
openwrt/target/linux/package/diag/diag_led.c
+++ b/
openwrt/target/linux/package/diag/diag_led.c
@@
-28,6
+28,7
@@
* 2005/03/14 asus wl-500g deluxe and buffalo v2 support added
* 2005/04/13 added licensing informations
* 2005/04/18 base reset polarity off initial readings
* 2005/03/14 asus wl-500g deluxe and buffalo v2 support added
* 2005/04/13 added licensing informations
* 2005/04/18 base reset polarity off initial readings
+ * 2006/02/07 motorola wa840g/we800g support added
*/
#include <linux/module.h>
*/
#include <linux/module.h>
@@
-36,6
+37,7
@@
#include <linux/sysctl.h>
#include <asm/io.h>
#include <typedefs.h>
#include <linux/sysctl.h>
#include <asm/io.h>
#include <typedefs.h>
+#include <osl.h>
#include <bcmdevs.h>
#include <sbutils.h>
#include <bcmdevs.h>
#include <sbutils.h>
@@
-47,9
+49,9
@@
static void *sbh;
#define DMZ_GPIO (1<<7)
static void set_gpio(uint32 mask, uint32 value) {
#define DMZ_GPIO (1<<7)
static void set_gpio(uint32 mask, uint32 value) {
- sb_gpiocontrol(sbh,mask,
0
);
- sb_gpioouten(sbh,mask,mask);
- sb_gpioout(sbh,mask,value);
+ sb_gpiocontrol(sbh,mask,
0, GPIO_DRV_PRIORITY
);
+ sb_gpioouten(sbh,mask,mask
,GPIO_DRV_PRIORITY
);
+ sb_gpioout(sbh,mask,value
,GPIO_DRV_PRIORITY
);
}
static void v2_set_diag(u8 state) {
}
static void v2_set_diag(u8 state) {
@@
-122,8
+124,8
@@
static int proc_reset(ctl_table *table, int write, struct file *filp,
{
if (reset_gpio) {
{
if (reset_gpio) {
- sb_gpiocontrol(sbh,reset_gpio,reset_gpio);
- sb_gpioouten(sbh,reset_gpio,0);
+ sb_gpiocontrol(sbh,reset_gpio,reset_gpio
,GPIO_DRV_PRIORITY
);
+ sb_gpioouten(sbh,reset_gpio,0
,GPIO_DRV_PRIORITY
);
reset=!(sb_gpioin(sbh)&reset_gpio);
if (reset_polarity) reset=!reset;
reset=!(sb_gpioin(sbh)&reset_gpio);
if (reset_polarity) reset=!reset;
@@
-185,6
+187,10
@@
static int __init diag_init()
//asus wl-500g
reset_gpio=(1<<6);
}
//asus wl-500g
reset_gpio=(1<<6);
}
+ if (!strcmp(buf,"2")) {
+ //wa840g v1 / we800g v1
+ reset_gpio=(1<<0);
+ }
}
if (!strcmp(buf,"bcm94710ap")) {
buf=nvram_get("boardnum")?:"";
}
if (!strcmp(buf,"bcm94710ap")) {
buf=nvram_get("boardnum")?:"";
@@
-222,8
+228,8
@@
static int __init diag_init()
}
}
- sb_gpiocontrol(sbh,reset_gpio,reset_gpio);
- sb_gpioouten(sbh,reset_gpio,0);
+ sb_gpiocontrol(sbh,reset_gpio,reset_gpio
,GPIO_DRV_PRIORITY
);
+ sb_gpioouten(sbh,reset_gpio,0
,GPIO_DRV_PRIORITY
);
reset_polarity=!(sb_gpioin(sbh)&reset_gpio);
diag_sysctl_header = register_sysctl_table(sys_diag, 0);
reset_polarity=!(sb_gpioin(sbh)&reset_gpio);
diag_sysctl_header = register_sysctl_table(sys_diag, 0);
This page took
0.028973 seconds
and
4
git commands to generate.