]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - board/rmu/rmu.c
331fb9877a9627dca6f7996a04b0865fba562b79
[karo-tx-uboot.git] / board / rmu / rmu.c
1 /*
2  * (C) Copyright 2000
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24
25 #include <common.h>
26 #include <mpc8xx.h>
27
28 /* ------------------------------------------------------------------------- */
29
30 static long int dram_size (long int, long int *, long int);
31
32 /* ------------------------------------------------------------------------- */
33
34 #define _NOT_USED_      0xFFFFCC25
35
36 const uint sdram_table[] =
37 {
38         /*
39          * Single Read. (Offset 00h in UPMA RAM)
40          */
41         0x0F03CC04, 0x00ACCC24, 0x1FF74C20, _NOT_USED_,
42         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
43
44         /*
45          * Burst Read. (Offset 08h in UPMA RAM)
46          */
47         0x0F03CC04, 0x00ACCC24, 0x00FFCC20, 0x00FFCC20,
48         0x01FFCC20, 0x1FF74C20, _NOT_USED_, _NOT_USED_,
49         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
50         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
51
52         /*
53          * Single Write. (Offset 18h in UPMA RAM)
54          */
55         0x0F03CC02, 0x00AC0C24, 0x1FF74C25, _NOT_USED_,
56         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
57
58         /*
59          * Burst Write. (Offset 20h in UPMA RAM)
60          */
61         0x0F03CC00, 0x00AC0C20, 0x00FFFC20, 0x00FFFC22,
62         0x01FFFC24, 0x1FF74C25, _NOT_USED_, _NOT_USED_,
63         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
64         _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
65
66         /*
67          * Refresh. (Offset 30h in UPMA RAM)
68          * (Initialization code at 0x36)
69          */
70         0x0FF0CC24, 0xFFFFCC24, _NOT_USED_, _NOT_USED_,
71         _NOT_USED_, _NOT_USED_, 0xEFFB8C34, 0x0FF74C34,
72         0x0FFACCB4, 0x0FF5CC34, 0x0FFCC34, 0x0FFFCCB4,
73
74         /*
75          * Exception. (Offset 3Ch in UPMA RAM)
76          */
77         0x0FEA8C34, 0x1FB54C34, 0xFFFFCC34, _NOT_USED_
78 };
79
80 /* ------------------------------------------------------------------------- */
81
82
83 /*
84  * Check Board Identity:
85  */
86
87 int checkboard (void)
88 {
89         puts ("Board: RMU\n") ;
90         return (0) ;
91 }
92
93 /* ------------------------------------------------------------------------- */
94
95 long int initdram (int board_type)
96 {
97     volatile immap_t     *immap  = (immap_t *)CFG_IMMR;
98     volatile memctl8xx_t *memctl = &immap->im_memctl;
99     long int size9 ;
100
101     upmconfig(UPMA, (uint *)sdram_table, sizeof(sdram_table)/sizeof(uint));
102
103         /* Refresh clock prescalar */
104     memctl->memc_mptpr = CFG_MPTPR ;
105
106     memctl->memc_mar  = 0x00000088;
107
108         /* Map controller banks 1 to the SDRAM bank */
109     memctl->memc_or1 = CFG_OR1_PRELIM;
110     memctl->memc_br1 = CFG_BR1_PRELIM;
111
112     memctl->memc_mamr = CFG_MAMR_9COL & (~(MAMR_PTAE)); /* no refresh yet */
113
114     udelay(200);
115
116     /* perform SDRAM initializsation sequence */
117
118         memctl->memc_mcr  = 0x80002136 ; /* SDRAM bank 0 */
119     udelay(1);
120
121     memctl->memc_mamr |= MAMR_PTAE;     /* enable refresh */
122
123     udelay (1000);
124
125         /* Check Bank 0 Memory Size,
126          * 9 column mode
127          */
128
129         size9 = dram_size (CFG_MAMR_9COL, (ulong *)SDRAM_BASE_PRELIM, SDRAM_MAX_SIZE) ;
130
131         /*
132          * Final mapping:
133          */
134
135         memctl->memc_or1 = ((-size9) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
136         udelay (1000);
137
138     return (size9);
139 }
140
141 /* ------------------------------------------------------------------------- */
142
143 /*
144  * Check memory range for valid RAM. A simple memory test determines
145  * the actually available RAM size between addresses `base' and
146  * `base + maxsize'. Some (not all) hardware errors are detected:
147  * - short between address lines
148  * - short between data lines
149  */
150
151 static long int dram_size (long int mamr_value, long int *base, long int maxsize)
152 {
153     volatile immap_t     *immap  = (immap_t *)CFG_IMMR;
154     volatile memctl8xx_t *memctl = &immap->im_memctl;
155     volatile long int    *addr;
156     ulong                 cnt, val;
157     ulong                 save[32];     /* to make test non-destructive */
158     unsigned char         i = 0;
159
160     memctl->memc_mamr = mamr_value;
161
162     for (cnt = maxsize/sizeof(long); cnt > 0; cnt >>= 1) {
163         addr = base + cnt;      /* pointer arith! */
164
165         save[i++] = *addr;
166         *addr = ~cnt;
167     }
168
169     /* write 0 to base address */
170     addr = base;
171     save[i] = *addr;
172     *addr = 0;
173
174     /* check at base address */
175     if ((val = *addr) != 0) {
176         *addr = save[i];
177         return (0);
178     }
179
180     for (cnt = 1; cnt <= maxsize/sizeof(long); cnt <<= 1) {
181         addr = base + cnt;      /* pointer arith! */
182
183         val = *addr;
184         *addr = save[--i];
185
186         if (val != (~cnt)) {
187             return (cnt * sizeof(long));
188         }
189     }
190     return (maxsize);
191 }