blob: 1902bd02c5d236e526d0bc2133b2c07dd954e843 [file] [log] [blame]
wdenk2cbe5712004-10-10 17:05:18 +00001/*
2 * Memory Setup stuff - taken from blob memsetup.S
3 *
4 * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl) and
wdenkb6508512004-10-10 18:03:33 +00005 * Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl)
wdenk2cbe5712004-10-10 17:05:18 +00006 *
7 * Modified for the at91rm9200dk board by
8 * (C) Copyright 2004
wdenk9d5028c2004-11-21 00:06:33 +00009 * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
wdenk2cbe5712004-10-10 17:05:18 +000010 *
11 * See file CREDITS for list of people who contributed to this
12 * project.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License as
16 * published by the Free Software Foundation; either version 2 of
17 * the License, or (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
wdenkb6508512004-10-10 18:03:33 +000021 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk2cbe5712004-10-10 17:05:18 +000022 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
27 * MA 02111-1307 USA
28 */
29
30#include <config.h>
31#include <version.h>
32
wdenk8aa1a2d2005-04-04 12:44:11 +000033#ifndef CONFIG_SKIP_LOWLEVEL_INIT
wdenk2cbe5712004-10-10 17:05:18 +000034/*
35 * some parameters for the board
36 *
37 * This is based on rm9200dk.cfg for the BDI2000 from ABATRON which in
wdenk9d5028c2004-11-21 00:06:33 +000038 * turn is based on the boot.bin code from ATMEL
wdenk2cbe5712004-10-10 17:05:18 +000039 *
40 */
41
42/* flash */
wdenkef2807c2005-03-31 23:44:33 +000043#define MC_PUIA 0xFFFFFF10
44#define MC_PUP 0xFFFFFF50
45#define MC_PUER 0xFFFFFF54
46#define MC_ASR 0xFFFFFF04
47#define MC_AASR 0xFFFFFF08
48#define EBI_CFGR 0xFFFFFF64
49#define SMC2_CSR 0xFFFFFF70
wdenk2cbe5712004-10-10 17:05:18 +000050
51/* clocks */
wdenkef2807c2005-03-31 23:44:33 +000052#define PLLAR 0xFFFFFC28
53#define PLLBR 0xFFFFFC2C
54#define MCKR 0xFFFFFC30
55
56#define AT91C_BASE_CKGR 0xFFFFFC20
57#define CKGR_MOR 0
wdenk2cbe5712004-10-10 17:05:18 +000058
59/* sdram */
wdenkef2807c2005-03-31 23:44:33 +000060#define PIOC_ASR 0xFFFFF870
61#define PIOC_BSR 0xFFFFF874
62#define PIOC_PDR 0xFFFFF804
63#define EBI_CSA 0xFFFFFF60
64#define SDRC_CR 0xFFFFFF98
65#define SDRC_MR 0xFFFFFF90
66#define SDRC_TR 0xFFFFFF94
wdenk2cbe5712004-10-10 17:05:18 +000067
68
wdenk9d5028c2004-11-21 00:06:33 +000069_MTEXT_BASE:
70#undef START_FROM_MEM
71#ifdef START_FROM_MEM
72 .word TEXT_BASE-PHYS_FLASH_1
73#else
wdenk2cbe5712004-10-10 17:05:18 +000074 .word TEXT_BASE
wdenk9d5028c2004-11-21 00:06:33 +000075#endif
wdenk2cbe5712004-10-10 17:05:18 +000076
wdenk986ef432005-04-04 12:36:04 +000077.globl lowlevel_init
78lowlevel_init:
wdenkef2807c2005-03-31 23:44:33 +000079 /* Get the CKGR Base Address */
80 ldr r1, =AT91C_BASE_CKGR
81 /* Main oscillator Enable register */
82#ifdef CFG_USE_MAIN_OSCILLATOR
83 ldr r0, =0x0000FF01 /* Enable main oscillator, OSCOUNT = 0xFF */
84#else
85 ldr r0, =0x0000FF00 /* Disable main oscillator, OSCOUNT = 0xFF */
86#endif
87 str r0, [r1, #CKGR_MOR]
88 /* Add loop to compensate Main Oscillator startup time */
89 ldr r0, =0x00000010
90LoopOsc:
91 subs r0, r0, #1
92 bhi LoopOsc
93
wdenk2cbe5712004-10-10 17:05:18 +000094 /* memory control configuration */
wdenkb6508512004-10-10 18:03:33 +000095 /* this isn't very elegant, but what the heck */
96 ldr r0, =SMRDATA
wdenk9d5028c2004-11-21 00:06:33 +000097 ldr r1, _MTEXT_BASE
wdenk2cbe5712004-10-10 17:05:18 +000098 sub r0, r0, r1
wdenkb6508512004-10-10 18:03:33 +000099 add r2, r0, #80
wdenk2cbe5712004-10-10 17:05:18 +00001000:
101 /* the address */
wdenkb6508512004-10-10 18:03:33 +0000102 ldr r1, [r0], #4
wdenk2cbe5712004-10-10 17:05:18 +0000103 /* the value */
wdenkb6508512004-10-10 18:03:33 +0000104 ldr r3, [r0], #4
105 str r3, [r1]
106 cmp r2, r0
107 bne 0b
wdenk2cbe5712004-10-10 17:05:18 +0000108 /* delay - this is all done by guess */
wdenk9d5028c2004-11-21 00:06:33 +0000109 ldr r0, =0x00010000
wdenk2cbe5712004-10-10 17:05:18 +00001101:
wdenkb6508512004-10-10 18:03:33 +0000111 subs r0, r0, #1
112 bhi 1b
113 ldr r0, =SMRDATA1
wdenk9d5028c2004-11-21 00:06:33 +0000114 ldr r1, _MTEXT_BASE
wdenk2cbe5712004-10-10 17:05:18 +0000115 sub r0, r0, r1
wdenkb6508512004-10-10 18:03:33 +0000116 add r2, r0, #176
wdenk2cbe5712004-10-10 17:05:18 +00001172:
118 /* the address */
wdenkb6508512004-10-10 18:03:33 +0000119 ldr r1, [r0], #4
wdenk2cbe5712004-10-10 17:05:18 +0000120 /* the value */
wdenkb6508512004-10-10 18:03:33 +0000121 ldr r3, [r0], #4
122 str r3, [r1]
123 cmp r2, r0
124 bne 2b
wdenk2cbe5712004-10-10 17:05:18 +0000125
Wolfgang Denkc0e82d52005-10-05 02:06:08 +0200126 /* switch from FastBus to Asynchronous clock mode */
Wolfgang Denk3b9dfdd2005-10-05 02:02:25 +0200127 mrc p15, 0, r0, c1, c0, 0
Wolfgang Denkc0e82d52005-10-05 02:06:08 +0200128 orr r0, r0, #0xC0000000 @ set bit 31 (iA) and 30 (nF)
Wolfgang Denk3b9dfdd2005-10-05 02:02:25 +0200129 mcr p15, 0, r0, c1, c0, 0
130
wdenk2cbe5712004-10-10 17:05:18 +0000131 /* everything is fine now */
132 mov pc, lr
133
134 .ltorg
135
136SMRDATA:
137 .word MC_PUIA
138 .word MC_PUIA_VAL
139 .word MC_PUP
140 .word MC_PUP_VAL
141 .word MC_PUER
142 .word MC_PUER_VAL
143 .word MC_ASR
144 .word MC_ASR_VAL
145 .word MC_AASR
146 .word MC_AASR_VAL
147 .word EBI_CFGR
148 .word EBI_CFGR_VAL
149 .word SMC2_CSR
150 .word SMC2_CSR_VAL
151 .word PLLAR
152 .word PLLAR_VAL
153 .word PLLBR
154 .word PLLBR_VAL
155 .word MCKR
156 .word MCKR_VAL
157 /* SMRDATA is 80 bytes long */
158 /* here there's a delay of 100 */
159SMRDATA1:
160 .word PIOC_ASR
161 .word PIOC_ASR_VAL
162 .word PIOC_BSR
163 .word PIOC_BSR_VAL
164 .word PIOC_PDR
165 .word PIOC_PDR_VAL
166 .word EBI_CSA
167 .word EBI_CSA_VAL
168 .word SDRC_CR
169 .word SDRC_CR_VAL
170 .word SDRC_MR
171 .word SDRC_MR_VAL
172 .word SDRAM
173 .word SDRAM_VAL
174 .word SDRC_MR
175 .word SDRC_MR_VAL1
176 .word SDRAM
177 .word SDRAM_VAL
178 .word SDRAM
179 .word SDRAM_VAL
180 .word SDRAM
181 .word SDRAM_VAL
182 .word SDRAM
183 .word SDRAM_VAL
184 .word SDRAM
185 .word SDRAM_VAL
186 .word SDRAM
187 .word SDRAM_VAL
188 .word SDRAM
189 .word SDRAM_VAL
190 .word SDRAM
191 .word SDRAM_VAL
192 .word SDRC_MR
193 .word SDRC_MR_VAL2
194 .word SDRAM1
195 .word SDRAM_VAL
196 .word SDRC_TR
197 .word SDRC_TR_VAL
198 .word SDRAM
199 .word SDRAM_VAL
200 .word SDRC_MR
201 .word SDRC_MR_VAL3
202 .word SDRAM
203 .word SDRAM_VAL
204 /* SMRDATA1 is 176 bytes long */
wdenk8aa1a2d2005-04-04 12:44:11 +0000205#endif /* CONFIG_SKIP_LOWLEVEL_INIT */