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