2 * diag.h - GPIO interface driver for Broadcom boards
4 * Copyright (C) 2006 Mike Baker <mbm@openwrt.org>,
5 * Felix Fietkau <nbd@openwrt.org>
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.
24 #include <linux/irq.h>
25 #define MODULE_NAME "diag"
28 #define FLASH_TIME HZ/6
42 struct prochandler_t
{
48 struct prochandler_t proc
;
56 struct prochandler_t proc
;
67 struct button_t buttons
[MAX_GPIO
];
70 void (*platform_init
)(void);
72 struct led_t leds
[MAX_GPIO
];
76 struct work_struct wq
;
82 extern char *nvram_get(char *str
);
84 static struct platform_t platform
;
88 static void register_buttons(struct button_t
*b
);
89 static void unregister_buttons(struct button_t
*b
);
91 static void hotplug_button(struct event_t
*event
);
92 static irqreturn_t
button_handler(int irq
, void *dev_id
, struct pt_regs
*regs
);
96 static void register_leds(struct led_t
*l
);
97 static void unregister_leds(struct led_t
*l
);
99 static void set_led_extif(struct led_t
*led
);
100 static void led_flash(unsigned long dummy
);
102 /* 2.4 compatibility */
103 #ifndef TIMER_INITIALIZER
104 #define TIMER_INITIALIZER(_function, _expires, _data) \
106 /* _expires and _data currently unused */ \
107 function: _function \
111 static struct timer_list led_timer
= TIMER_INITIALIZER(&led_flash
, 0, 0);
115 static struct proc_dir_entry
*diag
, *leds
;
117 static ssize_t
diag_proc_read(struct file
*file
, char *buf
, size_t count
, loff_t
*ppos
);
118 static ssize_t
diag_proc_write(struct file
*file
, const char *buf
, size_t count
, loff_t
*ppos
);
120 static struct file_operations diag_proc_fops
= {
121 read
: diag_proc_read
,
122 write
: diag_proc_write
125 static struct prochandler_t proc_model
= { .type
= PROC_MODEL
};
126 static struct prochandler_t proc_gpiomask
= { .type
= PROC_GPIOMASK
};