From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ladislav Michl Date: Sun, 17 Jan 2016 04:16:50 +0100 Subject: [U-Boot] [PATCHv4 7/7] igep00x0: Falcon mode In-Reply-To: <20160117030929.GA28493@localhost.localdomain> References: <20160117030929.GA28493@localhost.localdomain> Message-ID: <20160117031650.GH28493@localhost.localdomain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Implement spl_start_uboot to let Falcon mode work. Signed-off-by: Ladislav Michl --- board/isee/igep00x0/igep00x0.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/board/isee/igep00x0/igep00x0.c b/board/isee/igep00x0/igep00x0.c index e2fce50..92811d8 100644 --- a/board/isee/igep00x0/igep00x0.c +++ b/board/isee/igep00x0/igep00x0.c @@ -10,6 +10,7 @@ #include #include #include +#include #include #include #include @@ -212,3 +213,14 @@ int board_eth_init(bd_t *bis) #endif } #endif + +#ifdef CONFIG_SPL_OS_BOOT +int spl_start_uboot(void) +{ + /* break into full u-boot on 'c' */ + if (serial_tstc() && serial_getc() == 'c') + return 1; + + return 0; +} +#endif -- 2.1.4