blob: 995c42960178df7a8a4f312a3f073257a33317a1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ashish Kumare84a3242017-08-31 16:12:54 +05302/*
3 * Copyright 2017 NXP
Ashish Kumare84a3242017-08-31 16:12:54 +05304 */
5
6#include <common.h>
7#include <fsl_ddr_sdram.h>
8#include <fsl_ddr_dimm_params.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053010#include <asm/arch/soc.h>
11#include <asm/arch/clock.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Ashish Kumare84a3242017-08-31 16:12:54 +053013#include "ddr.h"
14
15DECLARE_GLOBAL_DATA_PTR;
16
Rajesh Bhagat75ad4812018-01-17 16:13:07 +053017#if defined(CONFIG_VID) && (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
18static void fsl_ddr_setup_0v9_volt(memctl_options_t *popts)
19{
20 int vdd;
21
22 vdd = get_core_volt_from_fuse();
23 /* Nothing to do for silicons doesn't support VID */
24 if (vdd < 0)
25 return;
26
27 if (vdd == 900) {
28 popts->ddr_cdr1 |= DDR_CDR1_V0PT9_EN;
29 debug("VID: configure DDR to support 900 mV\n");
30 }
31}
32#endif
33
Ashish Kumare84a3242017-08-31 16:12:54 +053034void fsl_ddr_board_options(memctl_options_t *popts,
35 dimm_params_t *pdimm,
36 unsigned int ctrl_num)
37{
38 const struct board_specific_parameters *pbsp, *pbsp_highest = NULL;
39 ulong ddr_freq;
40
41 if (ctrl_num > 1) {
42 printf("Not supported controller number %d\n", ctrl_num);
43 return;
44 }
45 if (!pdimm->n_ranks)
46 return;
47
48 /*
49 * we use identical timing for all slots. If needed, change the code
50 * to pbsp = rdimms[ctrl_num] or pbsp = udimms[ctrl_num];
51 */
52 pbsp = udimms[0];
53
54 /* Get clk_adjust, wrlvl_start, wrlvl_ctl, according to the board ddr
55 * freqency and n_banks specified in board_specific_parameters table.
56 */
57 ddr_freq = get_ddr_freq(0) / 1000000;
58 while (pbsp->datarate_mhz_high) {
59 if (pbsp->n_ranks == pdimm->n_ranks) {
60 if (ddr_freq <= pbsp->datarate_mhz_high) {
61 popts->clk_adjust = pbsp->clk_adjust;
62 popts->wrlvl_start = pbsp->wrlvl_start;
63 popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2;
64 popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3;
65 goto found;
66 }
67 pbsp_highest = pbsp;
68 }
69 pbsp++;
70 }
71
72 if (pbsp_highest) {
73 printf("Error: board specific timing not found for %lu MT/s\n",
74 ddr_freq);
75 printf("Trying to use the highest speed (%u) parameters\n",
76 pbsp_highest->datarate_mhz_high);
77 popts->clk_adjust = pbsp_highest->clk_adjust;
78 popts->wrlvl_start = pbsp_highest->wrlvl_start;
79 popts->wrlvl_ctl_2 = pbsp->wrlvl_ctl_2;
80 popts->wrlvl_ctl_3 = pbsp->wrlvl_ctl_3;
81 } else {
82 panic("DIMM is not supported by this board");
83 }
84found:
85 debug("Found timing match: n_ranks %d, data rate %d, rank_gb %d\n"
86 "\tclk_adjust %d, wrlvl_start %d, wrlvl_ctrl_2 0x%x, wrlvl_ctrl_3 0x%x\n",
87 pbsp->n_ranks, pbsp->datarate_mhz_high, pbsp->rank_gb,
88 pbsp->clk_adjust, pbsp->wrlvl_start, pbsp->wrlvl_ctl_2,
89 pbsp->wrlvl_ctl_3);
90
91
92
93 popts->half_strength_driver_enable = 0;
94 /*
95 * Write leveling override
96 */
97 popts->wrlvl_override = 1;
98 popts->wrlvl_sample = 0xf;
99
100
101 /* Enable ZQ calibration */
102 popts->zq_en = 1;
103
104 /* Enable DDR hashing */
105 popts->addr_hash = 1;
106
107 popts->ddr_cdr1 = DDR_CDR1_DHC_EN | DDR_CDR1_ODT(DDR_CDR_ODT_60ohm);
Rajesh Bhagat75ad4812018-01-17 16:13:07 +0530108#if defined(CONFIG_VID) && (!defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD))
109 fsl_ddr_setup_0v9_volt(popts);
110#endif
111
Ashish Kumare84a3242017-08-31 16:12:54 +0530112 popts->ddr_cdr2 = DDR_CDR2_ODT(DDR_CDR_ODT_60ohm) |
113 DDR_CDR2_VREF_TRAIN_EN | DDR_CDR2_VREF_RANGE_2;
114}
115
Pankit Garg143af3c2018-12-27 04:37:55 +0000116#ifdef CONFIG_TFABOOT
117int fsl_initdram(void)
118{
119 gd->ram_size = tfa_get_dram_size();
Ashish Kumare84a3242017-08-31 16:12:54 +0530120
Pankit Garg143af3c2018-12-27 04:37:55 +0000121 if (!gd->ram_size)
122 gd->ram_size = fsl_ddr_sdram_size();
123
124 return 0;
125}
126#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530127int fsl_initdram(void)
128{
129 puts("Initializing DDR....using SPD\n");
130
Ashish Kumar099f4092017-11-06 13:18:43 +0530131#if defined(CONFIG_SPL) && !defined(CONFIG_SPL_BUILD)
132 gd->ram_size = fsl_ddr_sdram_size();
133#else
Ashish Kumare84a3242017-08-31 16:12:54 +0530134 gd->ram_size = fsl_ddr_sdram();
Ashish Kumar099f4092017-11-06 13:18:43 +0530135#endif
Ashish Kumare84a3242017-08-31 16:12:54 +0530136 return 0;
137}
Pankit Garg143af3c2018-12-27 04:37:55 +0000138#endif /* CONFIG_TFABOOT */