2 * diag_led.c - replacement diag module
4 * Copyright (C) 2004 Mike Baker,
5 * Imre Kaloz <kaloz@dune.hu>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 * 2004/03/28 initial release
27 * 2004/08/26 asus & buffalo support added
28 * 2005/03/14 asus wl-500g deluxe and buffalo v2 support added
29 * 2005/04/13 added licensing informations
30 * 2005/04/18 base reset polarity off initial readings
31 * 2006/02/07 motorola wa840g/we800g support added
32 * 2006/08/18 asus power led support added
35 #include <linux/module.h>
36 #include <linux/init.h>
37 #include <linux/kernel.h>
38 #include <linux/sysctl.h>
45 extern char * nvram_get(const char *name
);
49 #define DIAG_GPIO (1<<1)
50 #define DMZ_GPIO (1<<7)
52 static void set_gpio(uint32 mask
, uint32 value
) {
53 sb_gpiocontrol(sbh
,mask
, 0, GPIO_DRV_PRIORITY
);
54 sb_gpioouten(sbh
,mask
,mask
,GPIO_DRV_PRIORITY
);
55 sb_gpioout(sbh
,mask
,value
,GPIO_DRV_PRIORITY
);
58 static void v2_set_diag(u8 state
) {
59 set_gpio(DIAG_GPIO
,state
);
61 static void v2_set_dmz(u8 state
) {
62 set_gpio(DMZ_GPIO
,state
);
65 // asus wl-500g (+deluxe)
66 #define ASUS_PWR_GPIO (1<<0)
68 static void asus_set_pwr(u8 state
) {
69 set_gpio(ASUS_PWR_GPIO
,state
);
76 static void v1_set_diag(u8 state
) {
78 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DIAG
)=0xFF;
80 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DIAG
);
83 static void v1_set_dmz(u8 state
) {
85 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DMZ
)=0xFF;
87 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DMZ
);
91 static void wap1_set_diag(u8 state
) {
94 static void wap1_set_dmz(u8 state
) {
99 static void ignore(u8 ignored
) {};
104 #define BIT_DIAG 0x04
106 void (*set_diag
)(u8 state
);
107 void (*set_dmz
)(u8 state
);
108 void (*set_pwr
)(u8 state
);
110 static unsigned int diag
= 0x02; // default: diag off, pwr on, dmz off
112 static void diag_change(void)
114 set_diag(0xFF); // off
115 set_dmz(0xFF); // off
116 set_pwr(0xFF); // off
119 set_diag(0x00); // on
126 static int proc_diag(ctl_table
*table
, int write
, struct file
*filp
,
127 void *buffer
, size_t *lenp
)
130 r
= proc_dointvec(table
, write
, filp
, buffer
, lenp
);
138 static unsigned char reset_gpio
= 0;
139 static unsigned char reset_polarity
= 0;
140 static unsigned int reset
= 0;
142 static int proc_reset(ctl_table
*table
, int write
, struct file
*filp
,
143 void *buffer
, size_t *lenp
)
147 sb_gpiocontrol(sbh
,reset_gpio
,reset_gpio
,GPIO_DRV_PRIORITY
);
148 sb_gpioouten(sbh
,reset_gpio
,0,GPIO_DRV_PRIORITY
);
149 reset
=!(sb_gpioin(sbh
)&reset_gpio
);
151 if (reset_polarity
) reset
=!reset
;
156 return proc_dointvec(table
, write
, filp
, buffer
, lenp
);
160 static struct ctl_table_header
*diag_sysctl_header
;
162 static ctl_table sys_diag
[] = {
167 maxlen
: sizeof(diag
),
169 proc_handler
: proc_diag
175 maxlen
: sizeof(reset
),
177 proc_handler
: proc_reset
182 static int __init
diag_init(void)
186 sbh
= (void *)sb_kattach();
189 board_type
= sb_boardtype(sbh
);
190 printk(KERN_INFO
"diag boardtype: %08x\n",board_type
);
196 buf
=nvram_get("pmon_ver") ?: "";
197 if (((board_type
& 0xf00) == 0x400) && (strncmp(buf
, "CFE", 3) != 0)) {
198 buf
=nvram_get("boardtype")?:"";
199 if (!strncmp(buf
,"bcm94710dev",11)) {
200 buf
=nvram_get("boardnum")?:"";
201 if (!strcmp(buf
,"42")) {
203 set_diag
=v1_set_diag
;
207 if (simple_strtoul(buf
, NULL
, 0) == 2) {
209 // do not use strcmp as PMON v5.3.22 has some built-in nvram
210 // defaults with trailing \r
211 set_diag
=wap1_set_diag
;
212 // no dmz led on wap54g, used green led
213 // labeled "WLAN Link" instead
214 set_dmz
=wap1_set_dmz
;
217 if (!strcmp(buf
,"asusX")) {
219 set_pwr
=asus_set_pwr
;
222 if (!strcmp(buf
,"2")) {
223 //wa840g v1 / we800g v1
227 if (!strcmp(buf
,"bcm94710ap")) {
228 buf
=nvram_get("boardnum")?:"";
229 if (!strcmp(buf
,"42")) {
234 if (!strcmp(buf
,"44")) {
241 buf
=nvram_get("boardnum")?:"";
242 if (!strcmp(buf
,"42")) {
244 set_diag
=v2_set_diag
;
248 if (!strcmp(buf
,"44")) {
252 if (!strcmp(buf
,"00")) {
256 if (!strcmp(buf
,"45")) {
258 set_pwr
=asus_set_pwr
;
264 sb_gpiocontrol(sbh
,reset_gpio
,reset_gpio
,GPIO_DRV_PRIORITY
);
265 sb_gpioouten(sbh
,reset_gpio
,0,GPIO_DRV_PRIORITY
);
266 reset_polarity
=!(sb_gpioin(sbh
)&reset_gpio
);
268 diag_sysctl_header
= register_sysctl_table(sys_diag
, 0);
274 static void __exit
diag_exit(void)
276 unregister_sysctl_table(diag_sysctl_header
);
280 MODULE_AUTHOR("openwrt.org");
281 MODULE_LICENSE("GPL");
283 module_init(diag_init
);
284 module_exit(diag_exit
);
This page took 0.072428 seconds and 5 git commands to generate.