Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 1 | /* |
| 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 Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 7 | * Copyright (C) 2012 Freescale Semiconductor, Inc. All Rights Reserved. |
| 8 | * |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 9 | * 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 Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 30 | #include <asm/io.h> |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 31 | |
| 32 | #define PERIOD 13 /* system bus period in ns */ |
| 33 | #define SDRAM_TREFI 7800 /* in ns */ |
| 34 | |
| 35 | int checkboard(void) |
| 36 | { |
| 37 | puts("Board: "); |
| 38 | puts("Freescale MCF5275 EVB\n"); |
| 39 | return 0; |
| 40 | }; |
| 41 | |
Becky Bruce | 9973e3c | 2008-06-09 16:03:40 -0500 | [diff] [blame] | 42 | phys_size_t initdram(int board_type) |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 43 | { |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 44 | sdramctrl_t *sdp = (sdramctrl_t *)(MMAP_SDRAM); |
| 45 | gpio_t *gpio_reg = (gpio_t *)(MMAP_GPIO); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 46 | |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 47 | /* Enable SDRAM */ |
| 48 | out_be16(&gpio_reg->par_sdram, 0x3FF); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 49 | |
| 50 | /* Set up chip select */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 51 | out_be32(&sdp->sdbar0, CONFIG_SYS_SDRAM_BASE); |
| 52 | out_be32(&sdp->sdbmr0, MCF_SDRAMC_SDMRn_BAM_32M | MCF_SDRAMC_SDMRn_V); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 53 | |
| 54 | /* Set up timing */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 55 | out_be32(&sdp->sdcfg1, 0x83711630); |
| 56 | out_be32(&sdp->sdcfg2, 0x46770000); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 57 | |
| 58 | /* Enable clock */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 59 | out_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN | MCF_SDRAMC_SDCR_CKE); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 60 | |
| 61 | /* Set precharge */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 62 | setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 63 | |
| 64 | /* Dummy write to start SDRAM */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 65 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 66 | |
| 67 | /* Send LEMR */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 68 | setbits_be32(&sdp->sdmr, |
| 69 | MCF_SDRAMC_SDMR_BNKAD_LEMR | MCF_SDRAMC_SDMR_AD(0x0) | |
| 70 | MCF_SDRAMC_SDMR_CMD); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 71 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 72 | |
| 73 | /* Send LMR */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 74 | out_be32(&sdp->sdmr, 0x058d0000); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 75 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 76 | |
| 77 | /* Stop sending commands */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 78 | clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 79 | |
| 80 | /* Set precharge */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 81 | setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 82 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 83 | |
| 84 | /* Stop manual precharge, send 2 IREF */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 85 | clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IPALL); |
| 86 | setbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_IREF); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
| 88 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 89 | |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 90 | |
| 91 | out_be32(&sdp->sdmr, 0x018d0000); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 92 | *((volatile unsigned long *)CONFIG_SYS_SDRAM_BASE) = 0xa5a59696; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 93 | |
| 94 | /* Stop sending commands */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 95 | clrbits_be32(&sdp->sdmr, MCF_SDRAMC_SDMR_CMD); |
| 96 | clrbits_be32(&sdp->sdcr, MCF_SDRAMC_SDCR_MODE_EN); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 97 | |
| 98 | /* Turn on auto refresh, lock SDMR */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 99 | out_be32(&sdp->sdcr, |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 100 | 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 Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame^] | 105 | | MCF_SDRAMC_SDCR_DQS_OE(0x3)); |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 106 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024; |
Matthew Fettke | 545c8e0 | 2008-01-24 14:02:32 -0600 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | int testdram(void) |
| 111 | { |
| 112 | /* TODO: XXX XXX XXX */ |
| 113 | printf("DRAM test not implemented!\n"); |
| 114 | |
| 115 | return (0); |
| 116 | } |