blob: 437e975fdf7d04f41d5d6061f96db59419dfb424 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -04002/*
3 * Copyright 2013-2015 Arcturus Networks, Inc.
4 * http://www.arcturusnetworks.com/products/ucp1020/
5 * based on board/freescale/p1_p2_rdb_pc/spl.c
6 * original copyright follows:
7 * Copyright 2013 Freescale Semiconductor, Inc.
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -04008 */
9
10#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -070011#include <clock_legacy.h>
Simon Glassa73bda42015-11-08 23:47:45 -070012#include <console.h>
Simon Glass79fd2142019-08-01 09:46:43 -060013#include <env.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060014#include <env_internal.h>
Simon Glass284f71b2019-12-28 10:44:45 -070015#include <init.h>
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040016#include <ns16550.h>
17#include <malloc.h>
18#include <mmc.h>
19#include <nand.h>
20#include <i2c.h>
21#include <fsl_esdhc.h>
22#include <spi_flash.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060023#include <asm/global_data.h>
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040024
25DECLARE_GLOBAL_DATA_PTR;
26
27static const u32 sysclk_tbl[] = {
28 66666000, 7499900, 83332500, 8999900,
29 99999000, 11111000, 12499800, 13333200
30};
31
32phys_size_t get_effective_memsize(void)
33{
34 return CONFIG_SYS_L2_SIZE;
35}
36
37void board_init_f(ulong bootflag)
38{
39 u32 plat_ratio, bus_clk;
40 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
41
42 console_init_f();
43
44 /* Set pmuxcr to allow both i2c1 and i2c2 */
45 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
46 setbits_be32(&gur->pmuxcr,
47 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
48
49 /* Read back the register to synchronize the write. */
50 in_be32(&gur->pmuxcr);
51
52#ifdef CONFIG_SPL_SPI_BOOT
53 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
54#endif
55
56 /* initialize selected port with appropriate baud rate */
57 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
58 plat_ratio >>= 1;
59 bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
60 gd->bus_clk = bus_clk;
61
Simon Glass2b923982020-12-22 19:30:19 -070062 ns16550_init((struct ns16550 *)CONFIG_SYS_NS16550_COM1,
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040063 bus_clk / 16 / CONFIG_BAUDRATE);
64#ifdef CONFIG_SPL_MMC_BOOT
65 puts("\nSD boot...\n");
66#elif defined(CONFIG_SPL_SPI_BOOT)
67 puts("\nSPI Flash boot...\n");
68#endif
69
70 /* copy code to RAM and jump to it - this should not return */
71 /* NOTE - code has to be copied out of NAND buffer before
72 * other blocks can be read.
73 */
74 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
75}
76
77void board_init_r(gd_t *gd, ulong dest_addr)
78{
79 /* Pointer is writable since we allocated a register for it */
80 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090081 struct bd_info *bd;
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040082
83 memset(gd, 0, sizeof(gd_t));
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090084 bd = (struct bd_info *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
85 memset(bd, 0, sizeof(struct bd_info));
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040086 gd->bd = bd;
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040087
Simon Glass302445a2017-01-23 13:31:22 -070088 arch_cpu_init();
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -040089 get_clocks();
90 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
91 CONFIG_SPL_RELOC_MALLOC_SIZE);
92
93#ifndef CONFIG_SPL_NAND_BOOT
94 env_init();
95#endif
96#ifdef CONFIG_SPL_MMC_BOOT
97 mmc_initialize(bd);
98#endif
99 /* relocate environment function pointers etc. */
100#ifdef CONFIG_SPL_NAND_BOOT
101 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
102 (uchar *)CONFIG_ENV_ADDR);
103 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
Simon Glass4bc2ad22017-08-03 12:21:56 -0600104 gd->env_valid = ENV_VALID;
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -0400105#else
106 env_relocate();
107#endif
108
109#ifdef CONFIG_SYS_I2C
110 i2c_init_all();
111#else
112 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
113#endif
114
Simon Glassd35f3382017-04-06 12:47:05 -0600115 dram_init();
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -0400116#ifdef CONFIG_SPL_NAND_BOOT
117 puts("Tertiary program loader running in sram...");
118#else
119 puts("Second program loader running in sram...\n");
120#endif
121
122#ifdef CONFIG_SPL_MMC_BOOT
123 mmc_boot();
Oleksandr G Zhadan19ac6882015-04-29 16:57:39 -0400124#elif defined(CONFIG_SPL_NAND_BOOT)
125 nand_boot();
126#endif
127}