blob: ab9589c95c4815e03b35a182c646bdec78620f79 [file] [log] [blame]
wdenk3d3befa2004-03-14 15:06:13 +00001/*
2 * Board specific setup info
3 *
4 * (C) Copyright 2004, ARM Ltd.
5 * Philippe Robin, <philippe.robin@arm.com>
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenk3d3befa2004-03-14 15:06:13 +000018 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#include <config.h>
27#include <version.h>
28
Wolfgang Denk74f43042005-09-25 01:48:28 +020029 /* Reset using CM control register */
30.global reset_cpu
31reset_cpu:
32 mov r0, #CM_BASE
33 ldr r1,[r0,#OS_CTRL]
34 orr r1,r1,#CMMASK_RESET
Wolfgang Denk9b880bd2005-10-04 23:10:28 +020035 str r1,[r0,#OS_CTRL]
Wolfgang Denk74f43042005-09-25 01:48:28 +020036
37reset_failed:
38 b reset_failed
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020039
Wolfgang Denk87cb6862005-10-06 17:08:18 +020040/* Set up the platform, once the cpu has been initialized */
41.globl lowlevel_init
42lowlevel_init:
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020043 /* If U-Boot has been run after the ARM boot monitor
44 * then all the necessary actions have been done
45 * otherwise we are running from user flash mapped to 0x00000000
46 * --- DO NOT REMAP BEFORE THE CODE HAS BEEN RELOCATED --
47 * Changes to the (possibly soft) reset defaults of the processor
48 * itself should be performed in cpu/arm<>/start.S
49 * This function affects only the core module or board settings
50 */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020051
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020052#ifdef CONFIG_CM_INIT
53 /* CM has an initialization register
54 * - bits in it are wired into test-chip pins to force
55 * reset defaults
56 * - may need to change its contents for U-Boot
57 */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020058
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020059 /* set the desired CM specific value */
60 mov r2,#CMMASK_LOWVEC /* Vectors at 0x00000000 for all */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020061
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020062#if defined (CONFIG_CM10200E) || defined (CONFIG_CM10220E)
63 orr r2,r2,#CMMASK_INIT_102
64#else
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020065
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020066#if !defined (CONFIG_CM920T) && !defined (CONFIG_CM920T_ETM) && \
67 !defined (CONFIG_CM940T)
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020068
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020069#ifdef CONFIG_CM_MULTIPLE_SSRAM
Wolfgang Denk96782c62005-10-09 00:22:48 +020070 /* set simple mapping */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020071 and r2,r2,#CMMASK_MAP_SIMPLE
Wolfgang Denk96782c62005-10-09 00:22:48 +020072#endif /* #ifdef CONFIG_CM_MULTIPLE_SSRAM */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020073
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020074#ifdef CONFIG_CM_TCRAM
Wolfgang Denk96782c62005-10-09 00:22:48 +020075 /* disable TCRAM */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020076 and r2,r2,#CMMASK_TCRAM_DISABLE
Wolfgang Denk96782c62005-10-09 00:22:48 +020077#endif /* #ifdef CONFIG_CM_TCRAM */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020078
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020079#if defined (CONFIG_CM926EJ_S) || defined (CONFIG_CM1026EJ_S) || \
Wolfgang Denk96782c62005-10-09 00:22:48 +020080 defined (CONFIG_CM1136JF_S)
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020081
82 and r2,r2,#CMMASK_LE
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020083
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020084#endif /* cpu with little endian initialization */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020085
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020086 orr r2,r2,#CMMASK_CMxx6_COMMON
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020087
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020088#endif /* CMxx6 code */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020089
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020090#endif /* ARM102xxE value */
91
Wolfgang Denk96782c62005-10-09 00:22:48 +020092 /* read CM_INIT */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +020093 mov r0, #CM_BASE
94 ldr r1, [r0, #OS_INIT]
95 /* check against desired bit setting */
96 and r3,r1,r2
97 cmp r3,r2
98 beq init_reg_OK
Wolfgang Denk716c1dc2005-09-25 18:49:35 +020099
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200100 /* lock for change */
Wolfgang Denk9b880bd2005-10-04 23:10:28 +0200101 mov r3, #CMVAL_LOCK1
102 add r3,r3,#CMVAL_LOCK2
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200103 str r3, [r0, #OS_LOCK]
104 /* set desired value */
105 orr r1,r1,r2
106 /* write & relock CM_INIT */
107 str r1, [r0, #OS_INIT]
108 mov r1, #CMVAL_UNLOCK
109 str r1, [r0, #OS_LOCK]
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200110
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200111 /* soft reset so new values used */
112 b reset_cpu
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200113
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200114init_reg_OK:
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200115
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200116#endif /* CONFIG_CM_INIT */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200117
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200118 mov pc, lr
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200119
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200120#ifdef CONFIG_CM_SPD_DETECT
121 /* Fast memory is available for the DRAM data
122 * - ensure it has been transferred, then summarize the data
123 * into a CM register
124 */
125.globl dram_query
126dram_query:
127 stmfd r13!,{r4-r6,lr}
Wolfgang Denk96782c62005-10-09 00:22:48 +0200128 /* set up SDRAM info */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200129 /* - based on example code from the CM User Guide */
130 mov r0, #CM_BASE
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200131
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200132readspdbit:
Wolfgang Denk96782c62005-10-09 00:22:48 +0200133 ldr r1, [r0, #OS_SDRAM] /* read the SDRAM register */
134 and r1, r1, #0x20 /* mask SPD bit (5) */
135 cmp r1, #0x20 /* test if set */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200136 bne readspdbit
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200137
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200138setupsdram:
Wolfgang Denk96782c62005-10-09 00:22:48 +0200139 add r0, r0, #OS_SPD /* address the copy of the SDP data */
140 ldrb r1, [r0, #3] /* number of row address lines */
141 ldrb r2, [r0, #4] /* number of column address lines */
142 ldrb r3, [r0, #5] /* number of banks */
143 ldrb r4, [r0, #31] /* module bank density */
144 mul r5, r4, r3 /* size of SDRAM (MB divided by 4) */
145 mov r5, r5, ASL#2 /* size in MB */
146 mov r0, #CM_BASE /* reload for later code */
147 cmp r5, #0x10 /* is it 16MB? */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200148 bne not16
Wolfgang Denk96782c62005-10-09 00:22:48 +0200149 mov r6, #0x2 /* store size and CAS latency of 2 */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200150 b writesize
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200151
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200152not16:
153 cmp r5, #0x20 /* is it 32MB? */
154 bne not32
155 mov r6, #0x6
156 b writesize
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200157
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200158not32:
159 cmp r5, #0x40 /* is it 64MB? */
160 bne not64
161 mov r6, #0xa
162 b writesize
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200163
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200164not64:
165 cmp r5, #0x80 /* is it 128MB? */
166 bne not128
167 mov r6, #0xe
168 b writesize
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200169
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200170not128:
171 /* if it is none of these sizes then it is either 256MB, or
172 * there is no SDRAM fitted so default to 256MB
173 */
174 mov r6, #0x12
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200175
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200176writesize:
177 mov r1, r1, ASL#8 /* row addr lines from SDRAM reg */
178 orr r2, r1, r2, ASL#12 /* OR in column address lines */
179 orr r3, r2, r3, ASL#16 /* OR in number of banks */
180 orr r6, r6, r3 /* OR in size and CAS latency */
181 str r6, [r0, #OS_SDRAM] /* store SDRAM parameters */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200182
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200183#endif /* #ifdef CONFIG_CM_SPD_DETECT */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200184
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200185 ldmfd r13!,{r4-r6,pc} /* back to caller */
186
187#ifdef CONFIG_CM_REMAP
188 /* CM remap bit is operational
189 * - use it to map writeable memory at 0x00000000, in place of flash
190 */
191.globl cm_remap
192cm_remap:
193 stmfd r13!,{r4-r10,lr}
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200194
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200195 mov r0, #CM_BASE
196 ldr r1, [r0, #OS_CTRL]
197 orr r1, r1, #CMMASK_REMAP /* set remap and led bits */
198 str r1, [r0, #OS_CTRL]
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200199
Wolfgang Denk96782c62005-10-09 00:22:48 +0200200 /* Now 0x00000000 is writeable, replace the vectors */
201 ldr r0, =_start /* r0 <- start of vectors */
202 ldr r2, =_armboot_start /* r2 <- past vectors */
203 sub r1,r1,r1 /* destination 0x00000000 */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200204
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200205copy_vec:
Wolfgang Denk96782c62005-10-09 00:22:48 +0200206 ldmia r0!, {r3-r10} /* copy from source address [r0] */
207 stmia r1!, {r3-r10} /* copy to target address [r1] */
208 cmp r0, r2 /* until source end address [r2] */
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200209 ble copy_vec
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200210
Wolfgang Denk96782c62005-10-09 00:22:48 +0200211 ldmfd r13!,{r4-r10,pc} /* back to caller */
Wolfgang Denk716c1dc2005-09-25 18:49:35 +0200212
Wolfgang Denk0148e8c2005-09-25 16:22:14 +0200213#endif /* #ifdef CONFIG_CM_REMAP */