Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2011 Freescale Semiconductor, Inc. |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 4 | */ |
| 5 | #include <common.h> |
| 6 | #include <mpc85xx.h> |
| 7 | #include <asm/io.h> |
| 8 | #include <ns16550.h> |
| 9 | #include <nand.h> |
| 10 | #include <asm/mmu.h> |
| 11 | #include <asm/immap_85xx.h> |
York Sun | f062659 | 2013-09-30 09:22:09 -0700 | [diff] [blame] | 12 | #include <fsl_ddr_sdram.h> |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 13 | #include <asm/fsl_law.h> |
Matthew McClintock | 4a71d58 | 2012-08-13 13:21:19 +0000 | [diff] [blame] | 14 | #include <asm/global_data.h> |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 15 | |
Matthew McClintock | 4a71d58 | 2012-08-13 13:21:19 +0000 | [diff] [blame] | 16 | DECLARE_GLOBAL_DATA_PTR; |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 17 | |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 18 | void board_init_f(ulong bootflag) |
| 19 | { |
Prabhakar Kushwaha | 66d6aa8 | 2013-04-16 13:28:12 +0530 | [diff] [blame] | 20 | u32 plat_ratio; |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 21 | ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR; |
| 22 | |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 23 | #if defined(CONFIG_SYS_NAND_BR_PRELIM) && defined(CONFIG_SYS_NAND_OR_PRELIM) |
| 24 | set_lbc_br(0, CONFIG_SYS_NAND_BR_PRELIM); |
| 25 | set_lbc_or(0, CONFIG_SYS_NAND_OR_PRELIM); |
| 26 | #endif |
| 27 | |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 28 | /* initialize selected port with appropriate baud rate */ |
| 29 | plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO; |
| 30 | plat_ratio >>= 1; |
Matthew McClintock | 4a71d58 | 2012-08-13 13:21:19 +0000 | [diff] [blame] | 31 | gd->bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio; |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 32 | |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 33 | NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1, |
Matthew McClintock | 4a71d58 | 2012-08-13 13:21:19 +0000 | [diff] [blame] | 34 | gd->bus_clk / 16 / CONFIG_BAUDRATE); |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 35 | |
| 36 | puts("\nNAND boot... "); |
| 37 | |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 38 | /* copy code to RAM and jump to it - this should not return */ |
| 39 | /* NOTE - code has to be copied out of NAND buffer before |
| 40 | * other blocks can be read. |
| 41 | */ |
Prabhakar Kushwaha | 66d6aa8 | 2013-04-16 13:28:12 +0530 | [diff] [blame] | 42 | |
| 43 | relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE); |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | void board_init_r(gd_t *gd, ulong dest_addr) |
| 47 | { |
Ying Zhang | 1233cbc | 2014-01-24 15:50:09 +0800 | [diff] [blame] | 48 | puts("\nSecond program loader running in sram..."); |
Dipen Dudhat | 2f143ed | 2011-07-28 14:47:28 -0500 | [diff] [blame] | 49 | nand_boot(); |
| 50 | } |
| 51 | |
| 52 | void putc(char c) |
| 53 | { |
| 54 | if (c == '\n') |
| 55 | NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, '\r'); |
| 56 | |
| 57 | NS16550_putc((NS16550_t)CONFIG_SYS_NS16550_COM1, c); |
| 58 | } |
| 59 | |
| 60 | void puts(const char *str) |
| 61 | { |
| 62 | while (*str) |
| 63 | putc(*str++); |
| 64 | } |