diff options
| author | Tom Rini <[email protected]> | 2016-02-08 09:39:54 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2016-02-08 09:39:54 -0500 |
| commit | 7b6dc11c1aa69e5cc22d1659f50594edcfab5a9e (patch) | |
| tree | ce65e5e7efbf82d0223bcc4b7bf0efbf5648e953 | |
| parent | 5c884420a5752163ce738701701ae1874d8f466d (diff) | |
| parent | e4f348ba6f070789e6505cc65cf6683421674637 (diff) | |
Merge branch 'master' of git://git.denx.de/u-boot-nios
| -rw-r--r-- | arch/nios2/cpu/start.S | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/nios2/cpu/start.S b/arch/nios2/cpu/start.S index 204d0cd9d4a..3e1b0c95140 100644 --- a/arch/nios2/cpu/start.S +++ b/arch/nios2/cpu/start.S @@ -106,6 +106,13 @@ _reloc: stw r0, 4(sp) mov fp, sp +#ifdef CONFIG_DEBUG_UART + /* Set up the debug UART */ + movhi r2, %hi(debug_uart_init@h) + ori r2, r2, %lo(debug_uart_init@h) + callr r2 +#endif + /* Allocate and initialize reserved area, update SP */ mov r4, sp movhi r2, %hi(board_init_f_alloc_reserve@h) |
