Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 1 | /* |
| 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 |
| 5 | * Jan-Derk Bakker (J.D.Bakker@its.tudelft.nl) |
| 6 | * |
| 7 | * Copyright (C) 2008 Ronetix Ilko Iliev (www.ronetix.at) |
| 8 | * Copyright (C) 2009 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> |
| 9 | * |
Wolfgang Denk | 3765b3e | 2013-10-07 13:07:26 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <config.h> |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 14 | #include <asm/arch/hardware.h> |
| 15 | #include <asm/arch/at91_pmc.h> |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 16 | #include <asm/arch/at91_wdt.h> |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 17 | #include <asm/arch/at91_pio.h> |
| 18 | #include <asm/arch/at91_matrix.h> |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 19 | #include <asm/arch/at91sam9_sdramc.h> |
| 20 | #include <asm/arch/at91sam9_smc.h> |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 21 | #include <asm/arch/at91_rstc.h> |
Xu, Hong | ffa280f | 2011-06-10 21:31:25 +0000 | [diff] [blame] | 22 | #ifdef CONFIG_ATMEL_LEGACY |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 23 | #include <asm/arch/at91sam9_matrix.h> |
| 24 | #endif |
| 25 | #ifndef CONFIG_SYS_MATRIX_EBICSA_VAL |
| 26 | #define CONFIG_SYS_MATRIX_EBICSA_VAL CONFIG_SYS_MATRIX_EBI0CSA_VAL |
| 27 | #endif |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 28 | |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 29 | .globl lowlevel_init |
| 30 | .type lowlevel_init,function |
| 31 | lowlevel_init: |
| 32 | |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 33 | POS1: |
Albert ARIBAUD | b60eff3 | 2014-02-22 17:53:43 +0100 | [diff] [blame] | 34 | adr r5, POS1 /* r5 = POS1 run time */ |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 35 | ldr r0, =POS1 /* r0 = POS1 compile */ |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 36 | sub r5, r5, r0 /* r0 = CONFIG_SYS_TEXT_BASE-1 */ |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 37 | |
| 38 | /* memory control configuration 1 */ |
| 39 | ldr r0, =SMRDATA |
| 40 | ldr r2, =SMRDATA1 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 41 | add r0, r0, r5 |
| 42 | add r2, r2, r5 |
| 43 | 0: |
| 44 | /* the address */ |
| 45 | ldr r1, [r0], #4 |
| 46 | /* the value */ |
| 47 | ldr r3, [r0], #4 |
| 48 | str r3, [r1] |
| 49 | cmp r2, r0 |
| 50 | bne 0b |
| 51 | |
| 52 | /* ---------------------------------------------------------------------------- |
| 53 | * PMC Init Step 1. |
| 54 | * ---------------------------------------------------------------------------- |
| 55 | * - Check if the PLL is already initialized |
| 56 | * ---------------------------------------------------------------------------- |
| 57 | */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 58 | ldr r1, =(AT91_ASM_PMC_MCKR) |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 59 | ldr r0, [r1] |
| 60 | and r0, r0, #3 |
| 61 | cmp r0, #0 |
| 62 | bne PLL_setup_end |
| 63 | |
| 64 | /* --------------------------------------------------------------------------- |
| 65 | * - Enable the Main Oscillator |
| 66 | * --------------------------------------------------------------------------- |
| 67 | */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 68 | ldr r1, =(AT91_ASM_PMC_MOR) |
| 69 | ldr r2, =(AT91_ASM_PMC_SR) |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 70 | /* Main oscillator Enable register PMC_MOR: */ |
Jean-Christophe PLAGNIOL-VILLARD | 01550a2 | 2009-06-12 21:20:38 +0200 | [diff] [blame] | 71 | ldr r0, =CONFIG_SYS_MOR_VAL |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 72 | str r0, [r1] |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 73 | |
| 74 | /* Reading the PMC Status to detect when the Main Oscillator is enabled */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 75 | mov r4, #AT91_PMC_IXR_MOSCS |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 76 | MOSCS_Loop: |
| 77 | ldr r3, [r2] |
| 78 | and r3, r4, r3 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 79 | cmp r3, #AT91_PMC_IXR_MOSCS |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 80 | bne MOSCS_Loop |
| 81 | |
| 82 | /* ---------------------------------------------------------------------------- |
| 83 | * PMC Init Step 2. |
| 84 | * ---------------------------------------------------------------------------- |
| 85 | * Setup PLLA |
| 86 | * ---------------------------------------------------------------------------- |
| 87 | */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 88 | ldr r1, =(AT91_ASM_PMC_PLLAR) |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 89 | ldr r0, =CONFIG_SYS_PLLAR_VAL |
| 90 | str r0, [r1] |
| 91 | |
| 92 | /* Reading the PMC Status register to detect when the PLLA is locked */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 93 | mov r4, #AT91_PMC_IXR_LOCKA |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 94 | MOSCS_Loop1: |
| 95 | ldr r3, [r2] |
| 96 | and r3, r4, r3 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 97 | cmp r3, #AT91_PMC_IXR_LOCKA |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 98 | bne MOSCS_Loop1 |
| 99 | |
| 100 | /* ---------------------------------------------------------------------------- |
| 101 | * PMC Init Step 3. |
| 102 | * ---------------------------------------------------------------------------- |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 103 | * - Switch on the Main Oscillator |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 104 | * ---------------------------------------------------------------------------- |
| 105 | */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 106 | ldr r1, =(AT91_ASM_PMC_MCKR) |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 107 | |
| 108 | /* -Master Clock Controller register PMC_MCKR */ |
| 109 | ldr r0, =CONFIG_SYS_MCKR1_VAL |
| 110 | str r0, [r1] |
| 111 | |
| 112 | /* Reading the PMC Status to detect when the Master clock is ready */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 113 | mov r4, #AT91_PMC_IXR_MCKRDY |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 114 | MCKRDY_Loop: |
| 115 | ldr r3, [r2] |
| 116 | and r3, r4, r3 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 117 | cmp r3, #AT91_PMC_IXR_MCKRDY |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 118 | bne MCKRDY_Loop |
| 119 | |
| 120 | ldr r0, =CONFIG_SYS_MCKR2_VAL |
| 121 | str r0, [r1] |
| 122 | |
| 123 | /* Reading the PMC Status to detect when the Master clock is ready */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 124 | mov r4, #AT91_PMC_IXR_MCKRDY |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 125 | MCKRDY_Loop1: |
| 126 | ldr r3, [r2] |
| 127 | and r3, r4, r3 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 128 | cmp r3, #AT91_PMC_IXR_MCKRDY |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 129 | bne MCKRDY_Loop1 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 130 | PLL_setup_end: |
| 131 | |
| 132 | /* ---------------------------------------------------------------------------- |
| 133 | * - memory control configuration 2 |
| 134 | * ---------------------------------------------------------------------------- |
| 135 | */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 136 | ldr r0, =(AT91_ASM_SDRAMC_TR) |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 137 | ldr r1, [r0] |
| 138 | cmp r1, #0 |
| 139 | bne SDRAM_setup_end |
| 140 | |
| 141 | ldr r0, =SMRDATA1 |
| 142 | ldr r2, =SMRDATA2 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 143 | add r0, r0, r5 |
| 144 | add r2, r2, r5 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 145 | 2: |
| 146 | /* the address */ |
| 147 | ldr r1, [r0], #4 |
| 148 | /* the value */ |
| 149 | ldr r3, [r0], #4 |
| 150 | str r3, [r1] |
| 151 | cmp r2, r0 |
| 152 | bne 2b |
| 153 | |
| 154 | SDRAM_setup_end: |
| 155 | /* everything is fine now */ |
| 156 | mov pc, lr |
| 157 | |
| 158 | .ltorg |
| 159 | |
| 160 | SMRDATA: |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 161 | .word AT91_ASM_WDT_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 162 | .word CONFIG_SYS_WDTC_WDMR_VAL |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 163 | /* configure PIOx as EBI0 D[16-31] */ |
| 164 | #if defined(CONFIG_AT91SAM9263) |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 165 | .word AT91_ASM_PIOD_PDR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 166 | .word CONFIG_SYS_PIOD_PDR_VAL1 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 167 | .word AT91_ASM_PIOD_PUDR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 168 | .word CONFIG_SYS_PIOD_PPUDR_VAL |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 169 | .word AT91_ASM_PIOD_ASR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 170 | .word CONFIG_SYS_PIOD_PPUDR_VAL |
Tom Rix | 23b8098 | 2009-09-27 11:10:09 -0500 | [diff] [blame] | 171 | #elif defined(CONFIG_AT91SAM9260) || defined(CONFIG_AT91SAM9261) \ |
| 172 | || defined(CONFIG_AT91SAM9G20) |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 173 | .word AT91_ASM_PIOC_PDR |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 174 | .word CONFIG_SYS_PIOC_PDR_VAL1 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 175 | .word AT91_ASM_PIOC_PUDR |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 176 | .word CONFIG_SYS_PIOC_PPUDR_VAL |
| 177 | #endif |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 178 | .word AT91_ASM_MATRIX_CSA0 |
Jean-Christophe PLAGNIOL-VILLARD | 8096c51 | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 179 | .word CONFIG_SYS_MATRIX_EBICSA_VAL |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 180 | |
| 181 | /* flash */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 182 | .word AT91_ASM_SMC_MODE0 |
Jean-Christophe PLAGNIOL-VILLARD | 7a11c7f | 2009-06-12 21:20:37 +0200 | [diff] [blame] | 183 | .word CONFIG_SYS_SMC0_MODE0_VAL |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 184 | |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 185 | .word AT91_ASM_SMC_CYCLE0 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 186 | .word CONFIG_SYS_SMC0_CYCLE0_VAL |
| 187 | |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 188 | .word AT91_ASM_SMC_PULSE0 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 189 | .word CONFIG_SYS_SMC0_PULSE0_VAL |
| 190 | |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 191 | .word AT91_ASM_SMC_SETUP0 |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 192 | .word CONFIG_SYS_SMC0_SETUP0_VAL |
| 193 | |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 194 | SMRDATA1: |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 195 | .word AT91_ASM_SDRAMC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 196 | .word CONFIG_SYS_SDRC_MR_VAL1 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 197 | .word AT91_ASM_SDRAMC_TR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 198 | .word CONFIG_SYS_SDRC_TR_VAL1 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 199 | .word AT91_ASM_SDRAMC_CR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 200 | .word CONFIG_SYS_SDRC_CR_VAL |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 201 | .word AT91_ASM_SDRAMC_MDR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 202 | .word CONFIG_SYS_SDRC_MDR_VAL |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 203 | .word AT91_ASM_SDRAMC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 204 | .word CONFIG_SYS_SDRC_MR_VAL2 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 205 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 206 | .word CONFIG_SYS_SDRAM_VAL1 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 207 | .word AT91_ASM_SDRAMC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 208 | .word CONFIG_SYS_SDRC_MR_VAL3 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 209 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 210 | .word CONFIG_SYS_SDRAM_VAL2 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 211 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 212 | .word CONFIG_SYS_SDRAM_VAL3 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 213 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 214 | .word CONFIG_SYS_SDRAM_VAL4 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 215 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 216 | .word CONFIG_SYS_SDRAM_VAL5 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 217 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 218 | .word CONFIG_SYS_SDRAM_VAL6 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 219 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 220 | .word CONFIG_SYS_SDRAM_VAL7 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 221 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 222 | .word CONFIG_SYS_SDRAM_VAL8 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 223 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 224 | .word CONFIG_SYS_SDRAM_VAL9 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 225 | .word AT91_ASM_SDRAMC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 226 | .word CONFIG_SYS_SDRC_MR_VAL4 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 227 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 228 | .word CONFIG_SYS_SDRAM_VAL10 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 229 | .word AT91_ASM_SDRAMC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 230 | .word CONFIG_SYS_SDRC_MR_VAL5 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 231 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 232 | .word CONFIG_SYS_SDRAM_VAL11 |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 233 | .word AT91_ASM_SDRAMC_TR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 234 | .word CONFIG_SYS_SDRC_TR_VAL2 |
Eric Benard | 96fd9906 | 2011-06-06 22:48:27 +0000 | [diff] [blame] | 235 | .word CONFIG_SYS_SDRAM_BASE |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 236 | .word CONFIG_SYS_SDRAM_VAL12 |
| 237 | /* User reset enable*/ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 238 | .word AT91_ASM_RSTC_MR |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 239 | .word CONFIG_SYS_RSTC_RMR_VAL |
| 240 | #ifdef CONFIG_SYS_MATRIX_MCFG_REMAP |
| 241 | /* MATRIX_MCFG - REMAP all masters */ |
Jens Scharsig | 0cf0b93 | 2010-02-03 22:46:58 +0100 | [diff] [blame] | 242 | .word AT91_ASM_MATRIX_MCFG |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 243 | .word 0x1FF |
| 244 | #endif |
Ilko Iliev | f0a2c7b | 2009-04-16 21:30:48 +0200 | [diff] [blame] | 245 | SMRDATA2: |
| 246 | .word 0 |