blob: 4e8eb893e2981b193aa4ff6f11fd93bdc226a0be [file] [log] [blame]
Gary Jennejohn6bd24472007-01-24 12:16:56 +01001/*
2 * (C) Copyright 2006 Embedded Artists AB <www.embeddedartists.com>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
17 * MA 02111-1307 USA
18 */
19
20#include <config.h>
21#include <version.h>
22#include <asm/arch/hardware.h>
23
24/* some parameters for the board */
25/* setting up the memory */
Wolfgang Denk53677ef2008-05-20 16:00:29 +020026#define SRAM_START 0x40000000
27#define SRAM_SIZE 0x00004000
28#define BCFG0_VALUE 0x1000ffef
29#define BCFG1_VALUE 0x10001C61
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010030
Gary Jennejohn6bd24472007-01-24 12:16:56 +010031_TEXT_BASE:
32 .word TEXT_BASE
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010033MEMMAP_ADR:
Gary Jennejohn6bd24472007-01-24 12:16:56 +010034 .word MEMMAP
35BCFG0_ADR:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020036 .word BCFG0
Gary Jennejohn6bd24472007-01-24 12:16:56 +010037_BCFG0_VALUE:
Wolfgang Denk53677ef2008-05-20 16:00:29 +020038 .word BCFG0_VALUE
Gary Jennejohn6bd24472007-01-24 12:16:56 +010039BCFG1_ADR:
40 .word BCFG1
41_BCFG1_VALUE:
42 .word BCFG1_VALUE
43PINSEL2_ADR:
44 .word PINSEL2
45PINSEL2_MASK:
46 .word 0x00000000
47PINSEL2_VALUE:
48 .word 0x0F800914
49
50.extern _start
51
52.globl lowlevel_init
53lowlevel_init:
54 /* set up memory control register for bank 0 */
55 ldr r0, _BCFG0_VALUE
56 ldr r1, BCFG0_ADR
57 str r0, [r1]
58
59 /* set up memory control register for bank 1 */
60 ldr r0, _BCFG1_VALUE
61 ldr r1, BCFG1_ADR
62 str r0, [r1]
63
64 /* set up PINSEL2 for bus-pins */
65 ldr r0, PINSEL2_ADR
66 ldr r1, [r0]
67 ldr r2, PINSEL2_MASK
68 ldr r3, PINSEL2_VALUE
69 and r1, r1, r2
70 orr r1, r1, r3
71 str r1, [r0]
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010072
Gary Jennejohn6bd24472007-01-24 12:16:56 +010073 /* move vectors to beginning of SRAM */
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010074 mov r2, #SRAM_START
Gary Jennejohn6bd24472007-01-24 12:16:56 +010075 mov r0, #0 /*_start*/
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010076 ldmneia r0!, {r3-r10}
77 stmneia r2!, {r3-r10}
Gary Jennejohn6bd24472007-01-24 12:16:56 +010078 ldmneia r0, {r3-r9}
79 stmneia r2, {r3-r9}
80
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010081 /* Set-up MEMMAP register, so vectors are taken from SRAM */
Gary Jennejohn6bd24472007-01-24 12:16:56 +010082 ldr r0, MEMMAP_ADR
83 mov r1, #0x02 /* vectors re-mapped to static RAM */
84 str r1, [r0]
Wolfgang Denkf8db84f2007-01-30 00:50:40 +010085
Gary Jennejohn6bd24472007-01-24 12:16:56 +010086 /* everything is fine now */
87 mov pc, lr