[PATCH 11/11] LED: Add NAND MTD activity LED trigger
- From: Richard Purdie <rpurdie@xxxxxxxxx>
- Date: Tue, 31 Jan 2006 13:42:02 +0000
Index: linux-2.6.15/drivers/mtd/nand/nand_base.c
===================================================================
--- linux-2.6.15.orig/drivers/mtd/nand/nand_base.c 2006-01-29 14:37:20.000000000 +0000
+++ linux-2.6.15/drivers/mtd/nand/nand_base.c 2006-01-29 15:25:11.000000000 +0000
@@ -80,6 +80,7 @@
#include <linux/mtd/compatmac.h>
#include <linux/interrupt.h>
#include <linux/bitops.h>
+#include <linux/leds.h>
#include <asm/io.h>
#ifdef CONFIG_MTD_PARTITIONS
@@ -515,6 +516,8 @@
return nand_isbad_bbt (mtd, ofs, allowbbt);
}
+INIT_LED_TRIGGER(nand_led_trigger);
+
/*
* Wait for the ready pin, after a command
* The timeout is catched later.
@@ -524,12 +527,14 @@
struct nand_chip *this = mtd->priv;
unsigned long timeo = jiffies + 2;
+ led_trigger_event(nand_led_trigger, LED_FULL);
/* wait until command is processed or timeout occures */
do {
if (this->dev_ready(mtd))
- return;
+ break;
touch_softlockup_watchdog();
} while (time_before(jiffies, timeo));
+ led_trigger_event(nand_led_trigger, LED_OFF);
}
/**
@@ -817,6 +822,8 @@
else
timeo += (HZ * 20) / 1000;
+ led_trigger_event(nand_led_trigger, LED_FULL);
+
/* Apply this short delay always to ensure that we do wait tWB in
* any case on any machine. */
ndelay (100);
@@ -840,6 +847,8 @@
}
cond_resched();
}
+ led_trigger_event(nand_led_trigger, LED_OFF);
+
status = (int) this->read_byte(mtd);
return status;
}
@@ -2724,6 +2733,21 @@
EXPORT_SYMBOL_GPL (nand_scan);
EXPORT_SYMBOL_GPL (nand_release);
+
+static int __init nand_base_init(void)
+{
+ led_trigger_register_simple("nand-disk", &nand_led_trigger);
+ return 0;
+}
+
+static void nand_base_exit(void)
+{
+ led_trigger_unregister_simple(nand_led_trigger);
+}
+
+module_init(nand_base_init);
+module_exit(nand_base_exit);
+
MODULE_LICENSE ("GPL");
MODULE_AUTHOR ("Steven J. Hill <sjhill@xxxxxxxxxxxxxxxxxx>, Thomas Gleixner <tglx@xxxxxxxxxxxxx>");
MODULE_DESCRIPTION ("Generic NAND flash driver code");
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- Prev by Date: Re: CD writing in future Linux (stirring up a hornets' nest)
- Next by Date: [PATCH 3/11] LED: Add LED Trigger Support
- Previous by thread: [PATCH 5/11] LED: Add Sharp Charger Status LED Trigger
- Next by thread: [PATCH 3/11] LED: Add LED Trigger Support
- Index(es):
Relevant Pages
- [PATCH 10/12] LED: Add NAND MTD activity LED trigger
... return nand_isbad_bbt (mtd, ofs, allowbbt); ... Wait for the ready pin,
after a command ... The timeout is catched later. ... (Linux-Kernel) - [RFC PATCH 8/8] LED: Add NAND MTD activity LED trigger
... Add an LED trigger for MTD NAND activity to the MTD subsystem. ... * Wait for
the ready pin, after a command ... * The timeout is catched later. ...
(Linux-Kernel) - Re: What if Expect buffer overflows
... expect_outwhen eof and timeout events happen. ... with your command
and see what happens. ... Can anybody please guide what should I do to display the whole
info? ... (comp.lang.tcl) - Re: Timeout error from SqlDataReader even when ConnectionTimeout = 0
... as well as the ConnectionTimeout. ... > Make sure you also set Command
Time out to a large enough value. ... > Command Timing out even though Connection timeout
is not reached. ... >> at System.Data.SqlClient.SqlConnection.OnError(SqlException
exception, ... (microsoft.public.dotnet.framework.adonet) - Re: [mfi] command timeouts
... It's not only this process but all disk IO related processes. ... mfi0: COMMAND
0xffffffff80c3c040 TIMEOUT AFTER 732 SECONDS ... (freebsd-current)