blob: 455e5e725f7349bb2a814b6e9f94fdfc585fb87b [file] [log] [blame]
Timur Tabic59e1b42010-06-14 15:28:24 -05001/*
2 * Copyright 2010 Freescale Semiconductor, Inc.
3 * Authors: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
4 * Timur Tabi <timur@freescale.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or (at your option)
9 * any later version.
10 */
11
12#include <common.h>
Timur Tabic59e1b42010-06-14 15:28:24 -050013
14#include <asm/fsl_ddr_sdram.h>
15#include <asm/fsl_ddr_dimm_params.h>
16
York Sun712cf7a2011-10-03 09:19:53 -070017struct board_specific_parameters {
Timur Tabic59e1b42010-06-14 15:28:24 -050018 u32 n_ranks;
York Sun712cf7a2011-10-03 09:19:53 -070019 u32 datarate_mhz_high;
Timur Tabic59e1b42010-06-14 15:28:24 -050020 u32 clk_adjust; /* Range: 0-8 */
21 u32 cpo; /* Range: 2-31 */
22 u32 write_data_delay; /* Range: 0-6 */
23 u32 force_2T;
York Sun712cf7a2011-10-03 09:19:53 -070024};
Timur Tabic59e1b42010-06-14 15:28:24 -050025
Timur Tabic59e1b42010-06-14 15:28:24 -050026/*
York Sun712cf7a2011-10-03 09:19:53 -070027 * This table contains all valid speeds we want to override with board
28 * specific parameters. datarate_mhz_high values need to be in ascending order
29 * for each n_ranks group.
Timur Tabic59e1b42010-06-14 15:28:24 -050030 */
York Sun712cf7a2011-10-03 09:19:53 -070031static const struct board_specific_parameters dimm0[] = {
32 /*
33 * memory controller 0
34 * num| hi| clk| cpo|wrdata|2T
35 * ranks| mhz|adjst| | delay|
36 */
37 {1, 549, 5, 31, 3, 0},
38 {1, 850, 5, 31, 5, 0},
39 {2, 549, 5, 31, 3, 0},
40 {2, 850, 5, 31, 5, 0},
41 {}
Timur Tabic59e1b42010-06-14 15:28:24 -050042};
43
44void fsl_ddr_board_options(memctl_options_t *popts, dimm_params_t *pdimm,
45 unsigned int ctrl_num)
46{
York Sun712cf7a2011-10-03 09:19:53 -070047 const struct board_specific_parameters *pbsp, *pbsp_highest = NULL;
Timur Tabic59e1b42010-06-14 15:28:24 -050048 unsigned long ddr_freq;
49 unsigned int i;
50
York Sun712cf7a2011-10-03 09:19:53 -070051
52 if (ctrl_num) {
53 printf("Wrong parameter for controller number %d", ctrl_num);
54 return;
55 }
56 if (!pdimm->n_ranks)
57 return;
58
Timur Tabic59e1b42010-06-14 15:28:24 -050059 /* set odt_rd_cfg and odt_wr_cfg. */
60 for (i = 0; i < CONFIG_CHIP_SELECTS_PER_CTRL; i++) {
61 popts->cs_local_opts[i].odt_rd_cfg = 0;
62 popts->cs_local_opts[i].odt_wr_cfg = 1;
63 }
64
York Sun712cf7a2011-10-03 09:19:53 -070065 pbsp = dimm0;
Timur Tabic59e1b42010-06-14 15:28:24 -050066 /*
67 * Get clk_adjust, cpo, write_data_delay,2T, according to the board ddr
68 * freqency and n_banks specified in board_specific_parameters table.
69 */
70 ddr_freq = get_ddr_freq(0) / 1000000;
York Sun712cf7a2011-10-03 09:19:53 -070071 while (pbsp->datarate_mhz_high) {
72 if (pbsp->n_ranks == pdimm->n_ranks) {
73 if (ddr_freq <= pbsp->datarate_mhz_high) {
74 popts->clk_adjust = pbsp->clk_adjust;
75 popts->cpo_override = pbsp->cpo;
76 popts->write_data_delay =
77 pbsp->write_data_delay;
78 popts->twoT_en = pbsp->force_2T;
79 goto found;
80 }
81 pbsp_highest = pbsp;
Timur Tabic59e1b42010-06-14 15:28:24 -050082 }
York Sun712cf7a2011-10-03 09:19:53 -070083 pbsp++;
Timur Tabic59e1b42010-06-14 15:28:24 -050084 }
85
York Sun712cf7a2011-10-03 09:19:53 -070086 if (pbsp_highest) {
87 printf("Error: board specific timing not found "
88 "for data rate %lu MT/s!\n"
89 "Trying to use the highest speed (%u) parameters\n",
90 ddr_freq, pbsp_highest->datarate_mhz_high);
91 popts->clk_adjust = pbsp->clk_adjust;
92 popts->cpo_override = pbsp->cpo;
93 popts->write_data_delay = pbsp->write_data_delay;
94 popts->twoT_en = pbsp->force_2T;
95 } else {
96 panic("DIMM is not supported by this board");
97 }
98
99found:
Timur Tabic59e1b42010-06-14 15:28:24 -0500100 popts->half_strength_driver_enable = 1;
101
102 /* Per AN4039, enable ZQ calibration. */
103 popts->zq_en = 1;
104
105 /*
106 * For wake-up on ARP, we need auto self refresh enabled
107 */
108 popts->auto_self_refresh_en = 1;
109 popts->sr_it = 0xb;
110}