summaryrefslogtreecommitdiffstats
path: root/board/netstal/common/fixed_sdram.c
blob: 51b34b29fa6a66e9ec40ca4391834e186376402c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 *(C) Copyright 2005-2008 Netstal Maschinen AG
 *    Niklaus Giger (Niklaus.Giger@netstal.com)
 *
 *    This source code is free software; you can redistribute it
 *    and/or modify it in source code form under the terms of the GNU
 *    General Public License as published by the Free Software
 *    Foundation; either version 2 of the License, or (at your option)
 *    any later version.
 *
 *    This program is distributed in the hope that it will be useful,
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *    GNU General Public License for more details.
 *
 *    You should have received a copy of the GNU General Public License
 *    along with this program; if not, write to the Free Software
 *    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 */

#include <common.h>
#include  <asm/ppc4xx.h>
#include  <asm/processor.h>
#include  "nm.h"

#if defined(DEBUG)
void show_sdram_registers(void)
{
	u32 value;

	printf("SDRAM Controller Registers --\n");
	mfsdram(SDRAM0_CFG, value);
	printf("    SDRAM0_CFG   : 0x%08x\n", value);
	mfsdram(SDRAM0_STATUS, value);
	printf("    SDRAM0_STATUS: 0x%08x\n", value);
	mfsdram(SDRAM0_B0CR, value);
	printf("    SDRAM0_B0CR  : 0x%08x\n", value);
	mfsdram(SDRAM0_B1CR, value);
	printf("    SDRAM0_B1CR  : 0x%08x\n", value);
	mfsdram(SDRAM0_TR, value);
	printf("    SDRAM0_TR    : 0x%08x\n", value);
	mfsdram(SDRAM0_RTR, value);
	printf("    SDRAM0_RTR   : 0x%08x\n", value);
}
#endif

long int init_ppc405_sdram(unsigned int dram_size)
{
#ifdef DEBUG
	printf(__FUNCTION__);
#endif
	/* disable memory controller */
	mtsdram(SDRAM0_CFG, 0x00000000);

	udelay (500);

	/* Clear SDRAM0_BESR0 (Bus Error Syndrome Register) */
	mtsdram(SDRAM0_BESR0, 0xffffffff);

	/* Clear SDRAM0_BESR1 (Bus Error Syndrome Register) */
	mtsdram(SDRAM0_BESR1, 0xffffffff);

	/* Clear SDRAM0_ECCCFG (disable ECC) */
	mtsdram(SDRAM0_ECCCFG, 0x00000000);

	/* Clear SDRAM0_ECCESR (ECC Error Syndrome Register) */
	mtsdram(SDRAM0_ECCESR, 0xffffffff);

	/* Timing register: CASL=2, PTA=2, CTP=2, LDF=1, RFTA=5, RCD=2
	 */
	mtsdram(SDRAM0_TR, 0x008a4015);

	/* Memory Bank 0 Config == BA=0x00000000, SZ=64M, AM=3, BE=1
	 * and refresh timer
	 */
	switch (dram_size >> 20) {
	case 32:
		mtsdram(SDRAM0_B0CR, 0x00062001);
		mtsdram(SDRAM0_RTR,   0x07F00000);
		break;
	case 64:
		mtsdram(SDRAM0_B0CR, 0x00084001);
		mtsdram(SDRAM0_RTR,   0x04100000);
		break;
	case 128:
		mtsdram(SDRAM0_B0CR, 0x000A4001);
		mtsdram(SDRAM0_RTR,   0x04100000);
		break;
	default:
		printf("Invalid memory size of %d MB given\n", dram_size >> 20);
	}

	/* Power management idle timer set to the default. */
	mtsdram(SDRAM0_PMIT, 0x07c00000);

	udelay (500);

	/* Enable banks (DCE=1, BPRF=1, ECCDD=1, EMDUL=1) TODO */
	mtsdram(SDRAM0_CFG, 0x90800000);

#ifdef DEBUG
	printf("%s: done\n", __FUNCTION__);
#endif
	return dram_size;
}
OpenPOWER on IntegriCloud