Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2013 Freescale Semiconductor, Inc. |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 85d6531 | 2019-12-28 10:44:58 -0700 | [diff] [blame^] | 7 | #include <clock_legacy.h> |
Simon Glass | a73bda4 | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 8 | #include <console.h> |
Simon Glass | 79fd214 | 2019-08-01 09:46:43 -0600 | [diff] [blame] | 9 | #include <env.h> |
Simon Glass | 9d1f619 | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 10 | #include <env_internal.h> |
Simon Glass | 284f71b | 2019-12-28 10:44:45 -0700 | [diff] [blame] | 11 | #include <init.h> |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 12 | #include <ns16550.h> |
| 13 | #include <malloc.h> |
| 14 | #include <mmc.h> |
| 15 | #include <nand.h> |
| 16 | #include <i2c.h> |
| 17 | #include <fsl_esdhc.h> |
Ying Zhang | f74fd4e | 2013-09-06 17:30:57 +0800 | [diff] [blame] | 18 | #include <spi_flash.h> |
Simon Glass | dd8e224 | 2016-09-24 18:20:10 -0600 | [diff] [blame] | 19 | #include "../common/spl.h" |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
York Sun | 863e8d8 | 2014-02-11 11:57:26 -0800 | [diff] [blame] | 23 | phys_size_t get_effective_memsize(void) |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 24 | { |
| 25 | return CONFIG_SYS_L2_SIZE; |
| 26 | } |
| 27 | |
| 28 | void board_init_f(ulong bootflag) |
| 29 | { |
| 30 | u32 plat_ratio, bus_clk; |
| 31 | ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR; |
| 32 | |
| 33 | console_init_f(); |
| 34 | |
| 35 | /* Set pmuxcr to allow both i2c1 and i2c2 */ |
| 36 | setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000); |
| 37 | setbits_be32(&gur->pmuxcr, |
| 38 | in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA); |
| 39 | |
| 40 | /* Read back the register to synchronize the write. */ |
| 41 | in_be32(&gur->pmuxcr); |
| 42 | |
Ying Zhang | f74fd4e | 2013-09-06 17:30:57 +0800 | [diff] [blame] | 43 | #ifdef CONFIG_SPL_SPI_BOOT |
| 44 | clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA); |
| 45 | #endif |
| 46 | |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 47 | /* initialize selected port with appropriate baud rate */ |
| 48 | plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO; |
| 49 | plat_ratio >>= 1; |
| 50 | bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio; |
| 51 | gd->bus_clk = bus_clk; |
| 52 | |
| 53 | NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1, |
| 54 | bus_clk / 16 / CONFIG_BAUDRATE); |
| 55 | #ifdef CONFIG_SPL_MMC_BOOT |
| 56 | puts("\nSD boot...\n"); |
Ying Zhang | f74fd4e | 2013-09-06 17:30:57 +0800 | [diff] [blame] | 57 | #elif defined(CONFIG_SPL_SPI_BOOT) |
| 58 | puts("\nSPI Flash boot...\n"); |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 59 | #endif |
| 60 | |
| 61 | /* copy code to RAM and jump to it - this should not return */ |
| 62 | /* NOTE - code has to be copied out of NAND buffer before |
| 63 | * other blocks can be read. |
| 64 | */ |
| 65 | relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE); |
| 66 | } |
| 67 | |
| 68 | void board_init_r(gd_t *gd, ulong dest_addr) |
| 69 | { |
| 70 | /* Pointer is writable since we allocated a register for it */ |
| 71 | gd = (gd_t *)CONFIG_SPL_GD_ADDR; |
| 72 | bd_t *bd; |
| 73 | |
| 74 | memset(gd, 0, sizeof(gd_t)); |
| 75 | bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t)); |
| 76 | memset(bd, 0, sizeof(bd_t)); |
| 77 | gd->bd = bd; |
| 78 | bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR; |
| 79 | bd->bi_memsize = CONFIG_SYS_L2_SIZE; |
| 80 | |
Simon Glass | 302445a | 2017-01-23 13:31:22 -0700 | [diff] [blame] | 81 | arch_cpu_init(); |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 82 | get_clocks(); |
| 83 | mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR, |
| 84 | CONFIG_SPL_RELOC_MALLOC_SIZE); |
Sumit Garg | 2ff056b | 2016-05-25 12:41:48 -0400 | [diff] [blame] | 85 | gd->flags |= GD_FLG_FULL_MALLOC_INIT; |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 86 | |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 87 | #ifndef CONFIG_SPL_NAND_BOOT |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 88 | env_init(); |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 89 | #endif |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 90 | #ifdef CONFIG_SPL_MMC_BOOT |
| 91 | mmc_initialize(bd); |
| 92 | #endif |
| 93 | /* relocate environment function pointers etc. */ |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 94 | #ifdef CONFIG_SPL_NAND_BOOT |
| 95 | nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, |
Tom Rini | 5cd7ece | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 96 | (uchar *)SPL_ENV_ADDR); |
| 97 | gd->env_addr = (ulong)(SPL_ENV_ADDR); |
Simon Glass | 4bc2ad2 | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 98 | gd->env_valid = ENV_VALID; |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 99 | #else |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 100 | env_relocate(); |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 101 | #endif |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 102 | |
| 103 | #ifdef CONFIG_SYS_I2C |
| 104 | i2c_init_all(); |
| 105 | #else |
| 106 | i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE); |
| 107 | #endif |
| 108 | |
Simon Glass | d35f338 | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 109 | dram_init(); |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 110 | #ifdef CONFIG_SPL_NAND_BOOT |
| 111 | puts("Tertiary program loader running in sram..."); |
| 112 | #else |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 113 | puts("Second program loader running in sram...\n"); |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 114 | #endif |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 115 | |
| 116 | #ifdef CONFIG_SPL_MMC_BOOT |
| 117 | mmc_boot(); |
Ying Zhang | f74fd4e | 2013-09-06 17:30:57 +0800 | [diff] [blame] | 118 | #elif defined(CONFIG_SPL_SPI_BOOT) |
Simon Glass | dd8e224 | 2016-09-24 18:20:10 -0600 | [diff] [blame] | 119 | fsl_spi_boot(); |
Ying Zhang | b8b404d | 2013-09-06 17:30:58 +0800 | [diff] [blame] | 120 | #elif defined(CONFIG_SPL_NAND_BOOT) |
| 121 | nand_boot(); |
Ying Zhang | 28027d7 | 2013-09-06 17:30:56 +0800 | [diff] [blame] | 122 | #endif |
| 123 | } |