blob: 9314fabdf2d97744cf90fe24e2fd0d9293806fb9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Oleksandr G Zhadan8b0044f2015-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 Zhadan8b0044f2015-04-29 16:57:39 -04008 */
9
10#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070011#include <console.h>
Simon Glass4bfd1f52019-08-01 09:46:43 -060012#include <env.h>
Simon Glassf3998fd2019-08-02 09:44:25 -060013#include <env_internal.h>
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -040014#include <ns16550.h>
15#include <malloc.h>
16#include <mmc.h>
17#include <nand.h>
18#include <i2c.h>
19#include <fsl_esdhc.h>
20#include <spi_flash.h>
21
22DECLARE_GLOBAL_DATA_PTR;
23
24static const u32 sysclk_tbl[] = {
25 66666000, 7499900, 83332500, 8999900,
26 99999000, 11111000, 12499800, 13333200
27};
28
29phys_size_t get_effective_memsize(void)
30{
31 return CONFIG_SYS_L2_SIZE;
32}
33
34void board_init_f(ulong bootflag)
35{
36 u32 plat_ratio, bus_clk;
37 ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
38
39 console_init_f();
40
41 /* Set pmuxcr to allow both i2c1 and i2c2 */
42 setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
43 setbits_be32(&gur->pmuxcr,
44 in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
45
46 /* Read back the register to synchronize the write. */
47 in_be32(&gur->pmuxcr);
48
49#ifdef CONFIG_SPL_SPI_BOOT
50 clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
51#endif
52
53 /* initialize selected port with appropriate baud rate */
54 plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
55 plat_ratio >>= 1;
56 bus_clk = CONFIG_SYS_CLK_FREQ * plat_ratio;
57 gd->bus_clk = bus_clk;
58
59 NS16550_init((NS16550_t)CONFIG_SYS_NS16550_COM1,
60 bus_clk / 16 / CONFIG_BAUDRATE);
61#ifdef CONFIG_SPL_MMC_BOOT
62 puts("\nSD boot...\n");
63#elif defined(CONFIG_SPL_SPI_BOOT)
64 puts("\nSPI Flash boot...\n");
65#endif
66
67 /* copy code to RAM and jump to it - this should not return */
68 /* NOTE - code has to be copied out of NAND buffer before
69 * other blocks can be read.
70 */
71 relocate_code(CONFIG_SPL_RELOC_STACK, 0, CONFIG_SPL_RELOC_TEXT_BASE);
72}
73
74void board_init_r(gd_t *gd, ulong dest_addr)
75{
76 /* Pointer is writable since we allocated a register for it */
77 gd = (gd_t *)CONFIG_SPL_GD_ADDR;
78 bd_t *bd;
79
80 memset(gd, 0, sizeof(gd_t));
81 bd = (bd_t *)(CONFIG_SPL_GD_ADDR + sizeof(gd_t));
82 memset(bd, 0, sizeof(bd_t));
83 gd->bd = bd;
84 bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR;
85 bd->bi_memsize = CONFIG_SYS_L2_SIZE;
86
Simon Glasscbcbf712017-01-23 13:31:22 -070087 arch_cpu_init();
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -040088 get_clocks();
89 mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
90 CONFIG_SPL_RELOC_MALLOC_SIZE);
91
92#ifndef CONFIG_SPL_NAND_BOOT
93 env_init();
94#endif
95#ifdef CONFIG_SPL_MMC_BOOT
96 mmc_initialize(bd);
97#endif
98 /* relocate environment function pointers etc. */
99#ifdef CONFIG_SPL_NAND_BOOT
100 nand_spl_load_image(CONFIG_ENV_OFFSET, CONFIG_ENV_SIZE,
101 (uchar *)CONFIG_ENV_ADDR);
102 gd->env_addr = (ulong)(CONFIG_ENV_ADDR);
Simon Glass203e94f2017-08-03 12:21:56 -0600103 gd->env_valid = ENV_VALID;
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -0400104#else
105 env_relocate();
106#endif
107
108#ifdef CONFIG_SYS_I2C
109 i2c_init_all();
110#else
111 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
112#endif
113
Simon Glassf1683aa2017-04-06 12:47:05 -0600114 dram_init();
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -0400115#ifdef CONFIG_SPL_NAND_BOOT
116 puts("Tertiary program loader running in sram...");
117#else
118 puts("Second program loader running in sram...\n");
119#endif
120
121#ifdef CONFIG_SPL_MMC_BOOT
122 mmc_boot();
Oleksandr G Zhadan8b0044f2015-04-29 16:57:39 -0400123#elif defined(CONFIG_SPL_NAND_BOOT)
124 nand_boot();
125#endif
126}