blob: 838a6de0f92c38fb0e13c3c37903f8eaa37712b7 [file] [log] [blame]
TsiChungLiew1552af72008-01-14 17:43:33 -06001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
6 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
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#include <common.h>
28#include <asm/immap.h>
29
30DECLARE_GLOBAL_DATA_PTR;
31
32int checkboard(void)
33{
34 puts("Board: ");
35 puts("Freescale M52277 EVB\n");
36 return 0;
37};
38
Becky Bruce9973e3c2008-06-09 16:03:40 -050039phys_size_t initdram(int board_type)
TsiChungLiew1552af72008-01-14 17:43:33 -060040{
41 volatile sdramc_t *sdram = (volatile sdramc_t *)(MMAP_SDRAM);
42 u32 dramsize, i;
43
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044 dramsize = CONFIG_SYS_SDRAM_SIZE * 0x100000;
TsiChungLiew1552af72008-01-14 17:43:33 -060045
46 for (i = 0x13; i < 0x20; i++) {
47 if (dramsize == (1 << i))
48 break;
49 }
50 i--;
51
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020052 sdram->sdcs0 = (CONFIG_SYS_SDRAM_BASE | i);
TsiChungLiew1552af72008-01-14 17:43:33 -060053
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054 sdram->sdcfg1 = CONFIG_SYS_SDRAM_CFG1;
55 sdram->sdcfg2 = CONFIG_SYS_SDRAM_CFG2;
TsiChungLiew1552af72008-01-14 17:43:33 -060056
57 /* Issue PALL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058 sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 2;
TsiChungLiew1552af72008-01-14 17:43:33 -060059
60 /* Issue LEMR */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061 /*sdram->sdmr = CONFIG_SYS_SDRAM_EMOD; */
62 sdram->sdmr = CONFIG_SYS_SDRAM_MODE;
TsiChungLiew1552af72008-01-14 17:43:33 -060063
64 udelay(1000);
65
66 /* Issue PALL */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 2;
TsiChungLiew1552af72008-01-14 17:43:33 -060068
69 /* Perform two refresh cycles */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070 sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 4;
71 sdram->sdcr = CONFIG_SYS_SDRAM_CTRL | 4;
TsiChungLiew1552af72008-01-14 17:43:33 -060072
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073 sdram->sdcr = (CONFIG_SYS_SDRAM_CTRL & ~0x80000000) | 0x10000c00;
TsiChungLiew1552af72008-01-14 17:43:33 -060074
75 udelay(100);
76
77 return (dramsize);
78};
79
80int testdram(void)
81{
82 /* TODO: XXX XXX XXX */
83 printf("DRAM test not implemented!\n");
84
85 return (0);
86}