blob: 992612b46275bca1bce2e59676db739f1544bd4a [file] [log] [blame]
Wolfgang Denk72a087e2006-10-24 14:27:35 +02001/*
2 * Copyright (C) 2005-2006 Atmel Corporation
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22#include <common.h>
23
24#ifdef CFG_HSDRAMC
25#include <asm/io.h>
26#include <asm/sdram.h>
27
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010028#include <asm/arch/clk.h>
29#include <asm/arch/memory-map.h>
Wolfgang Denk72a087e2006-10-24 14:27:35 +020030
31#include "hsdramc1.h"
32
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020033unsigned long sdram_init(void *sdram_base, const struct sdram_config *config)
Wolfgang Denk72a087e2006-10-24 14:27:35 +020034{
Wolfgang Denk72a087e2006-10-24 14:27:35 +020035 unsigned long sdram_size;
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020036 uint32_t cfgreg;
Wolfgang Denk72a087e2006-10-24 14:27:35 +020037 unsigned int i;
38
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020039 cfgreg = (HSDRAMC1_BF(NC, config->col_bits - 8)
40 | HSDRAMC1_BF(NR, config->row_bits - 11)
41 | HSDRAMC1_BF(NB, config->bank_bits - 1)
42 | HSDRAMC1_BF(CAS, config->cas)
43 | HSDRAMC1_BF(TWR, config->twr)
44 | HSDRAMC1_BF(TRC, config->trc)
45 | HSDRAMC1_BF(TRP, config->trp)
46 | HSDRAMC1_BF(TRCD, config->trcd)
47 | HSDRAMC1_BF(TRAS, config->tras)
48 | HSDRAMC1_BF(TXSR, config->txsr));
Haavard Skinnemoend38da532008-01-23 17:20:14 +010049
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020050 if (config->data_bits == SDRAM_DATA_16BIT)
51 cfgreg |= HSDRAMC1_BIT(DBW);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020052
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020053 hsdramc1_writel(CR, cfgreg);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020054
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020055 /* Send a NOP to turn on the clock (necessary on some chips) */
56 hsdramc1_writel(MR, HSDRAMC1_MODE_NOP);
57 hsdramc1_readl(MR);
58 writel(0, sdram_base);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020059
60 /*
61 * Initialization sequence for SDRAM, from the data sheet:
62 *
63 * 1. A minimum pause of 200 us is provided to precede any
64 * signal toggle.
65 */
66 udelay(200);
67
68 /*
69 * 2. A Precharge All command is issued to the SDRAM
70 */
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010071 hsdramc1_writel(MR, HSDRAMC1_MODE_BANKS_PRECHARGE);
72 hsdramc1_readl(MR);
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020073 writel(0, sdram_base);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020074
75 /*
76 * 3. Eight auto-refresh (CBR) cycles are provided
77 */
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010078 hsdramc1_writel(MR, HSDRAMC1_MODE_AUTO_REFRESH);
79 hsdramc1_readl(MR);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020080 for (i = 0; i < 8; i++)
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020081 writel(0, sdram_base);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020082
83 /*
84 * 4. A mode register set (MRS) cycle is issued to program
85 * SDRAM parameters, in particular CAS latency and burst
86 * length.
87 *
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020088 * The address will be chosen by the SDRAMC automatically; we
89 * just have to make sure BA[1:0] are set to 0.
Wolfgang Denk72a087e2006-10-24 14:27:35 +020090 */
Haavard Skinnemoendf548d32006-11-19 18:06:53 +010091 hsdramc1_writel(MR, HSDRAMC1_MODE_LOAD_MODE);
92 hsdramc1_readl(MR);
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020093 writel(0, sdram_base);
Wolfgang Denk72a087e2006-10-24 14:27:35 +020094
95 /*
Haavard Skinnemoena23e2772008-05-19 11:36:28 +020096 * 5. The application must go into Normal Mode, setting Mode
97 * to 0 in the Mode Register and performing a write access
98 * at any location in the SDRAM.
Wolfgang Denk72a087e2006-10-24 14:27:35 +020099 */
Haavard Skinnemoendf548d32006-11-19 18:06:53 +0100100 hsdramc1_writel(MR, HSDRAMC1_MODE_NORMAL);
101 hsdramc1_readl(MR);
Haavard Skinnemoena23e2772008-05-19 11:36:28 +0200102 writel(0, sdram_base);
Wolfgang Denk72a087e2006-10-24 14:27:35 +0200103
104 /*
105 * 6. Write refresh rate into SDRAMC refresh timer count
106 * register (refresh rate = timing between refresh cycles).
Wolfgang Denk72a087e2006-10-24 14:27:35 +0200107 */
Haavard Skinnemoena23e2772008-05-19 11:36:28 +0200108 hsdramc1_writel(TR, config->refresh_period);
Wolfgang Denk72a087e2006-10-24 14:27:35 +0200109
Haavard Skinnemoena23e2772008-05-19 11:36:28 +0200110 if (config->data_bits == SDRAM_DATA_16BIT)
111 sdram_size = 1 << (config->row_bits + config->col_bits
112 + config->bank_bits + 1);
113 else
114 sdram_size = 1 << (config->row_bits + config->col_bits
115 + config->bank_bits + 2);
Wolfgang Denk72a087e2006-10-24 14:27:35 +0200116
117 return sdram_size;
118}
119
120#endif /* CFG_HSDRAMC */