]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/lantec/lantec.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / board / lantec / lantec.c
CommitLineData
16f21704
WD
1/*
2 * (C) Copyright 2000, 2001
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 * (C) Copyright 2001
5 * Torsten Stevens, FHG IMS, stevens@ims.fhg.de
6 * Bruno Achauer, Exet AG, bruno@exet-ag.de.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/*
28 * Derived from ../tqm8xx/tqm8xx.c
29 */
30
31#include <common.h>
32#include <mpc8xx.h>
33
34/* ------------------------------------------------------------------------- */
35
36static long int dram_size (long int, long int *, long int);
37
38/* ------------------------------------------------------------------------- */
39
40#define _NOT_USED_ 0xFFFFFFFF
41
c83bf6a2 42const uint sdram_table[] = {
16f21704
WD
43 /*
44 * Single Read. (Offset 0 in UPMA RAM)
45 */
46 0x1f07fc04, 0xeeaefc04, 0x11adfc04, 0xefbbbc00,
c83bf6a2 47 0x1ff77c47, /* last */
16f21704
WD
48 /*
49 * SDRAM Initialization (offset 5 in UPMA RAM)
50 *
51 * This is no UPM entry point. The following definition uses
52 * the remaining space to establish an initialization
53 * sequence, which is executed by a RUN command.
54 *
55 */
c83bf6a2 56 0x1ff77c35, 0xefeabc34, 0x1fb57c35, /* last */
16f21704
WD
57 /*
58 * Burst Read. (Offset 8 in UPMA RAM)
59 */
60 0x1f07fc04, 0xeeaefc04, 0x10adfc04, 0xf0affc00,
c83bf6a2 61 0xf0affc00, 0xf1affc00, 0xefbbbc00, 0x1ff77c47, /* last */
16f21704
WD
62 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
63 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
64 /*
65 * Single Write. (Offset 18 in UPMA RAM)
66 */
c83bf6a2 67 0x1f27fc04, 0xeeaebc00, 0x01b93c04, 0x1ff77c47, /* last */
16f21704
WD
68 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
69 /*
70 * Burst Write. (Offset 20 in UPMA RAM)
71 */
72 0x1f07fc04, 0xeeaebc00, 0x10ad7c00, 0xf0affc00,
c83bf6a2
WD
73 0xf0affc00, 0xe1bbbc04, 0x1ff77c47, /* last */
74 _NOT_USED_,
16f21704
WD
75 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
76 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
77 /*
78 * Refresh (Offset 30 in UPMA RAM)
79 */
80 0x1ff5fc84, 0xfffffc04, 0xfffffc04, 0xfffffc04,
c83bf6a2
WD
81 0xfffffc84, 0xfffffc07, 0xfffffc07, /* last */
82 _NOT_USED_,
16f21704
WD
83 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
84 /*
85 * Exception. (Offset 3c in UPMA RAM)
86 */
c83bf6a2
WD
87 0x7ffffc07, /* last */
88 _NOT_USED_, _NOT_USED_, _NOT_USED_,
16f21704
WD
89};
90
91/* ------------------------------------------------------------------------- */
92
93
94/*
95 * Check Board Identity:
96 *
97 * Test TQ ID string (TQM8xx...)
98 * If present, check for "L" type (no second DRAM bank),
99 * otherwise "L" type is assumed as default.
100 *
101 * Return 1 for "L" type, 0 else.
102 */
103
104int checkboard (void)
105{
c83bf6a2 106 printf ("Board: Lantec special edition rev.%d\n", CONFIG_LANTEC);
16f21704
WD
107 return 0;
108}
109
110/* ------------------------------------------------------------------------- */
111
9973e3c6 112phys_size_t initdram (int board_type)
16f21704 113{
6d0f6bcf 114 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
16f21704
WD
115 volatile memctl8xx_t *memctl = &immap->im_memctl;
116 long int size_b0;
117 int i;
118
119 /*
120 * Configure UPMA for SDRAM
121 */
c83bf6a2
WD
122 upmconfig (UPMA, (uint *) sdram_table,
123 sizeof (sdram_table) / sizeof (uint));
16f21704 124
6d0f6bcf 125 memctl->memc_mptpr = CONFIG_SYS_MPTPR_1BK_8K /* XXX CONFIG_SYS_MPTPR XXX */ ;
16f21704
WD
126
127 /* burst length=4, burst type=sequential, CAS latency=2 */
128 memctl->memc_mar = 0x00000088;
129
130 /*
c83bf6a2
WD
131 * Map controller bank 3 to the SDRAM bank at preliminary address.
132 */
6d0f6bcf
JCPV
133 memctl->memc_or3 = CONFIG_SYS_OR3_PRELIM;
134 memctl->memc_br3 = CONFIG_SYS_BR3_PRELIM;
16f21704
WD
135
136 /* initialize memory address register */
6d0f6bcf 137 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL; /* refresh not enabled yet */
16f21704
WD
138
139 /* mode initialization (offset 5) */
c83bf6a2
WD
140 udelay (200); /* 0x80006105 */
141 memctl->memc_mcr =
142 MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF (1) | MCR_MAD (0x05);
16f21704
WD
143
144 /* run 2 refresh sequence with 4-beat refresh burst (offset 0x30) */
c83bf6a2
WD
145 udelay (1); /* 0x80006130 */
146 memctl->memc_mcr =
147 MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF (1) | MCR_MAD (0x30);
148 udelay (1); /* 0x80006130 */
149 memctl->memc_mcr =
150 MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF (1) | MCR_MAD (0x30);
16f21704 151
c83bf6a2
WD
152 udelay (1); /* 0x80006106 */
153 memctl->memc_mcr =
154 MCR_OP_RUN | MCR_MB_CS3 | MCR_MLCF (1) | MCR_MAD (0x06);
16f21704 155
2535d602 156 memctl->memc_mamr |= MAMR_PTAE; /* refresh enabled */
16f21704 157
c83bf6a2 158 udelay (200);
16f21704
WD
159
160 /* Need at least 10 DRAM accesses to stabilize */
c83bf6a2
WD
161 for (i = 0; i < 10; ++i) {
162 volatile unsigned long *addr =
163 (volatile unsigned long *) SDRAM_BASE3_PRELIM;
16f21704
WD
164 unsigned long val;
165
166 val = *(addr + i);
167 *(addr + i) = val;
168 }
169
170 /*
c83bf6a2
WD
171 * Check Bank 0 Memory Size for re-configuration
172 */
6d0f6bcf 173 size_b0 = dram_size (CONFIG_SYS_MAMR_8COL,
77ddac94 174 (long *) SDRAM_BASE3_PRELIM, SDRAM_MAX_SIZE);
16f21704 175
6d0f6bcf 176 memctl->memc_mamr = CONFIG_SYS_MAMR_8COL | MAMR_PTAE;
16f21704
WD
177
178 /*
179 * Final mapping:
180 */
181
6d0f6bcf
JCPV
182 memctl->memc_or3 = ((-size_b0) & 0xFFFF0000) | CONFIG_SYS_OR_TIMING_SDRAM;
183 memctl->memc_br3 = (CONFIG_SYS_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
c83bf6a2 184 udelay (1000);
16f21704
WD
185
186 return (size_b0);
187}
188
189/* ------------------------------------------------------------------------- */
190
191/*
192 * Check memory range for valid RAM. A simple memory test determines
193 * the actually available RAM size between addresses `base' and
194 * `base + maxsize'. Some (not all) hardware errors are detected:
195 * - short between address lines
196 * - short between data lines
197 */
198
c83bf6a2
WD
199static long int dram_size (long int mamr_value, long int *base,
200 long int maxsize)
16f21704 201{
6d0f6bcf 202 volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;
c83bf6a2 203 volatile memctl8xx_t *memctl = &immap->im_memctl;
16f21704 204
c83bf6a2 205 memctl->memc_mamr = mamr_value;
16f21704 206
c83bf6a2 207 return (get_ram_size (base, maxsize));
16f21704 208}