blob: 1bbe5a330715ed5a8c609a6503cf674aa4ed3f8f [file] [log] [blame]
Matthew Fettke545c8e02008-01-24 14:02:32 -06001/*
2 * (C) Copyright 2000-2003
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright (C) 2005-2008 Arthur Shipkowski (art@videon-central.com)
6 *
Alison Wang32dbaaf2012-03-26 21:49:04 +00007 * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved.
8 *
Matthew Fettke545c8e02008-01-24 14:02:32 -06009 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <asm/immap.h>
Alison Wang32dbaaf2012-03-26 21:49:04 +000030#include <asm/io.h>
Matthew Fettke545c8e02008-01-24 14:02:32 -060031
32#define PERIOD 13 /* system bus period in ns */
33#define SDRAM_TREFI 7800 /* in ns */
34
35int checkboard(void)
36{
37 puts("Board: ");
38 puts("Freescale MCF5275 EVB\n");
39 return 0;
40};
41
Becky Bruce9973e3c2008-06-09 16:03:40 -050042phys_size_t initdram(int board_type)
Matthew Fettke545c8e02008-01-24 14:02:32 -060043{
Alison Wang32dbaaf2012-03-26 21:49:04 +000044 sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM);
45 gpio_t *gpio_reg = (gpio_t *)(MMAP_GPIO);
Matthew Fettke545c8e02008-01-24 14:02:32 -060046
Alison Wang32dbaaf2012-03-26 21:49:04 +000047 /* Enable SDRAM */
48 out_be16(&gpio_reg->par_sdram, 0x3FF);
Matthew Fettke545c8e02008-01-24 14:02:32 -060049
50 /* Set up chip select */
Alison Wang32dbaaf2012-03-26 21:49:04 +000051 out_be32(&sdp->sdbar0, CONFIG_SYS_SDRAM_BASE);
52 out_be32(&sdp->sdbmr0, MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V);
Matthew Fettke545c8e02008-01-24 14:02:32 -060053
54 /* Set up timing */
Alison Wang32dbaaf2012-03-26 21:49:04 +000055 out_be32(&sdp->sdcfg1, 0x83711630);
56 out_be32(&sdp->sdcfg2, 0x46770000);
Matthew Fettke545c8e02008-01-24 14:02:32 -060057
58 /* Enable clock */
Alison Wang32dbaaf2012-03-26 21:49:04 +000059 out_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE);
Matthew Fettke545c8e02008-01-24 14:02:32 -060060
61 /* Set precharge */
Alison Wang32dbaaf2012-03-26 21:49:04 +000062 setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
Matthew Fettke545c8e02008-01-24 14:02:32 -060063
64 /* Dummy write to start SDRAM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020065 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060066
67 /* Send LEMR */
Alison Wang32dbaaf2012-03-26 21:49:04 +000068 setbits_be32(&sdp->sdmr,
69 MCF_SDRAMC_SDMR_BNKAD_LEMR | MCF_SDRAMC_SDMR_AD(0x0) |
70 MCF_SDRAMC_SDMR_CMD);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020071 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060072
73 /* Send LMR */
Alison Wang32dbaaf2012-03-26 21:49:04 +000074 out_be32(&sdp->sdmr, 0x058d0000);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060076
77 /* Stop sending commands */
Alison Wang32dbaaf2012-03-26 21:49:04 +000078 clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD);
Matthew Fettke545c8e02008-01-24 14:02:32 -060079
80 /* Set precharge */
Alison Wang32dbaaf2012-03-26 21:49:04 +000081 setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060083
84 /* Stop manual precharge, send 2 IREF */
Alison Wang32dbaaf2012-03-26 21:49:04 +000085 clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL);
86 setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IREF);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
88 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060089
Alison Wang32dbaaf2012-03-26 21:49:04 +000090
91 out_be32(&sdp->sdmr, 0x018d0000);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020092 *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696;
Matthew Fettke545c8e02008-01-24 14:02:32 -060093
94 /* Stop sending commands */
Alison Wang32dbaaf2012-03-26 21:49:04 +000095 clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD);
96 clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN);
Matthew Fettke545c8e02008-01-24 14:02:32 -060097
98 /* Turn on auto refresh, lock SDMR */
Alison Wang32dbaaf2012-03-26 21:49:04 +000099 out_be32(&sdp->sdcr,
Matthew Fettke545c8e02008-01-24 14:02:32 -0600100 MCF_SDRAMC_SDCR_CKE
101 | MCF_SDRAMC_SDCR_REF
102 | MCF_SDRAMC_SDCR_MUX(1)
103 /* 1 added to round up */
104 | MCF_SDRAMC_SDCR_RCNT((SDRAM_TREFI/(PERIOD*64)) - 1 + 1)
Alison Wang32dbaaf2012-03-26 21:49:04 +0000105 | MCF_SDRAMC_SDCR_DQS_OE(0x3));
Matthew Fettke545c8e02008-01-24 14:02:32 -0600106
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200107 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Matthew Fettke545c8e02008-01-24 14:02:32 -0600108};
109
110int testdram(void)
111{
112 /* TODO: XXX XXX XXX */
113 printf("DRAM test not implemented!\n");
114
115 return (0);
116}