blob: 77a00c55c95132a3d00a51cbdde071334b34e8e3 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Valentin Longchampc98bf292013-10-18 11:47:24 +02002/*
3 * (C) Copyright 2013 Keymile AG
4 * Valentin Longchamp <valentin.longchamp@keymile.com>
5 *
6 * Copyright 2009-2011 Freescale Semiconductor, Inc.
Tom Rini10e47792018-05-06 17:58:06 -04007 */
Valentin Longchampc98bf292013-10-18 11:47:24 +02008
9#include <common.h>
10#include <i2c.h>
11#include <hwconfig.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Valentin Longchampc98bf292013-10-18 11:47:24 +020015#include <asm/mmu.h>
York Sunf0626592013-09-30 09:22:09 -070016#include <fsl_ddr_sdram.h>
17#include <fsl_ddr_dimm_params.h>
Valentin Longchampc98bf292013-10-18 11:47:24 +020018
Simon Glass39f90ba2017-03-31 08:40:25 -060019DECLARE_GLOBAL_DATA_PTR;
20
Valentin Longchampc98bf292013-10-18 11:47:24 +020021void fsl_ddr_board_options(memctl_options_t *popts,
22 dimm_params_t *pdimm,
23 unsigned int ctrl_num)
24{
25 if (ctrl_num) {
26 printf("Wrong parameter for controller number %d", ctrl_num);
27 return;
28 }
29
30 /* automatic calibration for nb of cycles between read and DQS pre */
31 popts->cpo_override = 0xFF;
32
33 /* 1/2 clk delay between wr command and data strobe */
34 popts->write_data_delay = 4;
35 /* clk lauched 1/2 applied cylcle after address command */
36 popts->clk_adjust = 4;
37 /* 1T timing: command/address held for only 1 cycle */
38 popts->twot_en = 0;
39
40 /* we have only one module, half str should be OK */
41 popts->half_strength_driver_enable = 1;
42
Robert P. J. Day8d56db92016-07-15 13:44:45 -040043 /* wrlvl values overridden as recommended by ddr init func */
Valentin Longchampc98bf292013-10-18 11:47:24 +020044 popts->wrlvl_override = 1;
45 popts->wrlvl_sample = 0xf;
46 popts->wrlvl_start = 0x6;
47
48 /* Enable ZQ calibration */
49 popts->zq_en = 1;
50
51 /* DHC_EN =1, ODT = 75 Ohm */
52 popts->ddr_cdr1 = DDR_CDR1_DHC_EN | DDR_CDR_ODT_75ohm;
53}
54
Simon Glassd35f3382017-04-06 12:47:05 -060055int dram_init(void)
Valentin Longchampc98bf292013-10-18 11:47:24 +020056{
57 phys_size_t dram_size = 0;
58
59 puts("Initializing with SPD\n");
60
61 dram_size = fsl_ddr_sdram();
62
63 dram_size = setup_ddr_tlbs(dram_size / 0x100000);
64 dram_size *= 0x100000;
65
66 debug(" DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -060067 gd->ram_size = dram_size;
68
69 return 0;
Valentin Longchampc98bf292013-10-18 11:47:24 +020070}