arm: vf610: add uart0 clock/iomux definitions
[u-boot/qq2440-u-boot.git] / board / vpac270 / onenand.c
bloba749b310c5ea4f93200eedfb399d038e8986a3d2
1 /*
2 * Voipac PXA270 OneNAND SPL
4 * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
6 * SPDX-License-Identifier: GPL-2.0+
7 */
9 #include <common.h>
10 #include <config.h>
11 #include <asm/io.h>
12 #include <onenand_uboot.h>
13 #include <asm/arch/pxa.h>
15 void board_init_f(unsigned long unused)
17 extern uint32_t _end;
18 uint32_t tmp;
20 asm volatile("mov %0, pc" : "=r"(tmp));
21 tmp >>= 24;
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));
30 /* Hereby, the code runs from (S)RAM, copy U-Boot and execute it. */
31 arch_cpu_init();
32 pxa2xx_dram_init();
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));
38 for (;;)
42 void __attribute__((noreturn)) hang(void)
44 for (;;)