2 * Copyright 2008 Freescale Semiconductor, Inc.
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.
11 #include <asm/fsl_ddr_sdram.h>
12 #include <asm/fsl_ddr_dimm_params.h>
16 u32 datarate_mhz_high;
22 } board_specific_parameters_t;
25 * CPO value doesn't matter if workaround for errata 111 and 134 enabled.
27 * For DDR2 DIMM, all combinations of clk_adjust and write_data_delay have been
28 * tested. For RDIMM, clk_adjust = 4 and write_data_delay = 3 is optimized for
29 * all clocks from 400MT/s to 800MT/s, verified with Kingston KVR800D2D8P6/2G.
30 * For UDIMM, clk_adjust = 8 and write_delay = 5 is optimized for all clocks
31 * from 400MT/s to 800MT/s, verified with Micron MT18HTF25672AY-800E1.
33 const board_specific_parameters_t board_specific_parameters_udimm[][20] = {
37 * lo| hi| num| clk| cpo|wrdata|2T
38 * mhz| mhz|ranks|adjst| | delay|
40 { 0, 333, 2, 8, 7, 5, 0},
41 {334, 400, 2, 8, 9, 5, 0},
42 {401, 549, 2, 8, 11, 5, 0},
43 {550, 680, 2, 8, 10, 5, 0},
44 {681, 850, 2, 8, 12, 5, 1},
45 { 0, 333, 1, 6, 7, 3, 0},
46 {334, 400, 1, 6, 9, 3, 0},
47 {401, 549, 1, 6, 11, 3, 0},
48 {550, 680, 1, 1, 10, 5, 0},
49 {681, 850, 1, 1, 12, 5, 0}
55 * lo| hi| num| clk| cpo|wrdata|2T
56 * mhz| mhz|ranks|adjst| | delay|
58 { 0, 333, 2, 8, 7, 5, 0},
59 {334, 400, 2, 8, 9, 5, 0},
60 {401, 549, 2, 8, 11, 5, 0},
61 {550, 680, 2, 8, 11, 5, 0},
62 {681, 850, 2, 8, 13, 5, 1},
63 { 0, 333, 1, 6, 7, 3, 0},
64 {334, 400, 1, 6, 9, 3, 0},
65 {401, 549, 1, 6, 11, 3, 0},
66 {550, 680, 1, 1, 11, 6, 0},
67 {681, 850, 1, 1, 13, 6, 0}
71 const board_specific_parameters_t board_specific_parameters_rdimm[][20] = {
75 * lo| hi| num| clk| cpo|wrdata|2T
76 * mhz| mhz|ranks|adjst| | delay|
78 { 0, 333, 2, 4, 7, 3, 0},
79 {334, 400, 2, 4, 9, 3, 0},
80 {401, 549, 2, 4, 11, 3, 0},
81 {550, 680, 2, 4, 10, 3, 0},
82 {681, 850, 2, 4, 12, 3, 1},
88 * lo| hi| num| clk| cpo|wrdata|2T
89 * mhz| mhz|ranks|adjst| | delay|
91 { 0, 333, 2, 4, 7, 3, 0},
92 {334, 400, 2, 4, 9, 3, 0},
93 {401, 549, 2, 4, 11, 3, 0},
94 {550, 680, 2, 4, 11, 3, 0},
95 {681, 850, 2, 4, 13, 3, 1},
99 void fsl_ddr_board_options(memctl_options_t *popts,
100 dimm_params_t *pdimm,
101 unsigned int ctrl_num)
103 const board_specific_parameters_t *pbsp;
112 if (popts->registered_dimm_en) {
113 pbsp = &(board_specific_parameters_rdimm[ctrl_num][0]);
114 num_params = sizeof(board_specific_parameters_rdimm[ctrl_num]) /
115 sizeof(board_specific_parameters_rdimm[0][0]);
117 pbsp = &(board_specific_parameters_udimm[ctrl_num][0]);
118 num_params = sizeof(board_specific_parameters_udimm[ctrl_num]) /
119 sizeof(board_specific_parameters_udimm[0][0]);
122 /* set odt_rd_cfg and odt_wr_cfg. If the there is only one dimm in
123 * that controller, set odt_wr_cfg to 4 for CS0, and 0 to CS1. If
124 * there are two dimms in the controller, set odt_rd_cfg to 3 and
125 * odt_wr_cfg to 3 for the even CS, 0 for the odd CS.
127 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
128 if (i&1) { /* odd CS */
129 popts->cs_local_opts[i].odt_rd_cfg = 0;
130 popts->cs_local_opts[i].odt_wr_cfg = 0;
131 } else { /* even CS */
132 if (CONFIG_DIMM_SLOTS_PER_CTLR == 1) {
133 popts->cs_local_opts[i].odt_rd_cfg = 0;
134 popts->cs_local_opts[i].odt_wr_cfg = 4;
135 } else if (CONFIG_DIMM_SLOTS_PER_CTLR == 2) {
136 popts->cs_local_opts[i].odt_rd_cfg = 3;
137 popts->cs_local_opts[i].odt_wr_cfg = 3;
142 /* Get clk_adjust, cpo, write_data_delay,2T, according to the board ddr
143 * freqency and n_banks specified in board_specific_parameters table.
145 ddr_freq = get_ddr_freq(0) / 1000000;
146 for (i = 0; i < num_params; i++) {
147 if (ddr_freq >= pbsp->datarate_mhz_low &&
148 ddr_freq <= pbsp->datarate_mhz_high &&
149 pdimm->n_ranks == pbsp->n_ranks) {
150 popts->clk_adjust = pbsp->clk_adjust;
151 popts->cpo_override = pbsp->cpo;
152 popts->write_data_delay = pbsp->write_data_delay;
153 popts->twoT_en = pbsp->force_2T;
161 printf("Warning: board specific timing not found!\n");
164 * Factors to consider for half-strength driver enable:
165 * - number of DIMMs installed
167 popts->half_strength_driver_enable = 0;