summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/friendlyarm-mini2440/lowlevel_init.S
blob: 5c06b1cedc7ea59df566f76767558c7e956c2f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
 * Low level initialization for the FriendlyARM mini2440 board
 */

#include <config.h>
#include <mach/s3c-iomap.h>
#include <asm/barebox-arm-head.h>

	.section ".text_bare_init.reset","ax"

/* ------------------------------------------------------------------------ */

.globl reset
reset:
	common_reset r0

	bl s3c24x0_disable_wd

	/* skip everything here if we are already running from SDRAM */
	cmp pc, #S3C_SDRAM_BASE
	blo 1f
	cmp pc, #S3C_SDRAM_END
	bhs 1f

	b board_init_lowlevel_return

/* we are running from NOR or NAND/SRAM memory. Do further initialisation */
1:
	bl s3c24x0_pll_init

	bl s3c24x0_sdram_init

#ifdef CONFIG_S3C_NAND_BOOT
/* up to here we are running from the internal SRAM area */
	bl s3c24x0_nand_boot
#endif
	b board_init_lowlevel_return