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