memory: emif: handle overflow for timing for LP mode
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / memory / emif.c
CommitLineData
7ec94453
A
1/*
2 * EMIF driver
3 *
4 * Copyright (C) 2012 Texas Instruments, Inc.
5 *
6 * Aneesh V <aneesh@ti.com>
7 * Santosh Shilimkar <santosh.shilimkar@ti.com>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 */
06303c2e 13#include <linux/err.h>
7ec94453
A
14#include <linux/kernel.h>
15#include <linux/reboot.h>
16#include <linux/platform_data/emif_plat.h>
17#include <linux/io.h>
18#include <linux/device.h>
19#include <linux/platform_device.h>
20#include <linux/interrupt.h>
21#include <linux/slab.h>
e6b42eb6 22#include <linux/of.h>
aac10aaa 23#include <linux/debugfs.h>
7ec94453
A
24#include <linux/seq_file.h>
25#include <linux/module.h>
26#include <linux/list.h>
a93de288 27#include <linux/spinlock.h>
7ec94453
A
28#include <memory/jedec_ddr.h>
29#include "emif.h"
e6b42eb6 30#include "of_memory.h"
7ec94453
A
31
32/**
33 * struct emif_data - Per device static data for driver's use
34 * @duplicate: Whether the DDR devices attached to this EMIF
35 * instance are exactly same as that on EMIF1. In
36 * this case we can save some memory and processing
37 * @temperature_level: Maximum temperature of LPDDR2 devices attached
38 * to this EMIF - read from MR4 register. If there
39 * are two devices attached to this EMIF, this
40 * value is the maximum of the two temperature
41 * levels.
42 * @node: node in the device list
43 * @base: base address of memory-mapped IO registers.
44 * @dev: device pointer.
a93de288
A
45 * @addressing table with addressing information from the spec
46 * @regs_cache: An array of 'struct emif_regs' that stores
47 * calculated register values for different
48 * frequencies, to avoid re-calculating them on
49 * each DVFS transition.
50 * @curr_regs: The set of register values used in the last
51 * frequency change (i.e. corresponding to the
52 * frequency in effect at the moment)
7ec94453 53 * @plat_data: Pointer to saved platform data.
aac10aaa 54 * @debugfs_root: dentry to the root folder for EMIF in debugfs
e6b42eb6 55 * @np_ddr: Pointer to ddr device tree node
7ec94453
A
56 */
57struct emif_data {
58 u8 duplicate;
59 u8 temperature_level;
a93de288 60 u8 lpmode;
7ec94453 61 struct list_head node;
a93de288 62 unsigned long irq_state;
7ec94453
A
63 void __iomem *base;
64 struct device *dev;
a93de288
A
65 const struct lpddr2_addressing *addressing;
66 struct emif_regs *regs_cache[EMIF_MAX_NUM_FREQUENCIES];
67 struct emif_regs *curr_regs;
7ec94453 68 struct emif_platform_data *plat_data;
aac10aaa 69 struct dentry *debugfs_root;
e6b42eb6 70 struct device_node *np_ddr;
7ec94453
A
71};
72
73static struct emif_data *emif1;
a93de288
A
74static spinlock_t emif_lock;
75static unsigned long irq_state;
76static u32 t_ck; /* DDR clock period in ps */
7ec94453
A
77static LIST_HEAD(device_list);
78
e5445ee6 79#ifdef CONFIG_DEBUG_FS
aac10aaa
A
80static void do_emif_regdump_show(struct seq_file *s, struct emif_data *emif,
81 struct emif_regs *regs)
82{
83 u32 type = emif->plat_data->device_info->type;
84 u32 ip_rev = emif->plat_data->ip_rev;
85
86 seq_printf(s, "EMIF register cache dump for %dMHz\n",
87 regs->freq/1000000);
88
89 seq_printf(s, "ref_ctrl_shdw\t: 0x%08x\n", regs->ref_ctrl_shdw);
90 seq_printf(s, "sdram_tim1_shdw\t: 0x%08x\n", regs->sdram_tim1_shdw);
91 seq_printf(s, "sdram_tim2_shdw\t: 0x%08x\n", regs->sdram_tim2_shdw);
92 seq_printf(s, "sdram_tim3_shdw\t: 0x%08x\n", regs->sdram_tim3_shdw);
93
94 if (ip_rev == EMIF_4D) {
95 seq_printf(s, "read_idle_ctrl_shdw_normal\t: 0x%08x\n",
96 regs->read_idle_ctrl_shdw_normal);
97 seq_printf(s, "read_idle_ctrl_shdw_volt_ramp\t: 0x%08x\n",
98 regs->read_idle_ctrl_shdw_volt_ramp);
99 } else if (ip_rev == EMIF_4D5) {
100 seq_printf(s, "dll_calib_ctrl_shdw_normal\t: 0x%08x\n",
101 regs->dll_calib_ctrl_shdw_normal);
102 seq_printf(s, "dll_calib_ctrl_shdw_volt_ramp\t: 0x%08x\n",
103 regs->dll_calib_ctrl_shdw_volt_ramp);
104 }
105
106 if (type == DDR_TYPE_LPDDR2_S2 || type == DDR_TYPE_LPDDR2_S4) {
107 seq_printf(s, "ref_ctrl_shdw_derated\t: 0x%08x\n",
108 regs->ref_ctrl_shdw_derated);
109 seq_printf(s, "sdram_tim1_shdw_derated\t: 0x%08x\n",
110 regs->sdram_tim1_shdw_derated);
111 seq_printf(s, "sdram_tim3_shdw_derated\t: 0x%08x\n",
112 regs->sdram_tim3_shdw_derated);
113 }
114}
115
116static int emif_regdump_show(struct seq_file *s, void *unused)
117{
118 struct emif_data *emif = s->private;
119 struct emif_regs **regs_cache;
120 int i;
121
122 if (emif->duplicate)
123 regs_cache = emif1->regs_cache;
124 else
125 regs_cache = emif->regs_cache;
126
127 for (i = 0; i < EMIF_MAX_NUM_FREQUENCIES && regs_cache[i]; i++) {
128 do_emif_regdump_show(s, emif, regs_cache[i]);
129 seq_printf(s, "\n");
130 }
131
132 return 0;
133}
134
135static int emif_regdump_open(struct inode *inode, struct file *file)
136{
137 return single_open(file, emif_regdump_show, inode->i_private);
138}
139
140static const struct file_operations emif_regdump_fops = {
141 .open = emif_regdump_open,
142 .read = seq_read,
143 .release = single_release,
144};
145
146static int emif_mr4_show(struct seq_file *s, void *unused)
147{
148 struct emif_data *emif = s->private;
149
150 seq_printf(s, "MR4=%d\n", emif->temperature_level);
151 return 0;
152}
153
154static int emif_mr4_open(struct inode *inode, struct file *file)
155{
156 return single_open(file, emif_mr4_show, inode->i_private);
157}
158
159static const struct file_operations emif_mr4_fops = {
160 .open = emif_mr4_open,
161 .read = seq_read,
162 .release = single_release,
163};
164
165static int __init_or_module emif_debugfs_init(struct emif_data *emif)
166{
167 struct dentry *dentry;
168 int ret;
169
170 dentry = debugfs_create_dir(dev_name(emif->dev), NULL);
e5445ee6
AL
171 if (!dentry) {
172 ret = -ENOMEM;
aac10aaa
A
173 goto err0;
174 }
175 emif->debugfs_root = dentry;
176
177 dentry = debugfs_create_file("regcache_dump", S_IRUGO,
178 emif->debugfs_root, emif, &emif_regdump_fops);
e5445ee6
AL
179 if (!dentry) {
180 ret = -ENOMEM;
aac10aaa
A
181 goto err1;
182 }
183
184 dentry = debugfs_create_file("mr4", S_IRUGO,
185 emif->debugfs_root, emif, &emif_mr4_fops);
e5445ee6
AL
186 if (!dentry) {
187 ret = -ENOMEM;
aac10aaa
A
188 goto err1;
189 }
190
191 return 0;
192err1:
193 debugfs_remove_recursive(emif->debugfs_root);
194err0:
195 return ret;
196}
197
198static void __exit emif_debugfs_exit(struct emif_data *emif)
199{
200 debugfs_remove_recursive(emif->debugfs_root);
201 emif->debugfs_root = NULL;
202}
e5445ee6
AL
203#else
204static inline int __init_or_module emif_debugfs_init(struct emif_data *emif)
205{
206 return 0;
207}
208
209static inline void __exit emif_debugfs_exit(struct emif_data *emif)
210{
211}
212#endif
aac10aaa 213
a93de288
A
214/*
215 * Calculate the period of DDR clock from frequency value
216 */
217static void set_ddr_clk_period(u32 freq)
218{
219 /* Divide 10^12 by frequency to get period in ps */
220 t_ck = (u32)DIV_ROUND_UP_ULL(1000000000000ull, freq);
221}
222
98231c4f
A
223/*
224 * Get bus width used by EMIF. Note that this may be different from the
225 * bus width of the DDR devices used. For instance two 16-bit DDR devices
226 * may be connected to a given CS of EMIF. In this case bus width as far
227 * as EMIF is concerned is 32, where as the DDR bus width is 16 bits.
228 */
229static u32 get_emif_bus_width(struct emif_data *emif)
230{
231 u32 width;
232 void __iomem *base = emif->base;
233
234 width = (readl(base + EMIF_SDRAM_CONFIG) & NARROW_MODE_MASK)
235 >> NARROW_MODE_SHIFT;
236 width = width == 0 ? 32 : 16;
237
238 return width;
239}
240
a93de288
A
241/*
242 * Get the CL from SDRAM_CONFIG register
243 */
244static u32 get_cl(struct emif_data *emif)
245{
246 u32 cl;
247 void __iomem *base = emif->base;
248
249 cl = (readl(base + EMIF_SDRAM_CONFIG) & CL_MASK) >> CL_SHIFT;
250
251 return cl;
252}
253
254static void set_lpmode(struct emif_data *emif, u8 lpmode)
255{
256 u32 temp;
257 void __iomem *base = emif->base;
258
259 temp = readl(base + EMIF_POWER_MANAGEMENT_CONTROL);
260 temp &= ~LP_MODE_MASK;
261 temp |= (lpmode << LP_MODE_SHIFT);
262 writel(temp, base + EMIF_POWER_MANAGEMENT_CONTROL);
263}
264
265static void do_freq_update(void)
266{
267 struct emif_data *emif;
268
269 /*
270 * Workaround for errata i728: Disable LPMODE during FREQ_UPDATE
271 *
272 * i728 DESCRIPTION:
273 * The EMIF automatically puts the SDRAM into self-refresh mode
274 * after the EMIF has not performed accesses during
275 * EMIF_PWR_MGMT_CTRL[7:4] REG_SR_TIM number of DDR clock cycles
276 * and the EMIF_PWR_MGMT_CTRL[10:8] REG_LP_MODE bit field is set
277 * to 0x2. If during a small window the following three events
278 * occur:
279 * - The SR_TIMING counter expires
280 * - And frequency change is requested
281 * - And OCP access is requested
282 * Then it causes instable clock on the DDR interface.
283 *
284 * WORKAROUND
285 * To avoid the occurrence of the three events, the workaround
286 * is to disable the self-refresh when requesting a frequency
287 * change. Before requesting a frequency change the software must
288 * program EMIF_PWR_MGMT_CTRL[10:8] REG_LP_MODE to 0x0. When the
289 * frequency change has been done, the software can reprogram
290 * EMIF_PWR_MGMT_CTRL[10:8] REG_LP_MODE to 0x2
291 */
292 list_for_each_entry(emif, &device_list, node) {
293 if (emif->lpmode == EMIF_LP_MODE_SELF_REFRESH)
294 set_lpmode(emif, EMIF_LP_MODE_DISABLE);
295 }
296
297 /*
298 * TODO: Do FREQ_UPDATE here when an API
299 * is available for this as part of the new
300 * clock framework
301 */
302
303 list_for_each_entry(emif, &device_list, node) {
304 if (emif->lpmode == EMIF_LP_MODE_SELF_REFRESH)
305 set_lpmode(emif, EMIF_LP_MODE_SELF_REFRESH);
306 }
307}
308
309/* Find addressing table entry based on the device's type and density */
310static const struct lpddr2_addressing *get_addressing_table(
311 const struct ddr_device_info *device_info)
312{
313 u32 index, type, density;
314
315 type = device_info->type;
316 density = device_info->density;
317
318 switch (type) {
319 case DDR_TYPE_LPDDR2_S4:
320 index = density - 1;
321 break;
322 case DDR_TYPE_LPDDR2_S2:
323 switch (density) {
324 case DDR_DENSITY_1Gb:
325 case DDR_DENSITY_2Gb:
326 index = density + 3;
327 break;
328 default:
329 index = density - 1;
330 }
331 break;
332 default:
333 return NULL;
334 }
335
336 return &lpddr2_jedec_addressing_table[index];
337}
338
339/*
340 * Find the the right timing table from the array of timing
341 * tables of the device using DDR clock frequency
342 */
343static const struct lpddr2_timings *get_timings_table(struct emif_data *emif,
344 u32 freq)
345{
346 u32 i, min, max, freq_nearest;
347 const struct lpddr2_timings *timings = NULL;
348 const struct lpddr2_timings *timings_arr = emif->plat_data->timings;
349 struct device *dev = emif->dev;
350
351 /* Start with a very high frequency - 1GHz */
352 freq_nearest = 1000000000;
353
354 /*
355 * Find the timings table such that:
356 * 1. the frequency range covers the required frequency(safe) AND
357 * 2. the max_freq is closest to the required frequency(optimal)
358 */
359 for (i = 0; i < emif->plat_data->timings_arr_size; i++) {
360 max = timings_arr[i].max_freq;
361 min = timings_arr[i].min_freq;
362 if ((freq >= min) && (freq <= max) && (max < freq_nearest)) {
363 freq_nearest = max;
364 timings = &timings_arr[i];
365 }
366 }
367
368 if (!timings)
369 dev_err(dev, "%s: couldn't find timings for - %dHz\n",
370 __func__, freq);
371
372 dev_dbg(dev, "%s: timings table: freq %d, speed bin freq %d\n",
373 __func__, freq, freq_nearest);
374
375 return timings;
376}
377
378static u32 get_sdram_ref_ctrl_shdw(u32 freq,
379 const struct lpddr2_addressing *addressing)
380{
381 u32 ref_ctrl_shdw = 0, val = 0, freq_khz, t_refi;
382
383 /* Scale down frequency and t_refi to avoid overflow */
384 freq_khz = freq / 1000;
385 t_refi = addressing->tREFI_ns / 100;
386
387 /*
388 * refresh rate to be set is 'tREFI(in us) * freq in MHz
389 * division by 10000 to account for change in units
390 */
391 val = t_refi * freq_khz / 10000;
392 ref_ctrl_shdw |= val << REFRESH_RATE_SHIFT;
393
394 return ref_ctrl_shdw;
395}
396
397static u32 get_sdram_tim_1_shdw(const struct lpddr2_timings *timings,
398 const struct lpddr2_min_tck *min_tck,
399 const struct lpddr2_addressing *addressing)
400{
401 u32 tim1 = 0, val = 0;
402
403 val = max(min_tck->tWTR, DIV_ROUND_UP(timings->tWTR, t_ck)) - 1;
404 tim1 |= val << T_WTR_SHIFT;
405
406 if (addressing->num_banks == B8)
407 val = DIV_ROUND_UP(timings->tFAW, t_ck*4);
408 else
409 val = max(min_tck->tRRD, DIV_ROUND_UP(timings->tRRD, t_ck));
410 tim1 |= (val - 1) << T_RRD_SHIFT;
411
412 val = DIV_ROUND_UP(timings->tRAS_min + timings->tRPab, t_ck) - 1;
413 tim1 |= val << T_RC_SHIFT;
414
415 val = max(min_tck->tRASmin, DIV_ROUND_UP(timings->tRAS_min, t_ck));
416 tim1 |= (val - 1) << T_RAS_SHIFT;
417
418 val = max(min_tck->tWR, DIV_ROUND_UP(timings->tWR, t_ck)) - 1;
419 tim1 |= val << T_WR_SHIFT;
420
421 val = max(min_tck->tRCD, DIV_ROUND_UP(timings->tRCD, t_ck)) - 1;
422 tim1 |= val << T_RCD_SHIFT;
423
424 val = max(min_tck->tRPab, DIV_ROUND_UP(timings->tRPab, t_ck)) - 1;
425 tim1 |= val << T_RP_SHIFT;
426
427 return tim1;
428}
429
430static u32 get_sdram_tim_1_shdw_derated(const struct lpddr2_timings *timings,
431 const struct lpddr2_min_tck *min_tck,
432 const struct lpddr2_addressing *addressing)
433{
434 u32 tim1 = 0, val = 0;
435
436 val = max(min_tck->tWTR, DIV_ROUND_UP(timings->tWTR, t_ck)) - 1;
437 tim1 = val << T_WTR_SHIFT;
438
439 /*
440 * tFAW is approximately 4 times tRRD. So add 1875*4 = 7500ps
441 * to tFAW for de-rating
442 */
443 if (addressing->num_banks == B8) {
444 val = DIV_ROUND_UP(timings->tFAW + 7500, 4 * t_ck) - 1;
445 } else {
446 val = DIV_ROUND_UP(timings->tRRD + 1875, t_ck);
447 val = max(min_tck->tRRD, val) - 1;
448 }
449 tim1 |= val << T_RRD_SHIFT;
450
451 val = DIV_ROUND_UP(timings->tRAS_min + timings->tRPab + 1875, t_ck);
452 tim1 |= (val - 1) << T_RC_SHIFT;
453
454 val = DIV_ROUND_UP(timings->tRAS_min + 1875, t_ck);
455 val = max(min_tck->tRASmin, val) - 1;
456 tim1 |= val << T_RAS_SHIFT;
457
458 val = max(min_tck->tWR, DIV_ROUND_UP(timings->tWR, t_ck)) - 1;
459 tim1 |= val << T_WR_SHIFT;
460
461 val = max(min_tck->tRCD, DIV_ROUND_UP(timings->tRCD + 1875, t_ck));
462 tim1 |= (val - 1) << T_RCD_SHIFT;
463
464 val = max(min_tck->tRPab, DIV_ROUND_UP(timings->tRPab + 1875, t_ck));
465 tim1 |= (val - 1) << T_RP_SHIFT;
466
467 return tim1;
468}
469
470static u32 get_sdram_tim_2_shdw(const struct lpddr2_timings *timings,
471 const struct lpddr2_min_tck *min_tck,
472 const struct lpddr2_addressing *addressing,
473 u32 type)
474{
475 u32 tim2 = 0, val = 0;
476
477 val = min_tck->tCKE - 1;
478 tim2 |= val << T_CKE_SHIFT;
479
480 val = max(min_tck->tRTP, DIV_ROUND_UP(timings->tRTP, t_ck)) - 1;
481 tim2 |= val << T_RTP_SHIFT;
482
483 /* tXSNR = tRFCab_ps + 10 ns(tRFCab_ps for LPDDR2). */
484 val = DIV_ROUND_UP(addressing->tRFCab_ps + 10000, t_ck) - 1;
485 tim2 |= val << T_XSNR_SHIFT;
486
487 /* XSRD same as XSNR for LPDDR2 */
488 tim2 |= val << T_XSRD_SHIFT;
489
490 val = max(min_tck->tXP, DIV_ROUND_UP(timings->tXP, t_ck)) - 1;
491 tim2 |= val << T_XP_SHIFT;
492
493 return tim2;
494}
495
496static u32 get_sdram_tim_3_shdw(const struct lpddr2_timings *timings,
497 const struct lpddr2_min_tck *min_tck,
498 const struct lpddr2_addressing *addressing,
499 u32 type, u32 ip_rev, u32 derated)
500{
501 u32 tim3 = 0, val = 0, t_dqsck;
502
503 val = timings->tRAS_max_ns / addressing->tREFI_ns - 1;
504 val = val > 0xF ? 0xF : val;
505 tim3 |= val << T_RAS_MAX_SHIFT;
506
507 val = DIV_ROUND_UP(addressing->tRFCab_ps, t_ck) - 1;
508 tim3 |= val << T_RFC_SHIFT;
509
510 t_dqsck = (derated == EMIF_DERATED_TIMINGS) ?
511 timings->tDQSCK_max_derated : timings->tDQSCK_max;
512 if (ip_rev == EMIF_4D5)
513 val = DIV_ROUND_UP(t_dqsck + 1000, t_ck) - 1;
514 else
515 val = DIV_ROUND_UP(t_dqsck, t_ck) - 1;
516
517 tim3 |= val << T_TDQSCKMAX_SHIFT;
518
519 val = DIV_ROUND_UP(timings->tZQCS, t_ck) - 1;
520 tim3 |= val << ZQ_ZQCS_SHIFT;
521
522 val = DIV_ROUND_UP(timings->tCKESR, t_ck);
523 val = max(min_tck->tCKESR, val) - 1;
524 tim3 |= val << T_CKESR_SHIFT;
525
526 if (ip_rev == EMIF_4D5) {
527 tim3 |= (EMIF_T_CSTA - 1) << T_CSTA_SHIFT;
528
529 val = DIV_ROUND_UP(EMIF_T_PDLL_UL, 128) - 1;
530 tim3 |= val << T_PDLL_UL_SHIFT;
531 }
532
533 return tim3;
534}
535
98231c4f
A
536static u32 get_zq_config_reg(const struct lpddr2_addressing *addressing,
537 bool cs1_used, bool cal_resistors_per_cs)
538{
539 u32 zq = 0, val = 0;
540
541 val = EMIF_ZQCS_INTERVAL_US * 1000 / addressing->tREFI_ns;
542 zq |= val << ZQ_REFINTERVAL_SHIFT;
543
544 val = DIV_ROUND_UP(T_ZQCL_DEFAULT_NS, T_ZQCS_DEFAULT_NS) - 1;
545 zq |= val << ZQ_ZQCL_MULT_SHIFT;
546
547 val = DIV_ROUND_UP(T_ZQINIT_DEFAULT_NS, T_ZQCL_DEFAULT_NS) - 1;
548 zq |= val << ZQ_ZQINIT_MULT_SHIFT;
549
550 zq |= ZQ_SFEXITEN_ENABLE << ZQ_SFEXITEN_SHIFT;
551
552 if (cal_resistors_per_cs)
553 zq |= ZQ_DUALCALEN_ENABLE << ZQ_DUALCALEN_SHIFT;
554 else
555 zq |= ZQ_DUALCALEN_DISABLE << ZQ_DUALCALEN_SHIFT;
556
557 zq |= ZQ_CS0EN_MASK; /* CS0 is used for sure */
558
559 val = cs1_used ? 1 : 0;
560 zq |= val << ZQ_CS1EN_SHIFT;
561
562 return zq;
563}
564
565static u32 get_temp_alert_config(const struct lpddr2_addressing *addressing,
566 const struct emif_custom_configs *custom_configs, bool cs1_used,
567 u32 sdram_io_width, u32 emif_bus_width)
568{
569 u32 alert = 0, interval, devcnt;
570
571 if (custom_configs && (custom_configs->mask &
572 EMIF_CUSTOM_CONFIG_TEMP_ALERT_POLL_INTERVAL))
573 interval = custom_configs->temp_alert_poll_interval_ms;
574 else
575 interval = TEMP_ALERT_POLL_INTERVAL_DEFAULT_MS;
576
577 interval *= 1000000; /* Convert to ns */
578 interval /= addressing->tREFI_ns; /* Convert to refresh cycles */
579 alert |= (interval << TA_REFINTERVAL_SHIFT);
580
581 /*
582 * sdram_io_width is in 'log2(x) - 1' form. Convert emif_bus_width
583 * also to this form and subtract to get TA_DEVCNT, which is
584 * in log2(x) form.
585 */
586 emif_bus_width = __fls(emif_bus_width) - 1;
587 devcnt = emif_bus_width - sdram_io_width;
588 alert |= devcnt << TA_DEVCNT_SHIFT;
589
590 /* DEVWDT is in 'log2(x) - 3' form */
591 alert |= (sdram_io_width - 2) << TA_DEVWDT_SHIFT;
592
593 alert |= 1 << TA_SFEXITEN_SHIFT;
594 alert |= 1 << TA_CS0EN_SHIFT;
595 alert |= (cs1_used ? 1 : 0) << TA_CS1EN_SHIFT;
596
597 return alert;
598}
599
a93de288
A
600static u32 get_read_idle_ctrl_shdw(u8 volt_ramp)
601{
602 u32 idle = 0, val = 0;
603
604 /*
605 * Maximum value in normal conditions and increased frequency
606 * when voltage is ramping
607 */
608 if (volt_ramp)
609 val = READ_IDLE_INTERVAL_DVFS / t_ck / 64 - 1;
610 else
611 val = 0x1FF;
612
613 /*
614 * READ_IDLE_CTRL register in EMIF4D has same offset and fields
615 * as DLL_CALIB_CTRL in EMIF4D5, so use the same shifts
616 */
617 idle |= val << DLL_CALIB_INTERVAL_SHIFT;
618 idle |= EMIF_READ_IDLE_LEN_VAL << ACK_WAIT_SHIFT;
619
620 return idle;
621}
622
623static u32 get_dll_calib_ctrl_shdw(u8 volt_ramp)
624{
625 u32 calib = 0, val = 0;
626
627 if (volt_ramp == DDR_VOLTAGE_RAMPING)
628 val = DLL_CALIB_INTERVAL_DVFS / t_ck / 16 - 1;
629 else
630 val = 0; /* Disabled when voltage is stable */
631
632 calib |= val << DLL_CALIB_INTERVAL_SHIFT;
633 calib |= DLL_CALIB_ACK_WAIT_VAL << ACK_WAIT_SHIFT;
634
635 return calib;
636}
637
638static u32 get_ddr_phy_ctrl_1_attilaphy_4d(const struct lpddr2_timings *timings,
639 u32 freq, u8 RL)
640{
641 u32 phy = EMIF_DDR_PHY_CTRL_1_BASE_VAL_ATTILAPHY, val = 0;
642
643 val = RL + DIV_ROUND_UP(timings->tDQSCK_max, t_ck) - 1;
644 phy |= val << READ_LATENCY_SHIFT_4D;
645
646 if (freq <= 100000000)
647 val = EMIF_DLL_SLAVE_DLY_CTRL_100_MHZ_AND_LESS_ATTILAPHY;
648 else if (freq <= 200000000)
649 val = EMIF_DLL_SLAVE_DLY_CTRL_200_MHZ_ATTILAPHY;
650 else
651 val = EMIF_DLL_SLAVE_DLY_CTRL_400_MHZ_ATTILAPHY;
652
653 phy |= val << DLL_SLAVE_DLY_CTRL_SHIFT_4D;
654
655 return phy;
656}
657
658static u32 get_phy_ctrl_1_intelliphy_4d5(u32 freq, u8 cl)
659{
660 u32 phy = EMIF_DDR_PHY_CTRL_1_BASE_VAL_INTELLIPHY, half_delay;
661
662 /*
663 * DLL operates at 266 MHz. If DDR frequency is near 266 MHz,
664 * half-delay is not needed else set half-delay
665 */
666 if (freq >= 265000000 && freq < 267000000)
667 half_delay = 0;
668 else
669 half_delay = 1;
670
671 phy |= half_delay << DLL_HALF_DELAY_SHIFT_4D5;
672 phy |= ((cl + DIV_ROUND_UP(EMIF_PHY_TOTAL_READ_LATENCY_INTELLIPHY_PS,
673 t_ck) - 1) << READ_LATENCY_SHIFT_4D5);
674
675 return phy;
676}
677
678static u32 get_ext_phy_ctrl_2_intelliphy_4d5(void)
679{
680 u32 fifo_we_slave_ratio;
681
682 fifo_we_slave_ratio = DIV_ROUND_CLOSEST(
683 EMIF_INTELLI_PHY_DQS_GATE_OPENING_DELAY_PS * 256 , t_ck);
684
685 return fifo_we_slave_ratio | fifo_we_slave_ratio << 11 |
686 fifo_we_slave_ratio << 22;
687}
688
689static u32 get_ext_phy_ctrl_3_intelliphy_4d5(void)
690{
691 u32 fifo_we_slave_ratio;
692
693 fifo_we_slave_ratio = DIV_ROUND_CLOSEST(
694 EMIF_INTELLI_PHY_DQS_GATE_OPENING_DELAY_PS * 256 , t_ck);
695
696 return fifo_we_slave_ratio >> 10 | fifo_we_slave_ratio << 1 |
697 fifo_we_slave_ratio << 12 | fifo_we_slave_ratio << 23;
698}
699
700static u32 get_ext_phy_ctrl_4_intelliphy_4d5(void)
701{
702 u32 fifo_we_slave_ratio;
703
704 fifo_we_slave_ratio = DIV_ROUND_CLOSEST(
705 EMIF_INTELLI_PHY_DQS_GATE_OPENING_DELAY_PS * 256 , t_ck);
706
707 return fifo_we_slave_ratio >> 9 | fifo_we_slave_ratio << 2 |
708 fifo_we_slave_ratio << 13;
709}
710
711static u32 get_pwr_mgmt_ctrl(u32 freq, struct emif_data *emif, u32 ip_rev)
712{
713 u32 pwr_mgmt_ctrl = 0, timeout;
714 u32 lpmode = EMIF_LP_MODE_SELF_REFRESH;
715 u32 timeout_perf = EMIF_LP_MODE_TIMEOUT_PERFORMANCE;
716 u32 timeout_pwr = EMIF_LP_MODE_TIMEOUT_POWER;
717 u32 freq_threshold = EMIF_LP_MODE_FREQ_THRESHOLD;
25aaacd2
NM
718 u32 mask;
719 u8 shift;
a93de288
A
720
721 struct emif_custom_configs *cust_cfgs = emif->plat_data->custom_configs;
722
723 if (cust_cfgs && (cust_cfgs->mask & EMIF_CUSTOM_CONFIG_LPMODE)) {
724 lpmode = cust_cfgs->lpmode;
725 timeout_perf = cust_cfgs->lpmode_timeout_performance;
726 timeout_pwr = cust_cfgs->lpmode_timeout_power;
727 freq_threshold = cust_cfgs->lpmode_freq_threshold;
728 }
729
730 /* Timeout based on DDR frequency */
731 timeout = freq >= freq_threshold ? timeout_perf : timeout_pwr;
732
0a5f19cf
LV
733 /*
734 * The value to be set in register is "log2(timeout) - 3"
735 * if timeout < 16 load 0 in register
736 * if timeout is not a power of 2, round to next highest power of 2
737 */
a93de288
A
738 if (timeout < 16) {
739 timeout = 0;
740 } else {
a93de288 741 if (timeout & (timeout - 1))
0a5f19cf
LV
742 timeout <<= 1;
743 timeout = __fls(timeout) - 3;
a93de288
A
744 }
745
746 switch (lpmode) {
747 case EMIF_LP_MODE_CLOCK_STOP:
25aaacd2
NM
748 shift = CS_TIM_SHIFT;
749 mask = CS_TIM_MASK;
a93de288
A
750 break;
751 case EMIF_LP_MODE_SELF_REFRESH:
752 /* Workaround for errata i735 */
753 if (timeout < 6)
754 timeout = 6;
755
25aaacd2
NM
756 shift = SR_TIM_SHIFT;
757 mask = SR_TIM_MASK;
a93de288
A
758 break;
759 case EMIF_LP_MODE_PWR_DN:
25aaacd2
NM
760 shift = PD_TIM_SHIFT;
761 mask = PD_TIM_MASK;
a93de288
A
762 break;
763 case EMIF_LP_MODE_DISABLE:
764 default:
25aaacd2
NM
765 mask = 0;
766 shift = 0;
767 break;
768 }
769 /* Round to maximum in case of overflow, BUT warn! */
770 if (lpmode != EMIF_LP_MODE_DISABLE && timeout > mask >> shift) {
771 pr_err("TIMEOUT Overflow - lpmode=%d perf=%d pwr=%d freq=%d\n",
772 lpmode,
773 timeout_perf,
774 timeout_pwr,
775 freq_threshold);
776 WARN(1, "timeout=0x%02x greater than 0x%02x. Using max\n",
777 timeout, mask >> shift);
778 timeout = mask >> shift;
a93de288
A
779 }
780
25aaacd2
NM
781 /* Setup required timing */
782 pwr_mgmt_ctrl = (timeout << shift) & mask;
783 /* setup a default mask for rest of the modes */
784 pwr_mgmt_ctrl |= (SR_TIM_MASK | CS_TIM_MASK | PD_TIM_MASK) &
785 ~mask;
786
a93de288
A
787 /* No CS_TIM in EMIF_4D5 */
788 if (ip_rev == EMIF_4D5)
789 pwr_mgmt_ctrl &= ~CS_TIM_MASK;
790
791 pwr_mgmt_ctrl |= lpmode << LP_MODE_SHIFT;
792
793 return pwr_mgmt_ctrl;
794}
795
68b4aee3
A
796/*
797 * Get the temperature level of the EMIF instance:
798 * Reads the MR4 register of attached SDRAM parts to find out the temperature
799 * level. If there are two parts attached(one on each CS), then the temperature
800 * level for the EMIF instance is the higher of the two temperatures.
801 */
802static void get_temperature_level(struct emif_data *emif)
803{
804 u32 temp, temperature_level;
805 void __iomem *base;
806
807 base = emif->base;
808
809 /* Read mode register 4 */
810 writel(DDR_MR4, base + EMIF_LPDDR2_MODE_REG_CONFIG);
811 temperature_level = readl(base + EMIF_LPDDR2_MODE_REG_DATA);
812 temperature_level = (temperature_level & MR4_SDRAM_REF_RATE_MASK) >>
813 MR4_SDRAM_REF_RATE_SHIFT;
814
815 if (emif->plat_data->device_info->cs1_used) {
816 writel(DDR_MR4 | CS_MASK, base + EMIF_LPDDR2_MODE_REG_CONFIG);
817 temp = readl(base + EMIF_LPDDR2_MODE_REG_DATA);
818 temp = (temp & MR4_SDRAM_REF_RATE_MASK)
819 >> MR4_SDRAM_REF_RATE_SHIFT;
820 temperature_level = max(temp, temperature_level);
821 }
822
823 /* treat everything less than nominal(3) in MR4 as nominal */
824 if (unlikely(temperature_level < SDRAM_TEMP_NOMINAL))
825 temperature_level = SDRAM_TEMP_NOMINAL;
826
827 /* if we get reserved value in MR4 persist with the existing value */
828 if (likely(temperature_level != SDRAM_TEMP_RESERVED_4))
829 emif->temperature_level = temperature_level;
830}
831
a93de288
A
832/*
833 * Program EMIF shadow registers that are not dependent on temperature
834 * or voltage
835 */
836static void setup_registers(struct emif_data *emif, struct emif_regs *regs)
837{
838 void __iomem *base = emif->base;
839
840 writel(regs->sdram_tim2_shdw, base + EMIF_SDRAM_TIMING_2_SHDW);
841 writel(regs->phy_ctrl_1_shdw, base + EMIF_DDR_PHY_CTRL_1_SHDW);
9ea03dec
A
842 writel(regs->pwr_mgmt_ctrl_shdw,
843 base + EMIF_POWER_MANAGEMENT_CTRL_SHDW);
a93de288
A
844
845 /* Settings specific for EMIF4D5 */
846 if (emif->plat_data->ip_rev != EMIF_4D5)
847 return;
848 writel(regs->ext_phy_ctrl_2_shdw, base + EMIF_EXT_PHY_CTRL_2_SHDW);
849 writel(regs->ext_phy_ctrl_3_shdw, base + EMIF_EXT_PHY_CTRL_3_SHDW);
850 writel(regs->ext_phy_ctrl_4_shdw, base + EMIF_EXT_PHY_CTRL_4_SHDW);
851}
852
853/*
854 * When voltage ramps dll calibration and forced read idle should
855 * happen more often
856 */
857static void setup_volt_sensitive_regs(struct emif_data *emif,
858 struct emif_regs *regs, u32 volt_state)
859{
860 u32 calib_ctrl;
861 void __iomem *base = emif->base;
862
863 /*
864 * EMIF_READ_IDLE_CTRL in EMIF4D refers to the same register as
865 * EMIF_DLL_CALIB_CTRL in EMIF4D5 and dll_calib_ctrl_shadow_*
866 * is an alias of the respective read_idle_ctrl_shdw_* (members of
867 * a union). So, the below code takes care of both cases
868 */
869 if (volt_state == DDR_VOLTAGE_RAMPING)
870 calib_ctrl = regs->dll_calib_ctrl_shdw_volt_ramp;
871 else
872 calib_ctrl = regs->dll_calib_ctrl_shdw_normal;
873
874 writel(calib_ctrl, base + EMIF_DLL_CALIB_CTRL_SHDW);
875}
876
877/*
878 * setup_temperature_sensitive_regs() - set the timings for temperature
879 * sensitive registers. This happens once at initialisation time based
880 * on the temperature at boot time and subsequently based on the temperature
881 * alert interrupt. Temperature alert can happen when the temperature
882 * increases or drops. So this function can have the effect of either
883 * derating the timings or going back to nominal values.
884 */
885static void setup_temperature_sensitive_regs(struct emif_data *emif,
886 struct emif_regs *regs)
887{
888 u32 tim1, tim3, ref_ctrl, type;
889 void __iomem *base = emif->base;
890 u32 temperature;
891
892 type = emif->plat_data->device_info->type;
893
894 tim1 = regs->sdram_tim1_shdw;
895 tim3 = regs->sdram_tim3_shdw;
896 ref_ctrl = regs->ref_ctrl_shdw;
897
898 /* No de-rating for non-lpddr2 devices */
899 if (type != DDR_TYPE_LPDDR2_S2 && type != DDR_TYPE_LPDDR2_S4)
900 goto out;
901
902 temperature = emif->temperature_level;
903 if (temperature == SDRAM_TEMP_HIGH_DERATE_REFRESH) {
904 ref_ctrl = regs->ref_ctrl_shdw_derated;
905 } else if (temperature == SDRAM_TEMP_HIGH_DERATE_REFRESH_AND_TIMINGS) {
906 tim1 = regs->sdram_tim1_shdw_derated;
907 tim3 = regs->sdram_tim3_shdw_derated;
908 ref_ctrl = regs->ref_ctrl_shdw_derated;
909 }
910
911out:
912 writel(tim1, base + EMIF_SDRAM_TIMING_1_SHDW);
913 writel(tim3, base + EMIF_SDRAM_TIMING_3_SHDW);
914 writel(ref_ctrl, base + EMIF_SDRAM_REFRESH_CTRL_SHDW);
915}
916
68b4aee3
A
917static irqreturn_t handle_temp_alert(void __iomem *base, struct emif_data *emif)
918{
919 u32 old_temp_level;
920 irqreturn_t ret = IRQ_HANDLED;
921
922 spin_lock_irqsave(&emif_lock, irq_state);
923 old_temp_level = emif->temperature_level;
924 get_temperature_level(emif);
925
926 if (unlikely(emif->temperature_level == old_temp_level)) {
927 goto out;
928 } else if (!emif->curr_regs) {
929 dev_err(emif->dev, "temperature alert before registers are calculated, not de-rating timings\n");
930 goto out;
931 }
932
933 if (emif->temperature_level < old_temp_level ||
934 emif->temperature_level == SDRAM_TEMP_VERY_HIGH_SHUTDOWN) {
935 /*
936 * Temperature coming down - defer handling to thread OR
937 * Temperature far too high - do kernel_power_off() from
938 * thread context
939 */
940 ret = IRQ_WAKE_THREAD;
941 } else {
942 /* Temperature is going up - handle immediately */
943 setup_temperature_sensitive_regs(emif, emif->curr_regs);
944 do_freq_update();
945 }
946
947out:
948 spin_unlock_irqrestore(&emif_lock, irq_state);
949 return ret;
950}
951
952static irqreturn_t emif_interrupt_handler(int irq, void *dev_id)
953{
954 u32 interrupts;
955 struct emif_data *emif = dev_id;
956 void __iomem *base = emif->base;
957 struct device *dev = emif->dev;
958 irqreturn_t ret = IRQ_HANDLED;
959
960 /* Save the status and clear it */
961 interrupts = readl(base + EMIF_SYSTEM_OCP_INTERRUPT_STATUS);
962 writel(interrupts, base + EMIF_SYSTEM_OCP_INTERRUPT_STATUS);
963
964 /*
965 * Handle temperature alert
966 * Temperature alert should be same for all ports
967 * So, it's enough to process it only for one of the ports
968 */
969 if (interrupts & TA_SYS_MASK)
970 ret = handle_temp_alert(base, emif);
971
972 if (interrupts & ERR_SYS_MASK)
973 dev_err(dev, "Access error from SYS port - %x\n", interrupts);
974
975 if (emif->plat_data->hw_caps & EMIF_HW_CAPS_LL_INTERFACE) {
976 /* Save the status and clear it */
977 interrupts = readl(base + EMIF_LL_OCP_INTERRUPT_STATUS);
978 writel(interrupts, base + EMIF_LL_OCP_INTERRUPT_STATUS);
979
980 if (interrupts & ERR_LL_MASK)
981 dev_err(dev, "Access error from LL port - %x\n",
982 interrupts);
983 }
984
985 return ret;
986}
987
988static irqreturn_t emif_threaded_isr(int irq, void *dev_id)
989{
990 struct emif_data *emif = dev_id;
991
992 if (emif->temperature_level == SDRAM_TEMP_VERY_HIGH_SHUTDOWN) {
993 dev_emerg(emif->dev, "SDRAM temperature exceeds operating limit.. Needs shut down!!!\n");
994 kernel_power_off();
995 return IRQ_HANDLED;
996 }
997
998 spin_lock_irqsave(&emif_lock, irq_state);
999
1000 if (emif->curr_regs) {
1001 setup_temperature_sensitive_regs(emif, emif->curr_regs);
1002 do_freq_update();
1003 } else {
1004 dev_err(emif->dev, "temperature alert before registers are calculated, not de-rating timings\n");
1005 }
1006
1007 spin_unlock_irqrestore(&emif_lock, irq_state);
1008
1009 return IRQ_HANDLED;
1010}
1011
1012static void clear_all_interrupts(struct emif_data *emif)
1013{
1014 void __iomem *base = emif->base;
1015
1016 writel(readl(base + EMIF_SYSTEM_OCP_INTERRUPT_STATUS),
1017 base + EMIF_SYSTEM_OCP_INTERRUPT_STATUS);
1018 if (emif->plat_data->hw_caps & EMIF_HW_CAPS_LL_INTERFACE)
1019 writel(readl(base + EMIF_LL_OCP_INTERRUPT_STATUS),
1020 base + EMIF_LL_OCP_INTERRUPT_STATUS);
1021}
1022
1023static void disable_and_clear_all_interrupts(struct emif_data *emif)
1024{
1025 void __iomem *base = emif->base;
1026
1027 /* Disable all interrupts */
1028 writel(readl(base + EMIF_SYSTEM_OCP_INTERRUPT_ENABLE_SET),
1029 base + EMIF_SYSTEM_OCP_INTERRUPT_ENABLE_CLEAR);
1030 if (emif->plat_data->hw_caps & EMIF_HW_CAPS_LL_INTERFACE)
1031 writel(readl(base + EMIF_LL_OCP_INTERRUPT_ENABLE_SET),
1032 base + EMIF_LL_OCP_INTERRUPT_ENABLE_CLEAR);
1033
1034 /* Clear all interrupts */
1035 clear_all_interrupts(emif);
1036}
1037
1038static int __init_or_module setup_interrupts(struct emif_data *emif, u32 irq)
1039{
1040 u32 interrupts, type;
1041 void __iomem *base = emif->base;
1042
1043 type = emif->plat_data->device_info->type;
1044
1045 clear_all_interrupts(emif);
1046
1047 /* Enable interrupts for SYS interface */
1048 interrupts = EN_ERR_SYS_MASK;
1049 if (type == DDR_TYPE_LPDDR2_S2 || type == DDR_TYPE_LPDDR2_S4)
1050 interrupts |= EN_TA_SYS_MASK;
1051 writel(interrupts, base + EMIF_SYSTEM_OCP_INTERRUPT_ENABLE_SET);
1052
1053 /* Enable interrupts for LL interface */
1054 if (emif->plat_data->hw_caps & EMIF_HW_CAPS_LL_INTERFACE) {
1055 /* TA need not be enabled for LL */
1056 interrupts = EN_ERR_LL_MASK;
1057 writel(interrupts, base + EMIF_LL_OCP_INTERRUPT_ENABLE_SET);
1058 }
1059
1060 /* setup IRQ handlers */
1061 return devm_request_threaded_irq(emif->dev, irq,
1062 emif_interrupt_handler,
1063 emif_threaded_isr,
1064 0, dev_name(emif->dev),
1065 emif);
1066
1067}
1068
98231c4f
A
1069static void __init_or_module emif_onetime_settings(struct emif_data *emif)
1070{
1071 u32 pwr_mgmt_ctrl, zq, temp_alert_cfg;
1072 void __iomem *base = emif->base;
1073 const struct lpddr2_addressing *addressing;
1074 const struct ddr_device_info *device_info;
1075
1076 device_info = emif->plat_data->device_info;
1077 addressing = get_addressing_table(device_info);
1078
1079 /*
1080 * Init power management settings
1081 * We don't know the frequency yet. Use a high frequency
1082 * value for a conservative timeout setting
1083 */
1084 pwr_mgmt_ctrl = get_pwr_mgmt_ctrl(1000000000, emif,
1085 emif->plat_data->ip_rev);
1086 emif->lpmode = (pwr_mgmt_ctrl & LP_MODE_MASK) >> LP_MODE_SHIFT;
1087 writel(pwr_mgmt_ctrl, base + EMIF_POWER_MANAGEMENT_CONTROL);
1088
1089 /* Init ZQ calibration settings */
1090 zq = get_zq_config_reg(addressing, device_info->cs1_used,
1091 device_info->cal_resistors_per_cs);
1092 writel(zq, base + EMIF_SDRAM_OUTPUT_IMPEDANCE_CALIBRATION_CONFIG);
1093
1094 /* Check temperature level temperature level*/
1095 get_temperature_level(emif);
1096 if (emif->temperature_level == SDRAM_TEMP_VERY_HIGH_SHUTDOWN)
1097 dev_emerg(emif->dev, "SDRAM temperature exceeds operating limit.. Needs shut down!!!\n");
1098
1099 /* Init temperature polling */
1100 temp_alert_cfg = get_temp_alert_config(addressing,
1101 emif->plat_data->custom_configs, device_info->cs1_used,
1102 device_info->io_width, get_emif_bus_width(emif));
1103 writel(temp_alert_cfg, base + EMIF_TEMPERATURE_ALERT_CONFIG);
1104
1105 /*
1106 * Program external PHY control registers that are not frequency
1107 * dependent
1108 */
1109 if (emif->plat_data->phy_type != EMIF_PHY_TYPE_INTELLIPHY)
1110 return;
1111 writel(EMIF_EXT_PHY_CTRL_1_VAL, base + EMIF_EXT_PHY_CTRL_1_SHDW);
1112 writel(EMIF_EXT_PHY_CTRL_5_VAL, base + EMIF_EXT_PHY_CTRL_5_SHDW);
1113 writel(EMIF_EXT_PHY_CTRL_6_VAL, base + EMIF_EXT_PHY_CTRL_6_SHDW);
1114 writel(EMIF_EXT_PHY_CTRL_7_VAL, base + EMIF_EXT_PHY_CTRL_7_SHDW);
1115 writel(EMIF_EXT_PHY_CTRL_8_VAL, base + EMIF_EXT_PHY_CTRL_8_SHDW);
1116 writel(EMIF_EXT_PHY_CTRL_9_VAL, base + EMIF_EXT_PHY_CTRL_9_SHDW);
1117 writel(EMIF_EXT_PHY_CTRL_10_VAL, base + EMIF_EXT_PHY_CTRL_10_SHDW);
1118 writel(EMIF_EXT_PHY_CTRL_11_VAL, base + EMIF_EXT_PHY_CTRL_11_SHDW);
1119 writel(EMIF_EXT_PHY_CTRL_12_VAL, base + EMIF_EXT_PHY_CTRL_12_SHDW);
1120 writel(EMIF_EXT_PHY_CTRL_13_VAL, base + EMIF_EXT_PHY_CTRL_13_SHDW);
1121 writel(EMIF_EXT_PHY_CTRL_14_VAL, base + EMIF_EXT_PHY_CTRL_14_SHDW);
1122 writel(EMIF_EXT_PHY_CTRL_15_VAL, base + EMIF_EXT_PHY_CTRL_15_SHDW);
1123 writel(EMIF_EXT_PHY_CTRL_16_VAL, base + EMIF_EXT_PHY_CTRL_16_SHDW);
1124 writel(EMIF_EXT_PHY_CTRL_17_VAL, base + EMIF_EXT_PHY_CTRL_17_SHDW);
1125 writel(EMIF_EXT_PHY_CTRL_18_VAL, base + EMIF_EXT_PHY_CTRL_18_SHDW);
1126 writel(EMIF_EXT_PHY_CTRL_19_VAL, base + EMIF_EXT_PHY_CTRL_19_SHDW);
1127 writel(EMIF_EXT_PHY_CTRL_20_VAL, base + EMIF_EXT_PHY_CTRL_20_SHDW);
1128 writel(EMIF_EXT_PHY_CTRL_21_VAL, base + EMIF_EXT_PHY_CTRL_21_SHDW);
1129 writel(EMIF_EXT_PHY_CTRL_22_VAL, base + EMIF_EXT_PHY_CTRL_22_SHDW);
1130 writel(EMIF_EXT_PHY_CTRL_23_VAL, base + EMIF_EXT_PHY_CTRL_23_SHDW);
1131 writel(EMIF_EXT_PHY_CTRL_24_VAL, base + EMIF_EXT_PHY_CTRL_24_SHDW);
1132}
1133
7ec94453
A
1134static void get_default_timings(struct emif_data *emif)
1135{
1136 struct emif_platform_data *pd = emif->plat_data;
1137
1138 pd->timings = lpddr2_jedec_timings;
1139 pd->timings_arr_size = ARRAY_SIZE(lpddr2_jedec_timings);
1140
1141 dev_warn(emif->dev, "%s: using default timings\n", __func__);
1142}
1143
1144static int is_dev_data_valid(u32 type, u32 density, u32 io_width, u32 phy_type,
1145 u32 ip_rev, struct device *dev)
1146{
1147 int valid;
1148
1149 valid = (type == DDR_TYPE_LPDDR2_S4 ||
1150 type == DDR_TYPE_LPDDR2_S2)
1151 && (density >= DDR_DENSITY_64Mb
1152 && density <= DDR_DENSITY_8Gb)
1153 && (io_width >= DDR_IO_WIDTH_8
1154 && io_width <= DDR_IO_WIDTH_32);
1155
1156 /* Combinations of EMIF and PHY revisions that we support today */
1157 switch (ip_rev) {
1158 case EMIF_4D:
1159 valid = valid && (phy_type == EMIF_PHY_TYPE_ATTILAPHY);
1160 break;
1161 case EMIF_4D5:
1162 valid = valid && (phy_type == EMIF_PHY_TYPE_INTELLIPHY);
1163 break;
1164 default:
1165 valid = 0;
1166 }
1167
1168 if (!valid)
1169 dev_err(dev, "%s: invalid DDR details\n", __func__);
1170 return valid;
1171}
1172
1173static int is_custom_config_valid(struct emif_custom_configs *cust_cfgs,
1174 struct device *dev)
1175{
1176 int valid = 1;
1177
1178 if ((cust_cfgs->mask & EMIF_CUSTOM_CONFIG_LPMODE) &&
1179 (cust_cfgs->lpmode != EMIF_LP_MODE_DISABLE))
1180 valid = cust_cfgs->lpmode_freq_threshold &&
1181 cust_cfgs->lpmode_timeout_performance &&
1182 cust_cfgs->lpmode_timeout_power;
1183
1184 if (cust_cfgs->mask & EMIF_CUSTOM_CONFIG_TEMP_ALERT_POLL_INTERVAL)
1185 valid = valid && cust_cfgs->temp_alert_poll_interval_ms;
1186
1187 if (!valid)
1188 dev_warn(dev, "%s: invalid custom configs\n", __func__);
1189
1190 return valid;
1191}
1192
e6b42eb6
A
1193#if defined(CONFIG_OF)
1194static void __init_or_module of_get_custom_configs(struct device_node *np_emif,
1195 struct emif_data *emif)
1196{
1197 struct emif_custom_configs *cust_cfgs = NULL;
1198 int len;
1199 const int *lpmode, *poll_intvl;
1200
1201 lpmode = of_get_property(np_emif, "low-power-mode", &len);
1202 poll_intvl = of_get_property(np_emif, "temp-alert-poll-interval", &len);
1203
1204 if (lpmode || poll_intvl)
1205 cust_cfgs = devm_kzalloc(emif->dev, sizeof(*cust_cfgs),
1206 GFP_KERNEL);
1207
1208 if (!cust_cfgs)
1209 return;
1210
1211 if (lpmode) {
1212 cust_cfgs->mask |= EMIF_CUSTOM_CONFIG_LPMODE;
1213 cust_cfgs->lpmode = *lpmode;
1214 of_property_read_u32(np_emif,
1215 "low-power-mode-timeout-performance",
1216 &cust_cfgs->lpmode_timeout_performance);
1217 of_property_read_u32(np_emif,
1218 "low-power-mode-timeout-power",
1219 &cust_cfgs->lpmode_timeout_power);
1220 of_property_read_u32(np_emif,
1221 "low-power-mode-freq-threshold",
1222 &cust_cfgs->lpmode_freq_threshold);
1223 }
1224
1225 if (poll_intvl) {
1226 cust_cfgs->mask |=
1227 EMIF_CUSTOM_CONFIG_TEMP_ALERT_POLL_INTERVAL;
1228 cust_cfgs->temp_alert_poll_interval_ms = *poll_intvl;
1229 }
1230
1231 if (!is_custom_config_valid(cust_cfgs, emif->dev)) {
1232 devm_kfree(emif->dev, cust_cfgs);
1233 return;
1234 }
1235
1236 emif->plat_data->custom_configs = cust_cfgs;
1237}
1238
1239static void __init_or_module of_get_ddr_info(struct device_node *np_emif,
1240 struct device_node *np_ddr,
1241 struct ddr_device_info *dev_info)
1242{
1243 u32 density = 0, io_width = 0;
1244 int len;
1245
1246 if (of_find_property(np_emif, "cs1-used", &len))
1247 dev_info->cs1_used = true;
1248
1249 if (of_find_property(np_emif, "cal-resistor-per-cs", &len))
1250 dev_info->cal_resistors_per_cs = true;
1251
1252 if (of_device_is_compatible(np_ddr , "jedec,lpddr2-s4"))
1253 dev_info->type = DDR_TYPE_LPDDR2_S4;
1254 else if (of_device_is_compatible(np_ddr , "jedec,lpddr2-s2"))
1255 dev_info->type = DDR_TYPE_LPDDR2_S2;
1256
1257 of_property_read_u32(np_ddr, "density", &density);
1258 of_property_read_u32(np_ddr, "io-width", &io_width);
1259
1260 /* Convert from density in Mb to the density encoding in jedc_ddr.h */
1261 if (density & (density - 1))
1262 dev_info->density = 0;
1263 else
1264 dev_info->density = __fls(density) - 5;
1265
1266 /* Convert from io_width in bits to io_width encoding in jedc_ddr.h */
1267 if (io_width & (io_width - 1))
1268 dev_info->io_width = 0;
1269 else
1270 dev_info->io_width = __fls(io_width) - 1;
1271}
1272
1273static struct emif_data * __init_or_module of_get_memory_device_details(
1274 struct device_node *np_emif, struct device *dev)
1275{
1276 struct emif_data *emif = NULL;
1277 struct ddr_device_info *dev_info = NULL;
1278 struct emif_platform_data *pd = NULL;
1279 struct device_node *np_ddr;
1280 int len;
1281
1282 np_ddr = of_parse_phandle(np_emif, "device-handle", 0);
1283 if (!np_ddr)
1284 goto error;
1285 emif = devm_kzalloc(dev, sizeof(struct emif_data), GFP_KERNEL);
1286 pd = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
1287 dev_info = devm_kzalloc(dev, sizeof(*dev_info), GFP_KERNEL);
1288
1289 if (!emif || !pd || !dev_info) {
1290 dev_err(dev, "%s: Out of memory!!\n",
1291 __func__);
1292 goto error;
1293 }
1294
1295 emif->plat_data = pd;
1296 pd->device_info = dev_info;
1297 emif->dev = dev;
1298 emif->np_ddr = np_ddr;
1299 emif->temperature_level = SDRAM_TEMP_NOMINAL;
1300
1301 if (of_device_is_compatible(np_emif, "ti,emif-4d"))
1302 emif->plat_data->ip_rev = EMIF_4D;
1303 else if (of_device_is_compatible(np_emif, "ti,emif-4d5"))
1304 emif->plat_data->ip_rev = EMIF_4D5;
1305
1306 of_property_read_u32(np_emif, "phy-type", &pd->phy_type);
1307
1308 if (of_find_property(np_emif, "hw-caps-ll-interface", &len))
1309 pd->hw_caps |= EMIF_HW_CAPS_LL_INTERFACE;
1310
1311 of_get_ddr_info(np_emif, np_ddr, dev_info);
1312 if (!is_dev_data_valid(pd->device_info->type, pd->device_info->density,
1313 pd->device_info->io_width, pd->phy_type, pd->ip_rev,
1314 emif->dev)) {
1315 dev_err(dev, "%s: invalid device data!!\n", __func__);
1316 goto error;
1317 }
1318 /*
1319 * For EMIF instances other than EMIF1 see if the devices connected
1320 * are exactly same as on EMIF1(which is typically the case). If so,
1321 * mark it as a duplicate of EMIF1. This will save some memory and
1322 * computation.
1323 */
1324 if (emif1 && emif1->np_ddr == np_ddr) {
1325 emif->duplicate = true;
1326 goto out;
1327 } else if (emif1) {
1328 dev_warn(emif->dev, "%s: Non-symmetric DDR geometry\n",
1329 __func__);
1330 }
1331
1332 of_get_custom_configs(np_emif, emif);
1333 emif->plat_data->timings = of_get_ddr_timings(np_ddr, emif->dev,
1334 emif->plat_data->device_info->type,
1335 &emif->plat_data->timings_arr_size);
1336
1337 emif->plat_data->min_tck = of_get_min_tck(np_ddr, emif->dev);
1338 goto out;
1339
1340error:
1341 return NULL;
1342out:
1343 return emif;
1344}
1345
1346#else
1347
1348static struct emif_data * __init_or_module of_get_memory_device_details(
1349 struct device_node *np_emif, struct device *dev)
1350{
1351 return NULL;
1352}
1353#endif
1354
7ec94453
A
1355static struct emif_data *__init_or_module get_device_details(
1356 struct platform_device *pdev)
1357{
1358 u32 size;
1359 struct emif_data *emif = NULL;
1360 struct ddr_device_info *dev_info;
1361 struct emif_custom_configs *cust_cfgs;
1362 struct emif_platform_data *pd;
1363 struct device *dev;
1364 void *temp;
1365
1366 pd = pdev->dev.platform_data;
1367 dev = &pdev->dev;
1368
1369 if (!(pd && pd->device_info && is_dev_data_valid(pd->device_info->type,
1370 pd->device_info->density, pd->device_info->io_width,
1371 pd->phy_type, pd->ip_rev, dev))) {
1372 dev_err(dev, "%s: invalid device data\n", __func__);
1373 goto error;
1374 }
1375
1376 emif = devm_kzalloc(dev, sizeof(*emif), GFP_KERNEL);
1377 temp = devm_kzalloc(dev, sizeof(*pd), GFP_KERNEL);
1378 dev_info = devm_kzalloc(dev, sizeof(*dev_info), GFP_KERNEL);
1379
1380 if (!emif || !pd || !dev_info) {
1381 dev_err(dev, "%s:%d: allocation error\n", __func__, __LINE__);
1382 goto error;
1383 }
1384
1385 memcpy(temp, pd, sizeof(*pd));
1386 pd = temp;
1387 memcpy(dev_info, pd->device_info, sizeof(*dev_info));
1388
1389 pd->device_info = dev_info;
1390 emif->plat_data = pd;
1391 emif->dev = dev;
1392 emif->temperature_level = SDRAM_TEMP_NOMINAL;
1393
1394 /*
1395 * For EMIF instances other than EMIF1 see if the devices connected
1396 * are exactly same as on EMIF1(which is typically the case). If so,
1397 * mark it as a duplicate of EMIF1 and skip copying timings data.
1398 * This will save some memory and some computation later.
1399 */
1400 emif->duplicate = emif1 && (memcmp(dev_info,
1401 emif1->plat_data->device_info,
1402 sizeof(struct ddr_device_info)) == 0);
1403
1404 if (emif->duplicate) {
1405 pd->timings = NULL;
1406 pd->min_tck = NULL;
1407 goto out;
1408 } else if (emif1) {
1409 dev_warn(emif->dev, "%s: Non-symmetric DDR geometry\n",
1410 __func__);
1411 }
1412
1413 /*
1414 * Copy custom configs - ignore allocation error, if any, as
1415 * custom_configs is not very critical
1416 */
1417 cust_cfgs = pd->custom_configs;
1418 if (cust_cfgs && is_custom_config_valid(cust_cfgs, dev)) {
1419 temp = devm_kzalloc(dev, sizeof(*cust_cfgs), GFP_KERNEL);
1420 if (temp)
1421 memcpy(temp, cust_cfgs, sizeof(*cust_cfgs));
1422 else
1423 dev_warn(dev, "%s:%d: allocation error\n", __func__,
1424 __LINE__);
1425 pd->custom_configs = temp;
1426 }
1427
1428 /*
1429 * Copy timings and min-tck values from platform data. If it is not
1430 * available or if memory allocation fails, use JEDEC defaults
1431 */
1432 size = sizeof(struct lpddr2_timings) * pd->timings_arr_size;
1433 if (pd->timings) {
1434 temp = devm_kzalloc(dev, size, GFP_KERNEL);
1435 if (temp) {
1436 memcpy(temp, pd->timings, sizeof(*pd->timings));
1437 pd->timings = temp;
1438 } else {
1439 dev_warn(dev, "%s:%d: allocation error\n", __func__,
1440 __LINE__);
1441 get_default_timings(emif);
1442 }
1443 } else {
1444 get_default_timings(emif);
1445 }
1446
1447 if (pd->min_tck) {
1448 temp = devm_kzalloc(dev, sizeof(*pd->min_tck), GFP_KERNEL);
1449 if (temp) {
1450 memcpy(temp, pd->min_tck, sizeof(*pd->min_tck));
1451 pd->min_tck = temp;
1452 } else {
1453 dev_warn(dev, "%s:%d: allocation error\n", __func__,
1454 __LINE__);
1455 pd->min_tck = &lpddr2_jedec_min_tck;
1456 }
1457 } else {
1458 pd->min_tck = &lpddr2_jedec_min_tck;
1459 }
1460
1461out:
1462 return emif;
1463
1464error:
1465 return NULL;
1466}
1467
1468static int __init_or_module emif_probe(struct platform_device *pdev)
1469{
1470 struct emif_data *emif;
1471 struct resource *res;
68b4aee3 1472 int irq;
7ec94453 1473
e6b42eb6
A
1474 if (pdev->dev.of_node)
1475 emif = of_get_memory_device_details(pdev->dev.of_node, &pdev->dev);
1476 else
1477 emif = get_device_details(pdev);
1478
7ec94453
A
1479 if (!emif) {
1480 pr_err("%s: error getting device data\n", __func__);
1481 goto error;
1482 }
1483
7ec94453 1484 list_add(&emif->node, &device_list);
a93de288 1485 emif->addressing = get_addressing_table(emif->plat_data->device_info);
7ec94453
A
1486
1487 /* Save pointers to each other in emif and device structures */
1488 emif->dev = &pdev->dev;
1489 platform_set_drvdata(pdev, emif);
1490
1491 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1492 if (!res) {
1493 dev_err(emif->dev, "%s: error getting memory resource\n",
1494 __func__);
1495 goto error;
1496 }
1497
06303c2e
TR
1498 emif->base = devm_ioremap_resource(emif->dev, res);
1499 if (IS_ERR(emif->base))
7ec94453 1500 goto error;
7ec94453 1501
68b4aee3
A
1502 irq = platform_get_irq(pdev, 0);
1503 if (irq < 0) {
1504 dev_err(emif->dev, "%s: error getting IRQ resource - %d\n",
1505 __func__, irq);
1506 goto error;
1507 }
1508
98231c4f 1509 emif_onetime_settings(emif);
aac10aaa 1510 emif_debugfs_init(emif);
68b4aee3
A
1511 disable_and_clear_all_interrupts(emif);
1512 setup_interrupts(emif, irq);
1513
a93de288
A
1514 /* One-time actions taken on probing the first device */
1515 if (!emif1) {
1516 emif1 = emif;
1517 spin_lock_init(&emif_lock);
1518
1519 /*
1520 * TODO: register notifiers for frequency and voltage
1521 * change here once the respective frameworks are
1522 * available
1523 */
1524 }
1525
68b4aee3
A
1526 dev_info(&pdev->dev, "%s: device configured with addr = %p and IRQ%d\n",
1527 __func__, emif->base, irq);
7ec94453
A
1528
1529 return 0;
1530error:
1531 return -ENODEV;
1532}
1533
aac10aaa
A
1534static int __exit emif_remove(struct platform_device *pdev)
1535{
1536 struct emif_data *emif = platform_get_drvdata(pdev);
1537
1538 emif_debugfs_exit(emif);
1539
1540 return 0;
1541}
1542
68b4aee3
A
1543static void emif_shutdown(struct platform_device *pdev)
1544{
1545 struct emif_data *emif = platform_get_drvdata(pdev);
1546
1547 disable_and_clear_all_interrupts(emif);
1548}
1549
a93de288
A
1550static int get_emif_reg_values(struct emif_data *emif, u32 freq,
1551 struct emif_regs *regs)
1552{
1553 u32 cs1_used, ip_rev, phy_type;
1554 u32 cl, type;
1555 const struct lpddr2_timings *timings;
1556 const struct lpddr2_min_tck *min_tck;
1557 const struct ddr_device_info *device_info;
1558 const struct lpddr2_addressing *addressing;
1559 struct emif_data *emif_for_calc;
1560 struct device *dev;
1561 const struct emif_custom_configs *custom_configs;
1562
1563 dev = emif->dev;
1564 /*
1565 * If the devices on this EMIF instance is duplicate of EMIF1,
1566 * use EMIF1 details for the calculation
1567 */
1568 emif_for_calc = emif->duplicate ? emif1 : emif;
1569 timings = get_timings_table(emif_for_calc, freq);
1570 addressing = emif_for_calc->addressing;
1571 if (!timings || !addressing) {
1572 dev_err(dev, "%s: not enough data available for %dHz",
1573 __func__, freq);
1574 return -1;
1575 }
1576
1577 device_info = emif_for_calc->plat_data->device_info;
1578 type = device_info->type;
1579 cs1_used = device_info->cs1_used;
1580 ip_rev = emif_for_calc->plat_data->ip_rev;
1581 phy_type = emif_for_calc->plat_data->phy_type;
1582
1583 min_tck = emif_for_calc->plat_data->min_tck;
1584 custom_configs = emif_for_calc->plat_data->custom_configs;
1585
1586 set_ddr_clk_period(freq);
1587
1588 regs->ref_ctrl_shdw = get_sdram_ref_ctrl_shdw(freq, addressing);
1589 regs->sdram_tim1_shdw = get_sdram_tim_1_shdw(timings, min_tck,
1590 addressing);
1591 regs->sdram_tim2_shdw = get_sdram_tim_2_shdw(timings, min_tck,
1592 addressing, type);
1593 regs->sdram_tim3_shdw = get_sdram_tim_3_shdw(timings, min_tck,
1594 addressing, type, ip_rev, EMIF_NORMAL_TIMINGS);
1595
1596 cl = get_cl(emif);
1597
1598 if (phy_type == EMIF_PHY_TYPE_ATTILAPHY && ip_rev == EMIF_4D) {
1599 regs->phy_ctrl_1_shdw = get_ddr_phy_ctrl_1_attilaphy_4d(
1600 timings, freq, cl);
1601 } else if (phy_type == EMIF_PHY_TYPE_INTELLIPHY && ip_rev == EMIF_4D5) {
1602 regs->phy_ctrl_1_shdw = get_phy_ctrl_1_intelliphy_4d5(freq, cl);
1603 regs->ext_phy_ctrl_2_shdw = get_ext_phy_ctrl_2_intelliphy_4d5();
1604 regs->ext_phy_ctrl_3_shdw = get_ext_phy_ctrl_3_intelliphy_4d5();
1605 regs->ext_phy_ctrl_4_shdw = get_ext_phy_ctrl_4_intelliphy_4d5();
1606 } else {
1607 return -1;
1608 }
1609
1610 /* Only timeout values in pwr_mgmt_ctrl_shdw register */
1611 regs->pwr_mgmt_ctrl_shdw =
1612 get_pwr_mgmt_ctrl(freq, emif_for_calc, ip_rev) &
1613 (CS_TIM_MASK | SR_TIM_MASK | PD_TIM_MASK);
1614
1615 if (ip_rev & EMIF_4D) {
1616 regs->read_idle_ctrl_shdw_normal =
1617 get_read_idle_ctrl_shdw(DDR_VOLTAGE_STABLE);
1618
1619 regs->read_idle_ctrl_shdw_volt_ramp =
1620 get_read_idle_ctrl_shdw(DDR_VOLTAGE_RAMPING);
1621 } else if (ip_rev & EMIF_4D5) {
1622 regs->dll_calib_ctrl_shdw_normal =
1623 get_dll_calib_ctrl_shdw(DDR_VOLTAGE_STABLE);
1624
1625 regs->dll_calib_ctrl_shdw_volt_ramp =
1626 get_dll_calib_ctrl_shdw(DDR_VOLTAGE_RAMPING);
1627 }
1628
1629 if (type == DDR_TYPE_LPDDR2_S2 || type == DDR_TYPE_LPDDR2_S4) {
1630 regs->ref_ctrl_shdw_derated = get_sdram_ref_ctrl_shdw(freq / 4,
1631 addressing);
1632
1633 regs->sdram_tim1_shdw_derated =
1634 get_sdram_tim_1_shdw_derated(timings, min_tck,
1635 addressing);
1636
1637 regs->sdram_tim3_shdw_derated = get_sdram_tim_3_shdw(timings,
1638 min_tck, addressing, type, ip_rev,
1639 EMIF_DERATED_TIMINGS);
1640 }
1641
1642 regs->freq = freq;
1643
1644 return 0;
1645}
1646
1647/*
1648 * get_regs() - gets the cached emif_regs structure for a given EMIF instance
1649 * given frequency(freq):
1650 *
1651 * As an optimisation, every EMIF instance other than EMIF1 shares the
1652 * register cache with EMIF1 if the devices connected on this instance
1653 * are same as that on EMIF1(indicated by the duplicate flag)
1654 *
1655 * If we do not have an entry corresponding to the frequency given, we
1656 * allocate a new entry and calculate the values
1657 *
1658 * Upon finding the right reg dump, save it in curr_regs. It can be
1659 * directly used for thermal de-rating and voltage ramping changes.
1660 */
1661static struct emif_regs *get_regs(struct emif_data *emif, u32 freq)
1662{
1663 int i;
1664 struct emif_regs **regs_cache;
1665 struct emif_regs *regs = NULL;
1666 struct device *dev;
1667
1668 dev = emif->dev;
1669 if (emif->curr_regs && emif->curr_regs->freq == freq) {
1670 dev_dbg(dev, "%s: using curr_regs - %u Hz", __func__, freq);
1671 return emif->curr_regs;
1672 }
1673
1674 if (emif->duplicate)
1675 regs_cache = emif1->regs_cache;
1676 else
1677 regs_cache = emif->regs_cache;
1678
1679 for (i = 0; i < EMIF_MAX_NUM_FREQUENCIES && regs_cache[i]; i++) {
1680 if (regs_cache[i]->freq == freq) {
1681 regs = regs_cache[i];
1682 dev_dbg(dev,
1683 "%s: reg dump found in reg cache for %u Hz\n",
1684 __func__, freq);
1685 break;
1686 }
1687 }
1688
1689 /*
1690 * If we don't have an entry for this frequency in the cache create one
1691 * and calculate the values
1692 */
1693 if (!regs) {
1694 regs = devm_kzalloc(emif->dev, sizeof(*regs), GFP_ATOMIC);
1695 if (!regs)
1696 return NULL;
1697
1698 if (get_emif_reg_values(emif, freq, regs)) {
1699 devm_kfree(emif->dev, regs);
1700 return NULL;
1701 }
1702
1703 /*
1704 * Now look for an un-used entry in the cache and save the
1705 * newly created struct. If there are no free entries
1706 * over-write the last entry
1707 */
1708 for (i = 0; i < EMIF_MAX_NUM_FREQUENCIES && regs_cache[i]; i++)
1709 ;
1710
1711 if (i >= EMIF_MAX_NUM_FREQUENCIES) {
1712 dev_warn(dev, "%s: regs_cache full - reusing a slot!!\n",
1713 __func__);
1714 i = EMIF_MAX_NUM_FREQUENCIES - 1;
1715 devm_kfree(emif->dev, regs_cache[i]);
1716 }
1717 regs_cache[i] = regs;
1718 }
1719
1720 return regs;
1721}
1722
1723static void do_volt_notify_handling(struct emif_data *emif, u32 volt_state)
1724{
1725 dev_dbg(emif->dev, "%s: voltage notification : %d", __func__,
1726 volt_state);
1727
1728 if (!emif->curr_regs) {
1729 dev_err(emif->dev,
1730 "%s: volt-notify before registers are ready: %d\n",
1731 __func__, volt_state);
1732 return;
1733 }
1734
1735 setup_volt_sensitive_regs(emif, emif->curr_regs, volt_state);
1736}
1737
1738/*
1739 * TODO: voltage notify handling should be hooked up to
1740 * regulator framework as soon as the necessary support
1741 * is available in mainline kernel. This function is un-used
1742 * right now.
1743 */
1744static void __attribute__((unused)) volt_notify_handling(u32 volt_state)
1745{
1746 struct emif_data *emif;
1747
1748 spin_lock_irqsave(&emif_lock, irq_state);
1749
1750 list_for_each_entry(emif, &device_list, node)
1751 do_volt_notify_handling(emif, volt_state);
1752 do_freq_update();
1753
1754 spin_unlock_irqrestore(&emif_lock, irq_state);
1755}
1756
1757static void do_freq_pre_notify_handling(struct emif_data *emif, u32 new_freq)
1758{
1759 struct emif_regs *regs;
1760
1761 regs = get_regs(emif, new_freq);
1762 if (!regs)
1763 return;
1764
1765 emif->curr_regs = regs;
1766
1767 /*
1768 * Update the shadow registers:
1769 * Temperature and voltage-ramp sensitive settings are also configured
1770 * in terms of DDR cycles. So, we need to update them too when there
1771 * is a freq change
1772 */
1773 dev_dbg(emif->dev, "%s: setting up shadow registers for %uHz",
1774 __func__, new_freq);
1775 setup_registers(emif, regs);
1776 setup_temperature_sensitive_regs(emif, regs);
1777 setup_volt_sensitive_regs(emif, regs, DDR_VOLTAGE_STABLE);
1778
1779 /*
1780 * Part of workaround for errata i728. See do_freq_update()
1781 * for more details
1782 */
1783 if (emif->lpmode == EMIF_LP_MODE_SELF_REFRESH)
1784 set_lpmode(emif, EMIF_LP_MODE_DISABLE);
1785}
1786
1787/*
1788 * TODO: frequency notify handling should be hooked up to
1789 * clock framework as soon as the necessary support is
1790 * available in mainline kernel. This function is un-used
1791 * right now.
1792 */
1793static void __attribute__((unused)) freq_pre_notify_handling(u32 new_freq)
1794{
1795 struct emif_data *emif;
1796
1797 /*
1798 * NOTE: we are taking the spin-lock here and releases it
1799 * only in post-notifier. This doesn't look good and
1800 * Sparse complains about it, but this seems to be
1801 * un-avoidable. We need to lock a sequence of events
1802 * that is split between EMIF and clock framework.
1803 *
1804 * 1. EMIF driver updates EMIF timings in shadow registers in the
1805 * frequency pre-notify callback from clock framework
1806 * 2. clock framework sets up the registers for the new frequency
1807 * 3. clock framework initiates a hw-sequence that updates
1808 * the frequency EMIF timings synchronously.
1809 *
1810 * All these 3 steps should be performed as an atomic operation
1811 * vis-a-vis similar sequence in the EMIF interrupt handler
1812 * for temperature events. Otherwise, there could be race
1813 * conditions that could result in incorrect EMIF timings for
1814 * a given frequency
1815 */
1816 spin_lock_irqsave(&emif_lock, irq_state);
1817
1818 list_for_each_entry(emif, &device_list, node)
1819 do_freq_pre_notify_handling(emif, new_freq);
1820}
1821
1822static void do_freq_post_notify_handling(struct emif_data *emif)
1823{
1824 /*
1825 * Part of workaround for errata i728. See do_freq_update()
1826 * for more details
1827 */
1828 if (emif->lpmode == EMIF_LP_MODE_SELF_REFRESH)
1829 set_lpmode(emif, EMIF_LP_MODE_SELF_REFRESH);
1830}
1831
1832/*
1833 * TODO: frequency notify handling should be hooked up to
1834 * clock framework as soon as the necessary support is
1835 * available in mainline kernel. This function is un-used
1836 * right now.
1837 */
1838static void __attribute__((unused)) freq_post_notify_handling(void)
1839{
1840 struct emif_data *emif;
1841
1842 list_for_each_entry(emif, &device_list, node)
1843 do_freq_post_notify_handling(emif);
1844
1845 /*
1846 * Lock is done in pre-notify handler. See freq_pre_notify_handling()
1847 * for more details
1848 */
1849 spin_unlock_irqrestore(&emif_lock, irq_state);
1850}
1851
e6b42eb6
A
1852#if defined(CONFIG_OF)
1853static const struct of_device_id emif_of_match[] = {
1854 { .compatible = "ti,emif-4d" },
1855 { .compatible = "ti,emif-4d5" },
1856 {},
1857};
1858MODULE_DEVICE_TABLE(of, emif_of_match);
1859#endif
1860
7ec94453 1861static struct platform_driver emif_driver = {
aac10aaa 1862 .remove = __exit_p(emif_remove),
68b4aee3 1863 .shutdown = emif_shutdown,
7ec94453
A
1864 .driver = {
1865 .name = "emif",
e6b42eb6 1866 .of_match_table = of_match_ptr(emif_of_match),
7ec94453
A
1867 },
1868};
1869
7a4541a6 1870module_platform_driver_probe(emif_driver, emif_probe);
7ec94453 1871
7ec94453
A
1872MODULE_DESCRIPTION("TI EMIF SDRAM Controller Driver");
1873MODULE_LICENSE("GPL");
1874MODULE_ALIAS("platform:emif");
1875MODULE_AUTHOR("Texas Instruments Inc");