blob: ce8515d51392ab8108716ac9692cc46cdf90a1b2 [file] [log] [blame]
Stefan Roese0b86db72008-03-03 17:27:02 +01001/*
Stefan Roese72402992009-07-28 15:12:04 +02002 * (C) Copyright 2008-2009
Stefan Roese0b86db72008-03-03 17:27:02 +01003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stefan Roese0b86db72008-03-03 17:27:02 +01006 */
7
8#include <common.h>
Stefan Roese247e9d72010-09-09 19:18:00 +02009#include <asm/ppc4xx.h>
Stefan Roese0b86db72008-03-03 17:27:02 +010010#include <asm/io.h>
11#include <asm/processor.h>
12
Stefan Roese72402992009-07-28 15:12:04 +020013/*
14 * This code can configure those two Crucial SODIMM's:
15 *
16 * Crucial CT6464AC667.4FE - 512MB SO-DIMM (single rank)
17 * Crucial CT6464AC667.8FB - 512MB SO-DIMM (dual rank)
18 *
19 */
20
21#define TEST_ADDR 0x10000000
22#define TEST_MAGIC 0x11223344
23
Stefan Roese0b86db72008-03-03 17:27:02 +010024static void wait_init_complete(void)
25{
26 u32 val;
27
28 do {
29 mfsdram(SDRAM_MCSTAT, val);
30 } while (!(val & 0x80000000));
31}
32
Stefan Roese72402992009-07-28 15:12:04 +020033static void ddr_start(void)
34{
35 mtsdram(SDRAM_MCOPT2, 0x28000000);
36 wait_init_complete();
37}
38
39static void ddr_init_common(void)
Stefan Roese0b86db72008-03-03 17:27:02 +010040{
41 /*
42 * Reset the DDR-SDRAM controller.
43 */
Stefan Roese95ca5fa2010-09-11 09:31:43 +020044 mtsdr(SDR0_SRST, SDR0_SRST0_DMC);
Stefan Roese0b86db72008-03-03 17:27:02 +010045 mtsdr(SDR0_SRST, 0x00000000);
46
47 /*
48 * These values are cloned from a running NOR booting
49 * Canyonlands with SPD-DDR2 detection and calibration
50 * enabled. This will only work for the same memory
51 * configuration as used here:
52 *
Stefan Roese0b86db72008-03-03 17:27:02 +010053 */
54 mtsdram(SDRAM_MCOPT2, 0x00000000);
Stefan Roese0b86db72008-03-03 17:27:02 +010055 mtsdram(SDRAM_MODT0, 0x01000000);
Stefan Roese0b86db72008-03-03 17:27:02 +010056 mtsdram(SDRAM_WRDTR, 0x82000823);
57 mtsdram(SDRAM_CLKTR, 0x40000000);
58 mtsdram(SDRAM_MB0CF, 0x00000201);
59 mtsdram(SDRAM_RTR, 0x06180000);
60 mtsdram(SDRAM_SDTR1, 0x80201000);
61 mtsdram(SDRAM_SDTR2, 0x42103243);
Stefan Roesebe0d7132008-04-30 14:51:36 +020062 mtsdram(SDRAM_SDTR3, 0x0A0D0D16);
Stefan Roese0b86db72008-03-03 17:27:02 +010063 mtsdram(SDRAM_MMODE, 0x00000632);
64 mtsdram(SDRAM_MEMODE, 0x00000040);
65 mtsdram(SDRAM_INITPLR0, 0xB5380000);
66 mtsdram(SDRAM_INITPLR1, 0x82100400);
67 mtsdram(SDRAM_INITPLR2, 0x80820000);
68 mtsdram(SDRAM_INITPLR3, 0x80830000);
69 mtsdram(SDRAM_INITPLR4, 0x80810040);
70 mtsdram(SDRAM_INITPLR5, 0x80800532);
71 mtsdram(SDRAM_INITPLR6, 0x82100400);
72 mtsdram(SDRAM_INITPLR7, 0x8A080000);
73 mtsdram(SDRAM_INITPLR8, 0x8A080000);
74 mtsdram(SDRAM_INITPLR9, 0x8A080000);
75 mtsdram(SDRAM_INITPLR10, 0x8A080000);
76 mtsdram(SDRAM_INITPLR11, 0x80000432);
77 mtsdram(SDRAM_INITPLR12, 0x808103C0);
78 mtsdram(SDRAM_INITPLR13, 0x80810040);
Stefan Roese72402992009-07-28 15:12:04 +020079 mtsdram(SDRAM_RDCC, 0x40000000);
80 mtsdram(SDRAM_RQDC, 0x80000038);
81 mtsdram(SDRAM_RFDC, 0x00000257);
Stefan Roese0b86db72008-03-03 17:27:02 +010082
Stefan Roesebe0d7132008-04-30 14:51:36 +020083 mtdcr(SDRAM_R0BAS, 0x0000F800); /* MQ0_B0BAS */
Stefan Roese72402992009-07-28 15:12:04 +020084}
Stefan Roese0b86db72008-03-03 17:27:02 +010085
Stefan Roese72402992009-07-28 15:12:04 +020086phys_size_t initdram(int board_type)
87{
88 /*
89 * First try init for this module:
90 *
91 * Crucial CT6464AC667.8FB - 512MB SO-DIMM (dual rank)
92 */
93
94 ddr_init_common();
95
96 /*
97 * Crucial CT6464AC667.8FB - 512MB SO-DIMM
98 */
99 mtdcr(SDRAM_R0BAS, 0x0000F800);
100 mtdcr(SDRAM_R1BAS, 0x0400F800);
101 mtsdram(SDRAM_MCOPT1, 0x05122000);
102 mtsdram(SDRAM_CODT, 0x02800021);
103 mtsdram(SDRAM_MB1CF, 0x00000201);
104
105 ddr_start();
106
107 /*
108 * Now test if the dual-ranked module is really installed
109 * by checking an address in the upper 256MByte region
110 */
111 out_be32((void *)TEST_ADDR, TEST_MAGIC);
112 if (in_be32((void *)TEST_ADDR) != TEST_MAGIC) {
113 /*
114 * The test failed, so we assume that the single
115 * ranked module is installed:
116 *
117 * Crucial CT6464AC667.4FE - 512MB SO-DIMM (single rank)
118 */
119
120 ddr_init_common();
121
122 mtdcr(SDRAM_R0BAS, 0x0000F000);
123 mtsdram(SDRAM_MCOPT1, 0x05322000);
124 mtsdram(SDRAM_CODT, 0x00800021);
125
126 ddr_start();
127 }
Stefan Roese0b86db72008-03-03 17:27:02 +0100128
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200129 return CONFIG_SYS_MBYTES_SDRAM << 20;
Stefan Roese0b86db72008-03-03 17:27:02 +0100130}