Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 2 | /* Copyright 2014 Freescale Semiconductor, Inc. |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 3 | */ |
| 4 | |
| 5 | #include <common.h> |
Simon Glass | d96c260 | 2019-12-28 10:44:58 -0700 | [diff] [blame] | 6 | #include <clock_legacy.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 7 | #include <console.h> |
Simon Glass | f3998fd | 2019-08-02 09:44:25 -0600 | [diff] [blame] | 8 | #include <env_internal.h> |
Simon Glass | 9413387 | 2019-12-28 10:44:45 -0700 | [diff] [blame] | 9 | #include <init.h> |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 10 | #include <malloc.h> |
| 11 | #include <ns16550.h> |
| 12 | #include <nand.h> |
| 13 | #include <i2c.h> |
| 14 | #include <mmc.h> |
| 15 | #include <fsl_esdhc.h> |
| 16 | #include <spi_flash.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame^] | 17 | #include <asm/global_data.h> |
tang yuantian | f49b8c1 | 2014-12-17 15:42:54 +0800 | [diff] [blame] | 18 | #include "../common/sleep.h" |
Simon Glass | ea022a3 | 2016-09-24 18:20:10 -0600 | [diff] [blame] | 19 | #include "../common/spl.h" |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 20 | |
| 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
| 23 | phys_size_t get_effective_memsize(void) |
| 24 | { |
| 25 | return CONFIG_SYS_L3_SIZE; |
| 26 | } |
| 27 | |
| 28 | unsigned long get_board_sys_clk(void) |
| 29 | { |
| 30 | return CONFIG_SYS_CLK_FREQ; |
| 31 | } |
| 32 | |
| 33 | unsigned long get_board_ddr_clk(void) |
| 34 | { |
| 35 | return CONFIG_DDR_CLK_FREQ; |
| 36 | } |
| 37 | |
Shengzhou Liu | e04dd12 | 2015-07-28 10:46:47 +0800 | [diff] [blame] | 38 | #if defined(CONFIG_SPL_MMC_BOOT) |
| 39 | #define GPIO1_SD_SEL 0x00020000 |
| 40 | int board_mmc_getcd(struct mmc *mmc) |
| 41 | { |
| 42 | ccsr_gpio_t __iomem *pgpio = (void *)(CONFIG_SYS_MPC85xx_GPIO_ADDR); |
| 43 | u32 val = in_be32(&pgpio->gpdat); |
| 44 | |
| 45 | /* GPIO1_14, 0: eMMC, 1: SD */ |
| 46 | val &= GPIO1_SD_SEL; |
| 47 | |
| 48 | return val ? -1 : 1; |
| 49 | } |
| 50 | |
| 51 | int board_mmc_getwp(struct mmc *mmc) |
| 52 | { |
| 53 | ccsr_gpio_t __iomem *pgpio = (void *)(CONFIG_SYS_MPC85xx_GPIO_ADDR); |
| 54 | u32 val = in_be32(&pgpio->gpdat); |
| 55 | |
| 56 | val &= GPIO1_SD_SEL; |
| 57 | |
| 58 | return val ? -1 : 0; |
| 59 | } |
| 60 | #endif |
| 61 | |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 62 | void board_init_f(ulong bootflag) |
| 63 | { |
| 64 | u32 plat_ratio, sys_clk, ccb_clk; |
| 65 | ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR; |
| 66 | |
| 67 | /* Memcpy existing GD at CONFIG_SPL_GD_ADDR */ |
| 68 | memcpy((void *)CONFIG_SPL_GD_ADDR, (void *)gd, sizeof(gd_t)); |
| 69 | |
| 70 | /* Update GD pointer */ |
| 71 | gd = (gd_t *)(CONFIG_SPL_GD_ADDR); |
| 72 | |
| 73 | console_init_f(); |
| 74 | |
tang yuantian | f49b8c1 | 2014-12-17 15:42:54 +0800 | [diff] [blame] | 75 | #ifdef CONFIG_DEEP_SLEEP |
| 76 | /* disable the console if boot from deep sleep */ |
| 77 | if (is_warm_boot()) |
| 78 | fsl_dp_disable_console(); |
| 79 | #endif |
| 80 | |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 81 | /* initialize selected port with appropriate baud rate */ |
| 82 | sys_clk = get_board_sys_clk(); |
| 83 | plat_ratio = (in_be32(&gur->rcwsr[0]) >> 25) & 0x1f; |
| 84 | ccb_clk = sys_clk * plat_ratio / 2; |
| 85 | |
Simon Glass | 2d6bf75 | 2020-12-22 19:30:19 -0700 | [diff] [blame] | 86 | ns16550_init((struct ns16550 *)CONFIG_SYS_NS16550_COM1, |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 87 | ccb_clk / 16 / CONFIG_BAUDRATE); |
| 88 | |
| 89 | #if defined(CONFIG_SPL_MMC_BOOT) |
| 90 | puts("\nSD boot...\n"); |
| 91 | #elif defined(CONFIG_SPL_SPI_BOOT) |
| 92 | puts("\nSPI boot...\n"); |
| 93 | #elif defined(CONFIG_SPL_NAND_BOOT) |
| 94 | puts("\nNAND boot...\n"); |
| 95 | #endif |
| 96 | |
| 97 | relocate_code(CONFIG_SPL_RELOC_STACK, (gd_t *)CONFIG_SPL_GD_ADDR, 0x0); |
| 98 | } |
| 99 | |
| 100 | void board_init_r(gd_t *gd, ulong dest_addr) |
| 101 | { |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 102 | struct bd_info *bd; |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 103 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 104 | bd = (struct bd_info *)(gd + sizeof(gd_t)); |
| 105 | memset(bd, 0, sizeof(struct bd_info)); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 106 | gd->bd = bd; |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 107 | |
Simon Glass | cbcbf71 | 2017-01-23 13:31:22 -0700 | [diff] [blame] | 108 | arch_cpu_init(); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 109 | get_clocks(); |
| 110 | mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR, |
| 111 | CONFIG_SPL_RELOC_MALLOC_SIZE); |
Sumit Garg | ed4708a | 2016-05-25 12:41:48 -0400 | [diff] [blame] | 112 | gd->flags |= GD_FLG_FULL_MALLOC_INIT; |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 113 | |
| 114 | #ifdef CONFIG_SPL_NAND_BOOT |
| 115 | nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, |
Tom Rini | a09fea1 | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 116 | (uchar *)SPL_ENV_ADDR); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 117 | #endif |
| 118 | #ifdef CONFIG_SPL_MMC_BOOT |
| 119 | mmc_initialize(bd); |
| 120 | mmc_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, |
Tom Rini | a09fea1 | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 121 | (uchar *)SPL_ENV_ADDR); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 122 | #endif |
| 123 | #ifdef CONFIG_SPL_SPI_BOOT |
Simon Glass | ea022a3 | 2016-09-24 18:20:10 -0600 | [diff] [blame] | 124 | fsl_spi_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE, |
Tom Rini | a09fea1 | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 125 | (uchar *)SPL_ENV_ADDR); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 126 | #endif |
| 127 | |
Tom Rini | a09fea1 | 2019-11-18 20:02:10 -0500 | [diff] [blame] | 128 | gd->env_addr = (ulong)(SPL_ENV_ADDR); |
Simon Glass | 203e94f | 2017-08-03 12:21:56 -0600 | [diff] [blame] | 129 | gd->env_valid = ENV_VALID; |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 130 | |
| 131 | i2c_init_all(); |
| 132 | |
Simon Glass | f1683aa | 2017-04-06 12:47:05 -0600 | [diff] [blame] | 133 | dram_init(); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 134 | |
| 135 | #ifdef CONFIG_SPL_MMC_BOOT |
| 136 | mmc_boot(); |
| 137 | #elif defined(CONFIG_SPL_SPI_BOOT) |
Simon Glass | ea022a3 | 2016-09-24 18:20:10 -0600 | [diff] [blame] | 138 | fsl_spi_boot(); |
Shengzhou Liu | 48c6f32 | 2014-11-24 17:11:56 +0800 | [diff] [blame] | 139 | #elif defined(CONFIG_SPL_NAND_BOOT) |
| 140 | nand_boot(); |
| 141 | #endif |
| 142 | } |