wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2003 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 5 | * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved. |
| 6 | * |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
TsiChungLiew | 1692b48 | 2007-08-15 20:32:06 -0500 | [diff] [blame] | 27 | #include <asm/immap.h> |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 28 | #include <asm/io.h> |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 29 | |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 30 | |
| 31 | int checkboard (void) { |
| 32 | puts ("Board: "); |
TsiChungLiew | 1692b48 | 2007-08-15 20:32:06 -0500 | [diff] [blame] | 33 | puts ("Freescale MCF5272C3 EVB\n"); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 34 | return 0; |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 35 | }; |
| 36 | |
Becky Bruce | bd99ae7 | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 37 | phys_size_t initdram (int board_type) { |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 38 | sdramctrl_t * sdp = (sdramctrl_t *)(MMAP_SDRAM); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 39 | |
Alison Wang | 95bed1f | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 40 | out_be16(&sdp->sdram_sdtr, 0xf539); |
| 41 | out_be16(&sdp->sdram_sdcr, 0x4211); |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 42 | |
| 43 | /* Dummy write to start SDRAM */ |
| 44 | *((volatile unsigned long *)0) = 0; |
| 45 | |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | int testdram (void) { |
| 50 | /* TODO: XXX XXX XXX */ |
| 51 | printf ("DRAM test not implemented!\n"); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 52 | |
wdenk | e65527f | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 53 | return (0); |
wdenk | abf7a7c | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 54 | } |