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
33 #include <linux/module.h>
34 #include <linux/init.h>
35 #include <linux/kernel.h>
36 #include <linux/sysctl.h>
43 extern char * nvram_get(const char *name
);
47 #define DIAG_GPIO (1<<1)
48 #define DMZ_GPIO (1<<7)
50 static void set_gpio(uint32 mask
, uint32 value
) {
51 sb_gpiocontrol(sbh
,mask
, 0, GPIO_DRV_PRIORITY
);
52 sb_gpioouten(sbh
,mask
,mask
,GPIO_DRV_PRIORITY
);
53 sb_gpioout(sbh
,mask
,value
,GPIO_DRV_PRIORITY
);
56 static void v2_set_diag(u8 state
) {
57 set_gpio(DIAG_GPIO
,state
);
59 static void v2_set_dmz(u8 state
) {
60 set_gpio(DMZ_GPIO
,state
);
67 static void v1_set_diag(u8 state
) {
69 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DIAG
)=0xFF;
71 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DIAG
);
74 static void v1_set_dmz(u8 state
) {
76 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DMZ
)=0xFF;
78 *(volatile u8
*)(KSEG1ADDR(BCM4710_EUART
)+LED_DMZ
);
83 static void ignore(u8 ignored
) {};
89 void (*set_diag
)(u8 state
);
90 void (*set_dmz
)(u8 state
);
92 static unsigned int diag
= 0;
94 static void diag_change()
96 set_diag(0xFF); // off
100 set_diag(0x00); // on
105 static int proc_diag(ctl_table
*table
, int write
, struct file
*filp
,
106 void *buffer
, size_t *lenp
)
109 r
= proc_dointvec(table
, write
, filp
, buffer
, lenp
);
117 static unsigned char reset_gpio
= 0;
118 static unsigned char reset_polarity
= 0;
119 static unsigned int reset
= 0;
121 static int proc_reset(ctl_table
*table
, int write
, struct file
*filp
,
122 void *buffer
, size_t *lenp
)
126 sb_gpiocontrol(sbh
,reset_gpio
,reset_gpio
,GPIO_DRV_PRIORITY
);
127 sb_gpioouten(sbh
,reset_gpio
,0,GPIO_DRV_PRIORITY
);
128 reset
=!(sb_gpioin(sbh
)&reset_gpio
);
130 if (reset_polarity
) reset
=!reset
;
135 return proc_dointvec(table
, write
, filp
, buffer
, lenp
);
139 static struct ctl_table_header
*diag_sysctl_header
;
141 static ctl_table sys_diag
[] = {
146 maxlen
: sizeof(diag
),
148 proc_handler
: proc_diag
154 maxlen
: sizeof(reset
),
156 proc_handler
: proc_reset
161 static int __init
diag_init()
168 board_type
= sb_boardtype(sbh
);
169 printk(KERN_INFO
"diag boardtype: %08x\n",board_type
);
174 buf
=nvram_get("pmon_ver") ?: "";
175 if (((board_type
& 0xf00) == 0x400) && (strncmp(buf
, "CFE", 3) != 0)) {
176 buf
=nvram_get("boardtype")?:"";
177 if (!strcmp(buf
,"bcm94710dev")) {
178 buf
=nvram_get("boardnum")?:"";
179 if (!strcmp(buf
,"42")) {
181 set_diag
=v1_set_diag
;
185 if (!strcmp(buf
,"asusX")) {
190 if (!strcmp(buf
,"bcm94710ap")) {
191 buf
=nvram_get("boardnum")?:"";
192 if (!strcmp(buf
,"42")) {
197 if (!strcmp(buf
,"44")) {
204 buf
=nvram_get("boardnum")?:"";
205 if (!strcmp(buf
,"42")) {
207 set_diag
=v2_set_diag
;
211 if (!strcmp(buf
,"44")) {
215 if (!strcmp(buf
,"00")) {
219 if (!strcmp(buf
,"45")) {
226 sb_gpiocontrol(sbh
,reset_gpio
,reset_gpio
,GPIO_DRV_PRIORITY
);
227 sb_gpioouten(sbh
,reset_gpio
,0,GPIO_DRV_PRIORITY
);
228 reset_polarity
=!(sb_gpioin(sbh
)&reset_gpio
);
230 diag_sysctl_header
= register_sysctl_table(sys_diag
, 0);
236 static void __exit
diag_exit()
238 unregister_sysctl_table(diag_sysctl_header
);
242 MODULE_AUTHOR("openwrt.org");
243 MODULE_LICENSE("GPL");
245 module_init(diag_init
);
246 module_exit(diag_exit
);
This page took 0.049258 seconds and 5 git commands to generate.