blob: 3f37abdf83b735d0d9535cb3e8594b7de34ad557 [file] [log] [blame]
Sricharanbb772a52011-11-15 09:50:00 -05001/*
2 * EMIF programming
3 *
4 * (C) Copyright 2010
5 * Texas Instruments, <www.ti.com>
6 *
7 * Aneesh V <aneesh@ti.com> for OMAP4
8 *
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * MA 02111-1307 USA
26 */
27
28#include <common.h>
29#include <asm/emif.h>
30#include <asm/arch/sys_proto.h>
31#include <asm/utils.h>
32
33#ifndef CONFIG_SYS_EMIF_PRECALCULATED_TIMING_REGS
34#define print_timing_reg(reg) debug(#reg" - 0x%08x\n", (reg))
35static u32 *const T_num = (u32 *)OMAP5_SRAM_SCRATCH_EMIF_T_NUM;
36static u32 *const T_den = (u32 *)OMAP5_SRAM_SCRATCH_EMIF_T_DEN;
Sricharanbb772a52011-11-15 09:50:00 -050037#endif
38
39#ifdef CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS
40/* Base AC Timing values specified by JESD209-2 for 532MHz operation */
41static const struct lpddr2_ac_timings timings_jedec_532_mhz = {
42 .max_freq = 532000000,
43 .RL = 8,
44 .tRPab = 21,
45 .tRCD = 18,
46 .tWR = 15,
47 .tRASmin = 42,
48 .tRRD = 10,
49 .tWTRx2 = 15,
50 .tXSR = 140,
51 .tXPx2 = 15,
52 .tRFCab = 130,
53 .tRTPx2 = 15,
54 .tCKE = 3,
55 .tCKESR = 15,
56 .tZQCS = 90,
57 .tZQCL = 360,
58 .tZQINIT = 1000,
59 .tDQSCKMAXx2 = 11,
60 .tRASmax = 70,
61 .tFAW = 50
62};
63
64/*
65 * Min tCK values specified by JESD209-2
66 * Min tCK specifies the minimum duration of some AC timing parameters in terms
67 * of the number of cycles. If the calculated number of cycles based on the
68 * absolute time value is less than the min tCK value, min tCK value should
69 * be used instead. This typically happens at low frequencies.
70 */
71static const struct lpddr2_min_tck min_tck_jedec = {
72 .tRL = 3,
73 .tRP_AB = 3,
74 .tRCD = 3,
75 .tWR = 3,
76 .tRAS_MIN = 3,
77 .tRRD = 2,
78 .tWTR = 2,
79 .tXP = 2,
80 .tRTP = 2,
81 .tCKE = 3,
82 .tCKESR = 3,
83 .tFAW = 8
84};
85
86static const struct lpddr2_ac_timings const*
87 jedec_ac_timings[MAX_NUM_SPEEDBINS] = {
88 &timings_jedec_532_mhz
89};
90
91static const struct lpddr2_device_timings jedec_default_timings = {
92 .ac_timings = jedec_ac_timings,
93 .min_tck = &min_tck_jedec
94};
95
96void emif_get_device_timings(u32 emif_nr,
97 const struct lpddr2_device_timings **cs0_device_timings,
98 const struct lpddr2_device_timings **cs1_device_timings)
99{
100 /* Assume Identical devices on EMIF1 & EMIF2 */
101 *cs0_device_timings = &jedec_default_timings;
102 *cs1_device_timings = NULL;
103}
104#endif /* CONFIG_SYS_DEFAULT_LPDDR2_TIMINGS */