3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Changes for MATRIX Vision MVsensor (C) Copyright 2001
6 * MATRIX Vision GmbH / hg, info@matrix-vision.de
8 * See file CREDITS for list of people who contributed to this
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.
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.
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,
30 /* ------------------------------------------------------------------------- */
32 static long int dram_size (long int, long int *, long int);
34 /* ------------------------------------------------------------------------- */
36 #define _NOT_USED_ 0xFFFFFFFF
38 const uint sdram_table[] =
41 * Single Read. (Offset 0 in UPMA RAM)
43 0x1F0DFC04, 0xEEAFBC04, 0x11AF7C04, 0xEFBAFC00,
44 0x1FF5FC47, /* last */
46 * SDRAM Initialization (offset 5 in UPMA RAM)
48 * This is no UPM entry point. The following definition uses
49 * the remaining space to establish an initialization
50 * sequence, which is executed by a RUN command.
53 0x1FF5FC34, 0xEFEABC34, 0x1FB57C35, /* last */
55 * Burst Read. (Offset 8 in UPMA RAM)
57 0x1F0DFC04, 0xEEAFBC04, 0x10AF7C04, 0xF0AFFC00,
58 0xF0AFFC00, 0xF1AFFC00, 0xEFBAFC00, 0x1FF5FC47, /* last */
59 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
60 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
62 * Single Write. (Offset 18 in UPMA RAM)
64 0x1F0DFC04 /*0x1F2DFC04??*/, 0xEEABBC00, 0x01B27C04, 0x1FF5FC47, /* last */
65 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
67 * Burst Write. (Offset 20 in UPMA RAM)
69 0x1F0DFC04, 0xEEABBC00, 0x10A77C00, 0xF0AFFC00,
70 0xF0AFFC00, 0xE1BAFC04, 0x1FF5FC47, /* last */
72 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
73 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
75 * Refresh (Offset 30 in UPMA RAM)
77 0x1FFD7C84, 0xFFFFFC04, 0xFFFFFC04, 0xFFFFFC04,
78 0xFFFFFC84, 0xFFFFFC07, /* last */
79 _NOT_USED_, _NOT_USED_,
80 _NOT_USED_, _NOT_USED_, _NOT_USED_, _NOT_USED_,
82 * Exception. (Offset 3c in UPMA RAM)
84 0x7FFFFC07, /* last */
85 _NOT_USED_, _NOT_USED_, _NOT_USED_,
88 /* ------------------------------------------------------------------------- */
92 * Check Board Identity:
97 puts ("Board: MATRIX Vision MVsensor\n");
103 /* ------------------------------------------------------------------------- */
106 * Test SDRAM by writing its address to itself and reading several times
109 static void test_dram (unsigned long *start, unsigned long *end)
113 int read_runs, errors, addr_errors;
115 printf ("\nChecking SDRAM from %p to %p\n", start, end);
117 for (addr = start; addr < end; addr++)
118 *addr = (unsigned long) addr;
120 for (addr = start, addr_errors = 0; addr < end; addr++) {
121 for (read_runs = READ_RUNS, errors = 0; read_runs > 0; read_runs--) {
122 if ((value = *addr) != (unsigned long) addr)
127 printf ("SDRAM errors (%d) at %p, last read = %ld\n",
128 errors, addr, value);
132 printf ("SDRAM check finished, total errors = %d\n", addr_errors);
134 #endif /* DO_RAM_TEST */
137 /* ------------------------------------------------------------------------- */
139 long int initdram (int board_type)
141 volatile immap_t *immap = (immap_t *) CFG_IMMR;
142 volatile memctl8xx_t *memctl = &immap->im_memctl;
143 long int size_b0, size_b1, size8, size9;
145 upmconfig (UPMA, (uint *) sdram_table,
146 sizeof (sdram_table) / sizeof (uint));
149 * Preliminary prescaler for refresh (depends on number of
150 * banks): This value is selected for four cycles every 62.4 us
151 * with two SDRAM banks or four cycles every 31.2 us with one
152 * bank. It will be adjusted after memory sizing.
154 memctl->memc_mptpr = CFG_MPTPR_2BK_8K;
156 memctl->memc_mar = 0x00000088;
159 * Map controller banks 2 and 3 to the SDRAM banks 2 and 3 at
160 * preliminary addresses - these have to be modified after the
161 * SDRAM size has been determined.
163 memctl->memc_or2 = CFG_OR2_PRELIM;
164 memctl->memc_br2 = CFG_BR2_PRELIM;
166 #if defined (CFG_OR3_PRELIM) && defined (CFG_BR3_PRELIM)
167 if (board_type == 0) { /* "L" type boards have only one bank SDRAM */
168 memctl->memc_or3 = CFG_OR3_PRELIM;
169 memctl->memc_br3 = CFG_BR3_PRELIM;
173 memctl->memc_mamr = CFG_MAMR_8COL & (~(MAMR_PTAE)); /* no refresh yet */
177 /* perform SDRAM initializsation sequence */
179 memctl->memc_mcr = 0x80004105; /* SDRAM bank 0 */
181 memctl->memc_mcr = 0x80004230; /* SDRAM bank 0 - execute twice */
184 if (board_type == 0) { /* "L" type boards have only one bank SDRAM */
185 memctl->memc_mcr = 0x80006105; /* SDRAM bank 1 */
187 memctl->memc_mcr = 0x80006230; /* SDRAM bank 1 - execute twice */
191 memctl->memc_mamr |= MAMR_PTAE; /* enable refresh */
196 * Check Bank 0 Memory Size for re-configuration
200 size8 = dram_size (CFG_MAMR_8COL, SDRAM_BASE2_PRELIM,
207 size9 = dram_size (CFG_MAMR_9COL, SDRAM_BASE2_PRELIM,
210 if (size8 < size9) { /* leave configuration at 9 columns */
212 } else { /* back to 8 columns */
214 memctl->memc_mamr = CFG_MAMR_8COL;
218 if (board_type == 0) { /* "L" type boards have only one bank SDRAM */
220 * Check Bank 1 Memory Size
221 * use current column settings
222 * [9 column SDRAM may also be used in 8 column mode,
223 * but then only half the real size will be used.]
225 #if defined (SDRAM_BASE3_PRELIM)
227 dram_size (memctl->memc_mamr, (ulong *) SDRAM_BASE3_PRELIM,
239 * Adjust refresh rate depending on SDRAM type, both banks
240 * For types > 128 MBit leave it at the current (fast) rate
242 if ((size_b0 < 0x02000000) && (size_b1 < 0x02000000)) {
243 /* reduce to 15.6 us (62.4 us / quad) */
244 memctl->memc_mptpr = CFG_MPTPR_2BK_4K;
249 * Final mapping: map bigger bank first
251 if (size_b1 > size_b0) { /* SDRAM Bank 1 is bigger - map first */
253 memctl->memc_or3 = ((-size_b1) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
255 (CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
259 * Position Bank 0 immediately above Bank 1
262 ((-size_b0) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
264 ((CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V)
274 memctl->memc_br2 = 0;
276 /* adjust refresh rate depending on SDRAM type, one bank */
277 reg = memctl->memc_mptpr;
278 reg >>= 1; /* reduce to CFG_MPTPR_1BK_8K / _4K */
279 memctl->memc_mptpr = reg;
282 } else { /* SDRAM Bank 0 is bigger - map first */
284 memctl->memc_or2 = ((-size_b0) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
286 (CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V;
290 * Position Bank 1 immediately above Bank 0
293 ((-size_b1) & 0xFFFF0000) | CFG_OR_TIMING_SDRAM;
295 ((CFG_SDRAM_BASE & BR_BA_MSK) | BR_MS_UPMA | BR_V)
305 memctl->memc_br3 = 0;
307 /* adjust refresh rate depending on SDRAM type, one bank */
308 reg = memctl->memc_mptpr;
309 reg >>= 1; /* reduce to CFG_MPTPR_1BK_8K / _4K */
310 memctl->memc_mptpr = reg;
318 test_dram ((unsigned long *) CFG_SDRAM_BASE,
319 (unsigned long *) (CFG_SDRAM_BASE + size_b0));
322 return (size_b0 + size_b1);
325 /* ------------------------------------------------------------------------- */
328 * Check memory range for valid RAM. A simple memory test determines
329 * the actually available RAM size between addresses `base' and
330 * `base + maxsize'. Some (not all) hardware errors are detected:
331 * - short between address lines
332 * - short between data lines
335 static long int dram_size (long int mamr_value, long int *base,
338 volatile immap_t *immap = (immap_t *) CFG_IMMR;
339 volatile memctl8xx_t *memctl = &immap->im_memctl;
341 memctl->memc_mamr = mamr_value;
343 return (get_ram_size(base, maxsize));
347 /* ------------------------------------------------------------------------- */
349 u8 *dhcp_vendorex_prep (u8 * e)
353 /* DHCP vendor-class-identifier = 60 */
354 if ((ptr = getenv ("dhcp_vendor-class-identifier"))) {
360 /* my DHCP_CLIENT_IDENTIFIER = 61 */
361 if ((ptr = getenv ("dhcp_client_id"))) {
372 /* ------------------------------------------------------------------------- */
373 u8 *dhcp_vendorex_proc (u8 * popt)