diff options
author | Jason Kridner <jkridner@beagleboard.org> | 2011-04-18 17:23:35 -0400 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-04-27 19:38:06 +0200 |
commit | 70d8c9446fe1d99dd4148dc39ceb5dc6ce39a934 (patch) | |
tree | a20e764e3271bc3675f2950dfe6afbfba025d439 /board/ti/beagle/beagle.c | |
parent | b633f66f02ab3df6adc8fc65f13769e5fb9c328f (diff) | |
download | u-boot-imx-70d8c9446fe1d99dd4148dc39ceb5dc6ce39a934.zip u-boot-imx-70d8c9446fe1d99dd4148dc39ceb5dc6ce39a934.tar.gz u-boot-imx-70d8c9446fe1d99dd4148dc39ceb5dc6ce39a934.tar.bz2 |
BeagleBoard: Added LED driver
Added LED driver using status_led. USR0 is set to monitor the boot
status. USR1 is set to be the green LED.
Included adding configuration and command to the default configuration.
Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/ti/beagle/beagle.c')
-rw-r--r-- | board/ti/beagle/beagle.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index c066d6e..89e3dba 100644 --- a/board/ti/beagle/beagle.c +++ b/board/ti/beagle/beagle.c @@ -30,6 +30,9 @@ * MA 02111-1307 USA */ #include <common.h> +#ifdef CONFIG_STATUS_LED +#include <status_led.h> +#endif #include <twl4030.h> #include <asm/io.h> #include <asm/arch/mmc_host_def.h> @@ -74,6 +77,10 @@ int board_init(void) /* boot param addr */ gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); +#if defined(CONFIG_STATUS_LED) && defined(STATUS_LED_BOOT) + status_led_set (STATUS_LED_BOOT, STATUS_LED_ON); +#endif + return 0; } |