uboot/board/freescale/p1022ds/spl.c
<<
>>
Prefs
   1/*
   2 * Copyright 2013 Freescale Semiconductor, Inc.
   3 *
   4 * SPDX-License-Identifier:     GPL-2.0+
   5 */
   6
   7#include <common.h>
   8#include <console.h>
   9#include <environment.h>
  10#include <ns16550.h>
  11#include <malloc.h>
  12#include <mmc.h>
  13#include <nand.h>
  14#include <i2c.h>
  15#include "../common/ngpixis.h"
  16#include <fsl_esdhc.h>
  17#include <spi_flash.h>
  18#include "../common/spl.h"
  19
  20DECLARE_GLOBAL_DATA_PTR;
  21
  22static const u32 sysclk_tbl[] = {
  23        66666000, 7499900, 83332500, 8999900,
  24        99999000, 11111000, 12499800, 13333200
  25};
  26
  27phys_size_t get_effective_memsize(void)
  28{
  29        return CONFIG_SYS_L2_SIZE;
  30}
  31
  32void board_init_f(ulong bootflag)
  33{
  34        int px_spd;
  35        u32 plat_ratio, sys_clk, bus_clk;
  36        ccsr_gur_t *gur = (void *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
  37
  38        console_init_f();
  39
  40        /* Set pmuxcr to allow both i2c1 and i2c2 */
  41        setbits_be32(&gur->pmuxcr, in_be32(&gur->pmuxcr) | 0x1000);
  42        setbits_be32(&gur->pmuxcr,
  43                     in_be32(&gur->pmuxcr) | MPC85xx_PMUXCR_SD_DATA);
  44
  45#ifdef CONFIG_SPL_SPI_BOOT
  46        /* Enable the SPI */
  47        clrsetbits_8(&pixis->brdcfg0, PIXIS_ELBC_SPI_MASK, PIXIS_SPI);
  48#endif
  49
  50        /* Read back the register to synchronize the write. */
  51        in_be32(&gur->pmuxcr);
  52
  53        /* initialize selected port with appropriate baud rate */
  54        px_spd = in_8((unsigned char *)(PIXIS_BASE + PIXIS_SPD));
  55        sys_clk = sysclk_tbl[px_spd & PIXIS_SPD_SYSCLK_MASK];
  56        plat_ratio = in_be32(&gur->porpllsr) & MPC85xx_PORPLLSR_PLAT_RATIO;
  57        bus_clk = sys_clk * plat_ratio / 2;
  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
  87        arch_cpu_init();
  88        get_clocks();
  89        mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR,
  90                        CONFIG_SPL_RELOC_MALLOC_SIZE);
  91        gd->flags |= GD_FLG_FULL_MALLOC_INIT;
  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
 103        gd->env_addr  = (ulong)(CONFIG_ENV_ADDR);
 104        gd->env_valid = ENV_VALID;
 105#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
 115        dram_init();
 116#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();
 124#elif defined(CONFIG_SPL_SPI_BOOT)
 125        fsl_spi_boot();
 126#elif defined(CONFIG_SPL_NAND_BOOT)
 127        nand_boot();
 128#endif
 129}
 130