From: Markus Klotzbuecher <mk@denx.de>
Date: Tue, 9 Jan 2007 13:57:12 +0000 (+0100)
Subject: SPC1920 GO/NOGO led should be set to color red in U-Boot
X-Git-Tag: v2025.01-rc5-pxa1908~22877^2~5
X-Git-Url: http://git.dujemihanovic.xyz/img/static/git-favicon.png?a=commitdiff_plain;h=e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120;p=u-boot.git

SPC1920 GO/NOGO led should be set to color red in U-Boot
---

diff --git a/board/spc1920/spc1920.c b/board/spc1920/spc1920.c
index 1fc2ea1fb4..d0a6ff1eba 100644
--- a/board/spc1920/spc1920.c
+++ b/board/spc1920/spc1920.c
@@ -209,12 +209,20 @@ int board_early_init_f(void)
 {
 	volatile immap_t *immap = (immap_t *) CFG_IMMR;
 
+	/* Set Go/NoGo led (PA15) to color red */
+	immap->im_ioport.iop_papar &= ~0x1;
+	immap->im_ioport.iop_paodr &= ~0x1;
+	immap->im_ioport.iop_padir |= 0x1;
+	immap->im_ioport.iop_padat |= 0x1;
 
+#if 0
 	/* Turn on LED PD9 */
 	immap->im_ioport.iop_pdpar &= ~(0x0040);
 	immap->im_ioport.iop_pddir |= 0x0040;
 	immap->im_ioport.iop_pddat |= 0x0040;
 
+#endif
+
 	/* Enable PD10 (COM2_EN) */
 	immap->im_ioport.iop_pdpar &= ~0x0020;
 	immap->im_ioport.iop_pddir &= ~0x4000;