]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/wepep250/memsetup.S
* Patch by Arun Dharankar, 4 Apr 2003:
[karo-tx-uboot.git] / board / wepep250 / memsetup.S
1 /*
2  * Copyright (C) 2001, 2002 ETC s.r.o.
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
6  * as published by the Free Software Foundation; either version 2
7  * of 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, MA
17  * 02111-1307, USA.
18  * 
19  * Written by Marcel Telka <marcel@telka.sk>, 2001, 2002.
20  * Changes for U-Boot Peter Figuli <peposh@etc.sk>, 2003.
21  *
22  * This file is taken from OpenWinCE project hosted by SourceForge.net
23  *
24  * Documentation:
25  * [1] Intel Corporation, "Intel PXA250 and PXA210 Application Processors
26  *     Developer's Manual", February 2002, Order Number: 278522-001
27  * [2] Samsung Electronics, "8Mx16 SDRAM 54CSP K4S281633D-RL/N/P",
28  *     Revision 1.0, February 2002
29  * [3] Samsung Electronics, "16Mx16 SDRAM 54CSP K4S561633C-RL(N)",
30  *     Revision 1.0, February 2002
31  * 
32 */
33
34 #include <config.h>
35 #include <version.h>
36 #include <asm/arch/pxa-regs.h>
37
38 .globl memsetup
39 memsetup:
40
41         mov     r10, lr
42
43 /*      setup memory - see 6.12 in [1]
44  *      Step 1  - wait 200 us
45  */
46         mov     r0,#0x2700                      /* wait 200 us @ 99.5 MHz */
47 1:      subs    r0, r0, #1
48         bne     1b
49 /*      TODO: complete step 1 for Synchronous Static memory*/
50
51         ldr     r0, =0x48000000                 /* MC_BASE */
52
53
54
55 /*      step 1.a - setup MSCx
56  */
57         ldr     r1, =0x000012B3                 /* MSC0_RRR0(1) | MSC0_RDN0(2) | MSC0_RDF0(11) | MSC0_RT0(3) */
58         str     r1, [r0, #0x8]                  /* MSC0_OFFSET */
59
60 /*      step 1.c - clear MDREFR:K1FREE, set MDREFR:DRI
61  *      see AUTO REFRESH chapter in section D. in [2] and in [3]
62  *      DRI = (64ms / 4096) * 99.53MHz / 32 = 48 for K4S281633
63  *      DRI = (64ms / 8192) * 99.52MHz / 32 = 24 for K4S561633
64  *      TODO: complete for Synchronous Static memory
65  */
66         ldr     r1, [r0, #4]                    /* MDREFR_OFFSET */
67         ldr     r2, =0x01000FFF                 /* MDREFR_K1FREE | MDREFR_DRI_MASK */
68         bic     r1, r1, r2
69 #if defined( WEP_SDRAM_K4S281633 )
70         orr     r1, r1, #48                     /* MDREFR_DRI(48) */
71 #elif defined( WEP_SDRAM_K4S561633 )
72         orr     r1, r1, #24                     /* MDREFR_DRI(24) */
73 #else
74 #error SDRAM chip is not defined
75 #endif
76
77         str     r1, [r0, #4]                    /* MDREFR_OFFSET */
78
79 /*      Step 2 - only for Synchronous Static memory (TODO)
80  *
81  *      Step 3 - same as step 4
82  *
83  *      Step 4
84  *
85  *      Step 4.a - set MDREFR:K1RUN, clear MDREFR:K1DB2
86  */
87         orr     r1, r1, #0x00010000             /* MDREFR_K1RUN */
88         bic     r1, r1, #0x00020000             /* MDREFR_K1DB2 */
89         str     r1, [r0, #4]                    /* MDREFR_OFFSET */
90
91 /*      Step 4.b - clear MDREFR:SLFRSH */
92         bic     r1, r1, #0x00400000             /* MDREFR_SLFRSH */
93         str     r1, [r0, #4]                    /* MDREFR_OFFSET */
94
95 /*      Step 4.c - set MDREFR:E1PIN */
96         orr     r1, r1, #0x00008000             /* MDREFR_E1PIN */
97         str     r1, [r0, #4]                    /* MDREFR_OFFSET */
98
99 /*      Step 4.d - automatically done
100  *
101  *      Steps 4.e and 4.f - configure SDRAM
102  */
103 #if defined( WEP_SDRAM_K4S281633 )
104         ldr     r1, =0x00000AA8                 /* MDCNFG_DTC0(2) | MDCNFG_DLATCH0 | MDCNFG_DCAC0(1) | MDCNFG_DRAC0(1) | MDCNFG_DNB0 */
105 #elif defined( WEP_SDRAM_K4S561633 )
106         ldr     r1, =0x00000AC8                 /* MDCNFG_DTC0(2) | MDCNFG_DLATCH0 | MDCNFG_DCAC0(1) | MDCNFG_DRAC0(2) | MDCNFG_DNB0 */
107 #else
108 #error SDRAM chip is not defined
109 #endif
110         str     r1, [r0, #0]                    /* MDCNFG_OFFSET */
111
112 /*      Step 5 - wait at least 200 us for SDRAM
113  *      see section B. in [2]
114  */
115         mov     r2,#0x2700                      /* wait 200 us @ 99.5 MHz */
116 1:      subs    r2, r2, #1
117         bne     1b
118
119 /*      Step 6 - after reset dcache is disabled, so automatically done
120  *
121  *      Step 7 - eight refresh cycles
122  */
123         mov     r2, #0xA0000000
124         ldr     r3, [r2]
125         ldr     r3, [r2]
126         ldr     r3, [r2]
127         ldr     r3, [r2]
128         ldr     r3, [r2]
129         ldr     r3, [r2]
130         ldr     r3, [r2]
131         ldr     r3, [r2]
132
133 /*      Step 8 - we don't need dcache now
134  *
135  *      Step 9 - enable SDRAM partition 0
136  */
137         orr     r1, r1, #1                      /* MDCNFG_DE0 */
138         str     r1, [r0, #0]                    /* MDCNFG_OFFSET */
139
140 /*      Step 10 - write MDMRS */
141         mov     r1, #0
142         str     r1, [r0, #0x40]                 /* MDMRS_OFFSET */
143
144 /*      Step 11 - optional (TODO) */
145
146         mov     pc,r10
147