blob: df7e3eceed7094433e3062e81970a54a70ffda7d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Kumar Gala6a8e5692008-08-26 15:01:35 -05002/*
York Sun712cf7a2011-10-03 09:19:53 -07003 * Copyright 2008,2011 Freescale Semiconductor, Inc.
Kumar Gala6a8e5692008-08-26 15:01:35 -05004 */
5
6#include <common.h>
Kumar Gala6a8e5692008-08-26 15:01:35 -05007
York Sun5614e712013-09-30 09:22:09 -07008#include <fsl_ddr_sdram.h>
9#include <fsl_ddr_dimm_params.h>
Kumar Gala6a8e5692008-08-26 15:01:35 -050010
York Sun712cf7a2011-10-03 09:19:53 -070011struct board_specific_parameters {
Wolfgang Denk3cbd8232008-11-02 16:14:22 +010012 u32 n_ranks;
York Sun712cf7a2011-10-03 09:19:53 -070013 u32 datarate_mhz_high;
Wolfgang Denk3cbd8232008-11-02 16:14:22 +010014 u32 clk_adjust;
15 u32 cpo;
16 u32 write_data_delay;
York Sun712cf7a2011-10-03 09:19:53 -070017};
Haiying Wangc21617f2008-10-03 12:37:57 -040018
York Sun712cf7a2011-10-03 09:19:53 -070019/*
20 * This table contains all valid speeds we want to override with board
21 * specific parameters. datarate_mhz_high values need to be in ascending order
22 * for each n_ranks group.
23 */
24const struct board_specific_parameters dimm0[] = {
25 /*
26 * memory controller 0
27 * num| hi| clk| cpo|wrdata|2T
28 * ranks| mhz|adjst| | delay|
29 */
30 {4, 333, 7, 7, 3},
31 {4, 549, 7, 9, 3},
32 {4, 650, 7, 10, 4},
33 {2, 333, 7, 7, 3},
34 {2, 549, 7, 9, 3},
35 {2, 650, 7, 10, 4},
36 {1, 333, 7, 7, 3},
37 {1, 549, 7, 9, 3},
38 {1, 650, 7, 10, 4},
39 {}
40};
Haiying Wangc21617f2008-10-03 12:37:57 -040041
York Sun712cf7a2011-10-03 09:19:53 -070042/*
43 * The two slots have slightly different timing. The center values are good
44 * for both slots. We use identical speed tables for them. In future use, if
45 * DIMMs have fewer center values that require two separated tables, copy the
46 * udimm0 table to udimm1 and make changes to clk_adjust and wrlvl_start.
47 */
48const struct board_specific_parameters *dimms[] = {
49 dimm0,
50 dimm0,
Haiying Wangc21617f2008-10-03 12:37:57 -040051};
52
Haiying Wangdfb49102008-10-03 12:36:55 -040053void fsl_ddr_board_options(memctl_options_t *popts,
Haiying Wangc21617f2008-10-03 12:37:57 -040054 dimm_params_t *pdimm,
55 unsigned int ctrl_num)
Kumar Gala6a8e5692008-08-26 15:01:35 -050056{
York Sun712cf7a2011-10-03 09:19:53 -070057 const struct board_specific_parameters *pbsp, *pbsp_highest = NULL;
58 unsigned int i;
Haiying Wangc21617f2008-10-03 12:37:57 -040059 ulong ddr_freq;
Kumar Gala6a8e5692008-08-26 15:01:35 -050060
York Sun712cf7a2011-10-03 09:19:53 -070061 if (ctrl_num > 1) {
62 printf("Wrong parameter for controller number %d", ctrl_num);
63 return;
Haiying Wangc21617f2008-10-03 12:37:57 -040064 }
York Sun712cf7a2011-10-03 09:19:53 -070065 for (i = 0; i < CONFIG_DIMM_SLOTS_PER_CTLR; i++) {
66 if (pdimm[i].n_ranks)
67 break;
68 }
69 if (i >= CONFIG_DIMM_SLOTS_PER_CTLR) /* no DIMM */
70 return;
71
72 pbsp = dimms[ctrl_num];
Kumar Gala6a8e5692008-08-26 15:01:35 -050073
Haiying Wangc21617f2008-10-03 12:37:57 -040074 /* Get clk_adjust, cpo, write_data_delay, according to the board ddr
75 * freqency and n_banks specified in board_specific_parameters table.
Kumar Gala6a8e5692008-08-26 15:01:35 -050076 */
Kumar Gala5df4b0a2011-01-31 20:36:02 -060077 ddr_freq = get_ddr_freq(0) / 1000000;
York Sun712cf7a2011-10-03 09:19:53 -070078 while (pbsp->datarate_mhz_high) {
79 if (pbsp->n_ranks == pdimm[i].n_ranks) {
80 if (ddr_freq <= pbsp->datarate_mhz_high) {
81 popts->clk_adjust = pbsp->clk_adjust;
82 popts->cpo_override = pbsp->cpo;
83 popts->write_data_delay =
84 pbsp->write_data_delay;
85 goto found;
Haiying Wangc21617f2008-10-03 12:37:57 -040086 }
York Sun712cf7a2011-10-03 09:19:53 -070087 pbsp_highest = pbsp;
Haiying Wangc21617f2008-10-03 12:37:57 -040088 }
York Sun712cf7a2011-10-03 09:19:53 -070089 pbsp++;
Haiying Wangc21617f2008-10-03 12:37:57 -040090 }
Kumar Gala6a8e5692008-08-26 15:01:35 -050091
York Sun712cf7a2011-10-03 09:19:53 -070092 if (pbsp_highest) {
93 printf("Error: board specific timing not found "
94 "for data rate %lu MT/s!\n"
95 "Trying to use the highest speed (%u) parameters\n",
96 ddr_freq, pbsp_highest->datarate_mhz_high);
97 popts->clk_adjust = pbsp_highest->clk_adjust;
98 popts->cpo_override = pbsp_highest->cpo;
99 popts->write_data_delay = pbsp_highest->write_data_delay;
100 } else {
101 panic("DIMM is not supported by this board");
York Sun939e5bf2011-06-27 13:30:55 -0700102 }
103
York Sun712cf7a2011-10-03 09:19:53 -0700104found:
Dave Liub4983e12008-11-21 16:31:43 +0800105 /* 2T timing enable */
Priyanka Jain0dd38a32013-09-25 10:41:19 +0530106 popts->twot_en = 1;
Kumar Gala6a8e5692008-08-26 15:01:35 -0500107}