diff options
-rw-r--r-- | drivers/ide/ide-disk.c | 3 | ||||
-rw-r--r-- | drivers/leds/Kconfig | 7 | ||||
-rw-r--r-- | drivers/leds/Makefile | 1 | ||||
-rw-r--r-- | drivers/leds/ledtrig-ide-disk.c | 62 | ||||
-rw-r--r-- | include/linux/leds.h | 8 |
5 files changed, 81 insertions, 0 deletions
diff --git a/drivers/ide/ide-disk.c b/drivers/ide/ide-disk.c index ccf528d733bf..a5017de72da5 100644 --- a/drivers/ide/ide-disk.c +++ b/drivers/ide/ide-disk.c | |||
@@ -61,6 +61,7 @@ | |||
61 | #include <linux/slab.h> | 61 | #include <linux/slab.h> |
62 | #include <linux/delay.h> | 62 | #include <linux/delay.h> |
63 | #include <linux/mutex.h> | 63 | #include <linux/mutex.h> |
64 | #include <linux/leds.h> | ||
64 | 65 | ||
65 | #define _IDE_DISK | 66 | #define _IDE_DISK |
66 | 67 | ||
@@ -317,6 +318,8 @@ static ide_startstop_t ide_do_rw_disk (ide_drive_t *drive, struct request *rq, s | |||
317 | return ide_stopped; | 318 | return ide_stopped; |
318 | } | 319 | } |
319 | 320 | ||
321 | ledtrig_ide_activity(); | ||
322 | |||
320 | pr_debug("%s: %sing: block=%llu, sectors=%lu, buffer=0x%08lx\n", | 323 | pr_debug("%s: %sing: block=%llu, sectors=%lu, buffer=0x%08lx\n", |
321 | drive->name, rq_data_dir(rq) == READ ? "read" : "writ", | 324 | drive->name, rq_data_dir(rq) == READ ? "read" : "writ", |
322 | (unsigned long long)block, rq->nr_sectors, | 325 | (unsigned long long)block, rq->nr_sectors, |
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig index 64dcdd3185c0..2c4f20b7f021 100644 --- a/drivers/leds/Kconfig +++ b/drivers/leds/Kconfig | |||
@@ -66,5 +66,12 @@ config LEDS_TRIGGER_TIMER | |||
66 | This allows LEDs to be controlled by a programmable timer | 66 | This allows LEDs to be controlled by a programmable timer |
67 | via sysfs. If unsure, say Y. | 67 | via sysfs. If unsure, say Y. |
68 | 68 | ||
69 | config LEDS_TRIGGER_IDE_DISK | ||
70 | bool "LED Timer Trigger" | ||
71 | depends LEDS_TRIGGERS && BLK_DEV_IDEDISK | ||
72 | help | ||
73 | This allows LEDs to be controlled by IDE disk activity. | ||
74 | If unsure, say Y. | ||
75 | |||
69 | endmenu | 76 | endmenu |
70 | 77 | ||
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile index 9d2930f89d03..40699d3cabbf 100644 --- a/drivers/leds/Makefile +++ b/drivers/leds/Makefile | |||
@@ -13,3 +13,4 @@ obj-$(CONFIG_LEDS_TOSA) += leds-tosa.o | |||
13 | 13 | ||
14 | # LED Triggers | 14 | # LED Triggers |
15 | obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o | 15 | obj-$(CONFIG_LEDS_TRIGGER_TIMER) += ledtrig-timer.o |
16 | obj-$(CONFIG_LEDS_TRIGGER_IDE_DISK) += ledtrig-ide-disk.o | ||
diff --git a/drivers/leds/ledtrig-ide-disk.c b/drivers/leds/ledtrig-ide-disk.c new file mode 100644 index 000000000000..fa651886ab4f --- /dev/null +++ b/drivers/leds/ledtrig-ide-disk.c | |||
@@ -0,0 +1,62 @@ | |||
1 | /* | ||
2 | * LED IDE-Disk Activity Trigger | ||
3 | * | ||
4 | * Copyright 2006 Openedhand Ltd. | ||
5 | * | ||
6 | * Author: Richard Purdie <rpurdie@openedhand.com> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #include <linux/module.h> | ||
15 | #include <linux/kernel.h> | ||
16 | #include <linux/init.h> | ||
17 | #include <linux/timer.h> | ||
18 | #include <linux/leds.h> | ||
19 | |||
20 | static void ledtrig_ide_timerfunc(unsigned long data); | ||
21 | |||
22 | DEFINE_LED_TRIGGER(ledtrig_ide); | ||
23 | static DEFINE_TIMER(ledtrig_ide_timer, ledtrig_ide_timerfunc, 0, 0); | ||
24 | static int ide_activity; | ||
25 | static int ide_lastactivity; | ||
26 | |||
27 | void ledtrig_ide_activity(void) | ||
28 | { | ||
29 | ide_activity++; | ||
30 | if (!timer_pending(&ledtrig_ide_timer)) | ||
31 | mod_timer(&ledtrig_ide_timer, jiffies + msecs_to_jiffies(10)); | ||
32 | } | ||
33 | EXPORT_SYMBOL(ledtrig_ide_activity); | ||
34 | |||
35 | static void ledtrig_ide_timerfunc(unsigned long data) | ||
36 | { | ||
37 | if (ide_lastactivity != ide_activity) { | ||
38 | ide_lastactivity = ide_activity; | ||
39 | led_trigger_event(ledtrig_ide, LED_FULL); | ||
40 | mod_timer(&ledtrig_ide_timer, jiffies + msecs_to_jiffies(10)); | ||
41 | } else { | ||
42 | led_trigger_event(ledtrig_ide, LED_OFF); | ||
43 | } | ||
44 | } | ||
45 | |||
46 | static int __init ledtrig_ide_init(void) | ||
47 | { | ||
48 | led_trigger_register_simple("ide-disk", &ledtrig_ide); | ||
49 | return 0; | ||
50 | } | ||
51 | |||
52 | static void __exit ledtrig_ide_exit(void) | ||
53 | { | ||
54 | led_trigger_unregister_simple(ledtrig_ide); | ||
55 | } | ||
56 | |||
57 | module_init(ledtrig_ide_init); | ||
58 | module_exit(ledtrig_ide_exit); | ||
59 | |||
60 | MODULE_AUTHOR("Richard Purdie <rpurdie@openedhand.com>"); | ||
61 | MODULE_DESCRIPTION("LED IDE Disk Activity Trigger"); | ||
62 | MODULE_LICENSE("GPL"); | ||
diff --git a/include/linux/leds.h b/include/linux/leds.h index 404575c3dd5a..4617e75903b0 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
@@ -100,4 +100,12 @@ extern void led_trigger_event(struct led_trigger *trigger, | |||
100 | #define led_trigger_event(x, y) do {} while(0) | 100 | #define led_trigger_event(x, y) do {} while(0) |
101 | 101 | ||
102 | #endif | 102 | #endif |
103 | |||
104 | /* Trigger specific functions */ | ||
105 | #ifdef CONFIG_LEDS_TRIGGER_IDE_DISK | ||
106 | extern void ledtrig_ide_activity(void); | ||
107 | #else | ||
108 | #define ledtrig_ide_activity() do {} while(0) | ||
109 | #endif | ||
110 | |||
103 | #endif /* __LINUX_LEDS_H_INCLUDED */ | 111 | #endif /* __LINUX_LEDS_H_INCLUDED */ |