blob: a749b310c5ea4f93200eedfb399d038e8986a3d2 [file] [log] [blame]
Marek Vasut411b9ea2011-10-31 14:17:21 +01001/*
2 * Voipac PXA270 OneNAND SPL
3 *
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Marek Vasut411b9ea2011-10-31 14:17:21 +01007 */
8
9#include <common.h>
10#include <config.h>
11#include <asm/io.h>
12#include <onenand_uboot.h>
Marek Vasut4438a452011-11-26 11:17:32 +010013#include <asm/arch/pxa.h>
Marek Vasut411b9ea2011-10-31 14:17:21 +010014
15void board_init_f(unsigned long unused)
16{
17 extern uint32_t _end;
18 uint32_t tmp;
19
20 asm volatile("mov %0, pc" : "=r"(tmp));
21 tmp >>= 24;
22
23 /* The code runs from OneNAND RAM, copy SPL to SRAM and execute it. */
24 if (tmp == 0) {
25 tmp = (uint32_t)&_end - CONFIG_SPL_TEXT_BASE;
26 onenand_spl_load_image(0, tmp, (void *)CONFIG_SPL_TEXT_BASE);
27 asm volatile("mov pc, %0" : : "r"(CONFIG_SPL_TEXT_BASE));
28 }
29
30 /* Hereby, the code runs from (S)RAM, copy U-Boot and execute it. */
31 arch_cpu_init();
Marek Vasutf68d2a22011-11-26 11:18:57 +010032 pxa2xx_dram_init();
Marek Vasut411b9ea2011-10-31 14:17:21 +010033 onenand_spl_load_image(CONFIG_SPL_ONENAND_LOAD_ADDR,
34 CONFIG_SPL_ONENAND_LOAD_SIZE,
35 (void *)CONFIG_SYS_TEXT_BASE);
36 asm volatile("mov pc, %0" : : "r"(CONFIG_SYS_TEXT_BASE));
37
38 for (;;)
39 ;
40}
41
42void __attribute__((noreturn)) hang(void)
43{
44 for (;;)
45 ;
46}