From: Grazvydas Ignotas Date: Fri, 30 Oct 2009 09:53:52 +0000 (+0200) Subject: enable pullup on serial RX X-Git-Tag: v2009.08-pandora~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70532c1152662f88ba1e0627c96307d93536508f;p=pandora-u-boot.git enable pullup on serial RX this is to fix booting without serial cable attached, where it sometimes picks up some trash due to floating RX and interrupts u-boot countdown and enters it's prompt. --- diff --git a/board/omap3/pandora/pandora.h b/board/omap3/pandora/pandora.h index f06ee5be469..367b1cc9f0a 100644 --- a/board/omap3/pandora/pandora.h +++ b/board/omap3/pandora/pandora.h @@ -219,7 +219,7 @@ const omap3_sysinfo sysinfo = { MUX_VAL(CP(UART2_RX), (IEN | PTD | EN | M4)) /*GPIO_147,*/\ /*UART2_RX*/\ /*Serial Interface (Peripheral boot, Linux console, on AV connector)*/\ - MUX_VAL(CP(UART3_RX_IRRX), (IEN | PTD | DIS | M0)) /*UART3_RX*/\ + MUX_VAL(CP(UART3_RX_IRRX), (IEN | PTU | EN | M0)) /*UART3_RX*/\ MUX_VAL(CP(UART3_TX_IRTX), (IDIS | PTD | DIS | M0)) /*UART3_TX*/\ /*LEDs (Controlled by OMAP)*/\ MUX_VAL(CP(MMC1_DAT6), (IDIS | PTD | DIS | M4)) /*GPIO_128*/\