]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/vpac270/onenand.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / vpac270 / onenand.c
CommitLineData
411b9eaf
MV
1/*
2 * Voipac PXA270 OneNAND SPL
3 *
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
5 *
1a459660 6 * SPDX-License-Identifier: GPL-2.0+
411b9eaf
MV
7 */
8
9#include <common.h>
10#include <config.h>
11#include <asm/io.h>
12#include <onenand_uboot.h>
4438a45f 13#include <asm/arch/pxa.h>
411b9eaf
MV
14
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();
f68d2a22 32 pxa2xx_dram_init();
411b9eaf
MV
33 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}