]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c
powerpc/8xxx: Enable quad-rank DIMMs.
[karo-tx-uboot.git] / arch / powerpc / cpu / mpc8xxx / ddr / lc_common_dimm_params.c
1 /*
2  * Copyright 2008 Freescale Semiconductor, Inc.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * Version 2 as published by the Free Software Foundation.
7  */
8
9 #include <common.h>
10 #include <asm/fsl_ddr_sdram.h>
11
12 #include "ddr.h"
13
14 unsigned int
15 compute_cas_latency_ddr3(const dimm_params_t *dimm_params,
16                          common_timing_params_t *outpdimm,
17                          unsigned int number_of_dimms)
18 {
19         unsigned int i;
20         unsigned int tAAmin_ps = 0;
21         unsigned int tCKmin_X_ps = 0;
22         unsigned int common_caslat;
23         unsigned int caslat_actual;
24         unsigned int retry = 16;
25         unsigned int tmp;
26         const unsigned int mclk_ps = get_memory_clk_period_ps();
27
28         /* compute the common CAS latency supported between slots */
29         tmp = dimm_params[0].caslat_X;
30         for (i = 1; i < number_of_dimms; i++)
31                  tmp &= dimm_params[i].caslat_X;
32         common_caslat = tmp;
33
34         /* compute the max tAAmin tCKmin between slots */
35         for (i = 0; i < number_of_dimms; i++) {
36                 tAAmin_ps = max(tAAmin_ps, dimm_params[i].tAA_ps);
37                 tCKmin_X_ps = max(tCKmin_X_ps, dimm_params[i].tCKmin_X_ps);
38         }
39         /* validate if the memory clk is in the range of dimms */
40         if (mclk_ps < tCKmin_X_ps) {
41                 printf("The DIMM max tCKmin is %d ps,"
42                         "doesn't support the MCLK cycle %d ps\n",
43                         tCKmin_X_ps, mclk_ps);
44                 return 1;
45         }
46         /* determine the acutal cas latency */
47         caslat_actual = (tAAmin_ps + mclk_ps - 1) / mclk_ps;
48         /* check if the dimms support the CAS latency */
49         while (!(common_caslat & (1 << caslat_actual)) && retry > 0) {
50                 caslat_actual++;
51                 retry--;
52         }
53         /* once the caculation of caslat_actual is completed
54          * we must verify that this CAS latency value does not
55          * exceed tAAmax, which is 20 ns for all DDR3 speed grades
56          */
57         if (caslat_actual * mclk_ps > 20000) {
58                 printf("The choosen cas latency %d is too large\n",
59                         caslat_actual);
60                 return 1;
61         }
62         outpdimm->lowest_common_SPD_caslat = caslat_actual;
63
64         return 0;
65 }
66
67 /*
68  * compute_lowest_common_dimm_parameters()
69  *
70  * Determine the worst-case DIMM timing parameters from the set of DIMMs
71  * whose parameters have been computed into the array pointed to
72  * by dimm_params.
73  */
74 unsigned int
75 compute_lowest_common_dimm_parameters(const dimm_params_t *dimm_params,
76                                       common_timing_params_t *outpdimm,
77                                       unsigned int number_of_dimms)
78 {
79         unsigned int i;
80
81         unsigned int tCKmin_X_ps = 0;
82         unsigned int tCKmax_ps = 0xFFFFFFFF;
83         unsigned int tCKmax_max_ps = 0;
84         unsigned int tRCD_ps = 0;
85         unsigned int tRP_ps = 0;
86         unsigned int tRAS_ps = 0;
87         unsigned int tWR_ps = 0;
88         unsigned int tWTR_ps = 0;
89         unsigned int tRFC_ps = 0;
90         unsigned int tRRD_ps = 0;
91         unsigned int tRC_ps = 0;
92         unsigned int refresh_rate_ps = 0;
93         unsigned int tIS_ps = 0;
94         unsigned int tIH_ps = 0;
95         unsigned int tDS_ps = 0;
96         unsigned int tDH_ps = 0;
97         unsigned int tRTP_ps = 0;
98         unsigned int tDQSQ_max_ps = 0;
99         unsigned int tQHS_ps = 0;
100
101         unsigned int temp1, temp2;
102         unsigned int additive_latency = 0;
103 #if !defined(CONFIG_FSL_DDR3)
104         const unsigned int mclk_ps = get_memory_clk_period_ps();
105         unsigned int lowest_good_caslat;
106         unsigned int not_ok;
107
108         debug("using mclk_ps = %u\n", mclk_ps);
109 #endif
110
111         temp1 = 0;
112         for (i = 0; i < number_of_dimms; i++) {
113                 /*
114                  * If there are no ranks on this DIMM,
115                  * it probably doesn't exist, so skip it.
116                  */
117                 if (dimm_params[i].n_ranks == 0) {
118                         temp1++;
119                         continue;
120                 }
121                 if (dimm_params[i].n_ranks == 4 && i != 0) {
122                         printf("Found Quad-rank DIMM in wrong bank, ignored."
123                                 " Software may not run as expected.\n");
124                         temp1++;
125                         continue;
126                 }
127                 if (dimm_params[i].n_ranks == 4 && \
128                   CONFIG_CHIP_SELECTS_PER_CTRL/CONFIG_DIMM_SLOTS_PER_CTLR < 4) {
129                         printf("Found Quad-rank DIMM, not able to support.");
130                         temp1++;
131                         continue;
132                 }
133
134                 /*
135                  * Find minimum tCKmax_ps to find fastest slow speed,
136                  * i.e., this is the slowest the whole system can go.
137                  */
138                 tCKmax_ps = min(tCKmax_ps, dimm_params[i].tCKmax_ps);
139
140                 /* Either find maximum value to determine slowest
141                  * speed, delay, time, period, etc */
142                 tCKmin_X_ps = max(tCKmin_X_ps, dimm_params[i].tCKmin_X_ps);
143                 tCKmax_max_ps = max(tCKmax_max_ps, dimm_params[i].tCKmax_ps);
144                 tRCD_ps = max(tRCD_ps, dimm_params[i].tRCD_ps);
145                 tRP_ps = max(tRP_ps, dimm_params[i].tRP_ps);
146                 tRAS_ps = max(tRAS_ps, dimm_params[i].tRAS_ps);
147                 tWR_ps = max(tWR_ps, dimm_params[i].tWR_ps);
148                 tWTR_ps = max(tWTR_ps, dimm_params[i].tWTR_ps);
149                 tRFC_ps = max(tRFC_ps, dimm_params[i].tRFC_ps);
150                 tRRD_ps = max(tRRD_ps, dimm_params[i].tRRD_ps);
151                 tRC_ps = max(tRC_ps, dimm_params[i].tRC_ps);
152                 tIS_ps = max(tIS_ps, dimm_params[i].tIS_ps);
153                 tIH_ps = max(tIH_ps, dimm_params[i].tIH_ps);
154                 tDS_ps = max(tDS_ps, dimm_params[i].tDS_ps);
155                 tDH_ps = max(tDH_ps, dimm_params[i].tDH_ps);
156                 tRTP_ps = max(tRTP_ps, dimm_params[i].tRTP_ps);
157                 tQHS_ps = max(tQHS_ps, dimm_params[i].tQHS_ps);
158                 refresh_rate_ps = max(refresh_rate_ps,
159                                       dimm_params[i].refresh_rate_ps);
160
161                 /*
162                  * Find maximum tDQSQ_max_ps to find slowest.
163                  *
164                  * FIXME: is finding the slowest value the correct
165                  * strategy for this parameter?
166                  */
167                 tDQSQ_max_ps = max(tDQSQ_max_ps, dimm_params[i].tDQSQ_max_ps);
168         }
169
170         outpdimm->ndimms_present = number_of_dimms - temp1;
171
172         if (temp1 == number_of_dimms) {
173                 debug("no dimms this memory controller\n");
174                 return 0;
175         }
176
177         outpdimm->tCKmin_X_ps = tCKmin_X_ps;
178         outpdimm->tCKmax_ps = tCKmax_ps;
179         outpdimm->tCKmax_max_ps = tCKmax_max_ps;
180         outpdimm->tRCD_ps = tRCD_ps;
181         outpdimm->tRP_ps = tRP_ps;
182         outpdimm->tRAS_ps = tRAS_ps;
183         outpdimm->tWR_ps = tWR_ps;
184         outpdimm->tWTR_ps = tWTR_ps;
185         outpdimm->tRFC_ps = tRFC_ps;
186         outpdimm->tRRD_ps = tRRD_ps;
187         outpdimm->tRC_ps = tRC_ps;
188         outpdimm->refresh_rate_ps = refresh_rate_ps;
189         outpdimm->tIS_ps = tIS_ps;
190         outpdimm->tIH_ps = tIH_ps;
191         outpdimm->tDS_ps = tDS_ps;
192         outpdimm->tDH_ps = tDH_ps;
193         outpdimm->tRTP_ps = tRTP_ps;
194         outpdimm->tDQSQ_max_ps = tDQSQ_max_ps;
195         outpdimm->tQHS_ps = tQHS_ps;
196
197         /* Determine common burst length for all DIMMs. */
198         temp1 = 0xff;
199         for (i = 0; i < number_of_dimms; i++) {
200                 if (dimm_params[i].n_ranks) {
201                         temp1 &= dimm_params[i].burst_lengths_bitmask;
202                 }
203         }
204         outpdimm->all_DIMMs_burst_lengths_bitmask = temp1;
205
206         /* Determine if all DIMMs registered buffered. */
207         temp1 = temp2 = 0;
208         for (i = 0; i < number_of_dimms; i++) {
209                 if (dimm_params[i].n_ranks) {
210                         if (dimm_params[i].registered_dimm)
211                                 temp1 = 1;
212                         if (!dimm_params[i].registered_dimm)
213                                 temp2 = 1;
214                 }
215         }
216
217         outpdimm->all_DIMMs_registered = 0;
218         if (temp1 && !temp2) {
219                 outpdimm->all_DIMMs_registered = 1;
220         }
221
222         outpdimm->all_DIMMs_unbuffered = 0;
223         if (!temp1 && temp2) {
224                 outpdimm->all_DIMMs_unbuffered = 1;
225         }
226
227         /* CHECKME: */
228         if (!outpdimm->all_DIMMs_registered
229             && !outpdimm->all_DIMMs_unbuffered) {
230                 printf("ERROR:  Mix of registered buffered and unbuffered "
231                                 "DIMMs detected!\n");
232         }
233
234 #if defined(CONFIG_FSL_DDR3)
235         if (compute_cas_latency_ddr3(dimm_params, outpdimm, number_of_dimms))
236                 return 1;
237 #else
238         /*
239          * Compute a CAS latency suitable for all DIMMs
240          *
241          * Strategy for SPD-defined latencies: compute only
242          * CAS latency defined by all DIMMs.
243          */
244
245         /*
246          * Step 1: find CAS latency common to all DIMMs using bitwise
247          * operation.
248          */
249         temp1 = 0xFF;
250         for (i = 0; i < number_of_dimms; i++) {
251                 if (dimm_params[i].n_ranks) {
252                         temp2 = 0;
253                         temp2 |= 1 << dimm_params[i].caslat_X;
254                         temp2 |= 1 << dimm_params[i].caslat_X_minus_1;
255                         temp2 |= 1 << dimm_params[i].caslat_X_minus_2;
256                         /*
257                          * FIXME: If there was no entry for X-2 (X-1) in
258                          * the SPD, then caslat_X_minus_2
259                          * (caslat_X_minus_1) contains either 255 or
260                          * 0xFFFFFFFF because that's what the glorious
261                          * __ilog2 function returns for an input of 0.
262                          * On 32-bit PowerPC, left shift counts with bit
263                          * 26 set (that the value of 255 or 0xFFFFFFFF
264                          * will have), cause the destination register to
265                          * be 0.  That is why this works.
266                          */
267                         temp1 &= temp2;
268                 }
269         }
270
271         /*
272          * Step 2: check each common CAS latency against tCK of each
273          * DIMM's SPD.
274          */
275         lowest_good_caslat = 0;
276         temp2 = 0;
277         while (temp1) {
278                 not_ok = 0;
279                 temp2 =  __ilog2(temp1);
280                 debug("checking common caslat = %u\n", temp2);
281
282                 /* Check if this CAS latency will work on all DIMMs at tCK. */
283                 for (i = 0; i < number_of_dimms; i++) {
284                         if (!dimm_params[i].n_ranks) {
285                                 continue;
286                         }
287                         if (dimm_params[i].caslat_X == temp2) {
288                                 if (mclk_ps >= dimm_params[i].tCKmin_X_ps) {
289                                         debug("CL = %u ok on DIMM %u at tCK=%u"
290                                             " ps with its tCKmin_X_ps of %u\n",
291                                                temp2, i, mclk_ps,
292                                                dimm_params[i].tCKmin_X_ps);
293                                         continue;
294                                 } else {
295                                         not_ok++;
296                                 }
297                         }
298
299                         if (dimm_params[i].caslat_X_minus_1 == temp2) {
300                                 unsigned int tCKmin_X_minus_1_ps
301                                         = dimm_params[i].tCKmin_X_minus_1_ps;
302                                 if (mclk_ps >= tCKmin_X_minus_1_ps) {
303                                         debug("CL = %u ok on DIMM %u at "
304                                                 "tCK=%u ps with its "
305                                                 "tCKmin_X_minus_1_ps of %u\n",
306                                                temp2, i, mclk_ps,
307                                                tCKmin_X_minus_1_ps);
308                                         continue;
309                                 } else {
310                                         not_ok++;
311                                 }
312                         }
313
314                         if (dimm_params[i].caslat_X_minus_2 == temp2) {
315                                 unsigned int tCKmin_X_minus_2_ps
316                                         = dimm_params[i].tCKmin_X_minus_2_ps;
317                                 if (mclk_ps >= tCKmin_X_minus_2_ps) {
318                                         debug("CL = %u ok on DIMM %u at "
319                                                 "tCK=%u ps with its "
320                                                 "tCKmin_X_minus_2_ps of %u\n",
321                                                temp2, i, mclk_ps,
322                                                tCKmin_X_minus_2_ps);
323                                         continue;
324                                 } else {
325                                         not_ok++;
326                                 }
327                         }
328                 }
329
330                 if (!not_ok) {
331                         lowest_good_caslat = temp2;
332                 }
333
334                 temp1 &= ~(1 << temp2);
335         }
336
337         debug("lowest common SPD-defined CAS latency = %u\n",
338                lowest_good_caslat);
339         outpdimm->lowest_common_SPD_caslat = lowest_good_caslat;
340
341
342         /*
343          * Compute a common 'de-rated' CAS latency.
344          *
345          * The strategy here is to find the *highest* dereated cas latency
346          * with the assumption that all of the DIMMs will support a dereated
347          * CAS latency higher than or equal to their lowest dereated value.
348          */
349         temp1 = 0;
350         for (i = 0; i < number_of_dimms; i++) {
351                 temp1 = max(temp1, dimm_params[i].caslat_lowest_derated);
352         }
353         outpdimm->highest_common_derated_caslat = temp1;
354         debug("highest common dereated CAS latency = %u\n", temp1);
355 #endif /* #if defined(CONFIG_FSL_DDR3) */
356
357         /* Determine if all DIMMs ECC capable. */
358         temp1 = 1;
359         for (i = 0; i < number_of_dimms; i++) {
360                 if (dimm_params[i].n_ranks && dimm_params[i].edc_config != 2) {
361                         temp1 = 0;
362                         break;
363                 }
364         }
365         if (temp1) {
366                 debug("all DIMMs ECC capable\n");
367         } else {
368                 debug("Warning: not all DIMMs ECC capable, cant enable ECC\n");
369         }
370         outpdimm->all_DIMMs_ECC_capable = temp1;
371
372 #ifndef CONFIG_FSL_DDR3
373         /* FIXME: move to somewhere else to validate. */
374         if (mclk_ps > tCKmax_max_ps) {
375                 printf("Warning: some of the installed DIMMs "
376                                 "can not operate this slowly.\n");
377                 return 1;
378         }
379 #endif
380         /*
381          * Compute additive latency.
382          *
383          * For DDR1, additive latency should be 0.
384          *
385          * For DDR2, with ODT enabled, use "a value" less than ACTTORW,
386          *      which comes from Trcd, and also note that:
387          *          add_lat + caslat must be >= 4
388          *
389          * For DDR3, we use the AL=0
390          *
391          * When to use additive latency for DDR2:
392          *
393          * I. Because you are using CL=3 and need to do ODT on writes and
394          *    want functionality.
395          *    1. Are you going to use ODT? (Does your board not have
396          *      additional termination circuitry for DQ, DQS, DQS_,
397          *      DM, RDQS, RDQS_ for x4/x8 configs?)
398          *    2. If so, is your lowest supported CL going to be 3?
399          *    3. If so, then you must set AL=1 because
400          *
401          *       WL >= 3 for ODT on writes
402          *       RL = AL + CL
403          *       WL = RL - 1
404          *       ->
405          *       WL = AL + CL - 1
406          *       AL + CL - 1 >= 3
407          *       AL + CL >= 4
408          *  QED
409          *
410          *  RL >= 3 for ODT on reads
411          *  RL = AL + CL
412          *
413          *  Since CL aren't usually less than 2, AL=0 is a minimum,
414          *  so the WL-derived AL should be the  -- FIXME?
415          *
416          * II. Because you are using auto-precharge globally and want to
417          *     use additive latency (posted CAS) to get more bandwidth.
418          *     1. Are you going to use auto-precharge mode globally?
419          *
420          *        Use addtivie latency and compute AL to be 1 cycle less than
421          *        tRCD, i.e. the READ or WRITE command is in the cycle
422          *        immediately following the ACTIVATE command..
423          *
424          * III. Because you feel like it or want to do some sort of
425          *      degraded-performance experiment.
426          *     1.  Do you just want to use additive latency because you feel
427          *         like it?
428          *
429          * Validation:  AL is less than tRCD, and within the other
430          * read-to-precharge constraints.
431          */
432
433         additive_latency = 0;
434
435 #if defined(CONFIG_FSL_DDR2)
436         if (lowest_good_caslat < 4) {
437                 additive_latency = picos_to_mclk(tRCD_ps) - lowest_good_caslat;
438                 if (mclk_to_picos(additive_latency) > tRCD_ps) {
439                         additive_latency = picos_to_mclk(tRCD_ps);
440                         debug("setting additive_latency to %u because it was "
441                                 " greater than tRCD_ps\n", additive_latency);
442                 }
443         }
444
445 #elif defined(CONFIG_FSL_DDR3)
446         /*
447          * The system will not use the global auto-precharge mode.
448          * However, it uses the page mode, so we set AL=0
449          */
450         additive_latency = 0;
451 #endif
452
453         /*
454          * Validate additive latency
455          * FIXME: move to somewhere else to validate
456          *
457          * AL <= tRCD(min)
458          */
459         if (mclk_to_picos(additive_latency) > tRCD_ps) {
460                 printf("Error: invalid additive latency exceeds tRCD(min).\n");
461                 return 1;
462         }
463
464         /*
465          * RL = CL + AL;  RL >= 3 for ODT_RD_CFG to be enabled
466          * WL = RL - 1;  WL >= 3 for ODT_WL_CFG to be enabled
467          * ADD_LAT (the register) must be set to a value less
468          * than ACTTORW if WL = 1, then AL must be set to 1
469          * RD_TO_PRE (the register) must be set to a minimum
470          * tRTP + AL if AL is nonzero
471          */
472
473         /*
474          * Additive latency will be applied only if the memctl option to
475          * use it.
476          */
477         outpdimm->additive_latency = additive_latency;
478
479         return 0;
480 }